checkout.wxss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. page {
  2. height: 100%;
  3. background: #f4f4f4;
  4. }
  5. .container{
  6. padding: 50rpx 28rpx 180rpx ;
  7. }
  8. .address-box {
  9. width: 100%;
  10. /* height: 166.55rpx;
  11. background-size: 62.5rpx 10.5rpx; */
  12. /* margin-bottom: 20rpx; */
  13. /* padding-top: 10.5rpx; */
  14. }
  15. .address-item {
  16. display: flex;
  17. /* height: 142rpx; */
  18. background: #fff;
  19. padding: 26rpx 16rpx 20rpx;
  20. border-radius: 10rpx;
  21. }
  22. .address-item.address-empty {
  23. line-height: 75rpx;
  24. text-align: center;
  25. align-items: center;
  26. }
  27. .address-item .map-icon{
  28. width:28rpx;
  29. height: 28rpx;
  30. margin:0 18rpx 0 0;
  31. }
  32. .address-box .l {
  33. width: 125rpx;
  34. height: 100%;
  35. }
  36. .address-box .l .name {
  37. margin-left: 6.25rpx;
  38. margin-top: -7.25rpx;
  39. display: block;
  40. width: 125rpx;
  41. height: 43rpx;
  42. line-height: 43rpx;
  43. font-size: 30rpx;
  44. color: #333;
  45. margin-bottom: 5rpx;
  46. }
  47. .address-box .l .default {
  48. margin-left: 6.25rpx;
  49. display: block;
  50. width: 62rpx;
  51. height: 33rpx;
  52. border-radius: 5rpx;
  53. border: 1px solid #b4282d;
  54. font-size: 20.5rpx;
  55. text-align: center;
  56. line-height: 29rpx;
  57. color: #b4282d;
  58. }
  59. .address-box .m {
  60. /* flex: 1; */
  61. }
  62. .address-box .mobile {
  63. display: block;
  64. height: 29rpx;
  65. line-height: 29rpx;
  66. margin-bottom: 6.25rpx;
  67. font-size: 26rpx;
  68. }
  69. .address-box .address {
  70. display: block;
  71. height: 30rpx;
  72. line-height: 30rpx;
  73. font-size: 26rpx;
  74. margin:0 0 18rpx 0;
  75. }
  76. .address-bottom{
  77. color: #85868A;
  78. line-height: 24rpx;
  79. height: 24rpx;
  80. font-size: 22rpx;
  81. }
  82. .address-bottom .user-name{
  83. margin:0 32rpx 0 0;
  84. }
  85. .address-box .r {
  86. width: 77rpx;
  87. height: 77rpx;
  88. display: flex;
  89. justify-content: center;
  90. align-items: center;
  91. }
  92. .address-box .r image {
  93. width: 52.078rpx;
  94. height: 52.078rpx;
  95. }
  96. .coupon-box {
  97. width: 100%;
  98. height: 210rpx;
  99. background: #fff;
  100. border-radius:10rpx;
  101. }
  102. .coupon-box .coupon-item {
  103. margin: 0 10rpx;
  104. height: 70rpx;
  105. overflow: hidden;
  106. background: #fff;
  107. display: flex;
  108. padding:0 20rpx 0 10rpx;
  109. align-items: center;
  110. justify-content: space-between;
  111. border-bottom:2rpx solid #E4E4E4;
  112. }
  113. .coupon-box .l {
  114. flex: 1;
  115. height: 70rpx;
  116. display: flex;
  117. align-items: center;
  118. justify-content: space-between;
  119. }
  120. .coupon-box .l .name {
  121. font-size: 24rpx;
  122. }
  123. .coupon-box .l .txt {
  124. font-size: 24rpx;
  125. }
  126. .coupon-box .r {
  127. width: 30rpx;
  128. height: 40rpx;
  129. display: flex;
  130. justify-content: center;
  131. align-items: center;
  132. }
  133. .coupon-box .r image {
  134. width: 52.078rpx;
  135. height: 52.078rpx;
  136. }
  137. .message-box {
  138. margin-top: 20rpx;
  139. width: 100%;
  140. height: auto;
  141. overflow: hidden;
  142. background: #fff;
  143. }
  144. .message-box .message-item {
  145. height: 86.078rpx;
  146. overflow: hidden;
  147. background: #fff;
  148. display: flex;
  149. margin-left: 31.25rpx;
  150. padding-right: 31.25rpx;
  151. }
  152. .message-box .message-app {
  153. height: 74.078rpx;
  154. overflow: hidden;
  155. background: #fff;
  156. display: flex;
  157. margin-left: 31.25rpx;
  158. padding-right: 31.25rpx;
  159. padding-top: 18rpx;border-radius: 20rpx;
  160. }
  161. .order-box {
  162. margin-top: 20rpx;
  163. width: 100%;
  164. height: auto;
  165. overflow: hidden;
  166. background: #fff;
  167. }
  168. .order-box .order-item {
  169. border-radius: 10rpx;
  170. height: 70rpx;
  171. overflow: hidden;
  172. background: #fff;
  173. display: flex;
  174. align-items: center;
  175. justify-content: space-between;
  176. padding:0 20rpx;
  177. border-bottom: 1px solid #d9d9d9;
  178. }
  179. .order-box .order-item.tip-item{
  180. padding-bottom:26rpx;
  181. height: auto;
  182. display: flex;
  183. flex-direction: column;
  184. }
  185. .order-box .order-item .l {
  186. width:100rpx;
  187. height: 70rpx;
  188. line-height: 70rpx;
  189. align-items: center;
  190. }
  191. .order-box .order-item .l .name{
  192. font-size: 24rpx;
  193. }
  194. .order-box .order-item .r {
  195. line-height: 70rpx;
  196. flex:1;
  197. height: 70rpx;
  198. line-height: 70rpx;
  199. align-items: center;
  200. text-align: right;
  201. /* overflow: hidden; */
  202. }
  203. .order-box .order-item.no-border {
  204. border-bottom: none;
  205. }
  206. .goods-items {
  207. margin-top: 20rpx;
  208. background: #fff;
  209. /* margin-bottom: 120rpx; */
  210. border-radius: 10rpx;
  211. padding: 20rpx 12rpx;
  212. }
  213. .goods-items .item {
  214. height:210rpx;
  215. align-items: center;
  216. }
  217. .goods-items .item .name{
  218. font-size: 28rpx;
  219. height: 28rpx;
  220. line-height: 28rpx;
  221. color: #2a2a2a;
  222. }
  223. .goods-items .item.no-border {
  224. border-bottom: none;
  225. }
  226. .goods-items .item:last-child {
  227. border-bottom: none;
  228. }
  229. .goods-items .img {
  230. height: 178rpx;
  231. width: 178rpx;
  232. /* background-color: #f4f4f4; */
  233. margin-right: 26rpx;
  234. border-radius: 10rpx;
  235. }
  236. .goods-items .img image {
  237. height: 178rpx;
  238. width: 178rpx;
  239. border-radius:10rpx;
  240. }
  241. .goods-items .info {
  242. flex: 1;
  243. height: 210rpx;
  244. padding:14rpx 0 0;
  245. }
  246. .goods-items .t {
  247. height: 33rpx;
  248. line-height: 33rpx;
  249. margin-bottom: 10rpx;
  250. overflow: hidden;
  251. font-size: 30rpx;
  252. color: #333;
  253. }
  254. .goods-items .t .name {
  255. display: block;
  256. float: left;
  257. }
  258. .goods-items .t .number {
  259. display: block;
  260. float: right;
  261. text-align: right;
  262. }
  263. .goods-items .m {
  264. height: 28rpx;
  265. overflow: hidden;
  266. line-height: 28rpx;
  267. margin-bottom: 16rpx;
  268. font-size: 24rpx;
  269. color: #85868A;
  270. }
  271. .goods-items .b {
  272. height: 28rpx;
  273. line-height: 28rpx;
  274. font-size: 24rpx;
  275. color: #85868A;
  276. }
  277. .order-total {
  278. position: fixed;
  279. left: 0;
  280. bottom: 0;
  281. height: 100rpx;
  282. width: 100%;
  283. display: flex;
  284. }
  285. .order-total .l {
  286. flex: 1;
  287. height: 100rpx;
  288. line-height: 100rpx;
  289. color: #b4282d;
  290. background: #fff;
  291. font-size: 33rpx;
  292. padding-left: 31.25rpx;
  293. border-top: 1rpx solid rgba(0, 0, 0, 0.2);
  294. border-bottom: 1rpx solid rgba(0, 0, 0, 0.2);
  295. }
  296. .order-total .r {
  297. width: 233rpx;
  298. height: 100rpx;
  299. background: #b4282d;
  300. border: 1px solid #b4282d;
  301. line-height: 100rpx;
  302. text-align: center;
  303. color: #fff;
  304. font-size: 30rpx;
  305. }
  306. .actual-price{
  307. color: #2a2a2a;
  308. /* font-weight: bold; */
  309. font-size: 30rpx;
  310. text-align: right;
  311. margin:28rpx 0 0;
  312. }
  313. .actual-price text{
  314. color:#DF1717;
  315. }
  316. .go-pay-wrapper{
  317. position: fixed;
  318. bottom: 0;
  319. left:0;
  320. right:0;
  321. height: 130rpx;
  322. padding:20rpx 24rpx;
  323. /* background:#fff; */
  324. }
  325. view.go-pay-wrapper button > view{
  326. color:#fff;
  327. }
  328. .appoint-time-block{
  329. margin-top:20rpx;
  330. background:#fff;
  331. border-radius: 10rpx;
  332. }
  333. .appoint-time-block view.appoint-time-operate{
  334. padding:0 20rpx;
  335. height: 70rpx;
  336. display: flex;
  337. align-items: center;
  338. justify-content: space-between;
  339. font-size: 24rpx;
  340. }
  341. view.operate-left{
  342. color:#2a2a2a;
  343. }
  344. view.operate-right{
  345. display: flex;
  346. align-items:center;
  347. }
  348. view.operate-right{
  349. color:#09AFFF;
  350. }
  351. view.operate-right .not-select{
  352. color:#333;
  353. }
  354. .appoint-time-show{
  355. border-top:2rpx solid #E4E4E4;
  356. padding:0 24rpx;
  357. font-size: 24rpx;
  358. }
  359. view.one-time{
  360. height: 70rpx;
  361. display: flex;
  362. align-items: center;
  363. justify-content: space-between;
  364. }
  365. view.one-time text{
  366. color:#999;
  367. font-size: 26rpx;
  368. }
  369. .multi-times{
  370. padding:30rpx 0
  371. }
  372. .multi-times-item{
  373. height: 54rpx;
  374. display: flex;
  375. align-items: center;
  376. justify-content: space-between;
  377. }
  378. .multi-times-item text{
  379. font-weight: bold;
  380. font-size: 24rpx;
  381. }
  382. view.appoint-result{
  383. margin-top:18rpx;
  384. border:2rpx solid #09AFFF;
  385. border-radius:20rpx;
  386. line-height:46rpx;
  387. font-size: 26rpx;
  388. padding:10rpx;
  389. }
  390. .orange-font{
  391. color:#FA6400;
  392. font-weight: bold;
  393. font-size: 26rpx;
  394. }
  395. .order-item .message-item{
  396. color:#2a2a2a;
  397. font-size: 24rpx;
  398. font-weight: normal;
  399. height: 70rpx;
  400. }
  401. /* 选择时间 */
  402. view.popup-wrapper{
  403. /* padding: 0 0 20rpx; */
  404. color:#333;
  405. display: flex;
  406. flex-direction: column;
  407. justify-content: space-between;
  408. height: 100%;
  409. z-index:999;
  410. }
  411. view.popup-wrapper view{
  412. color:#888;
  413. font-size: 30rpx;
  414. }
  415. .popup-content{
  416. flex:1;
  417. }
  418. .popup-title{
  419. height: 96rpx;
  420. line-height: 96rpx;
  421. text-align: center;
  422. border-bottom: 1rpx solid #ddd;
  423. }
  424. .popup-content{
  425. display: flex;
  426. }
  427. .time-select-left{
  428. flex:2;
  429. border-right:1rpx solid #ddd;
  430. padding:0 20rpx;
  431. }
  432. .time-select-right{
  433. flex:3;
  434. padding:0 8rpx;
  435. }
  436. .time-select-left-item{
  437. height: 108rpx;
  438. display: flex;
  439. flex-direction: column;
  440. justify-content: center;
  441. }
  442. .popup-content view.current-date{
  443. color:#09afff;
  444. font-weight: bold;
  445. }
  446. view.popup-wrapper .time-select-right-item{
  447. height: 104rpx;
  448. border-bottom:1rpx solid #ddd;
  449. display: flex;
  450. align-items: center;
  451. justify-content: space-between;
  452. padding:0 24rpx;
  453. }
  454. .time-select-right-item view{
  455. color:#6D7278;
  456. font-weight: bold;
  457. }
  458. view.popup-btn-wrapper{
  459. margin:20rpx 0 0;
  460. padding:0 24rpx 20rpx;
  461. }
  462. view.popup-btn-wrapper button > view{
  463. color:#fff;
  464. }
  465. view.popup-wrapper .date-tag{
  466. color:#09afff;
  467. height: 44rpx;
  468. line-height: 42rpx;
  469. width:130rpx;
  470. border:2rpx solid #09afff;
  471. border-radius:44rpx;
  472. text-align: center;
  473. font-weight: normal;
  474. font-size: 28rpx;
  475. display: inline-block;
  476. }
  477. view.popup-wrapper .full-time{
  478. color:#09AFFF;
  479. font-size: 24rpx;
  480. margin:0 0 0 20rpx;
  481. height: 44rpx;
  482. line-height: 44rpx;
  483. float: right;
  484. padding-right:40rpx;
  485. }
  486. .first-appoint-date-item{
  487. height: 108rpx;
  488. display: flex;
  489. align-items: center;
  490. padding:0 0 0 240rpx;
  491. }
  492. .first-time-selected{
  493. margin:0 0 0 60rpx;
  494. }
  495. .select-week-times{
  496. border-top:1rpx solid #ddd;
  497. }
  498. .week-select-left{
  499. flex:1.2;
  500. }
  501. .week-select-left>view.time-select-left-item{
  502. padding:0 0 0 60rpx;
  503. display: flex;
  504. align-items: flex-start;
  505. justify-content: flex-start;
  506. flex-direction: row;
  507. padding:10rpx 0 0 60rpx;
  508. }
  509. .week-select-left>view.time-select-left-item .week-str{
  510. padding:12rpx 0 0 0;
  511. }
  512. view.popup-wrapper view.select-num-tag{
  513. width:32rpx;
  514. height: 32rpx;
  515. line-height: 32rpx;
  516. background:#09AFFF;
  517. border-radius: 34rpx;
  518. font-size: 20rpx;
  519. color:#fff;
  520. text-align: center;
  521. margin:0 0 0 6rpx;
  522. }
  523. /* 支付失败弹框 */
  524. .overlay-wrapper {
  525. display: flex;
  526. align-items: center;
  527. justify-content: center;
  528. height: 100%;
  529. }
  530. .fail-wrapper {
  531. width: 588rpx;
  532. height:502rpx;
  533. border-radius:10rpx;
  534. background: #fff;
  535. padding-bottom:40rpx;
  536. padding:80rpx 0 0;
  537. font-size: 24rpx;
  538. display: flex;
  539. flex-direction: column;
  540. justify-content: space-between;
  541. }
  542. .fail-top{
  543. display: flex;
  544. flex-direction: column;
  545. align-items: center;
  546. }
  547. .fail-top image{
  548. width:110rpx;
  549. height: 110rpx;
  550. }
  551. .fail-text{
  552. font-size: 34rpx;
  553. font-weight: bold;
  554. margin:66rpx 0 24rpx;
  555. height: 34rpx;
  556. }
  557. .fail-bottom{
  558. height: 132rpx;
  559. border-top:2rpx solid #E4E4E4;
  560. display: flex;
  561. justify-content: space-around;
  562. align-items: center;
  563. }
  564. .fail-bottom .btn-devide{
  565. width:2rpx;
  566. height: 130rpx;
  567. background: #E4E4E4;
  568. }
  569. .cancel-btn{
  570. width:202rpx;
  571. height: 72rpx;
  572. line-height: 72rpx;
  573. border:2rpx solid #85868A;
  574. color:#282728;
  575. border-radius:72rpx;
  576. text-align: center;
  577. }
  578. .repay-btn{
  579. width:202rpx;
  580. height: 72rpx;
  581. line-height: 72rpx;
  582. background: #09AFFF;
  583. color:#fff;
  584. border-radius:72rpx;
  585. text-align: center;
  586. }
  587. .discount-title{
  588. height:70rpx;
  589. background: #E0F5FC;
  590. padding:0 10rpx;
  591. display: flex;
  592. align-items: center;
  593. }
  594. .discount-title image{
  595. width:24rpx;
  596. height: 26rpx;
  597. margin:0 8rpx 0 0;
  598. }
  599. .discount-title text{
  600. font-size: 28rpx;
  601. font-weight:bold;
  602. color: #323232;
  603. }
  604. .discount-line{
  605. padding:0 50rpx 0 20rpx;
  606. }
  607. .discount-line .txt{
  608. color: #DF1717;
  609. font-size: 24rpx;
  610. }
  611. .member-benefit,.buy-member{
  612. margin:20rpx 0 0;
  613. height: 70rpx;
  614. background: #fff;
  615. border-radius: 10rpx;
  616. padding:0 20rpx;
  617. display: flex;
  618. align-items: center;
  619. justify-content: space-between;
  620. }
  621. .member-benefit .member-tip{
  622. text-align: right;
  623. }
  624. .member-tag{
  625. width: 142rpx;
  626. padding:0 10rpx;
  627. height: 44rpx;
  628. line-height: 44rpx;
  629. text-align: center;
  630. background: #2E3235;
  631. border-radius: 5rpx;
  632. }
  633. .member-tag text{
  634. font-size: 24rpx;
  635. color: #2A2A2A;
  636. background: linear-gradient(177deg, #F1E3C8 0%, #E6C162 100%);
  637. -webkit-background-clip: text;
  638. -webkit-text-fill-color: transparent;
  639. }
  640. .member-tip{
  641. flex:1;
  642. margin:0 0 0 26rpx;
  643. color:#DF1717;
  644. font-size: 24rpx;
  645. }
  646. .popup-content-special{
  647. position: relative;
  648. }
  649. .popup-title-special{
  650. position: absolute;
  651. left:0;
  652. top:0;
  653. right:0;
  654. background: #fff;
  655. }
  656. .popup-content-special{
  657. height:900rpx ;
  658. margin-top:96rpx;
  659. }
  660. .popup-content-special .time-select-left{
  661. height: 900rpx;
  662. overflow-y: scroll;
  663. }