index.scss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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. display: inline-block;
  83. width: 160rpx;
  84. text-align: right;
  85. }
  86. .nosign{
  87. width: 100%;
  88. line-height: 56rpx;
  89. .nosign1{
  90. font-size: 40rpx;
  91. color: #FF6D6D;
  92. text-align: center;
  93. }
  94. .nosign2{
  95. color: #A6A6A6;
  96. text-align: center;
  97. }
  98. }
  99. .sign{
  100. width: 100%;
  101. line-height: 56rpx;
  102. .sign1{
  103. font-size: 40rpx;
  104. color: #52BD4E;
  105. text-align: center;
  106. }
  107. .sign2{
  108. color: #A6A6A6;
  109. text-align: center;
  110. }
  111. }
  112. }
  113. .pending-order-body-left{
  114. .car-number{
  115. margin-bottom: 20rpx;
  116. font-size: 30rpx;
  117. font-weight: 600;
  118. color: #3A3A3A;
  119. line-height: 42rpx;
  120. letter-spacing: 1px;
  121. }
  122. .item-cell{
  123. margin-bottom: 5rpx;
  124. font-size: 26rpx
  125. }
  126. .cost{
  127. .number{
  128. font-size: 26rpx;
  129. line-height: 50rpx;
  130. color: $my-main-color;
  131. }
  132. }
  133. }
  134. .pending-order-body-right{
  135. text-align: left;
  136. font-size: 24rpx;
  137. .order{
  138. margin-bottom: 28rpx;
  139. font-weight: 400;
  140. color: #9A9A9A;
  141. }
  142. }
  143. .go-pay-wrap{
  144. margin-top: 50rpx;
  145. width: 100%;
  146. text-align: center;
  147. .go-pay{
  148. display: inline-block;
  149. padding: 12rpx 39rpx 11rpx;
  150. background: linear-gradient(90deg, #FF2727 0%, #FF9A13 100%, #FF0F0F 100%);
  151. color: #fff;
  152. border-radius: 10rpx;
  153. cursor: pointer;
  154. }
  155. .go-pay1{
  156. display: inline-block;
  157. padding: 12rpx 39rpx 11rpx;
  158. background: linear-gradient(90deg, #D3D3D3 0%, #F5F5F5 100%, #DCDCDC 100%);
  159. color: #fff;
  160. border-radius: 10rpx;
  161. cursor: pointer;
  162. }
  163. }
  164. }
  165. .popup-order-details{
  166. color: #545454;
  167. &-til{
  168. padding: 61rpx 40rpx 16rpx;
  169. font-size: 36rpx;
  170. color: #008CFF;
  171. line-height: 50rpx;
  172. text-align: center;
  173. }
  174. &-con{
  175. margin-bottom: 40rpx;
  176. }
  177. &-footer{
  178. border-top: 1px solid #CECECE;
  179. padding: 28rpx 0 26rpx;
  180. font-size: 45rpx;
  181. line-height: 63rpx;
  182. text-align: center;
  183. color: #008CFF;
  184. }
  185. dl{
  186. margin: 20rpx 38rpx;
  187. display: flex;
  188. font-size: 30rpx;
  189. dt{
  190. width: 150rpx;
  191. color: #A3A3A3;
  192. text-align: right;
  193. }
  194. dd{
  195. flex: 1;
  196. }
  197. }
  198. }
  199. .promotion{
  200. margin: 20rpx 40rpx 40rpx;
  201. background-color: #FFFFFF;
  202. border-radius: 15rpx; &-header{
  203. padding: 26rpx 40rpx 12rpx;
  204. border-bottom: 1px solid #DFDFDF;
  205. margin-bottom: 26rpx;
  206. .promotion-header-til{
  207. font-size: 30rpx;
  208. color: #383838;
  209. line-height: 42rpx;
  210. }
  211. .promotion-header-con{
  212. font-size: 22rpx;
  213. color: #787878;
  214. line-height: 30rpx;
  215. }
  216. }
  217. &-body{
  218. padding: 0 40rpx 24rpx;
  219. .promotion-body-til{
  220. font-size: 26rpx;
  221. color: #676767;
  222. line-height: 37rpx;
  223. margin-bottom: 15rpx;
  224. }
  225. .promotion-body-con{
  226. font-size: 20rpx;
  227. color: #A5A5A5;
  228. line-height: 34rpx;
  229. }
  230. }
  231. }
  232. .notice-bar-wrap{
  233. margin: 20rpx 40rpx;
  234. background-color: #fff;
  235. padding: 32rpx 0 25rpx 30rpx;
  236. border-radius: 15rpx;
  237. overflow: hidden;
  238. }
  239. /* 优惠活动 */
  240. .promotion-box {
  241. padding: 10px 20px;
  242. .promotion-title {
  243. text {
  244. color: #3A3A3A;
  245. font-size: 36rpx;
  246. font-family: PingFangSC-Regular, PingFang SC;
  247. }
  248. }
  249. .promotion-banner {
  250. margin-top: 20rpx;
  251. /deep/ .u-indicator-item-round {
  252. background-color: #AAD8FF;
  253. }
  254. /deep/ .u-indicator-item-round-active {
  255. background-color: #FFFFFF;
  256. // width: 20rpx;
  257. }
  258. }
  259. }
  260. .pay-way {
  261. display: flex;
  262. justify-content: space-between;
  263. width: calc(100% - 34rpx);
  264. border-top: solid 1px #979797;
  265. margin: 23rpx auto;
  266. padding: 38rpx 86rpx;
  267. .pay-way-item {
  268. text-align: center;
  269. font-size: 30rpx;
  270. color: #5F5F5F;
  271. image {
  272. width: 143rpx;
  273. height: 143rpx;
  274. }
  275. }
  276. }
  277. .pay-way-close-btn {
  278. width: calc(100% - 34rpx);
  279. margin: 0 auto 68rpx;
  280. border: none;
  281. background-color: #3397FA;
  282. color: #fff;
  283. border-radius: 10rpx;
  284. }
  285. .empty-data-box {
  286. background-color: #fff;
  287. height: 462rpx;
  288. width: calc(100% - 80rpx);
  289. margin: 0 auto;
  290. border-radius: 16rpx;
  291. margin-top: 20rpx;
  292. }