index.wxss 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. /**index.wxss**/
  2. page {
  3. background: #f0f1f2;
  4. }
  5. .container {
  6. margin-bottom: 165rpx;
  7. position: relative;
  8. top: 0;
  9. transition: all 500ms ease 0ms;
  10. -moz-transition: all 500ms ease 0ms;
  11. -webkit-transition: all 500ms ease 0ms;
  12. -o-transition: all 500ms ease 0ms;
  13. }
  14. /* 头部条件筛选 */
  15. .block {
  16. width: 100%;
  17. }
  18. .block-title {
  19. width: 100%;
  20. color: #31364c;
  21. font-size: 38rpx;
  22. padding: 15rpx;
  23. background: #fff;
  24. box-sizing: border-box;
  25. border-top: 1rpx solid #f7f7f7;
  26. display: flex;
  27. align-items: center;
  28. justify-content: space-between;
  29. }
  30. .block-title image {
  31. height: 53rpx;
  32. width: 53rpx;
  33. }
  34. .swiper-group {
  35. width: 750rpx;
  36. height: 333rpx;
  37. position: relative;
  38. }
  39. swiper {
  40. width: 750rpx;
  41. height: 333rpx;
  42. background: #fff;
  43. }
  44. swiper-item {
  45. width: 750rpx;
  46. height: 333rpx;
  47. }
  48. swiper-item image {
  49. width: 750rpx;
  50. height: 333rpx;
  51. }
  52. .swiper .wx-swiper-dot {
  53. transform: scale(0.8);
  54. }
  55. .swiper .wx-swiper-dot-active {
  56. transform: scale(1.2);
  57. }
  58. .dot {
  59. position: absolute;
  60. right: 104rpx;
  61. bottom: 49rpx;
  62. display: flex;
  63. align-items: center;
  64. }
  65. .dot-list {
  66. width: 12rpx;
  67. height: 12rpx;
  68. border-radius: 100%;
  69. background: #0061fe;
  70. opacity: 0.45;
  71. }
  72. .dot-list + .dot-list {
  73. margin-left: 16rpx;
  74. }
  75. .dot-list-activated {
  76. opacity: 1;
  77. }
  78. .choose-area {
  79. width: 750rpx;
  80. height: 118rpx;
  81. background: #fff;
  82. padding: 0 30rpx;
  83. box-sizing: border-box;
  84. display: flex;
  85. align-items: center;
  86. justify-content: space-between;
  87. }
  88. .condition {
  89. display: flex;
  90. align-items: center;
  91. justify-content: space-between;
  92. }
  93. .condition-content {
  94. flex: 1;
  95. text-align: center;
  96. overflow: hidden;
  97. text-overflow: ellipsis;
  98. white-space: nowrap;
  99. }
  100. .condition view {
  101. width: 178rpx;
  102. height: 58rpx;
  103. color: #535768;
  104. font-size: 28rpx;
  105. padding: 0 15rpx;
  106. box-sizing: border-box;
  107. border-radius: 18rpx;
  108. background: #f5f5f5;
  109. display: flex;
  110. align-items: center;
  111. justify-content: center;
  112. }
  113. .condition view image {
  114. height: 9rpx;
  115. width: 16rpx;
  116. margin-left: 10rpx;
  117. }
  118. .industry-list {
  119. width: 100%;
  120. background: #fff;
  121. display: flex;
  122. flex-wrap: wrap;
  123. padding-bottom: 15rpx;
  124. position: absolute;
  125. }
  126. .industry-list-item {
  127. width: 218rpx;
  128. font-size: 28rpx;
  129. text-align: center;
  130. padding: 15rpx 0;
  131. box-sizing: border-box;
  132. color: #888a8e;
  133. background: #f8f8f8;
  134. border-radius: 10rpx;
  135. margin-left: 24rpx;
  136. margin-top: 15rpx;
  137. }
  138. .condition-list-item-action {
  139. color: #31364c;
  140. background: #eaebee;
  141. }
  142. .color {
  143. color: #3243bd;
  144. }
  145. .price-list {
  146. width: 100%;
  147. display: flex;
  148. flex-direction: column;
  149. padding: 15rpx 0;
  150. background: #fff;
  151. position: absolute;
  152. }
  153. .price-list-item {
  154. height: 98rpx;
  155. color: #535768;
  156. font-size: 28rpx;
  157. line-height: 98rpx;
  158. padding: 0 30rpx;
  159. box-sizing: border-box;
  160. }
  161. /* 需求列表 */
  162. .list {
  163. /* margin-top: 20rpx; */
  164. padding: 20rpx;
  165. }
  166. .list-item {
  167. width: 710rpx;
  168. min-height: 253rpx;
  169. border-radius: 18rpx;
  170. padding: 40rpx 24rpx;
  171. box-sizing: border-box;
  172. background: #fff;
  173. margin-bottom: 20rpx;
  174. position: relative;
  175. }
  176. .list-item-header {
  177. font-size: 38rpx;
  178. font-family: PingFangSC-Medium, PingFang SC;
  179. font-weight: 500;
  180. color: rgba(0, 0, 0, 0.85);
  181. display: flex;
  182. align-items: center;
  183. justify-content: space-between;
  184. }
  185. .list-item-header-price {
  186. color: #096dd9;
  187. }
  188. .list-item-info {
  189. font-size: 28rpx;
  190. font-family: PingFangSC-Regular, PingFang SC;
  191. font-weight: 400;
  192. color: rgba(0, 0, 0, 0.65);
  193. display: flex;
  194. align-items: center;
  195. justify-content: space-between;
  196. margin-top: 16rpx;
  197. }
  198. .company-time {
  199. font-size: 24rpx;
  200. font-family: PingFangSC-Regular, PingFang SC;
  201. font-weight: 400;
  202. color: rgba(0, 0, 0, 0.45);
  203. }
  204. .position-info {
  205. font-size: 24rpx;
  206. font-family: PingFangSC-Regular, PingFang SC;
  207. font-weight: 400;
  208. color: rgba(0, 0, 0, 0.65);
  209. display: flex;
  210. align-items: center;
  211. margin-top: 16rpx;
  212. }
  213. .address,
  214. .number {
  215. padding: 12rpx 16rpx;
  216. background: #f5f5f5;
  217. border-radius: 18rpx;
  218. display: flex;
  219. align-items: center;
  220. }
  221. .address {
  222. margin-right: 16rpx;
  223. }
  224. .address-image {
  225. height: 24rpx;
  226. width: 24rpx;
  227. margin-right: 10rpx;
  228. }
  229. .number-image {
  230. height: 22rpx;
  231. width: 20rpx;
  232. margin-right: 10rpx;
  233. }
  234. .icon {
  235. height: 106rpx;
  236. width: 106rpx;
  237. position: absolute;
  238. right: 0;
  239. bottom: 0;
  240. }
  241. .top,
  242. .midden {
  243. display: flex;
  244. align-items: center;
  245. justify-content: space-between;
  246. }
  247. .name {
  248. flex: 1;
  249. color: #31364c;
  250. font-size: 34rpx;
  251. overflow: hidden;
  252. text-overflow: ellipsis;
  253. white-space: nowrap;
  254. }
  255. .payment {
  256. color: #3243bd;
  257. font-size: 34rpx;
  258. max-width: 265rpx;
  259. text-align: right;
  260. }
  261. .company {
  262. color: #31364c;
  263. font-size: 28rpx;
  264. overflow: hidden;
  265. text-overflow: ellipsis;
  266. white-space: nowrap;
  267. }
  268. .time {
  269. font-size: 24rpx;
  270. color: #888a8e;
  271. flex-basis: 365rpx;
  272. text-align: right;
  273. }
  274. .bottom {
  275. display: flex;
  276. align-items: center;
  277. flex-wrap: wrap;
  278. }
  279. .bottom-item {
  280. height: 48rpx;
  281. color: #535768;
  282. font-size: 24rpx;
  283. padding: 0 15rpx;
  284. border-radius: 10rpx;
  285. background: #f0f1f2;
  286. display: flex;
  287. align-items: center;
  288. margin-right: 15rpx;
  289. }
  290. .bottom-item image {
  291. height: 22rpx;
  292. width: 18rpx;
  293. margin-right: 15rpx;
  294. }
  295. /* 蒙层 */
  296. .cover {
  297. height: 100%;
  298. width: 100%;
  299. position: fixed;
  300. left: 750rpx;
  301. top: 0;
  302. z-index: 3;
  303. background: #fff;
  304. box-sizing: border-box;
  305. }
  306. .offline,
  307. .loading,
  308. .list-length {
  309. height: calc(100vh - 628rpx);
  310. color: #cdcfd3;
  311. font-size: 28rpx;
  312. display: flex;
  313. justify-content: center;
  314. align-items: center;
  315. margin-top: 118rpx;
  316. }
  317. .offline-content {
  318. display: flex;
  319. justify-content: center;
  320. align-items: center;
  321. flex-direction: column;
  322. /* margin-top: 156rpx; */
  323. }
  324. .offline-content image {
  325. height: 74rpx;
  326. width: 84rpx;
  327. margin-bottom: 45rpx;
  328. }
  329. .offline-btn {
  330. width: 220rpx;
  331. height: 88rpx;
  332. text-align: center;
  333. line-height: 88rpx;
  334. font-size: 34rpx;
  335. color: #fff;
  336. border-radius: 10rpx;
  337. background: #cdcfd3;
  338. margin-top: 193rpx;
  339. }
  340. .transition {
  341. top: -413rpx;
  342. }
  343. .choose-area-content {
  344. position: relative;
  345. z-index: 1;
  346. }
  347. .choose-area-content.fixed {
  348. position: fixed;
  349. top: 0;
  350. left: 0;
  351. z-index: 1;
  352. }
  353. .margin {
  354. margin-top: 142rpx;
  355. }