order.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. ax-body{
  2. display: block;
  3. height: 100%;
  4. background: #F5F7FB;
  5. }
  6. ax-body >>> .ax-custom-title{
  7. background-color: #fff !important;
  8. }
  9. .body{
  10. height: 100%;
  11. position: relative;
  12. padding-top: 60px;
  13. }
  14. .top{
  15. height: 60px;
  16. position: absolute;
  17. top: 0;
  18. left: 0;
  19. right: 0;
  20. padding: 0 10px;
  21. background: #fff;
  22. }
  23. .tabs{
  24. display: flex;
  25. align-items: center;
  26. position: relative;
  27. z-index: 99999;
  28. }
  29. .tabs .tab{
  30. font-size: 14px;
  31. color: #2b303a;
  32. }
  33. .tabs .tab + .tab{
  34. margin-left: 20px;
  35. }
  36. .tabs .tab.active{
  37. position: relative;
  38. font-weight: bold;
  39. }
  40. .tabs .tab::after{
  41. content: '';
  42. display: block;
  43. width: 0px;
  44. height: 4px;
  45. position: absolute;
  46. left: 0;
  47. bottom: 0;
  48. border-radius: 10px;
  49. transform: translateY(10px);
  50. background: linear-gradient(to right,#8ff8fb,#47aeff);
  51. }
  52. .tabs .tab.active::after{
  53. width: 40px;
  54. }
  55. .filter-icon{
  56. font-size: 20px;
  57. font-weight: bold;
  58. }
  59. .list{
  60. height: 100%;
  61. overflow: auto;
  62. padding: 10px;
  63. }
  64. .list .item{
  65. display: block;
  66. padding: 10px;
  67. background-color: #fff;
  68. border-radius: 8px;
  69. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  70. }
  71. .list .item + .item{
  72. margin-top: 10px;
  73. }
  74. .list .item .title{
  75. display: flex;
  76. justify-content: space-between;
  77. }
  78. .list .item .name{
  79. font-size: 16px;
  80. font-weight: bold;
  81. color: #333;
  82. }
  83. .list .item .subinfo{
  84. display: flex;
  85. align-items: center;
  86. justify-content: space-between;
  87. font-size: 12px;
  88. color: #aaa;
  89. margin-top: 13px;
  90. line-height: 22px;
  91. }
  92. .list .item .invoice{
  93. color: var(--color-blue);
  94. }
  95. .list .item .state{
  96. display: flex;
  97. align-items: center;
  98. justify-content: center;
  99. width: 70px;
  100. height: 24px;
  101. font-size: 12px;
  102. color: #777;
  103. background-color: #ddd;
  104. border-radius: 100pc 0 0 0;
  105. margin-right: -10px;
  106. }
  107. .list .item .state:before{
  108. content: '';
  109. display: inline-block;
  110. width: 4px;
  111. height: 4px;
  112. border-radius: 100%;
  113. background-color: #fff;
  114. margin-right: 5px;
  115. }
  116. .list .item .state.green{
  117. color: #fff;
  118. background-color: #5bc870;
  119. }
  120. .list .item .state.blue{
  121. color: #fff;
  122. background-color: #3eb6f8;
  123. }
  124. .list .item .money{
  125. text-align: center;
  126. font-size: 26rpx;
  127. /* color: #FF4D3A; */
  128. margin-top: 6px;
  129. }
  130. .list .item .money:before{
  131. display: inline-block;
  132. font-size: 10px;
  133. transform: translateY(-1px);
  134. }
  135. .list .item .money-txt{
  136. font-size: 14px;
  137. }
  138. .list .item .bottom{
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. border-top: 1px solid #f0f0f0;
  143. margin-top: 10px;
  144. padding-top: 10px;
  145. }
  146. /* 筛选器 */
  147. ax-popup >>> .ax-popup{
  148. z-index: 9999 !important;
  149. }
  150. .filter-box{
  151. --filter-padding-top: 150px;
  152. width: 100vw;
  153. border-radius: 0 0 16px 16px;
  154. padding: 20px;
  155. padding-top: 0;
  156. background-color: #e2f9ff;
  157. }
  158. .filter-box .divider{
  159. display: block;
  160. height: 20px;
  161. }
  162. .filter-box::before{
  163. content: '';
  164. display: block;
  165. height: var(--filter-padding-top);
  166. }
  167. .filter-box .filter-form{
  168. padding: 5px 0;
  169. border-radius: 16px 16px 0 0;
  170. background-color: #fff;
  171. }
  172. .filter-box .cell{
  173. display: flex;
  174. align-items: center;
  175. justify-content: space-between;
  176. height: 40px;
  177. font-size: 14px;
  178. color: #2b303a;
  179. }
  180. .filter-box .cell .lable{
  181. padding-left: 10px;
  182. }
  183. .filter-box .cell .content{
  184. flex: 1;
  185. margin-left: 20px;
  186. text-align: right;
  187. padding-right: 5px;
  188. }
  189. .filter-box .cell .content .icon{
  190. color: #aaa;
  191. margin-left: 5px;
  192. }
  193. .filter-box .fast{
  194. padding: 5px 0;
  195. border-radius: 0 0 16px 16px;
  196. background-color: #fff;
  197. margin-top: 10px;
  198. }
  199. .filter-box .shortcut-list{
  200. display: grid;
  201. grid-template-columns: 1fr 1fr 1fr 1fr;
  202. gap: 10px;
  203. padding: 0 10px;
  204. margin-bottom: 10px;
  205. }
  206. .filter-box .shortcut{
  207. display: flex;
  208. align-items: center;
  209. justify-content: center;
  210. height: 30px;
  211. font-size: 14px;
  212. color: #2b303a;
  213. background-color: #f2f8ff;
  214. }
  215. .filter-box .submit{
  216. display: flex;
  217. align-items: center;
  218. justify-content: center;
  219. width: 100%;
  220. height: 50px;
  221. border-radius: 8px;
  222. font-size: 14px;
  223. color: #2b303a;
  224. margin-top: 30px;
  225. background: linear-gradient(to right,#8FF8FB,#47AEFF);
  226. }
  227. .filter-box .submit::after{
  228. content: unset;
  229. display: none;
  230. }
  231. .loadmore{
  232. display: flex;
  233. align-items: center;
  234. justify-content: center;
  235. height: 50px;
  236. color: #aaa;
  237. font-size: 14px;
  238. }
  239. .loadmore .icon{
  240. margin-right: 5px;
  241. }
  242. .empty{
  243. display: flex;
  244. align-items: center;
  245. justify-content: center;
  246. flex-direction: column;
  247. border-radius: 16px;
  248. background-color: #fff;
  249. width: 100%;
  250. height: 100%;
  251. font-size: 14px;
  252. color: #aaa;
  253. box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  254. }
  255. .empty .icon{
  256. font-size: 20vw;
  257. transform: translateX(5%);
  258. margin-bottom: 10px;
  259. color: #ccc;
  260. }