orderList.wxss 6.9 KB

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