home.wxss 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460
  1. page {
  2. background-color: #F6F6F6;
  3. }
  4. .home-wrapper {
  5. position: relative;
  6. left: 0;
  7. top: 0;
  8. width: 100%;
  9. }
  10. .home-wrapper:before {
  11. content: '';
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. right: 0;
  16. height: 730rpx;
  17. background: linear-gradient(180deg, rgba(65, 106, 165, 1) 0%, rgba(246, 246, 246, 1) 100%);
  18. }
  19. .introduce {
  20. position: relative;
  21. left: 0;
  22. top: 0;
  23. z-index: 1;
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. width: 718rpx;
  28. padding: 0 16rpx 12rpx;
  29. margin: 24rpx auto 0;
  30. }
  31. .introduce .list {
  32. display: flex;
  33. align-items: center;
  34. }
  35. .introduce .list image {
  36. width: 32rpx;
  37. height: 32rpx;
  38. }
  39. .introduce .list text {
  40. margin-left: 8rpx;
  41. color: rgba(255, 255, 255, 1);
  42. font-size: 24rpx;
  43. font-weight: 500;
  44. line-height: 30rpx;
  45. }
  46. .main {
  47. position: relative;
  48. left: 0;
  49. top: 0;
  50. z-index: 1;
  51. display: flex;
  52. flex-direction: column;
  53. align-items: center;
  54. width: 718rpx;
  55. border-radius: 24rpx;
  56. margin: 20rpx auto 0;
  57. background: rgba(255, 255, 255, 1);
  58. }
  59. .main .address.start {
  60. margin-top: 40rpx;
  61. }
  62. .main .address {
  63. display: flex;
  64. align-items: center;
  65. width: 654rpx;
  66. margin-top: 24rpx;
  67. }
  68. .main .address.start .icon,
  69. .main .address.underway .icon,
  70. .main .address.end .icon {
  71. width: 32rpx;
  72. height: 32rpx;
  73. border-radius: 16rpx;
  74. font-size: 20rpx;
  75. font-weight: 500;
  76. line-height: 32rpx;
  77. text-align: center;
  78. color: rgba(255, 255, 255, 1);
  79. }
  80. .main .address.start .icon {
  81. background: rgba(51, 51, 51, 1);
  82. }
  83. .main .address.underway .icon {
  84. background: #CCCCCC;
  85. }
  86. .main .address.end .icon {
  87. background: #FD6600;
  88. }
  89. .main .address .text-wrap {
  90. position: relative;
  91. left: 0;
  92. top: 0;
  93. display: flex;
  94. flex-direction: column;
  95. justify-content: center;
  96. width: 598rpx;
  97. min-height: 104rpx;
  98. padding: 12rpx 16rpx;
  99. margin-left: 24rpx;
  100. }
  101. .main .address .text-wrap.empty {
  102. border-radius: 16rpx;
  103. background: rgba(244, 244, 244, 1);
  104. }
  105. .main .address .text-wrap.empty text {
  106. color: rgba(153, 153, 153, 1);
  107. font-size: 30rpx;
  108. font-weight: 500;
  109. line-height: 36rpx;
  110. }
  111. .main .address .text-wrap text {
  112. white-space: nowrap;
  113. overflow: hidden;
  114. text-overflow: ellipsis;
  115. }
  116. .main .address .text-wrap.has text:nth-of-type(1) {
  117. padding-right: 104rpx;
  118. color: rgba(0, 0, 0, 1);
  119. font-size: 32rpx;
  120. font-weight: 500;
  121. line-height: 40rpx;
  122. }
  123. .main .address .text-wrap.has text:nth-of-type(2) {
  124. padding-right: 104rpx;
  125. margin-top: 8rpx;
  126. color: rgba(138, 149, 176, 1);
  127. font-size: 26rpx;
  128. line-height: 32rpx;
  129. }
  130. .main .address .del-wrap {
  131. position: absolute;
  132. right: 0;
  133. top: 0;
  134. z-index: 1;
  135. padding: 36rpx 32rpx;
  136. }
  137. .main .address .del {
  138. display: block;
  139. width: 32rpx;
  140. height: 32rpx;
  141. }
  142. .main .address .empty {
  143. right: 32rpx;
  144. }
  145. .main .address .has {
  146. right: 0;
  147. }
  148. .main .btn-wrap {
  149. position: relative;
  150. left: 0;
  151. top: 0;
  152. display: flex;
  153. justify-content: space-between;
  154. align-items: center;
  155. width: 654rpx;
  156. padding: 24rpx 0;
  157. margin-top: 24rpx;
  158. }
  159. .main .btn-wrap:before {
  160. position: absolute;
  161. left: 8rpx;
  162. top: 0;
  163. right: 8rpx;
  164. content: '';
  165. border-top: 1rpx solid #EEEEEE;
  166. }
  167. .main .btn-wrap view {
  168. display: flex;
  169. align-items: center;
  170. min-width: 170rpx;
  171. height: 64rpx;
  172. padding: 0 12rpx;
  173. border-radius: 12rpx;
  174. border: 1rpx solid #E9E9E9;
  175. }
  176. .main .btn-wrap .number image,
  177. .main .btn-wrap .add text {
  178. margin-left: 8rpx;
  179. }
  180. .main .btn-wrap text {
  181. color: rgba(51, 51, 51, 1);
  182. font-size: 24rpx;
  183. font-weight: 500;
  184. line-height: 30rpx;
  185. }
  186. .main .btn-wrap image {
  187. width: 20rpx;
  188. height: 20rpx;
  189. }
  190. .main .time {
  191. display: flex;
  192. align-items: center;
  193. width: 654rpx;
  194. height: 128rpx;
  195. border-bottom: 1rpx solid #EEEEEE;
  196. }
  197. .main .time .label {
  198. display: flex;
  199. align-items: center;
  200. width: 194rpx;
  201. }
  202. .main .time .label .icon {
  203. width: 48rpx;
  204. height: 48rpx;
  205. }
  206. .main .time .label text {
  207. margin-left: 16rpx;
  208. color: rgba(51, 51, 51, 1);
  209. font-size: 28rpx;
  210. font-weight: 500;
  211. line-height: 34rpx;
  212. }
  213. .main .time .text-wrap {
  214. display: flex;
  215. justify-content: flex-end;
  216. align-items: center;
  217. width: calc(100% - 194rpx);
  218. }
  219. .main .time .text-wrap text {
  220. font-size: 28rpx;
  221. line-height: 34px;
  222. }
  223. .main .time .text-wrap.empty text {
  224. color: rgba(153, 153, 153, 1);
  225. }
  226. .main .time .text-wrap.has text {
  227. color: rgba(51, 51, 51, 1);
  228. }
  229. .main .time .arrow {
  230. width: 28rpx;
  231. height: 28rpx;
  232. margin-left: 16rpx;
  233. }
  234. .main button.next[type='primary'] {
  235. width: 654rpx;
  236. height: 104rpx;
  237. border-radius: 24rpx;
  238. background-color: rgba(253, 102, 0, 1);
  239. margin: 24rpx auto 32rpx;
  240. color: rgba(255, 255, 255, 1);
  241. font-size: 32rpx;
  242. font-weight: 500;
  243. }
  244. .footer {
  245. display: flex;
  246. justify-content: space-between;
  247. align-items: center;
  248. width: 718rpx;
  249. padding-top: 20rpx;
  250. margin: 0 auto;
  251. }
  252. .footer.padding-bottom-26 {
  253. padding-bottom: 26rpx;
  254. }
  255. .footer.padding-bottom-134 {
  256. padding-bottom: 134rpx;
  257. }
  258. .home-swiper,
  259. .tools {
  260. width: 349rpx;
  261. height: 394rpx;
  262. overflow: hidden;
  263. }
  264. .home-swiper .swiper-item {
  265. width: 100%;
  266. height: 100%;
  267. border-radius: 24rpx;
  268. overflow: hidden;
  269. }
  270. .home-swiper .swiper-item image {
  271. display: block;
  272. width: 100%;
  273. height: 100%;
  274. }
  275. .tools {
  276. display: flex;
  277. flex-direction: column;
  278. align-items: center;
  279. padding-top: 39rpx;
  280. border-radius: 24rpx;
  281. background: #FFFFFF;
  282. }
  283. .tools .title {
  284. display: flex;
  285. align-items: center;
  286. width: 301rpx;
  287. }
  288. .tools .title image {
  289. width: 32rpx;
  290. height: 32rpx;
  291. }
  292. .tools .title text {
  293. margin-left: 8rpx;
  294. color: rgba(51, 51, 51, 1);
  295. font-size: 28rpx;
  296. font-weight: 500;
  297. line-height: 34rpx;
  298. }
  299. .tools .customer-services {
  300. display: block;
  301. width: 301rpx;
  302. height: 134rpx;
  303. margin-top: 17rpx;
  304. }
  305. .tools .wrap {
  306. display: flex;
  307. justify-content: space-between;
  308. align-items: center;
  309. width: 301rpx;
  310. padding: 0 24rpx;
  311. margin-top: 16rpx;
  312. }
  313. .tools .wrap view {
  314. display: flex;
  315. flex-direction: column;
  316. align-items: center;
  317. }
  318. .tools .wrap .icon {
  319. display: block;
  320. width: 80rpx;
  321. height: 80rpx;
  322. }
  323. .tools .wrap text {
  324. display: block;
  325. margin-top: 8rpx;
  326. color: rgba(51, 51, 51, 1);
  327. font-size: 24rpx;
  328. line-height: 30rpx;
  329. }
  330. .jump-order {
  331. position: fixed;
  332. left: 50%;
  333. bottom: 24rpx;
  334. z-index: 99;
  335. display: flex;
  336. align-items: center;
  337. min-width: 371rpx;
  338. height: 82rpx;
  339. padding: 0 32rpx;
  340. border-radius: 82rpx;
  341. border: 3rpx solid #FFFFFF;
  342. background: linear-gradient(180deg, rgba(77, 121, 183, 1) 0%, rgba(134, 171, 222, 1) 100%);
  343. box-shadow: 0 13rpx 26rpx 0 rgba(147, 168, 197, 0.36);
  344. transform: translateX(-50%);
  345. }
  346. .jump-order .icon-0 {
  347. width: 48rpx;
  348. height: 48rpx;
  349. }
  350. .jump-order .icon-1 {
  351. width: 28rpx;
  352. height: 28rpx;
  353. }
  354. .jump-order text {
  355. margin: 0 8rpx 0 0;
  356. color: rgba(255, 255, 255, 1);
  357. font-size: 28rpx;
  358. font-weight: 500;
  359. line-height: 34rpx;
  360. white-space: nowrap;
  361. }
  362. .customer-van-popup_traveler form {
  363. display: block;
  364. width: 100%;
  365. padding-bottom: 60rpx;
  366. }
  367. .customer-van-popup_traveler .form-item {
  368. width: 690rpx;
  369. height: 104rpx;
  370. margin: 0 auto;
  371. border-radius: 16rpx;
  372. background: rgba(248, 248, 248, 1);
  373. }
  374. .customer-van-popup_traveler .form-item input {
  375. display: block;
  376. height: 100%;
  377. font-size: 34rpx;
  378. color: #333333;
  379. opacity: 1;
  380. background: transparent;
  381. text-align: center;
  382. }
  383. .placeholder {
  384. font-size: 34rpx;
  385. color: #999999;
  386. }
  387. .customer-van-popup_traveler button[type='primary'] {
  388. position: absolute;
  389. right: 0;
  390. top: 0;
  391. z-index: 1;
  392. padding: 46rpx 24rpx;
  393. font-size: 30rpx;
  394. color: #FD6600;
  395. background-color: transparent;
  396. }