index.wxss 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410
  1. /* pages/fuli/index.wxss */
  2. page {
  3. background-color: #f5f5f5;
  4. }
  5. /* 顶部筛选 */
  6. .head {
  7. display: flex;
  8. height: 100rpx;
  9. width: 100%;
  10. flex: 1 0 auto;
  11. align-items: center;
  12. background-color: #fff;
  13. border-bottom: 2rpx solid #ddd;
  14. }
  15. .head .map {
  16. display: flex;
  17. white-space: nowrap;
  18. flex-grow: 1;
  19. font-size: 30rpx;
  20. justify-content: center;
  21. height: 40rpx;
  22. align-items: center;
  23. color: #525255;
  24. }
  25. .head .map .location {
  26. display: flex;
  27. align-items: center;
  28. width: 20rpx;
  29. height: 24rpx;
  30. padding-right: 10rpx;
  31. }
  32. .map .location image {
  33. width: 100%;
  34. height: 100%;
  35. }
  36. .head .salay {
  37. display: flex;
  38. flex-grow: 1;
  39. white-space: nowrap;
  40. font-size: 26rpx;
  41. height: 40rpx;
  42. color: #868b92;
  43. justify-content: center;
  44. align-items: center;
  45. }
  46. .salay .salayname {
  47. padding-right: 10rpx;
  48. }
  49. .salay .arrow {
  50. display: flex;
  51. width: 14rpx;
  52. height: 8rpx;
  53. align-items: center;
  54. }
  55. .salay .arrow image {
  56. width: 100%;
  57. height: 100%;
  58. }
  59. .salay .arrow1 {
  60. display: flex;
  61. width: 18rpx;
  62. height: 10rpx;
  63. align-items: center;
  64. }
  65. .salay .arrow1 image {
  66. width: 100%;
  67. height: 100%;
  68. }
  69. .salay .active {
  70. color: #1e62a7;
  71. }
  72. /* 结算方式 */
  73. .scrolled {
  74. position: fixed;
  75. top: 100rpx;
  76. left: 0;
  77. }
  78. .settlementMethod {
  79. display: flex;
  80. display: -webkit-flex;
  81. width: 100%;
  82. padding: 14rpx 30rpx;
  83. box-sizing: border-box;
  84. z-index: 999;
  85. -webkit-transition: background 0.5s ease-in-out;
  86. align-items: center;
  87. height: 163rpx;
  88. flex-wrap: wrap;
  89. background-color: #fff;
  90. box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.06);
  91. border-top: 2rpx solid #ddd;
  92. }
  93. .settlementMethod .settleme {
  94. display: flex;
  95. height: 48rpx;
  96. align-items: center;
  97. background: rgba(245, 245, 245, 1);
  98. border-radius: 24rpx;
  99. margin-right: 16rpx;
  100. color: #706f6f;
  101. }
  102. .settlementMethod .settleme text {
  103. padding: 0 30rpx;
  104. font-size: 24rpx;
  105. }
  106. .settlementMethod .active {
  107. background-color: #5191d3;
  108. color: #fff;
  109. }
  110. /* 列表 */
  111. .box-body {
  112. width: 100%;
  113. overflow: hidden;
  114. }
  115. .box_title {
  116. padding: 17rpx 0 17rpx 40rpx;
  117. font-size: 28rpx;
  118. color: #666;
  119. border-bottom: 2rpx solid #ddd;
  120. }
  121. .box-item {
  122. display: flex;
  123. padding: 35rpx 40rpx 30rpx 40rpx;
  124. font-size: 32rpx;
  125. color: #232327;
  126. box-sizing: border-box;
  127. background-color: #fff;
  128. border-bottom: 16rpx solid #f5f5f5;
  129. }
  130. .item-hover {
  131. background: #f5f5f5;
  132. }
  133. .box-item .box-item-img {
  134. display: flex;
  135. flex: 0 0 auto;
  136. width: 150rpx;
  137. height: 150rpx;
  138. border-radius: 6rpx;
  139. background: #fff;
  140. }
  141. .box-item .box-item-info {
  142. display: flex;
  143. flex-direction: column;
  144. justify-content: space-between;
  145. flex-grow: 1;
  146. box-sizing: border-box;
  147. overflow: hidden;
  148. }
  149. .box-item .one {
  150. display: flex;
  151. justify-content: space-between;
  152. color: #232327;
  153. flex-direction: row;
  154. }
  155. .box-item .one .left {
  156. display: flex;
  157. flex-grow: 1;
  158. align-items: center;
  159. font-size: 32rpx;
  160. font-family: SourceHanSansCN-Regular;
  161. font-weight: 400;
  162. color: rgba(35, 35, 39, 1);
  163. width: 60%;
  164. }
  165. .box-item .one .salary {
  166. font-size: 32rpx;
  167. font-family: Arial-BoldMT;
  168. font-weight: 400;
  169. color: rgba(255, 78, 37, 1);
  170. }
  171. .box-item .one .salary image {
  172. width: 18rpx;
  173. height: 24rpx;
  174. }
  175. .box-item .two {
  176. display: flex;
  177. justify-content: space-between;
  178. color: #909090;
  179. font-size: 24rpx;
  180. margin-top: 30rpx;
  181. align-items: center;
  182. }
  183. .box-item .two .limit {
  184. display: flex;
  185. flex-direction: row;
  186. flex-grow: 1;
  187. overflow: hidden;
  188. margin-right: 30rpx;
  189. width: 80%;
  190. color: #868b92;
  191. }
  192. .box-item .two .limit image {
  193. width: 18rpx;
  194. height: 18rpx;
  195. margin-right: 10rpx;
  196. }
  197. .box-item .two .limit i-tag {
  198. /* margin-left: 10rpx; */
  199. }
  200. .box-item .two .limit text {
  201. margin-left: 10rpx;
  202. }
  203. .box-item .two .time {
  204. color: #4391e1;
  205. font-size: 20rpx;
  206. border: 2rpx solid rgba(67, 145, 225, 1);
  207. border-radius: 14px;
  208. padding: 4rpx 14rpx;
  209. }
  210. .tag-class {
  211. margin-right: 8rpx;
  212. white-space: nowrap;
  213. border: none !important;
  214. background: rgba(245, 245, 245, 1) !important;
  215. border-radius: 14px !important;
  216. margin-bottom: 12rpx;
  217. font-size: 20rpx;
  218. }
  219. .box-item .three {
  220. display: flex;
  221. justify-content: space-between;
  222. align-items: center;
  223. font-size: 20rpx;
  224. margin-top: 20rpx;
  225. }
  226. .box-item .three image {
  227. width: 16rpx;
  228. height: 19rpx;
  229. }
  230. .box-item .three .area {
  231. color: #868b92;
  232. font-size: 24rpx;
  233. }
  234. .box-item .three .area .area-name {
  235. margin-left: 10rpx;
  236. color: #868b92;
  237. font-size: 24rpx;
  238. }
  239. .box-item .three .limit {
  240. display: flex;
  241. flex-grow: 1;
  242. overflow: hidden;
  243. margin-right: 10rpx;
  244. width: 80%;
  245. flex-direction: row;
  246. }
  247. .box-item .three .limit i-tag {
  248. margin-left: 10rpx;
  249. }
  250. .box-item .three .time {
  251. flex: 0 0 auto;
  252. color: #868b92;
  253. }
  254. .box-item .three .time image {
  255. width: 18rpx;
  256. height: 18rpx;
  257. }
  258. .box-item .three .time text {
  259. margin-left: 6rpx;
  260. font-size: 20rpx;
  261. }
  262. .box-item .three .fan {
  263. display: flex;
  264. flex-direction: row;
  265. color: #ff400e;
  266. font-size: 20rpx;
  267. align-items: center;
  268. }
  269. .box-item .three .fan image {
  270. width: 24rpx;
  271. height: 24rpx;
  272. margin-right: 10rpx;
  273. }
  274. .box-item .four {
  275. display: flex;
  276. justify-content: space-between;
  277. color: #909090;
  278. font-size: 22rpx;
  279. margin-top: 18rpx;
  280. align-items: center;
  281. }
  282. .box-item .four .limit {
  283. display: flex;
  284. flex-direction: row;
  285. flex-grow: 1;
  286. overflow: hidden;
  287. margin-right: 30rpx;
  288. width: 80%;
  289. color: #868b92;
  290. }
  291. .box-item .four .limit image {
  292. width: 18rpx;
  293. height: 18rpx;
  294. }
  295. .box-item .four .limit i-tag {
  296. margin-left: 10rpx;
  297. }
  298. .box-item .four .limit text {
  299. margin-left: 10rpx;
  300. }
  301. .box-item .four .time {
  302. color: #706f6f;
  303. font-size: 20rpx;
  304. }
  305. .box-item .four .commpany {
  306. font-size: 22rpx;
  307. color: #a0a4a9;
  308. }
  309. .box-item .four .area {
  310. color: #868b92;
  311. font-size: 24rpx;
  312. }
  313. .box-item .four .area image {
  314. width: 16rpx;
  315. height: 19rpx;
  316. }
  317. .box-item .four .area .area-name {
  318. margin-left: 10rpx;
  319. color: #868b92;
  320. font-size: 22rpx;
  321. }
  322. .loading_no {
  323. display: flex;
  324. justify-content: center;
  325. align-items: center;
  326. height: 60rpx;
  327. font-size: 22rpx;
  328. color: #696969;
  329. }
  330. /* 空白页 */
  331. .no_data {
  332. width: 100%;
  333. margin-top: 20%;
  334. display: flex;
  335. justify-content: center;
  336. align-items: center;
  337. flex-direction: column;
  338. }
  339. .white {
  340. width: 125px;
  341. height: 125px;
  342. }
  343. .no_text {
  344. color: #ccc;
  345. font-size: 32rpx;
  346. margin-top: 48rpx;
  347. }