pay.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. .wrap {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. padding: 20rpx 24rpx 100rpx;
  6. box-sizing: border-box;
  7. }
  8. .address-wrap {
  9. width: 100%;
  10. display: flex;
  11. flex-direction: column;
  12. margin-bottom: 22rpx;
  13. }
  14. .address-box {
  15. width: 100%;
  16. height: 224rpx;
  17. background-color: #fff;
  18. display: flex;
  19. align-items: center;
  20. border-radius: 16rpx;
  21. padding: 0 30rpx;
  22. box-sizing: border-box;
  23. overflow: hidden;
  24. }
  25. .location-icon {
  26. width: 80rpx;
  27. margin-right: 24rpx;
  28. }
  29. .address-sidebar {
  30. flex: 1;
  31. display: flex;
  32. align-items: center;
  33. }
  34. .address-column {
  35. flex: 1;
  36. display: flex;
  37. flex-direction: column;
  38. }
  39. .back-icon {
  40. width: 16rpx;
  41. margin-left: 20rpx;
  42. }
  43. .people-name {
  44. font-size: 34rpx;
  45. color: #303133;
  46. }
  47. .people-name text {
  48. font-size: 30rpx;
  49. color: #A7A7A7;
  50. margin-left: 20rpx;
  51. }
  52. .address-msg {
  53. width: 100%;
  54. display: -webkit-box;
  55. -webkit-line-clamp: 2;
  56. overflow: hidden;
  57. text-overflow: ellipsis;
  58. -webkit-box-orient: vertical;
  59. font-size: 30rpx;
  60. color: #A7A7A7;
  61. margin-top: 10rpx;
  62. }
  63. .normal-msg {
  64. color: #111111;
  65. font-size: 30rpx;
  66. }
  67. .product-module {
  68. width: 100%;
  69. background: #FFFFFF;
  70. border-radius: 16rpx;
  71. display: flex;
  72. flex-direction: column;
  73. padding: 0 24rpx 26rpx;
  74. box-sizing: border-box;
  75. margin-bottom: 22rpx;
  76. }
  77. .product-module-label {
  78. width: 100%;
  79. height: 90rpx;
  80. display: flex;
  81. align-items: center;
  82. color: #111111;
  83. font-size: 30rpx;
  84. font-weight: bold;
  85. }
  86. .product-item-sidebar {
  87. flex: 1;
  88. height: 180rpx;
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: space-between;
  92. }
  93. .product-item-row-between {
  94. width: 100%;
  95. display: flex;
  96. justify-content: space-between;
  97. align-items: center;
  98. }
  99. .product-sidebar {
  100. flex: 1;
  101. height: 180rpx;
  102. display: flex;
  103. flex-direction: column;
  104. justify-content: space-between;
  105. }
  106. .product-name {
  107. width: 100%;
  108. display: -webkit-box;
  109. -webkit-line-clamp: 1;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. -webkit-box-orient: vertical;
  113. color: #202020;
  114. font-size: 28rpx;
  115. }
  116. .product-row-between {
  117. width: 100%;
  118. display: flex;
  119. justify-content: space-between;
  120. align-items: center;
  121. }
  122. .gray-font {
  123. font-size: 24rpx;
  124. color: #A7A7A7;
  125. }
  126. .gray-font-msg{
  127. width: 100%;
  128. display: -webkit-box;
  129. -webkit-line-clamp: 2;
  130. overflow: hidden;
  131. text-overflow: ellipsis;
  132. -webkit-box-orient: vertical;
  133. font-size: 24rpx;
  134. color: #A7A7A7;
  135. }
  136. .black-font {
  137. font-size: 24rpx;
  138. color: #202020;
  139. }
  140. .row-end {
  141. display: flex;
  142. flex-direction: column;
  143. align-items: flex-end;
  144. }
  145. .product-item-price {
  146. color: #202020;
  147. font-size: 26rpx;
  148. }
  149. .product-item-num {
  150. color: #A7A7A7;
  151. font-size: 20rpx;
  152. }
  153. .product-item-num text {
  154. font-size: 24rpx;
  155. }
  156. .product-item-tag {
  157. width: 100%;
  158. color: #A7A7A7;
  159. font-size: 24rpx;
  160. }
  161. .product-item-msg {
  162. width: 100%;
  163. color: #F2501A;
  164. font-size: 20rpx;
  165. }
  166. .product-row-right {
  167. display: flex;
  168. align-items: center;
  169. font-size: 24rpx;
  170. color: #202020;
  171. }
  172. .product-row-right image {
  173. margin-left: 20rpx;
  174. width: 14rpx;
  175. }
  176. .product-row-left {
  177. display: flex;
  178. align-items: center;
  179. }
  180. .product-row-label {
  181. color: #202020;
  182. font-size: 24rpx;
  183. margin-right: 34rpx;
  184. }
  185. .product-row-msg {
  186. color: #A7A7A7;
  187. font-size: 24rpx;
  188. }
  189. .product-bottom {
  190. width: 100%;
  191. display: flex;
  192. flex-direction: column;
  193. margin-top: 80rpx;
  194. }
  195. .product-row-price {
  196. color: #F2501A;
  197. font-size: 24rpx;
  198. }
  199. .radio-wrap {
  200. width: 100%;
  201. display: flex;
  202. flex-direction: column;
  203. background-color: #fff;
  204. }
  205. .radio-row {
  206. width: 100%;
  207. display: flex;
  208. justify-content: space-between;
  209. align-items: center;
  210. margin-bottom: 38rpx;
  211. }
  212. .radio-row:last-child {
  213. margin-bottom: 0;
  214. }
  215. .leftsidebar {
  216. display: flex;
  217. align-items: center;
  218. color: #333333;
  219. font-size: 26rpx;
  220. }
  221. .type-img {
  222. width: 40rpx;
  223. height: 40rpx;
  224. margin-right: 26rpx;
  225. }
  226. .circle-img {
  227. width: 38rpx;
  228. height: 38rpx;
  229. }
  230. .footer {
  231. width: 100%;
  232. height: 100rpx;
  233. display: flex;
  234. align-items: center;
  235. justify-content: flex-end;
  236. background-color: #F8F9FC;
  237. position: fixed;
  238. bottom: 0;
  239. left: 0;
  240. z-index: 999;
  241. padding: 0 24rpx;
  242. box-sizing: border-box;
  243. }
  244. .footer-sidebar {
  245. flex: 1;
  246. display: flex;
  247. flex-direction: column;
  248. align-items: flex-end;
  249. }
  250. .footer-row {
  251. color: #A7A7A7;
  252. font-size: 26rpx;
  253. }
  254. .total-label {
  255. color: #202020;
  256. font-size: 28rpx;
  257. margin-left: 22rpx;
  258. }
  259. .total-money {
  260. color: #F2501A;
  261. font-size: 24rpx;
  262. }
  263. .total-money text {
  264. font-size: 34rpx;
  265. }
  266. .footer-sidebar-msg {
  267. color: #202020;
  268. font-size: 22rpx;
  269. }
  270. .footer-btn {
  271. width: 180rpx;
  272. height: 60rpx;
  273. line-height: 60rpx;
  274. display: flex;
  275. justify-content: center;
  276. align-items: center;
  277. border-radius: 100rpx;
  278. background-color: #F2501A;
  279. color: #F8F8F8;
  280. font-size: 24rpx;
  281. margin-left: 26rpx;
  282. }
  283. .total-price-row {
  284. width: 100%;
  285. display: flex;
  286. justify-content: space-between;
  287. align-items: center;
  288. margin-bottom: 20rpx;
  289. }
  290. .total-price-row-left {
  291. color: #202020;
  292. font-size: 26rpx;
  293. }
  294. .total-price-row-left text {
  295. color: #A7A7A7;
  296. margin-left: 32rpx;
  297. }
  298. .total-price {
  299. color: #202020;
  300. font-size: 26rpx;
  301. }
  302. .details-row-between {
  303. width: 100%;
  304. display: flex;
  305. justify-content: space-between;
  306. align-items: center;
  307. margin-bottom: 20rpx;
  308. }
  309. .details-row-between:last-child {
  310. margin-bottom: ;
  311. }
  312. .details-row-left {
  313. display: flex;
  314. align-items: center;
  315. color: #202020;
  316. font-size: 26rpx;
  317. }
  318. .details-row-left image {
  319. width: 40rpx;
  320. height: 40rpx;
  321. margin-right: 28rpx;
  322. }
  323. .details-row-right {
  324. display: flex;
  325. align-items: center;
  326. color: #F2501A;
  327. font-size: 26rpx;
  328. }
  329. .details-row-right image {
  330. width: 14rpx;
  331. margin-left: 18rpx;
  332. }
  333. .details-bottom-row {
  334. width: 100%;
  335. display: flex;
  336. justify-content: space-between;
  337. align-items: center;
  338. font-size: 26rpx;
  339. color: #202020;
  340. }
  341. .border-img {
  342. width: 100%;
  343. }
  344. .product-item {
  345. width: 100%;
  346. background: #FFFFFF;
  347. border-radius: 16rpx;
  348. display: flex;
  349. flex-direction: column;
  350. padding: 24rpx 24rpx 20rpx;
  351. box-sizing: border-box;
  352. margin-bottom: 22rpx;
  353. }
  354. .time-row {
  355. width: 100%;
  356. color: #A7A7A7;
  357. font-size: 24rpx;
  358. }
  359. .product-content {
  360. width: 100%;
  361. display: flex;
  362. align-items: center;
  363. margin-bottom: 10rpx;
  364. }
  365. .product-img {
  366. width: 188rpx;
  367. height: 188rpx;
  368. border-radius: 12rpx;
  369. margin-right: 20rpx;
  370. }
  371. .left-row{
  372. display: flex;
  373. align-items: center;
  374. }
  375. .child {
  376. width: 28rpx;
  377. height: 28rpx;
  378. background-color: #E63D23;
  379. border-radius: 6rpx;
  380. position: relative;
  381. margin-left: 6rpx;
  382. z-index: 9999;
  383. }
  384. .child::before {
  385. content: "";
  386. position: absolute;
  387. width: 24rpx;
  388. height: 24rpx;
  389. left: 50%;
  390. top: 50%;
  391. background-color: #FFFFFF;
  392. transform: translate(-50%, -50%);
  393. }
  394. .child::after {
  395. content: "";
  396. position: absolute;
  397. width: 20rpx;
  398. height: 20rpx;
  399. left: 50%;
  400. top: 50%;
  401. background-color: #F54D36;
  402. transform: translate(-50%, -50%);
  403. }