groupList.wxss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. .fixed-top {
  2. width: 100%;
  3. position: fixed;
  4. left: 0;
  5. top: 0;
  6. z-index: 10;
  7. }
  8. .nav-bar .nav-bar-inner {
  9. display: flex;
  10. justify-content: space-between;
  11. padding: 0 60rpx;
  12. background-color: #fff;
  13. }
  14. .nav-bar .nav-bar-item {
  15. position: relative;
  16. word-break: keep-all;
  17. font-size: 28rpx;
  18. font-weight: 500;
  19. color: #666;
  20. padding: 20rpx 0;
  21. }
  22. .nav-bar .current.nav-bar-item::after {
  23. content: "";
  24. position: absolute;
  25. left: 0;
  26. right: 0;
  27. bottom: 0;
  28. height: 3px;
  29. background: linear-gradient(90deg, #ff4936 0%, #ff6e3c 100%);
  30. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(255, 89, 0, 0.25);
  31. border-radius: 24rpx;
  32. }
  33. .content-list {
  34. background-color: #f6f6f6;
  35. padding-top: 200rpx;
  36. height: 100%;
  37. }
  38. .order-scroll-view {
  39. width: 750rpx;
  40. height: 100%;
  41. }
  42. .noRecordCon {
  43. display: flex;
  44. justify-content: center;
  45. align-items: center;
  46. flex-direction: column;
  47. }
  48. .noRecordCon .noRecordImg {
  49. width: 132rpx;
  50. height: 138rpx;
  51. margin-top: 50%;
  52. }
  53. .noRecordCon .noRefundImg {
  54. width: 218rpx;
  55. height: 218rpx;
  56. margin-top: 50%;
  57. }
  58. .noRecordCon .noRecord {
  59. padding-top: 32rpx;
  60. font-size: 30rpx;
  61. font-family: PingFangSC-Light;
  62. font-weight: 300;
  63. color: #666;
  64. line-height: 30rpx;
  65. }
  66. .noRecordCon .goIndex {
  67. width: 164rpx;
  68. height: 60rpx;
  69. background: #ff3432;
  70. border-radius: 30rpx;
  71. font-size: 28rpx;
  72. color: #fff;
  73. margin-top: 30rpx;
  74. display: flex;
  75. justify-content: center;
  76. align-items: center;
  77. }
  78. .refresh {
  79. width: 80rpx;
  80. height: 80rpx;
  81. border-radius: 50%;
  82. border: 1rpx solid #999;
  83. position: fixed;
  84. right: 50rpx;
  85. bottom: 200rpx;
  86. font-size: 20rpx;
  87. color: #fff;
  88. background: #000;
  89. opacity: 0.5;
  90. display: flex;
  91. justify-content: center;
  92. align-items: center;
  93. flex-direction: column;
  94. }
  95. .refresh image {
  96. width: 32rpx;
  97. height: 32rpx;
  98. margin-bottom: 4rpx;
  99. }
  100. .groupList {
  101. width: 100%;
  102. }
  103. .groupList .nav {
  104. position: fixed;
  105. top: 0;
  106. left: 0;
  107. right: 0;
  108. z-index: 10;
  109. background: #fff;
  110. height: 90rpx;
  111. border-top: 1rpx solid #f2f2f2;
  112. border-bottom: 1rpx solid #f2f2f2;
  113. padding: 0 100rpx;
  114. width: unset;
  115. display: flex;
  116. align-items: center;
  117. justify-content: space-between;
  118. }
  119. .groupList .nav .on {
  120. color: #be965a;
  121. }
  122. .groupList .nav .line {
  123. background: linear-gradient(90deg, #ffd59a 0%, #e5b983 100%);
  124. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(229, 185, 131, 0.5);
  125. border-radius: 24rpx;
  126. }
  127. .groupList .noRecordCon {
  128. display: flex;
  129. justify-content: center;
  130. align-items: center;
  131. flex-direction: column;
  132. }
  133. .groupList .noRecordCon .noRecordImg {
  134. width: 218rpx;
  135. height: 218rpx;
  136. margin-top: 200rpx;
  137. }
  138. .groupList .noRecordCon .noRefundImg {
  139. width: 158rpx;
  140. height: 140rpx;
  141. margin-top: 200rpx;
  142. }
  143. .groupList .noRecordCon .noRecord {
  144. padding-top: 18rpx;
  145. font-size: 28rpx;
  146. color: #999;
  147. }
  148. .groupList .noRecordCon .goIndex {
  149. width: 164rpx;
  150. height: 60rpx;
  151. background: linear-gradient(90deg, #f0daad 0%, #e7c98f 100%);
  152. border-radius: 30rpx;
  153. font-size: 28rpx;
  154. color: #fff;
  155. margin-top: 30rpx;
  156. display: flex;
  157. justify-content: center;
  158. align-items: center;
  159. }
  160. .groupList .item {
  161. margin-bottom: 20rpx;
  162. overflow: hidden;
  163. }
  164. .song_button{
  165. position: relative;
  166. /* height:60rpx; */
  167. padding: 20rpx 30rpx;
  168. display: flex;
  169. justify-content: space-between;
  170. border-top: 1rpx solid #efefef;
  171. }
  172. .goods-sign-btn {
  173. display: inline-block;
  174. height: 52rpx;
  175. padding: 0 24rpx;
  176. border: 2rpx solid #f75451;
  177. border-radius: 52rpx;
  178. text-align: center;
  179. line-height: 52rpx;
  180. color: #f75451;
  181. }
  182. .goods-sign-btn.gray {
  183. color: #666;
  184. border: 2rpx solid #efefef;
  185. margin-left: 14rpx;
  186. }
  187. .goods-sign-btn image {
  188. width: 24rpx;
  189. height: 24rpx;
  190. }
  191. swiper-item {
  192. height: auto;
  193. }
  194. /** 订单列表begin **/
  195. .item {
  196. background: #fff;
  197. overflow: hidden;
  198. box-shadow: 0rpx 0rpx 40rpx 0rpx rgba(0, 0, 0, 0.05);
  199. border-radius: 20rpx;
  200. margin: 0rpx 20rpx;
  201. }
  202. .orderNum {
  203. height: 80rpx;
  204. font-size: 26rpx;
  205. color: #333;
  206. padding: 0 30rpx;
  207. border-bottom: 1rpx solid #efefef;
  208. display: flex;
  209. align-items: center;
  210. justify-content: space-between;
  211. }
  212. .orderNum .statusName {
  213. color: #be965a;
  214. font-weight: 500;
  215. }
  216. .orderNum .black {
  217. color: #aaa;
  218. }
  219. .spu {
  220. padding: 30rpx 30rpx 20rpx;
  221. display: flex;
  222. justify-content: flex-start;
  223. }
  224. .spu .goodsImg {
  225. width: 120rpx;
  226. height: 120rpx;
  227. margin-right: 20rpx;
  228. }
  229. .spu .goodsImg .img-class {
  230. width: 120rpx;
  231. height: 120rpx;
  232. }
  233. .spu .detail {
  234. margin-left: 20rpx;
  235. font-size: 24rpx;
  236. color: #aaa;
  237. }
  238. .spu .detail .spuName {
  239. color: #444;
  240. font-size: 28rpx;
  241. font-weight: 500;
  242. overflow: hidden;
  243. }
  244. .spu .detail .tips {
  245. line-height: 1;
  246. width: 530rpx;
  247. margin-top: 16rpx;
  248. position: relative;
  249. }
  250. .spu .detail .tips .last {
  251. float:right;
  252. }
  253. .spu .detail .tips .price {
  254. color: #ff5344;
  255. font-size: 32rpx;
  256. }
  257. .gold {
  258. color: gold;
  259. }
  260. /**订单列表end ***/
  261. .commision-box {
  262. display: flex;
  263. flex-direction: row-reverse;
  264. align-items: center;
  265. justify-content: space-between;
  266. font-size: 26rpx;
  267. color: #777;
  268. margin-bottom: 30rpx;
  269. padding-left: 140rpx;
  270. padding-right: 30rpx;
  271. }
  272. /* 搜索 */
  273. .search-box {
  274. background: #fff;
  275. padding: 20rpx 30rpx;
  276. display: flex;
  277. justify-content: flex-start;
  278. align-items: center;
  279. position: relative;
  280. font-size: 28rpx;
  281. font-family: PingFangSC-Regular;
  282. font-weight: 400;
  283. }
  284. .filed {
  285. width: 190rpx;
  286. margin-right: 20rpx;
  287. border: 1rpx solid #ececec;
  288. box-sizing: border-box;
  289. height: 56rpx;
  290. line-height: 56rpx;
  291. padding: 0 15rpx;
  292. font-size: 24rpx;
  293. border-radius: 6rpx;
  294. }
  295. .filed .picker {
  296. display: flex;
  297. align-items: center;
  298. justify-content: space-between;
  299. }
  300. .filed .iconfont {
  301. font-size: 14rpx;
  302. color: #ccc;
  303. }
  304. .search {
  305. position: relative;
  306. display: flex;
  307. justify-content: flex-start;
  308. align-items: center;
  309. flex: 1;
  310. }
  311. .search .icon-search {
  312. position: absolute;
  313. left: 20rpx;
  314. }
  315. .search input {
  316. padding-left: 60rpx;
  317. width: 100%;
  318. height: 56rpx;
  319. background: #f8f8f8;
  320. border-radius: 6rpx;
  321. color: #999;
  322. box-sizing: border-box;
  323. line-height: 40rpx;
  324. }
  325. .search text {
  326. color: #ff673f;
  327. margin-left: 28rpx;
  328. }
  329. .dialogText {
  330. box-sizing: border-box;
  331. padding: 20rpx;
  332. height: 140rpx!important;
  333. text-align: justify;
  334. }
  335. .dialogBtn {
  336. font-size: 30rpx!important;
  337. height: 68rpx!important;
  338. line-height: 68rpx!important;
  339. }
  340. .tips .tag {
  341. font-size: 20rpx;
  342. padding: 4rpx 8rpx;
  343. border-radius: 5rpx;
  344. }