index.less 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. .pay_wrap {
  2. background-color: #e6e6e6;
  3. height: 100%;
  4. padding-bottom: 20rpx;
  5. .line {
  6. width: 100%;
  7. height: 20rpx;
  8. background-color: #e6e6e6;
  9. }
  10. .address {
  11. background-color: #fff;
  12. margin: 0 auto;
  13. padding: 10rpx;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. width: 94%;
  18. height: 240rpx;
  19. border-radius: 16rpx;
  20. .address_info {
  21. margin-left: 6rpx;
  22. .info_top {
  23. display: flex;
  24. align-items: center;
  25. justify-content: start;
  26. margin-bottom: 10rpx;
  27. .name {
  28. font-size: 32rpx;
  29. font-weight: 700;
  30. }
  31. .mobile {
  32. font-size: 28rpx;
  33. color: #B0ADAD;
  34. margin-left: 12rpx;
  35. }
  36. }
  37. .info_content {
  38. font-size: 30rpx;
  39. margin-bottom: 10rpx;
  40. }
  41. .tips {
  42. font-size: 30rpx;
  43. color: #ee0a24;
  44. }
  45. }
  46. .address_select {
  47. font-size: 36rpx;
  48. font-weight: 700;
  49. color: #ffca28;
  50. }
  51. }
  52. .goods_box {
  53. background-color: #fff;
  54. margin: 20rpx auto;
  55. padding: 10rpx;
  56. align-items: center;
  57. width: 94%;
  58. border-radius: 16rpx;
  59. .title {
  60. display: flex;
  61. align-items: center;
  62. justify-content: start;
  63. margin-bottom: 30rpx;
  64. .logo {
  65. margin-right: 10rpx;
  66. }
  67. }
  68. .goods_info {
  69. display: flex;
  70. align-items: flex-start;
  71. .goods_image {
  72. width: 200rpx;
  73. height: 200rpx;
  74. margin-right: 10rpx;
  75. }
  76. .goods_detail {
  77. .goods_name {
  78. font-size: 32rpx;
  79. font-weight: 700;
  80. margin-bottom: 10rpx;
  81. }
  82. .goods_desc {
  83. font-size: 30rpx;
  84. color: #ccc;
  85. }
  86. .goods_tips {
  87. font-size: 30rpx;
  88. color: #ffca28;
  89. }
  90. }
  91. }
  92. .goods_count {
  93. display: flex;
  94. align-items: center;
  95. margin-top: 20rpx;
  96. justify-content: space-between;
  97. padding: 10rpx;
  98. }
  99. .goods_remark {
  100. margin-top: 20rpx;
  101. padding: 10rpx;
  102. }
  103. }
  104. .pay_address {
  105. width: 100%;
  106. padding: 30rpx;
  107. margin-top: 30rpx;
  108. height: 90rpx;
  109. display: flex;
  110. background-color: #fff;
  111. align-items: center;
  112. border-radius: 10rpx;
  113. .pay_address_left {
  114. // width: 40rpx;
  115. // height: 40rpx;
  116. background-color: red;
  117. color: white;
  118. flex: 2;
  119. text-align: center;
  120. border-radius: 10rpx;
  121. }
  122. .pay_address_right {
  123. flex: 8;
  124. display: flex;
  125. justify-content: space-between;
  126. }
  127. }
  128. .pay_goods {
  129. margin: 30rpx 0;
  130. border: 1px solid rgb(236, 236, 236);
  131. border-radius: 15rpx;
  132. .footer_wrap {
  133. display: flex;
  134. flex-direction: column;
  135. // justify-content: center;
  136. // align-items: center;
  137. .footer_btn {}
  138. .checkbox {
  139. width: 100%;
  140. height: 70rpx;
  141. display: flex;
  142. justify-content: space-between;
  143. align-items: center;
  144. .text {
  145. font-size: 28rpx;
  146. font-weight: 600;
  147. color: red;
  148. }
  149. }
  150. }
  151. }
  152. .user_info {
  153. background-color: #fff;
  154. margin: 20rpx 0;
  155. padding: 0 20rpx;
  156. .user_info_name {
  157. height: 90rpx;
  158. display: flex;
  159. align-items: center;
  160. }
  161. .user_info_num {
  162. height: 90rpx;
  163. display: flex;
  164. align-items: center;
  165. }
  166. }
  167. .pay_discount {
  168. width: 100%;
  169. background-color: #fff;
  170. .pay_discount_title {
  171. padding: 20rpx;
  172. display: flex;
  173. justify-content: space-between;
  174. align-items: center;
  175. }
  176. }
  177. }
  178. .van-cell {
  179. position: relative;
  180. display: -webkit-box;
  181. display: -webkit-flex;
  182. display: flex;
  183. justify-content: space-between;
  184. box-sizing: border-box;
  185. width: 100%;
  186. padding: 10px 16px;
  187. overflow: hidden;
  188. color: #323233;
  189. font-size: 14px;
  190. line-height: 24px;
  191. background-color: #fff;
  192. }
  193. // .van-cell::after {
  194. // position: absolute;
  195. // box-sizing: border-box;
  196. // content: ' ';
  197. // pointer-events: none;
  198. // right: 16px;
  199. // bottom: 0;
  200. // left: 16px;
  201. // border-bottom: 1px solid #ebedf0;
  202. // -webkit-transform: scaleY(0.5);
  203. // transform: scaleY(0.5);
  204. // }
  205. .discount {
  206. .discount_text {
  207. width: 100%;
  208. height: 90rpx;
  209. display: flex;
  210. justify-content: center;
  211. align-items: center;
  212. // margin:0 auto;
  213. text {
  214. font-size: 36rpx;
  215. font-weight: 700;
  216. }
  217. }
  218. }
  219. checkbox .wx-checkbox-input {
  220. width: 44rpx;
  221. height: 44rpx;
  222. border-radius: 50%;
  223. }
  224. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  225. background: #ee0a24;
  226. border-color: #ee0a24;
  227. /* color: #ffffff; */
  228. }
  229. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  230. width: 30rpx;
  231. height: 30rpx;
  232. line-height: 30rpx;
  233. text-align: center;
  234. font-size: 34rpx;
  235. color: #fff;
  236. background: transparent;
  237. transform: translate(-50%, -50%) scale(1);
  238. -webkit-transform: translate(-50%, -50%) scale(1);
  239. }
  240. .tabs_title {
  241. display: flex;
  242. }
  243. .tabs_title .title_item {
  244. display: flex;
  245. justify-content: center;
  246. align-items: center;
  247. flex: 1;
  248. padding: 15rpx 0;
  249. }
  250. .active {
  251. color: red;
  252. border-bottom: 5rpx solid currentColor;
  253. }
  254. .tabs_content {
  255. // background-color: #f6f5fa;
  256. background-color: #fff;
  257. padding-top: 40rpx;
  258. .coupon {
  259. display: flex;
  260. justify-content: space-between;
  261. align-items: center;
  262. padding: 10rpx 20rpx;
  263. }
  264. }
  265. .coupon_img {
  266. width: 95%;
  267. height: 220rpx;
  268. margin: 0 auto;
  269. background-color: #ccc;
  270. }
  271. .coupon_item_wrap {
  272. width: 90%;
  273. height: 180rpx;
  274. margin: 20rpx auto;
  275. display: flex;
  276. background-image: url('http://cloud.file.futurestack.cn/1AiWpTEDH9/20201207/qf19km053654.png?imageView2');
  277. background-size: 100%;
  278. background-repeat: no-repeat;
  279. .coupon_item_left {
  280. flex: 7.5;
  281. padding: 15rpx;
  282. display: flex;
  283. .coupon_left_price_wrap {
  284. flex: 3;
  285. display: flex;
  286. flex-direction: column;
  287. justify-content: center;
  288. align-items: center;
  289. .coupon_left_price {
  290. color: #DB432E;
  291. font-size: 20rpx;
  292. .text1 {
  293. color: #DB432E;
  294. font-size: 48rpx;
  295. font-weight: 800;
  296. }
  297. }
  298. .coupon_price_text {
  299. font-size: 24rpx;
  300. }
  301. }
  302. .coupon_left_cnt {
  303. flex: 7;
  304. display: flex;
  305. padding-left: 10rpx;
  306. flex-direction: column;
  307. justify-content: space-around;
  308. .left_cnt_title {
  309. margin: 15rpx 0;
  310. }
  311. .left_cnt_btm {
  312. display: flex;
  313. flex-direction: column;
  314. text {
  315. font-size: 22rpx;
  316. color: #B0ADAD;
  317. }
  318. }
  319. }
  320. }
  321. .coupon_item_right {
  322. display: flex;
  323. flex-direction: column;
  324. justify-content: center;
  325. align-items: center;
  326. flex: 2.5;
  327. position: relative;
  328. overflow: hidden;
  329. button {
  330. width: 120rpx;
  331. background-color: #DB432E;
  332. color: #fff;
  333. border-radius: 40px;
  334. font-size: 20rpx;
  335. }
  336. .active {
  337. image {
  338. width: 100rpx;
  339. height: 100rpx;
  340. position: absolute;
  341. right: -10rpx;
  342. top: -25rpx;
  343. }
  344. button {
  345. width: 120rpx;
  346. background-color: #f5e054;
  347. color: #ed6d69;
  348. border-radius: 40px;
  349. font-size: 20rpx;
  350. margin-top: 40rpx;
  351. }
  352. }
  353. }
  354. }
  355. .has-info {
  356. display: flex;
  357. flex-direction: column;
  358. // padding: 30rpx;
  359. padding: 0;
  360. margin: 30rpx 0;
  361. width: 100%;
  362. background-color: #fff;
  363. .info-item {
  364. // padding: 30rpx 0;
  365. display: flex;
  366. justify-content: flex-start;
  367. align-items: center;
  368. // background: #fff;
  369. border-radius: 10rpx;
  370. box-shadow: 2rpx 8rpx 18rpx #f1f1f1;
  371. // margin-bottom: 24rpx;
  372. position: relative;
  373. .edit-wrap {
  374. // padding: 30rpx;
  375. position: absolute;
  376. right: 0;
  377. bottom: 0;
  378. display: flex;
  379. justify-content: center;
  380. align-items: center;
  381. .img {
  382. width: 42rpx;
  383. height: 42rpx;
  384. }
  385. }
  386. .selected {
  387. display: flex;
  388. justify-content: center;
  389. align-items: center;
  390. // padding: 30rpx 0 30rpx 30rpx;
  391. .img {
  392. width: 40rpx;
  393. height: 40rpx;
  394. }
  395. }
  396. .info-wrap {
  397. display: flex;
  398. flex-direction: column;
  399. padding-left: 30rpx;
  400. .addr {
  401. display: flex;
  402. flex-direction: column;
  403. margin-bottom: 10rpx;
  404. .top {
  405. font-size: 30rpx;
  406. font-weight: 500;
  407. margin-bottom: 4rpx;
  408. }
  409. .text {
  410. font-size: 24rpx;
  411. color: #777;
  412. }
  413. .img-wrap {
  414. width: 44rpx;
  415. height: 44rpx;
  416. margin-right: 10rpx;
  417. }
  418. }
  419. .name {
  420. display: flex;
  421. justify-content: flex-start;
  422. align-items: center;
  423. .img-wrap {
  424. width: 44rpx;
  425. height: 44rpx;
  426. margin-right: 10rpx;
  427. }
  428. .img {
  429. width: 42rpx;
  430. height: 42rpx;
  431. }
  432. .default {
  433. font-size: 22rpx;
  434. color: #ff3456;
  435. background: #faedef;
  436. text-align: center;
  437. padding: 2rpx 10rpx;
  438. border-radius: 4rpx;
  439. }
  440. .text {
  441. font-size: 26rpx;
  442. margin-right: 10rpx;
  443. }
  444. }
  445. }
  446. // .id-wrap {
  447. // display: flex;
  448. // flex-direction: column;
  449. // .ids {
  450. // display: flex;
  451. // justify-content: flex-start;
  452. // align-items: center;
  453. // font-size: 26rpx;
  454. // color: #5d6777;
  455. // margin-bottom: 8rpx;
  456. // .id-name {
  457. // margin-right: 20rpx;
  458. // }
  459. // }
  460. // .no-ids {
  461. // font-size: 26rpx;
  462. // color: #ffbb12;
  463. // }
  464. // }
  465. }
  466. }
  467. .fetchTime {
  468. background-color: #fff;
  469. font-size: 26rpx;
  470. padding: 30rpx;
  471. }
  472. .btn {
  473. display: flex;
  474. justify-content: space-between;
  475. margin: 20rpx auto;
  476. padding: 0 20rpx;
  477. align-items: center;
  478. .status {
  479. text-align: center;
  480. font-size: 34rpx;
  481. font-weight: 800;
  482. line-height: 1.5;
  483. color: #6d6d6d;
  484. }
  485. .refund {
  486. padding: 14rpx 60rpx;
  487. border: 1rpx solid #fd5f5f;
  488. border-radius: 50rpx;
  489. color: #fd5f5f;
  490. }
  491. }