order-details.css 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  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: center;
  108. margin-bottom: 22rpx;
  109. color: #202020;
  110. font-size: 26rpx;
  111. }
  112. .order-msg-row:last-child {
  113. margin-bottom: 0;
  114. }
  115. .order-msg-name {
  116. width: 22%;
  117. }
  118. .footer {
  119. width: 100%;
  120. height: 140rpx;
  121. display: flex;
  122. justify-content: flex-end;
  123. align-items: center;
  124. position: fixed;
  125. bottom: 0;
  126. left: 0;
  127. z-index: 999;
  128. background-color: #fff;
  129. padding: 0 24rpx;
  130. box-sizing: border-box;
  131. border-top: 1px solid #DCDCDC;
  132. }
  133. .footer button {
  134. width: 168rpx;
  135. height: 72rpx;
  136. line-height: 72rpx;
  137. border-radius: 100rpx;
  138. background-color: #fff;
  139. display: flex;
  140. justify-content: center;
  141. align-items: center;
  142. box-sizing: border-box;
  143. border: 1px solid #9D9D9D;
  144. color: #777777;
  145. font-size: 24rpx;
  146. margin-right: 14rpx;
  147. }
  148. .footer button:last-child {
  149. margin-right: 0;
  150. }
  151. .item-content {
  152. width: 100%;
  153. display: flex;
  154. align-items: center;
  155. margin-bottom: 20rpx;
  156. }
  157. .product-img {
  158. width: 186rpx;
  159. height: 186rpx;
  160. border-radius: 12rpx;
  161. margin-right: 28rpx;
  162. }
  163. .item-content-sidebar {
  164. flex: 1;
  165. height: 180rpx;
  166. display: flex;
  167. flex-direction: column;
  168. justify-content: space-between;
  169. }
  170. .product-item-row-between {
  171. width: 100%;
  172. display: flex;
  173. justify-content: space-between;
  174. align-items: center;
  175. }
  176. .product-item-name {
  177. width: 71%;
  178. display: -webkit-box;
  179. -webkit-line-clamp: 2;
  180. overflow: hidden;
  181. text-overflow: ellipsis;
  182. -webkit-box-orient: vertical;
  183. color: #202020;
  184. font-size: 26rpx;
  185. }
  186. .row-end {
  187. display: flex;
  188. flex-direction: column;
  189. align-items: flex-end;
  190. }
  191. .product-item-price {
  192. color: #202020;
  193. font-size: 26rpx;
  194. }
  195. .product-item-num {
  196. color: #A7A7A7;
  197. font-size: 20rpx;
  198. }
  199. .product-item-num text {
  200. font-size: 24rpx;
  201. }
  202. .product-item-tag {
  203. width: 100%;
  204. display: flex;
  205. justify-content: space-between;
  206. align-items: center;
  207. color: #A7A7A7;
  208. font-size: 24rpx;
  209. }
  210. .product-item-msg {
  211. width: 100%;
  212. color: #F2501A;
  213. font-size: 20rpx;
  214. }
  215. .status-msg {
  216. color: #FFBD0B;
  217. font-size: 30rpx;
  218. }
  219. .item {
  220. width: 100%;
  221. display: flex;
  222. flex-direction: column;
  223. padding: 0 24rpx;
  224. box-sizing: border-box;
  225. background-color: #fff;
  226. border-radius: 16rpx;
  227. margin-bottom: 20rpx;
  228. }
  229. .item-top {
  230. width: 100%;
  231. height: 90rpx;
  232. display: flex;
  233. justify-content: space-between;
  234. align-items: center;
  235. }
  236. .item-top text:first-child {
  237. color: #111111;
  238. font-size: 30rpx;
  239. font-weight: bold;
  240. }
  241. .item-bottom {
  242. width: 100%;
  243. height: 120rpx;
  244. display: flex;
  245. justify-content: flex-end;
  246. align-items: center;
  247. margin-top: 20rpx;
  248. }
  249. .item-bottom button {
  250. width: 168rpx;
  251. height: 72rpx;
  252. line-height: 72rpx;
  253. border-radius: 100rpx;
  254. border: 1px solid #9D9D9D;
  255. background-color: #fff;
  256. display: flex;
  257. justify-content: center;
  258. align-items: center;
  259. box-sizing: border-box;
  260. color: #202020;
  261. font-size: 24rpx;
  262. margin-right: 14rpx;
  263. }
  264. .item-bottom button:last-child {
  265. margin-right: 0;
  266. }
  267. .border-red {
  268. border: 1px solid #E63D23 !important;
  269. color: #F2501A !important;
  270. }
  271. .border-gray {
  272. border: 1px solid #9D9D9D !important;
  273. color: #777777 !important;
  274. }
  275. .price-row {
  276. width: 100%;
  277. text-align: right;
  278. color: #A7A7A7;
  279. font-size: 24rpx;
  280. }
  281. .big-font {
  282. font-size: 38rpx;
  283. font-weight: bold;
  284. }
  285. .big-font-black {
  286. font-size: 38rpx;
  287. color: #202020;
  288. font-weight: bold;
  289. }
  290. .margin {
  291. margin-right: 10rpx;
  292. }
  293. .margin:last-child {
  294. margin: 0;
  295. }