index.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. page{background-color: $my-page-bg-color;}
  2. .header-bar{
  3. background-color: $my-main-color;
  4. height: 106rpx;
  5. display: flex;
  6. padding: 0 40rpx;
  7. .city{
  8. display: flex;
  9. margin-right: 23rpx;
  10. color: #fff;
  11. align-items: center;
  12. .city-name{
  13. margin-right: 8rpx;
  14. }
  15. }
  16. .scan{margin-left: 23rpx;}
  17. }
  18. .content-nav{
  19. display: flex;
  20. justify-content: space-between;
  21. align-items: center;
  22. .content-nav-item{
  23. .content-nav-item-icon-wrap{
  24. width: 95rpx;
  25. height: 95rpx;
  26. margin: 0 auto 13rpx;
  27. // border-radius: 30rpx;
  28. // background: linear-gradient(163deg, #FFCC60 0%, #FF9221 100%);
  29. }
  30. .content-nav-item-icon-text{
  31. font-size: 28rpx;
  32. font-weight: 500;
  33. color: #5A5A5A;
  34. line-height: 1;
  35. }
  36. }
  37. .content-nav-item + .content-nav-item{
  38. // margin-left: 74rpx;
  39. }
  40. }
  41. .pending-order-head{
  42. display: flex;
  43. justify-content: space-between;
  44. align-items: center;
  45. color: $my-main-color;
  46. .pending-order-head-left{
  47. font-size: 30rpx;
  48. b{font-weight: 500;font-size: 50rpx;margin-right: 5rpx;}
  49. }
  50. .pending-order-head-right{
  51. font-size: 22rpx;
  52. font-weight: 500;
  53. }
  54. }
  55. .pending-order-body{
  56. .pending-order-body-nav{
  57. display: flex;
  58. border-radius: 32px;
  59. border: 1px solid $my-main-color;
  60. margin-bottom: 36rpx;
  61. .nav-item{
  62. flex: 1;
  63. height: 62rpx;
  64. line-height: 62rpx;
  65. font-size: 24rpx;
  66. text-align: center;
  67. &.active{
  68. background: $my-main-color;
  69. color: #fff;
  70. border-radius: 32rpx;
  71. }
  72. }
  73. }
  74. .pending-order-body-wrap{
  75. display: flex;
  76. flex-wrap: wrap;
  77. justify-content: space-between;
  78. .pending-order-body-left-label{
  79. font-size: 22rpx;
  80. font-weight: 500;
  81. color: #787878;
  82. }
  83. }
  84. .pending-order-body-left{
  85. .car-number{
  86. margin-bottom: 32rpx;
  87. font-size: 30rpx;
  88. font-weight: 600;
  89. color: #3A3A3A;
  90. line-height: 42rpx;
  91. letter-spacing: 1px;
  92. }
  93. .duration{
  94. margin-bottom: 5rpx;
  95. }
  96. }
  97. .pending-order-body-right{
  98. text-align: left;
  99. font-size: 22rpx;
  100. .order{
  101. margin-bottom: 28rpx;
  102. font-weight: 400;
  103. color: #9A9A9A;
  104. }
  105. .cost{
  106. .number{
  107. font-size: 36rpx;
  108. line-height: 50rpx;
  109. color: $my-main-color;
  110. }
  111. }
  112. }
  113. .go-pay-wrap{
  114. margin-top: 37rpx;
  115. width: 100%;
  116. text-align: center;
  117. .go-pay{
  118. display: inline-block;
  119. padding: 12rpx 39rpx 11rpx;
  120. background: linear-gradient(90deg, #FF2727 0%, #FF9A13 100%, #FF0F0F 100%);
  121. color: #fff;
  122. border-radius: 35rpx;
  123. cursor: pointer;
  124. }
  125. }
  126. }
  127. .orderDetails{
  128. color: #545454;
  129. /deep/ dl{
  130. margin: 20rpx 38rpx;
  131. display: flex;
  132. font-size: 30rpx;
  133. dt{
  134. width: 150rpx;
  135. color: #A3A3A3;
  136. text-align: right;
  137. }
  138. dd{
  139. flex: 1;
  140. }
  141. }
  142. }