order-details.css 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. .bg {
  2. width: 100%;
  3. height: 360rpx;
  4. position: absolute;
  5. top: 0;
  6. left: 0;
  7. background: linear-gradient(90deg, #F58711, #E63D23);
  8. }
  9. .container-wrap {
  10. width: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. padding: 30rpx 30rpx 140rpx;
  15. box-sizing: border-box;
  16. position: relative;
  17. top: calc(98rpx + var(--status-bar-height))
  18. }
  19. .address-box {
  20. width: 100%;
  21. height: 200rpx;
  22. background-color: #fff;
  23. display: flex;
  24. align-items: center;
  25. border-radius: 16rpx;
  26. padding: 0 24rpx;
  27. box-sizing: border-box;
  28. overflow: hidden;
  29. margin-bottom: 45rpx;
  30. }
  31. .location-icon {
  32. width: 80rpx;
  33. margin-right: 24rpx;
  34. }
  35. .address-sidebar {
  36. flex: 1;
  37. display: flex;
  38. align-items: center;
  39. }
  40. .address-column {
  41. flex: 1;
  42. display: flex;
  43. flex-direction: column;
  44. }
  45. .back-icon {
  46. width: 16rpx;
  47. margin-left: 20rpx;
  48. }
  49. .people-name {
  50. font-size: 34rpx;
  51. color: #303133;
  52. }
  53. .people-name text {
  54. font-size: 30rpx;
  55. color: #A7A7A7;
  56. margin-left: 20rpx;
  57. }
  58. .address-msg {
  59. width: 100%;
  60. display: -webkit-box;
  61. -webkit-line-clamp: 2;
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. -webkit-box-orient: vertical;
  65. font-size: 30rpx;
  66. color: #A7A7A7;
  67. margin-top: 10rpx;
  68. }
  69. .edit-btn {
  70. width: 168rpx;
  71. height: 72rpx;
  72. line-height: 72rpx;
  73. border: 1px solid #9D9D9D;
  74. background-color: #fff;
  75. border-radius: 100rpx;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. color: #A7A7A7;
  80. font-size: 28rpx;
  81. margin-left: 30rpx;
  82. }
  83. .padding-box {
  84. width: 100%;
  85. display: flex;
  86. flex-direction: column;
  87. padding: 20rpx 0;
  88. }
  89. .order-msg-box {
  90. width: 100%;
  91. background-color: #fff;
  92. border-radius: 16rpx;
  93. padding: 18rpx 24rpx 36rpx;
  94. box-sizing: border-box;
  95. margin-bottom: 20rpx;
  96. }
  97. .order-msg-label {
  98. width: 100%;
  99. color: #111111;
  100. font-size: 30rpx;
  101. font-weight: bold;
  102. margin-bottom: 20rpx;
  103. }
  104. .order-msg-row {
  105. width: 100%;
  106. display: flex;
  107. align-items: flex-start;
  108. margin-bottom: 22rpx;
  109. color: #202020;
  110. font-size: 26rpx;
  111. line-height: 38rpx;
  112. }
  113. .order-msg-row:last-child {
  114. margin-bottom: 0;
  115. }
  116. .order-msg-name {
  117. width: 22%;
  118. }
  119. .order-msg-msg {
  120. flex: 1;
  121. display: block;
  122. }
  123. .footer {
  124. width: 100%;
  125. height: 140rpx;
  126. display: flex;
  127. justify-content: flex-end;
  128. align-items: center;
  129. position: fixed;
  130. bottom: 0;
  131. left: 0;
  132. z-index: 999;
  133. background-color: #fff;
  134. padding: 0 24rpx;
  135. box-sizing: border-box;
  136. border-top: 1px solid #DCDCDC;
  137. }
  138. .footer button {
  139. width: 168rpx;
  140. height: 72rpx;
  141. line-height: 72rpx;
  142. border-radius: 100rpx;
  143. background-color: #fff;
  144. display: flex;
  145. justify-content: center;
  146. align-items: center;
  147. box-sizing: border-box;
  148. border: 1px solid #9D9D9D;
  149. color: #777777;
  150. font-size: 24rpx;
  151. margin-right: 14rpx;
  152. }
  153. .footer button:last-child {
  154. margin-right: 0;
  155. }
  156. .item-content {
  157. width: 100%;
  158. display: flex;
  159. align-items: center;
  160. margin-bottom: 20rpx;
  161. }
  162. .product-img {
  163. width: 186rpx;
  164. height: 186rpx;
  165. border-radius: 12rpx;
  166. margin-right: 28rpx;
  167. }
  168. .item-content-sidebar {
  169. flex: 1;
  170. height: 180rpx;
  171. display: flex;
  172. flex-direction: column;
  173. justify-content: space-between;
  174. }
  175. .product-item-row-between {
  176. width: 100%;
  177. display: flex;
  178. justify-content: space-between;
  179. align-items: center;
  180. }
  181. .product-item-name {
  182. width: 71%;
  183. display: -webkit-box;
  184. -webkit-line-clamp: 2;
  185. overflow: hidden;
  186. text-overflow: ellipsis;
  187. -webkit-box-orient: vertical;
  188. color: #202020;
  189. font-size: 26rpx;
  190. }
  191. .row-end {
  192. display: flex;
  193. flex-direction: column;
  194. align-items: flex-end;
  195. }
  196. .product-item-price {
  197. color: #202020;
  198. font-size: 26rpx;
  199. }
  200. .product-item-num {
  201. color: #A7A7A7;
  202. font-size: 20rpx;
  203. }
  204. .product-item-num text {
  205. font-size: 24rpx;
  206. }
  207. .product-item-tag {
  208. width: 100%;
  209. display: flex;
  210. justify-content: space-between;
  211. align-items: center;
  212. color: #A7A7A7;
  213. font-size: 24rpx;
  214. }
  215. .product-item-msg {
  216. width: 100%;
  217. color: #F2501A;
  218. font-size: 20rpx;
  219. }
  220. .status-msg {
  221. color: #FFBD0B;
  222. font-size: 30rpx;
  223. }
  224. .item {
  225. width: 100%;
  226. display: flex;
  227. flex-direction: column;
  228. padding: 0 24rpx;
  229. box-sizing: border-box;
  230. background-color: #fff;
  231. border-radius: 16rpx;
  232. margin-bottom: 20rpx;
  233. }
  234. .link-box{
  235. width: 100%;
  236. display: flex;
  237. flex-direction: column;
  238. }
  239. .item-top {
  240. width: 100%;
  241. height: 90rpx;
  242. display: flex;
  243. justify-content: space-between;
  244. align-items: center;
  245. }
  246. .item-top text:first-child {
  247. color: #111111;
  248. font-size: 30rpx;
  249. font-weight: bold;
  250. }
  251. .item-bottom {
  252. width: 100%;
  253. height: 120rpx;
  254. display: flex;
  255. justify-content: flex-end;
  256. align-items: center;
  257. margin-top: 20rpx;
  258. }
  259. .item-bottom button {
  260. width: 168rpx;
  261. height: 72rpx;
  262. line-height: 72rpx;
  263. border-radius: 100rpx;
  264. border: 1px solid #9D9D9D;
  265. background-color: #fff;
  266. display: flex;
  267. justify-content: center;
  268. align-items: center;
  269. box-sizing: border-box;
  270. color: #202020;
  271. font-size: 24rpx;
  272. margin-right: 14rpx;
  273. }
  274. .item-bottom button:last-child {
  275. margin-right: 0;
  276. }
  277. .border-red {
  278. border: 1px solid #E63D23 !important;
  279. color: #F2501A !important;
  280. }
  281. .border-gray {
  282. border: 1px solid #9D9D9D !important;
  283. color: #777777 !important;
  284. }
  285. .price-row {
  286. width: 100%;
  287. text-align: right;
  288. color: #A7A7A7;
  289. font-size: 24rpx;
  290. }
  291. .big-font {
  292. font-size: 38rpx;
  293. font-weight: bold;
  294. }
  295. .big-font-black {
  296. font-size: 38rpx;
  297. color: #202020;
  298. font-weight: bold;
  299. }
  300. .margin {
  301. margin-right: 10rpx;
  302. }
  303. .margin:last-child {
  304. margin: 0;
  305. }
  306. .mask {
  307. position: fixed;
  308. left: 0;
  309. right: 0;
  310. top: 0;
  311. height: 100vh;
  312. background-color: rgba(0, 0, 0, 0.38);
  313. z-index: 999999999;
  314. }
  315. .window {
  316. position: fixed;
  317. width: 100%;
  318. max-height: 1200rpx;
  319. bottom: 0;
  320. left: 0;
  321. overflow: hidden;
  322. background-color: #fff;
  323. z-index: 9999999999;
  324. display: flex;
  325. flex-direction: column;
  326. align-items: center;
  327. border-radius: 40rpx 40rpx 0 0;
  328. padding: 0 24rpx;
  329. box-sizing: border-box;
  330. }
  331. .window-bottom {
  332. width: 100%;
  333. height: 180rpx;
  334. display: flex;
  335. justify-content: center;
  336. align-items: center;
  337. padding: 0 8rpx;
  338. box-sizing: border-box;
  339. }
  340. .window-bottom button {
  341. color: #FFFFFF;
  342. font-size: 26rpx;
  343. width: 100%;
  344. height: 80rpx;
  345. line-height: 80rpx;
  346. background-color: #F2501A;
  347. display: flex;
  348. justify-content: center;
  349. align-items: center;
  350. }
  351. .window-bottom button:first-child {
  352. border-radius: 100rpx 0 0 100rpx;
  353. background-color: #F28A1A;
  354. }
  355. .window-bottom button:last-child {
  356. border-radius: 0 100rpx 100rpx 0;
  357. }
  358. .window-label {
  359. width: 100%;
  360. height: 115rpx;
  361. display: flex;
  362. justify-content: center;
  363. align-items: center;
  364. font-size: 32rpx;
  365. color: #202020;
  366. }
  367. .window-select-box {
  368. width: 100%;
  369. /* height: calc(100% - 295rpx); */
  370. box-sizing: border-box;
  371. }
  372. .prompt-msg {
  373. width: 100%;
  374. background-color: #F6F6F6;
  375. color: #202020;
  376. font-size: 22rpx;
  377. padding: 0 6rpx;
  378. box-sizing: border-box;
  379. min-height: 68rpx;
  380. display: flex;
  381. align-items: center;
  382. }
  383. .radio-wrap {
  384. width: 100%;
  385. }
  386. .radio-row {
  387. width: 100%;
  388. display: flex;
  389. justify-content: space-between;
  390. align-items: center;
  391. margin-bottom: 60rpx;
  392. }
  393. .radio-row:last-child {
  394. margin-bottom: 0;
  395. }
  396. .leftsidebar {
  397. display: flex;
  398. align-items: center;
  399. color: #202020;
  400. font-size: 26rpx;
  401. }
  402. .circle-img {
  403. width: 40rpx;
  404. height: 40rpx;
  405. }
  406. .choose-title {
  407. width: 100%;
  408. color: #777777;
  409. font-size: 26rpx;
  410. padding: 36rpx 0 50rpx;
  411. }
  412. .real-payment-pack-up {
  413. width: 100%;
  414. display: flex;
  415. justify-content: flex-end;
  416. align-items: center;
  417. color: #202020;
  418. font-size: 24rpx;
  419. padding-bottom: 36rpx;
  420. }
  421. .sanjiao {
  422. width: 20rpx;
  423. height: 12rpx;
  424. margin-left: 4rpx;
  425. }
  426. .red {
  427. color: #F2501A;
  428. }
  429. .msg-box {
  430. width: 100%;
  431. display: flex;
  432. flex-direction: column;
  433. margin: 10rpx 0 20rpx;
  434. }
  435. .msg-row-between {
  436. width: 100%;
  437. display: flex;
  438. justify-content: space-between;
  439. align-items: center;
  440. margin-bottom: 35rpx;
  441. }
  442. .msg-row-between:last-child {
  443. margin-bottom: 0;
  444. }
  445. .msg-row-left {
  446. display: flex;
  447. align-items: center;
  448. color: #A7A7A7;
  449. font-size: 24rpx;
  450. }
  451. .msg-row-left text {
  452. width: 140rpx;
  453. display: block;
  454. color: #202020;
  455. }
  456. .msg-row-right {
  457. color: #A7A7A7;
  458. font-size: 24rpx;
  459. }
  460. .msg-row-right.orange {
  461. color: #F2501A;
  462. }