index.wxss 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548
  1. /* pages/search/index.wxss */
  2. page {
  3. background-color: #fff;
  4. }
  5. .search-box {
  6. width: 100%;
  7. height: 100%;
  8. }
  9. .fixed-box {
  10. width: 100%;
  11. height: 146rpx;
  12. }
  13. .top {
  14. position: fixed;
  15. top: 0;
  16. left: 0;
  17. width: 100%;
  18. z-index: 9;
  19. background-color: #fff;
  20. }
  21. .top-search {
  22. display: flex;
  23. align-items: center;
  24. padding: 0 30rpx;
  25. height: 80rpx;
  26. }
  27. .list-search-box {
  28. display: flex;
  29. align-items: center;
  30. width: 100%;
  31. padding: 0 20rpx;
  32. margin-right: 30rpx;
  33. height: 62rpx;
  34. background: #f2f2f2;
  35. border-radius: 90rpx;
  36. font-size: 24rpx;
  37. box-sizing: border-box;
  38. }
  39. .list-search-box input {
  40. width: 100%;
  41. font-size: 28rpx;
  42. letter-spacing: 6rpx;
  43. }
  44. .list-iconfont {
  45. margin-right: 10rpx;
  46. }
  47. .top-search .close {
  48. font-size: 26rpx;
  49. flex-shrink: 0;
  50. }
  51. .top .tabs {
  52. display: flex;
  53. justify-content: space-around;
  54. align-items: center;
  55. width: 100%;
  56. height: 60rpx;
  57. font-size: 26rpx;
  58. border-bottom: 2rpx solid #ececec;
  59. }
  60. .top .tabs .tab {
  61. position: relative;
  62. height: 100%;
  63. line-height: 60rpx;
  64. }
  65. .top .tabs .activateTab {
  66. color: #3493fb;
  67. }
  68. .top .tabs .activateTab::after {
  69. content: "";
  70. display: block;
  71. position: absolute;
  72. bottom: 0;
  73. width: 100%;
  74. height: 4rpx;
  75. background-color: #1684fc;
  76. }
  77. .content {
  78. padding: 30rpx 32rpx 30rpx 32rpx;
  79. }
  80. /* 潮兼职 */
  81. .categoryitem {
  82. padding: 30rpx 0 30rpx 0;
  83. box-sizing: border-box;
  84. background: white;
  85. border-bottom: 1px solid #e6e6e6;
  86. display: flex;
  87. align-items: center;
  88. }
  89. .right-box {
  90. width: 544rpx;
  91. }
  92. .img-sex {
  93. width: 142rpx;
  94. display: flex;
  95. align-items: center;
  96. }
  97. .per-img1 {
  98. width: 27rpx;
  99. height: 71rpx;
  100. flex-shrink: 0;
  101. margin-right: 80rpx;
  102. margin-left: 36rpx;
  103. }
  104. .per-img2 {
  105. width: 39rpx;
  106. height: 72rpx;
  107. flex-shrink: 0;
  108. margin-right: 72rpx;
  109. margin-left: 33rpx;
  110. }
  111. .per-img3 {
  112. width: 77rpx;
  113. height: 72rpx;
  114. flex-shrink: 0;
  115. margin-right: 50rpx;
  116. margin-left: 17rpx;
  117. }
  118. .categoryitem .label {
  119. font-size: 26rpx;
  120. font-weight: 400;
  121. color: #767676;
  122. margin-right: 10rpx;
  123. display: inline-block;
  124. }
  125. .categoryitem .label2 {
  126. box-sizing: content-box;
  127. font-size: 24rpx;
  128. font-weight: 400;
  129. color: #767676;
  130. height: 38rpx;
  131. line-height: 38rpx;
  132. padding: 0 12rpx;
  133. margin: 10rpx 10rpx 0 0;
  134. background: rgba(255, 255, 255, 0);
  135. border: 1px solid #d7d7d7;
  136. border-radius: 4rpx;
  137. display: inline-block;
  138. }
  139. .catetop {
  140. display: flex;
  141. flex-direction: row;
  142. align-items: center;
  143. justify-content: space-between;
  144. }
  145. .type-sex {
  146. display: flex;
  147. font-size: 26rpx;
  148. font-family: PingFang SC, PingFang SC-Regular;
  149. font-weight: 400;
  150. margin-top: 15rpx;
  151. align-items: flex-end;
  152. justify-content: space-between;
  153. position: relative;
  154. }
  155. .type-box-sex {
  156. display: flex;
  157. font-size: 26rpx;
  158. font-family: PingFang SC, PingFang SC-Regular;
  159. font-weight: 400;
  160. /* margin-top: 15rpx; */
  161. align-items: flex-end;
  162. justify-content: space-between;
  163. }
  164. .type {
  165. background: rgba(255, 255, 255, 0);
  166. border: 1px solid #d7d7d7;
  167. border-radius: 4px;
  168. padding: 4rpx 12rpx;
  169. color: #767676;
  170. }
  171. .sex {
  172. background: rgba(255, 255, 255, 0);
  173. border: 1px solid #d7d7d7;
  174. border-radius: 4px;
  175. padding: 4rpx 12rpx;
  176. color: #767676;
  177. margin-left: 14rpx;
  178. }
  179. .catetop text {
  180. font-size: 24rpx;
  181. font-weight: 500;
  182. text-align: left;
  183. color: #2b2b2b;
  184. /* line-height: 52rpx; */
  185. overflow: hidden;
  186. text-overflow: ellipsis;
  187. white-space: nowrap;
  188. }
  189. .catetop .titlex {
  190. width: 540rpx;
  191. color: #2b2b2b;
  192. font-size: 26rpx;
  193. font-family: "FZZhunYuan-M02S";
  194. font-weight: 400;
  195. text-overflow: ellipsis;
  196. display: -webkit-box;
  197. -webkit-line-clamp: 1;
  198. -webkit-box-orient: vertical;
  199. overflow: hidden;
  200. flex-shrink: 0;
  201. }
  202. .catetop .price {
  203. display: flex;
  204. flex-direction: row;
  205. align-items: center;
  206. }
  207. .catetop .price .p2 {
  208. font-size: 36rpx;
  209. font-weight: bold;
  210. color: #ec2e26;
  211. line-height: 45rpx;
  212. }
  213. .catetop .price .p1 {
  214. font-size: 26rpx;
  215. color: #ec2e26;
  216. line-height: 52rpx;
  217. }
  218. .catebottom {
  219. display: flex;
  220. justify-content: space-between;
  221. /* align-items: center; */
  222. margin-top: 13rpx;
  223. }
  224. .bot-left-type {
  225. font-size: 26rpx;
  226. font-family: PingFang SC, PingFang SC-Regular;
  227. font-weight: 400;
  228. color: #808080;
  229. }
  230. .time-icon {
  231. color: #ffdd36;
  232. }
  233. .bot-time {
  234. display: flex;
  235. margin-top: 15rpx;
  236. }
  237. .bot-right {
  238. display: flex;
  239. flex-direction: column;
  240. /* justify-content: space-between; */
  241. align-items: flex-end;
  242. position: absolute;
  243. right: 0;
  244. bottom: 0;
  245. }
  246. .time-box {
  247. font-size: 26rpx;
  248. font-family: PingFang SC, PingFang SC-Regular;
  249. font-weight: 400;
  250. color: #808080;
  251. margin-left: 9rpx;
  252. }
  253. .catebottom .adico {
  254. width: 17rpx;
  255. height: 24rpx;
  256. margin-right: 14rpx;
  257. display: inline-block;
  258. }
  259. .catebottom .address {
  260. display: inline-block;
  261. line-height: 24rpx;
  262. overflow: hidden;
  263. text-overflow: ellipsis;
  264. white-space: nowrap;
  265. width: 330rpx;
  266. font-size: 26rpx;
  267. font-weight: 400;
  268. text-align: left;
  269. color: #999999;
  270. }
  271. .catebottom .sub-btn-box {
  272. display: inline-block;
  273. width: calc(100% - 375rpx);
  274. text-align: right;
  275. vertical-align: text-top;
  276. margin-top: -10rpx;
  277. }
  278. .type-sex .sub-btn {
  279. background: #e6e6e6;
  280. border-radius: 28rpx;
  281. height: 55rpx;
  282. line-height: 55rpx;
  283. color: #0a0a0a;
  284. font-size: 28rpx;
  285. width: 150rpx;
  286. text-align: center;
  287. margin-top: 22rpx;
  288. }
  289. .type-sex .sub-btn.green {
  290. background: #ffdc2f;
  291. }
  292. /* 最会玩 */
  293. .boxm {
  294. position: relative;
  295. text-align: center;
  296. width: 100%;
  297. opacity: 1;
  298. background: #ffffff;
  299. border-radius: 20rpx 20rpx 0 0;
  300. margin-bottom: 20rpx;
  301. border-bottom: 1px solid #e6e6e6;
  302. display: flex;
  303. padding-bottom: 28rpx;
  304. }
  305. .boxmfix {
  306. margin-bottom: 15rpx;
  307. }
  308. .icon-time {
  309. margin-right: 9rpx;
  310. font-size: 30rpx;
  311. color: #ffdc2f;
  312. }
  313. .icon-pel {
  314. font-size: 30rpx;
  315. color: #ffdc2f;
  316. margin-right: 9rpx;
  317. }
  318. .img-view > image {
  319. position: relative;
  320. border-radius: 20rpx;
  321. width: 240rpx;
  322. height: 240rpx;
  323. flex-shrink: 0;
  324. }
  325. .c-BBBBBB {
  326. color: #bbbbbb;
  327. }
  328. .txt-c-t {
  329. color: #171717;
  330. font-size: 32rpx;
  331. font-weight: bold;
  332. width: 80%;
  333. }
  334. .txt-c-time > label {
  335. font-size: 30rpx;
  336. margin-bottom: 5rpx;
  337. color: #33bcb2;
  338. font-weight: bold;
  339. }
  340. .img-view {
  341. width: 100%;
  342. height: 240rpx;
  343. opacity: 1;
  344. background: rgba(0, 0, 0, 0);
  345. border-radius: 20rpx 20rpx 0px 0;
  346. }
  347. .shadow {
  348. position: absolute;
  349. top: 0;
  350. left: 0;
  351. height: 100%;
  352. width: 100%;
  353. background: rgba(0, 0, 0, 0.5);
  354. border-radius: 24rpx;
  355. }
  356. .txt-t {
  357. position: absolute;
  358. top: 100rpx;
  359. left: 110rpx;
  360. font-family: "PingFang-SC-Bold";
  361. font-weight: Bold;
  362. color: #fff;
  363. font-size: 32rpx;
  364. }
  365. .txt-b {
  366. position: absolute;
  367. top: 160rpx;
  368. left: 165rpx;
  369. font-family: "PingFang-SC-Regular";
  370. font-weight: Regular;
  371. color: #fff;
  372. font-size: 10px;
  373. }
  374. .txt-con {
  375. /* width: 100%; */
  376. padding: 0 30rpx 0 30rpx;
  377. text-align: left;
  378. display: flex;
  379. flex-direction: column;
  380. justify-content: space-between;
  381. }
  382. .txt-con-fix .title {
  383. font-size: 28rpx;
  384. line-height: 40rpx;
  385. color: #292929;
  386. margin-bottom: 10rpx;
  387. font-family: PingFang SC, PingFang SC-Bold;
  388. font-weight: 700;
  389. text-overflow: ellipsis;
  390. display: -webkit-box;
  391. -webkit-line-clamp: 1;
  392. -webkit-box-orient: vertical;
  393. overflow: hidden;
  394. }
  395. .titem {
  396. width: 100%;
  397. }
  398. .address-type {
  399. display: flex;
  400. justify-content: space-between;
  401. align-items: center;
  402. padding-top: 9rpx;
  403. }
  404. .active-type {
  405. font-size: 24rpx;
  406. font-family: PingFang SC, PingFang SC-Regular;
  407. font-weight: 400;
  408. color: #333333;
  409. flex-shrink: 0;
  410. /* width: 118rpx; */
  411. }
  412. .active-item-address {
  413. display: flex;
  414. position: relative;
  415. }
  416. .icon-list-dizhi {
  417. /* position: absolute; */
  418. color: #ffdc2f !important;
  419. font-size: 30rpx !important;
  420. margin-right: 9rpx !important;
  421. /* top: 2rpx;
  422. left: -2rpx; */
  423. }
  424. .active-item-address .address-word {
  425. font-size: 24rpx;
  426. font-family: PingFang SC, PingFang SC-Regular;
  427. font-weight: 400;
  428. color: #999999;
  429. /* margin-left: 36rpx; */
  430. white-space: nowrap;
  431. text-overflow: ellipsis;
  432. overflow: hidden;
  433. word-break: break-all;
  434. width: 400rpx;
  435. }
  436. .status {
  437. position: absolute;
  438. left: 0;
  439. top: 0;
  440. font-size: 24rpx;
  441. padding: 0 20rpx;
  442. height: 39rpx;
  443. line-height: 39rpx;
  444. text-align: center;
  445. background: rgba(0, 0, 0, 0.6);
  446. z-index: 7;
  447. color: white;
  448. border-radius: 20rpx 0 0 0;
  449. }
  450. .activestatus {
  451. background: #ffdc2f;
  452. }
  453. .baostatus {
  454. background: #3be5b2;
  455. }
  456. .endstatus {
  457. background: #707070;
  458. }
  459. .nostatus {
  460. background: rgba(251, 177, 120, 0.9);
  461. }
  462. .mstatus {
  463. background: #ff3a3a;
  464. }
  465. .txt-con .item .time-box,
  466. .txt-con .address-type,
  467. .txt-con .num-price .num {
  468. display: flex;
  469. align-items: center;
  470. }
  471. .txt-con .item .time-box,
  472. .txt-con .num-price .num {
  473. font-size: 24rpx;
  474. color: #999999;
  475. }
  476. .txt-con .item .icon-box,
  477. .txt-con .address-type .icon-box,
  478. .txt-con .num-price .icon-box {
  479. width: 35rpx;
  480. text-align: left;
  481. margin-right: 9rpx;
  482. flex-shrink: 0;
  483. }
  484. .num-price {
  485. display: flex;
  486. justify-content: space-between;
  487. font-size: 28rpx;
  488. line-height: 36rpx;
  489. font-weight: 400;
  490. color: #333333;
  491. margin-bottom: 5rpx;
  492. font-family: PingFang SC, PingFang SC-Regular;
  493. margin-top: 8rpx;
  494. position: relative;
  495. }
  496. .price-h .p1 {
  497. font-size: 20rpx;
  498. font-weight: 500;
  499. text-align: left;
  500. color: #ec2e26;
  501. }
  502. .price-h .p2 {
  503. font-size: 30rpx;
  504. font-weight: bold;
  505. text-align: left;
  506. color: #ec2e26;
  507. }