index.wxss 6.2 KB

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