orderList.wxss 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. /* orderList.wxss */
  2. page{
  3. background:#f9f9f9;
  4. }
  5. .header_wrap{
  6. width: 100%;
  7. height: 98rpx;
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. z-index: 1000;
  12. background-color: #fff;
  13. }
  14. .header{
  15. display: flex;
  16. flex-flow: row;
  17. height: 98rpx;
  18. font-size: 30rpx;
  19. color: #768187;
  20. background-color: #fff;
  21. }
  22. .header_each{
  23. display: inline-block;
  24. flex: 1;
  25. width: 116rpx;
  26. height: 96rpx;
  27. line-height: 96rpx;
  28. color: #768187;
  29. text-align: center;
  30. }
  31. .header_each_active{
  32. color: #b4a078;
  33. border-bottom:2rpx solid #b4a078;
  34. }
  35. .list_wrap{
  36. padding: 100rpx 0 0 0;
  37. }
  38. .each_order{
  39. padding:0 20rpx 40rpx 30rpx;
  40. height: auto;
  41. background-color: #fff;
  42. position: relative;
  43. margin-bottom: 15rpx;
  44. }
  45. .order_num{
  46. font-size: 24rpx;
  47. line-height: 86rpx;
  48. color: #646464;
  49. padding-top: 13px;
  50. border-bottom: 1px solid #dedede;
  51. }
  52. /* 状态按钮 */
  53. .confirme_btn{
  54. width: 110rpx;
  55. height: 40rpx;
  56. font-size: 24rpx;
  57. line-height: 40rpx;
  58. color: #fff;
  59. text-align: center;
  60. border-radius: 20rpx;
  61. position: absolute;
  62. top:46rpx;
  63. right:24rpx;
  64. }
  65. /* 待定制 */
  66. .btn_green{
  67. color: #b4a078;
  68. border:1px solid #b4a078;
  69. }
  70. /* 待付款 */
  71. .btn_red{
  72. color: #b4a078;
  73. border:1px solid #b4a078;
  74. }
  75. /* 待发货 */
  76. .btn_yellow{
  77. color: #cc9368;
  78. border:1px solid #cc9368;
  79. }
  80. /* 已发货 */
  81. .btn_purple{
  82. color: #ce976e;
  83. border:1px solid #ce976e;
  84. }
  85. /* 已完成 */
  86. .btn_blue{
  87. color: #232323;
  88. border:1px solid #232323;
  89. }
  90. /* 商品信息 */
  91. .goods_img{
  92. float: left;
  93. display: block;
  94. width: 200rpx;
  95. height: 200rpx;
  96. margin:0 36rpx 0 0;
  97. }
  98. .goods_cont{
  99. float: left;
  100. width: 450rpx;
  101. padding-top:25rpx;
  102. }
  103. .goods_name{
  104. height: 68rpx;
  105. font-size: 24rpx;
  106. font-weight: bold;
  107. line-height: 34rpx;
  108. color: #333;
  109. text-overflow: ellipsis;
  110. overflow: hidden;
  111. display: -webkit-box;
  112. -webkit-line-clamp: 2;
  113. -webkit-box-orient: vertical;
  114. padding:20rpx 0 20rpx 0;
  115. }
  116. .goods_style{
  117. float: left;
  118. font-size: 24rpx;
  119. line-height: 32rpx;
  120. color: #646464;
  121. }
  122. .goods_num,.goods_price{
  123. font-size: 24rpx;
  124. color:#646464;
  125. text-overflow: ellipsis;
  126. overflow: hidden;
  127. white-space: nowrap;
  128. }
  129. .goods_price{
  130. color: #ff8400;
  131. }
  132. .goods_price text{
  133. font-size: 36rpx;
  134. font-weight: bold;
  135. font-style: italic;
  136. }
  137. .goods_style{
  138. width: 340rpx;
  139. }
  140. .goods_num{
  141. width: 110rpx;
  142. text-align: right;
  143. }
  144. .goods_price{
  145. width:130rpx;
  146. text-align: right;
  147. padding-right: 10rpx;
  148. }
  149. .infor_content{
  150. background-color: #fff;
  151. margin-top:-14rpx;
  152. }
  153. .each_infor{
  154. width: 90%;
  155. margin-left:5%;
  156. height: 106rpx;
  157. font-size: 28rpx;
  158. line-height: 106rpx;
  159. color: #666;
  160. position: relative;
  161. }
  162. .infor_title{
  163. float: left;
  164. }
  165. .goods_msg{
  166. text-align: right;
  167. line-height: 50rpx;
  168. padding-top: 6rpx;
  169. }
  170. .num_title{
  171. font-size: 24rpx;
  172. color: #646464;
  173. }
  174. .money_title,.money_money{
  175. font-size: 28rpx;
  176. color: #b4a078;
  177. }
  178. .msg{
  179. text-align: right;
  180. font-size: 18rpx;
  181. color: #aaa;
  182. padding-bottom: 26rpx;
  183. }
  184. .order_btn{
  185. float: right;
  186. width: 136rpx;
  187. height: 48rpx;
  188. font-size: 24rpx;
  189. text-align: center;
  190. line-height: 48rpx;
  191. color: #fff;
  192. background-color: #b4a078;
  193. border: 1px solid #b4a078;
  194. margin-right:26rpx;
  195. padding:0;
  196. }
  197. /* 用心送 */
  198. .xinyi{
  199. color:#636363;
  200. border: 1px solid #b5b5b5;
  201. background-color: #fff;
  202. }
  203. .each_goods_infor{
  204. border-bottom:1px solid #dedede;
  205. position: relative;
  206. }
  207. /* 定制预览按钮 */
  208. .yulan_btn{
  209. position: absolute;
  210. top:78rpx;
  211. left: 40rpx;
  212. z-index: 1;
  213. width: 120rpx;
  214. height: 44rpx;
  215. font-size:22rpx;
  216. line-height: 44rpx;
  217. text-align: center;
  218. color:#fff;
  219. background-color: rgba(0,0,0,0.6);
  220. border-radius: 60rpx;
  221. }
  222. /* 定制预览 */
  223. .preview_wrap{
  224. position: fixed;
  225. top: 0;
  226. left: 0;
  227. z-index: 999999;
  228. width: 100%;
  229. height: 100%;
  230. background-color: rgba(0,0,0,1);
  231. }
  232. .banner_swiper{
  233. width: 100%;
  234. height: 100%;
  235. }
  236. .banner{
  237. vertical-align: middle;
  238. }
  239. .preview_img{
  240. width: 100%;
  241. height: 100%;
  242. display: flex;
  243. align-items: center;
  244. }
  245. .preview_wrap image{
  246. width: 100%;
  247. }
  248. /* 倒计时 */
  249. .count_down{
  250. font-size:24rpx;
  251. line-height:44rpx;
  252. color:#646464;
  253. }
  254. /* 定制完成 */
  255. .qrfh_wrap{
  256. width: 100%;
  257. height: 100%;
  258. position: fixed;
  259. top: 0;
  260. left: 0;
  261. z-index: 9999;
  262. background-color: rgba(0,0,0,0.6);
  263. }
  264. .qrfh_content_wrap{
  265. width: 80%;
  266. height: 283rpx;
  267. background-color: #fff;
  268. border-radius: 4px;
  269. position: fixed;
  270. top: 50%;
  271. left: 50%;
  272. margin: -141rpx 0 0 -40%;
  273. }
  274. .qrfh_cont_wrap{
  275. padding: 50rpx 15rpx;
  276. font-size: 32rpx;
  277. line-height: 46rpx;
  278. text-align: center;
  279. color: #999;
  280. }
  281. .qrfh_btn_wrap{
  282. position: absolute;
  283. left:0;
  284. bottom: 0;
  285. }
  286. .qrfh_cancle,.qrfh_sure{
  287. float: left;
  288. width: 50%;
  289. height: 90rpx;
  290. font-size: 40rpx;
  291. line-height: 90rpx;
  292. border-top: 1px solid #ccc;
  293. text-align: center;
  294. background-color: #fff;
  295. border-radius: 0;
  296. box-sizing: border-box;
  297. }
  298. .qrfh_cancle{
  299. color:#222;
  300. border-right: 1px solid #ccc;
  301. }
  302. .qrfh_sure{
  303. color: #b4a078;
  304. }
  305. .qrfh_sure:after,.qrfh_sure:before {
  306. display: none;
  307. border: 0px;
  308. }
  309. /* 拆分订单 */
  310. .break_goods_img{
  311. float:left;
  312. display:block;
  313. width:96px;
  314. height:96px;
  315. margin:0 17px 0 0;
  316. }
  317. .break_order_content{
  318. width: 700rpx;
  319. height: 892rpx;
  320. background-color: #fff;
  321. border-radius: 4px;
  322. position: fixed;
  323. top: 50%;
  324. left: 50%;
  325. margin: -450rpx 0 0 -350rpx;
  326. overflow:hidden;
  327. }
  328. .break_title_wrap{
  329. padding: 40rpx 0;
  330. }
  331. .break_title{
  332. font-size: 36rpx;
  333. line-height: 46rpx;
  334. color: #484848;
  335. text-align: center;
  336. }
  337. .break_content{
  338. width: 612rpx;
  339. height: 676rpx;
  340. overflow-y: scroll;
  341. border-top: 1px solid #ccc;
  342. margin: 0 auto;
  343. }
  344. .each_break_goods{
  345. margin: 28rpx 0 0 0;
  346. border-bottom: 1px solid #ccc;
  347. }
  348. .break_goods_style{
  349. width: 220rpx;
  350. }
  351. .break_num_wrap{
  352. font-size:30rpx ;
  353. line-height: 70rpx;
  354. color:#b4a078;
  355. margin: 20rpx 0 0 0;
  356. }
  357. .break_goods_infor{
  358. float: left;
  359. width: 370rpx;
  360. margin: 0 0 20rpx 0;
  361. }
  362. .each_break_btn{
  363. float: left;
  364. }
  365. .each_break_btn_wrap{
  366. float: left;
  367. border: 1px solid #eee;
  368. margin: 8rpx 0 0 0;
  369. }
  370. .break_infor_content{
  371. height: 200rpx;
  372. }
  373. .break_goods_name{
  374. height: 68rpx;
  375. font-size: 24rpx;
  376. font-weight: bold;
  377. line-height: 34rpx;
  378. color: #333;
  379. text-overflow: ellipsis;
  380. overflow: hidden;
  381. display: -webkit-box;
  382. -webkit-line-clamp: 2;
  383. -webkit-box-orient: vertical;
  384. padding:0 0 20rpx 0;
  385. }
  386. .each_break{
  387. float: left;
  388. width: 70rpx;
  389. height: 56rpx;
  390. font-size: 26rpx;
  391. line-height: 56rpx;
  392. color: #282727;
  393. text-align: center;
  394. }
  395. .break_goods_num{
  396. width: 110rpx;
  397. text-align: right;
  398. font-size: 24rpx;
  399. color:#646464;
  400. text-overflow: ellipsis;
  401. overflow: hidden;
  402. white-space: nowrap;
  403. }
  404. /* 操作按钮 */
  405. .break_btn{
  406. float: left;
  407. width: 50%;
  408. height: 96rpx;
  409. font-size: 30rpx;
  410. line-height: 96rpx;
  411. color: #656565;
  412. background-color: #f0f0f0;
  413. text-align: center;
  414. cursor:pointer;
  415. }
  416. .break_btn_right{
  417. color: #fff;
  418. background-color: #b4a078;
  419. }
  420. .no_opar{
  421. color:#c8c8c8;
  422. }
  423. /* .scrollHidden{
  424. height: 100%;
  425. overflow: hidden;
  426. position: fixed;
  427. } */
  428. .contact_wind{
  429. display: none;
  430. width: 100%;
  431. height: 100%;
  432. position: fixed;
  433. top: 0;
  434. left: 0;
  435. background-color: rgba(0,0,0,0.6);
  436. z-index: 99999;
  437. }
  438. .close_contact{
  439. display: block;
  440. width: 33rpx;
  441. height: 33rpx;
  442. position: absolute;
  443. top: 20rpx;
  444. right: 20rpx;
  445. }
  446. .contact_title{
  447. padding:56rpx 15rpx;
  448. font-size:32rpx;
  449. line-height:80rpx;
  450. text-align:center;
  451. color:#999;
  452. }
  453. .contact_btn{
  454. width:100%;
  455. position:absolute;
  456. left:0;
  457. bottom:0;
  458. }
  459. .contact_each_btn{
  460. border-right: 1px solid #ccc;
  461. box-sizing: border-box;
  462. }
  463. .show_contact_wind{
  464. display: block;
  465. }
  466. .container{
  467. height: 100%;
  468. }
  469. .scoll-h{
  470. height: 100vh;
  471. overflow: hidden;
  472. }
  473. /* 定制联系客服 */
  474. .dingzhi_btn_left{
  475. font-size: 36prpx;
  476. color: #fff;
  477. background-color: #c3b497;
  478. border: 0px none;
  479. }
  480. .dingzhi_btn_right{
  481. font-size: 36prpx;
  482. color: #fff;
  483. background-color: #b4a177;
  484. border: 0px none;
  485. }