orderDetail.wxss 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. /* pages/goods/orderDetail/orderDetail.wxss */
  2. .item-radius {
  3. background: #fff;
  4. /* opacity: 0.8; */
  5. border-radius: 24rpx;
  6. margin-left: 20rpx;
  7. margin-right: 20rpx;
  8. /* #f878af 248 120 175 46 */
  9. /* box-shadow: 4rpx 24rpx 50rpx -8rpx rgba(255,119,176,0.55); */
  10. }
  11. .order-top {
  12. /* background: #fff; */
  13. padding: 30rpx 0;
  14. }
  15. .order-top image {
  16. width: 200rpx;
  17. height: 156rpx;
  18. margin-bottom: 6rpx;
  19. }
  20. .order-top text {
  21. font-size: 28rpx;
  22. }
  23. .order-top .state {
  24. font-size: 36rpx;
  25. font-family: PingFangSC-Medium;
  26. }
  27. .margin {
  28. /* margin: 20rpx 0; */
  29. background: #fff;
  30. margin-top: 20rpx;
  31. margin-bottom: 20rpx;
  32. }
  33. .item .state {
  34. color: #FA7D22;
  35. margin-left: 20rpx;
  36. }
  37. .item-top {
  38. height: 90rpx;
  39. padding: 0 24rpx;
  40. }
  41. .item-top text {
  42. font-size: 28rpx;
  43. font-family: PingFangSC-Semibold, PingFang SC;
  44. }
  45. .item-content {
  46. max-height: 600rpx;
  47. overflow-y: scroll;
  48. /* border-bottom: 1rpx solid rgba(175, 175, 175, 0.1); */
  49. position: relative;
  50. padding: 10rpx 0rpx 30rpx;
  51. margin: 0 24rpx;
  52. }
  53. .item-content .img {
  54. width: 168rpx;
  55. height: 168rpx;
  56. margin-right: 20rpx;
  57. background: #FFFFFF;
  58. box-shadow: 0px 4rpx 8rpx 0px rgba(0, 0, 0, 0.1);
  59. border-radius: 16rpx;
  60. }
  61. .item-content .icon {
  62. width: 136rpx;
  63. height: 92rpx;
  64. position: absolute;
  65. left: 46rpx;
  66. top: 160rpx;
  67. }
  68. .item-content .content {
  69. justify-content: space-between;
  70. overflow: hidden;
  71. flex: 1;
  72. }
  73. .item-content .content .content-text-box text {
  74. font-size: 28rpx;
  75. }
  76. .good-name {
  77. font-size: 28rpx;
  78. font-family: PingFangSC-Regular, PingFang SC;
  79. font-weight: 400;
  80. color: #333333;
  81. line-height: 40rpx;
  82. }
  83. .content-num {
  84. display: flex;
  85. justify-content: space-between;
  86. }
  87. .content-num .countDown{
  88. font-size: 28rpx;
  89. font-weight: 400;
  90. color: #fa7d22;
  91. display: flex;
  92. }
  93. .content-num .num{
  94. flex: 1;
  95. text-align: end;
  96. }
  97. .van-count-down{
  98. color: #fa7d22 !important;
  99. }
  100. .item-content .time {
  101. background: linear-gradient(270deg, rgba(255, 175, 216, 0) 0%, rgba(255, 119, 176, 0.49) 100%);
  102. border-radius: 22rpx;
  103. font-size: 26rpx;
  104. padding: 2rpx 10rpx;
  105. box-sizing: border-box;
  106. }
  107. .item-btn {
  108. height: 84rpx;
  109. padding-top: 16rpx;
  110. padding-left: 24rpx;
  111. justify-content: space-between;
  112. }
  113. .align-left {
  114. font-size: 28rpx;
  115. font-family: PingFangSC-Regular, PingFang SC;
  116. font-weight: 400;
  117. color: #999999;
  118. }
  119. .item-btn .product-refund-btn {
  120. width: 192rpx;
  121. height: 72rpx;
  122. font-size: 28rpx;
  123. box-sizing: border-box;
  124. margin-right: 24rpx;
  125. border-radius: 36rpx;
  126. border: 2rpx solid #E1E1E1;
  127. }
  128. .order-info {
  129. padding: 20rpx 24rpx 0rpx;
  130. }
  131. .order-info text {
  132. font-size: 28rpx;
  133. color: #999999;
  134. height: 40rpx;
  135. line-height: 40rpx;
  136. margin-bottom: 20rpx;
  137. }
  138. .pay-time .time{
  139. font-size: 28rpx;
  140. color: #999999;
  141. height: 40rpx;
  142. line-height: 40rpx;
  143. margin-bottom: 20rpx;
  144. }
  145. .order-info .num {
  146. justify-content: flex-start
  147. }
  148. .order-info .num .copy {
  149. width: 72rpx;
  150. height: 40rpx;
  151. font-size: 20rpx;
  152. font-family: PingFangSC-Regular, PingFang SC;
  153. font-weight: 400;
  154. color: #999999;
  155. line-height: 40rpx;
  156. background: #F5F5F5;
  157. border-radius: 8rpx;
  158. text-align: center;
  159. }
  160. .order-sum .top {
  161. padding: 30rpx;
  162. border-bottom: 1rpx solid rgba(175, 175, 175, 0.1);
  163. /* border-bottom: 2rpx solid rgba(0,0,0,0.10); */
  164. }
  165. .order-sum .top .text {
  166. margin-bottom: 12rpx;
  167. }
  168. .order-sum .top .text:last-child {
  169. margin: 0;
  170. }
  171. .order-sum .top .coupon-text {
  172. height: 34rpx;
  173. font-size: 20rpx;
  174. box-sizing: border-box;
  175. color: #FF3007;
  176. background: #FFEFEB;
  177. border-radius: 8rpx;
  178. border: 2rpx solid #FF3007;
  179. padding: 4rpx 8rpx;
  180. /* width: 128rpx;
  181. height: 34rpx;
  182. font-size: 20rpx;
  183. color: #FF6322;
  184. border: 2rpx solid #FF6322;
  185. box-sizing: border-box; */
  186. }
  187. .order-sum .bottom {
  188. height: 84rpx;
  189. padding-top: 16rpx;
  190. justify-content: flex-end;
  191. }
  192. .coupon-code image {
  193. width: 400rpx;
  194. height: 400rpx;
  195. background-color: #efefef;
  196. }
  197. .coupon-code .qrcode {
  198. width: 400rpx;
  199. height: 400rpx;
  200. background-color: #efefef;
  201. }
  202. .buy {
  203. height: 170rpx;
  204. /* padding: 0 30rpx; */
  205. background: #fff;
  206. position: fixed;
  207. bottom: 0;
  208. width: 100%;
  209. box-sizing: border-box;
  210. justify-content: flex-end;
  211. }
  212. .buy .btn {
  213. width: 192rpx;
  214. height: 72rpx;
  215. border-radius: 36rpx;
  216. font-size: 28rpx;
  217. box-sizing: border-box;
  218. margin-right: 30rpx;
  219. }
  220. .buy .cancel-btn {
  221. border: 2rpx solid #E1E1E1;
  222. color: #333;
  223. }
  224. .buy .use-btn {
  225. background: #FA7D22;
  226. color: #FFFFFF;
  227. }
  228. /* =============================================================================== */
  229. .coupon-popup {
  230. height: 72vh;
  231. }
  232. .payType {
  233. height: 690rpx;
  234. }
  235. .coupon-popup .top {
  236. justify-content: center;
  237. padding: 0 48rpx;
  238. height: 112rpx;
  239. }
  240. .need-show-line {
  241. border-bottom: 2rpx solid #eee;
  242. }
  243. .coupon-popup .top text {
  244. font-size: 36rpx;
  245. }
  246. .coupon-popup .top .close-img {
  247. width: 56rpx;
  248. height: 56rpx;
  249. position: absolute;
  250. top: 28rpx;
  251. right: 32rpx;
  252. }
  253. .coupon-popup .list {
  254. height: 53vh;
  255. padding: 14rpx 30rpx;
  256. box-sizing: border-box;
  257. /* overflow-y: scroll; */
  258. }
  259. .coupon-popup .list .item {
  260. padding: 14rpx 0;
  261. height: 172rpx;
  262. /* border-bottom: 2rpx solid #eee; */
  263. }
  264. .coupon-popup .list .radio image {
  265. width: 48rpx;
  266. height: 48rpx;
  267. }
  268. .coupon-popup .list .coupon-item {
  269. display: block;
  270. margin-top: 10rpx;
  271. }
  272. .coupon-popup .item-left {
  273. width: 212rpx;
  274. height: 100%;
  275. font-family: PingFangSC-Semibold;
  276. color: #FFFFFF;
  277. font-size: 32rpx;
  278. border-top-left-radius: 16rpx;
  279. border-bottom-left-radius: 16rpx;
  280. background-image: radial-gradient(circle at 0px 50%, #fff 15rpx, #F5849F 15rpx);
  281. }
  282. .coupon-popup .item-left text {
  283. font-size: 36rpx;
  284. color: #fff;
  285. font-family: PingFangSC-Semibold, PingFang SC;
  286. }
  287. .coupon-popup .item-right {
  288. /* justify-content: center;
  289. align-items: flex-start; */
  290. padding: 0 30rpx;
  291. border-top-right-radius: 16rpx;
  292. border-bottom-right-radius: 16rpx;
  293. box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.13);
  294. }
  295. .coupon-popup .item-right text {
  296. color: #000;
  297. }
  298. .coupon-popup-btm {
  299. height: 170rpx;
  300. position: fixed;
  301. width: 100%;
  302. left: 0;
  303. bottom: 0;
  304. background: #FFFFFF;
  305. }
  306. .coupon-popup-btm-btn {
  307. width: 100%;
  308. height: 84rpx;
  309. font-size: 32rpx;
  310. color: #FFFFFF;
  311. margin: 0 40rpx;
  312. background: #FA7D22;
  313. border-radius: 42rpx;
  314. font-family: PingFang-SC-Medium, PingFang-SC;
  315. }
  316. .btm-text {
  317. margin: 42rpx 0 120rpx;
  318. }
  319. .item-products-content::-webkit-scrollbar,
  320. .scroll-x::-webkit-scrollbar {
  321. display: none;
  322. /* Chrome Safari */
  323. }
  324. .moneyShow {
  325. width: 100%;
  326. text-align: center;
  327. font-weight: 500;
  328. font-size: 56rpx;
  329. color: #FF3007;
  330. height: 100rpx;
  331. line-height: 100rpx;
  332. margin-bottom: 100rpx;
  333. }
  334. .select-pay-methon {
  335. margin-bottom: 60rpx;
  336. width: 100%;
  337. display: flex;
  338. align-items: center;
  339. }
  340. .pay-img {
  341. width: 48rpx;
  342. height: 48rpx;
  343. margin-left: 30rpx;
  344. }
  345. .pay-title {
  346. margin-left: 20rpx;
  347. font-size: 32rpx;
  348. font-weight: 400;
  349. color: #333333;
  350. flex: 1;
  351. text-align: left;
  352. }
  353. .pay-money {
  354. margin-right: 36rpx;
  355. font-size: 36rpx;
  356. font-weight: 500;
  357. color: #333333;
  358. }
  359. .pay-money text {
  360. font-size: 24rpx;
  361. }
  362. .select-activity {
  363. width: 48rpx;
  364. height: 48rpx;
  365. margin-right: 30rpx;
  366. }
  367. .moneyShow text {
  368. font-size: 28rpx;
  369. color: #FF3007;
  370. }
  371. .coup-box-title{
  372. font-size: 24rpx;
  373. color: #FA7D22;
  374. margin-left: 38rpx;
  375. }