index.scss 2.5 KB

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