order.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  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: 16px;
  127. color: #FF4D3A;
  128. margin-top: 6px;
  129. }
  130. .list .item .money:before{
  131. content: '¥';
  132. display: inline-block;
  133. font-size: 10px;
  134. transform: translateY(-1px);
  135. }
  136. .list .item .money-txt{
  137. font-size: 14px;
  138. }
  139. .list .item .bottom{
  140. display: flex;
  141. align-items: center;
  142. justify-content: space-between;
  143. border-top: 1px solid #f0f0f0;
  144. margin-top: 10px;
  145. padding-top: 10px;
  146. }
  147. /* 筛选器 */
  148. ax-popup >>> .ax-popup{
  149. z-index: 9999 !important;
  150. }
  151. .filter-box{
  152. --filter-padding-top: 150px;
  153. width: 100vw;
  154. border-radius: 0 0 16px 16px;
  155. padding: 20px;
  156. padding-top: 0;
  157. background-color: #e2f9ff;
  158. }
  159. .filter-box .divider{
  160. display: block;
  161. height: 20px;
  162. }
  163. .filter-box::before{
  164. content: '';
  165. display: block;
  166. height: var(--filter-padding-top);
  167. }
  168. .filter-box .filter-form{
  169. padding: 5px 0;
  170. border-radius: 16px 16px 0 0;
  171. background-color: #fff;
  172. }
  173. .filter-box .cell{
  174. display: flex;
  175. align-items: center;
  176. justify-content: space-between;
  177. height: 40px;
  178. font-size: 14px;
  179. color: #2b303a;
  180. }
  181. .filter-box .cell .lable{
  182. padding-left: 10px;
  183. }
  184. .filter-box .cell .content{
  185. flex: 1;
  186. margin-left: 20px;
  187. text-align: right;
  188. padding-right: 5px;
  189. }
  190. .filter-box .cell .content .icon{
  191. color: #aaa;
  192. margin-left: 5px;
  193. }
  194. .filter-box .fast{
  195. padding: 5px 0;
  196. border-radius: 0 0 16px 16px;
  197. background-color: #fff;
  198. margin-top: 10px;
  199. }
  200. .filter-box .shortcut-list{
  201. display: grid;
  202. grid-template-columns: 1fr 1fr 1fr 1fr;
  203. gap: 10px;
  204. padding: 0 10px;
  205. margin-bottom: 10px;
  206. }
  207. .filter-box .shortcut{
  208. display: flex;
  209. align-items: center;
  210. justify-content: center;
  211. height: 30px;
  212. font-size: 14px;
  213. color: #2b303a;
  214. background-color: #f2f8ff;
  215. }
  216. .filter-box .submit{
  217. display: flex;
  218. align-items: center;
  219. justify-content: center;
  220. width: 100%;
  221. height: 50px;
  222. border-radius: 8px;
  223. font-size: 14px;
  224. color: #2b303a;
  225. margin-top: 30px;
  226. background: linear-gradient(to right,#8FF8FB,#47AEFF);
  227. }
  228. .filter-box .submit::after{
  229. content: unset;
  230. display: none;
  231. }
  232. .loadmore{
  233. display: flex;
  234. align-items: center;
  235. justify-content: center;
  236. height: 50px;
  237. color: #aaa;
  238. font-size: 14px;
  239. }
  240. .loadmore .icon{
  241. margin-right: 5px;
  242. }
  243. .empty{
  244. display: flex;
  245. align-items: center;
  246. justify-content: center;
  247. flex-direction: column;
  248. border-radius: 16px;
  249. background-color: #fff;
  250. width: 100%;
  251. height: 100%;
  252. font-size: 14px;
  253. color: #aaa;
  254. box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  255. }
  256. .empty .icon{
  257. font-size: 20vw;
  258. transform: translateX(5%);
  259. margin-bottom: 10px;
  260. color: #ccc;
  261. }