index.wxss 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018
  1. /* pages/experience/index/index.wxss */
  2. @import "../../home/index/memberArea/memberArea.wxss";
  3. @import "../../common.wxss";
  4. page {
  5. background-color: white !important;
  6. }
  7. .boxs {
  8. width: 100%;
  9. height: 110rpx;
  10. background-color: #f5f5f5;
  11. display: flex;
  12. justify-content: space-around;
  13. }
  14. .di-box {
  15. display: flex;
  16. }
  17. .sticky-box {
  18. /* border-bottom: 1px solid #e6e6e6; */
  19. /* height: 103rpx; */
  20. height: 48px;
  21. padding: 0 32rpx;
  22. background-color: white;
  23. width: 750rpx;
  24. box-sizing: border-box;
  25. }
  26. .item-box {
  27. width: 100%;
  28. white-space: nowrap;
  29. overflow-x: auto;
  30. z-index: 1000000;
  31. position: relative;
  32. }
  33. .namewrap {
  34. position: relative;
  35. /* padding-top: 20rpx; */
  36. }
  37. .namewrap .nameitem {
  38. display: inline-block;
  39. font-size: 32rpx;
  40. font-weight: 400;
  41. font-family: PingFang SC, PingFang SC-Regular;
  42. text-align: left;
  43. color: #1a1a1a;
  44. margin-right: 43rpx;
  45. position: relative;
  46. /* height: 103rpx; */
  47. height: 48px;
  48. /* line-height: 103rpx; */
  49. /* line-height: 57px; */
  50. padding-top: 15rpx;
  51. box-sizing: border-box;
  52. }
  53. .picker-text {
  54. font-size: 28rpx;
  55. font-family: PingFang SC, PingFang SC-Regular !important;
  56. font-weight: 400 !important;
  57. }
  58. .namewrap .nameactive {
  59. font-size: 34rpx;
  60. font-weight: 700;
  61. text-align: left;
  62. color: #2b58a5;
  63. font-family: PingFang SC, PingFang SC-Bold;
  64. }
  65. .item-line {
  66. position: absolute;
  67. bottom: 0;
  68. width: 80%;
  69. height: 4rpx;
  70. background: #2b58a5;
  71. border-radius: 2rpx;
  72. left: 50%;
  73. transform: translateX(-50%);
  74. }
  75. .namewrap .filter {
  76. position: absolute;
  77. top: 20rpx;
  78. right: 0;
  79. z-index: 10;
  80. height: 49rpx;
  81. width: 103rpx;
  82. text-align: center;
  83. line-height: 49rpx;
  84. background: #ffffff;
  85. border-radius: 10rpx;
  86. color: #666666;
  87. }
  88. .namewrap .filter .triangle {
  89. background: white;
  90. border-top: 10rpx solid white;
  91. border-right: 5px solid #666666;
  92. height: 0;
  93. float: right;
  94. margin-right: 10rpx;
  95. margin-top: 30rpx;
  96. display: flex;
  97. justify-content: center;
  98. align-items: flex-end;
  99. width: 5rpx;
  100. border-radius: 0 5rpx 0rpx 0rpx;
  101. }
  102. .top-act {
  103. position: fixed;
  104. width: 750rpx;
  105. z-index: 99999;
  106. background-color: white;
  107. top: 0;
  108. display: flex;
  109. align-items: flex-end;
  110. box-sizing: border-box;
  111. padding-left: 30rpx;
  112. justify-content: space-between;
  113. padding-bottom: 10px;
  114. }
  115. .act-title {
  116. font-size: 36rpx;
  117. font-family: PingFang SC, PingFang SC-Bold;
  118. font-weight: 700;
  119. }
  120. .nomore {
  121. text-align: center;
  122. margin: 40rpx auto;
  123. font-size: 28rpx;
  124. background: linear-gradient(to right, #858383, rgb(170, 170, 172));
  125. -webkit-background-clip: text;
  126. color: transparent;
  127. }
  128. .box-image-l image {
  129. /* position: relative; */
  130. width: 100%;
  131. height: 85rpx;
  132. /* margin-left: 30rpx;
  133. margin-top: 12rpx;
  134. flex: 1; */
  135. }
  136. .img-txt {
  137. /* position: absolute;
  138. top: 37rpx;
  139. left: 101rpx; */
  140. font-family: "PingFang-SC-Regular";
  141. font-weight: Regular;
  142. font-size: 13px;
  143. color: #fff;
  144. }
  145. .img-txt2 {
  146. position: absolute;
  147. top: 34rpx;
  148. left: 314rpx;
  149. font-family: "PingFang-SC-Regular";
  150. font-weight: Regular;
  151. font-size: 13px;
  152. color: #fff;
  153. }
  154. .img-txt3 {
  155. position: absolute;
  156. top: 36rpx;
  157. left: 571rpx;
  158. font-family: "PingFang-SC-Regular";
  159. font-weight: Regular;
  160. font-size: 13px;
  161. color: #fff;
  162. }
  163. /* 2.picuter */
  164. .maxBox {
  165. width: 100%;
  166. height: 100%;
  167. }
  168. /* 城市体验 */
  169. .boxm {
  170. position: relative;
  171. text-align: center;
  172. width: 100%;
  173. opacity: 1;
  174. background: #ffffff;
  175. border-radius: 20rpx;
  176. margin-bottom: 20rpx;
  177. display: flex;
  178. padding: 30rpx 22rpx;
  179. box-sizing: border-box;
  180. }
  181. .boxmfix {
  182. margin-bottom: 15rpx;
  183. }
  184. .icon-time {
  185. margin-right: 9rpx;
  186. font-size: 30rpx;
  187. color: #999999;
  188. }
  189. .icon-pel {
  190. font-size: 30rpx;
  191. color: #999999;
  192. margin-right: 9rpx;
  193. /* position: absolute;
  194. top: 4rpx; */
  195. }
  196. .img-view > image {
  197. position: relative;
  198. border-radius: 20rpx;
  199. width: 240rpx;
  200. height: 240rpx;
  201. flex-shrink: 0;
  202. /* display: flex; */
  203. }
  204. .c-BBBBBB {
  205. color: #bbbbbb;
  206. }
  207. .txt-c-t {
  208. color: #171717;
  209. font-size: 32rpx;
  210. font-weight: bold;
  211. width: 80%;
  212. }
  213. .txt-c-time > label {
  214. font-size: 30rpx;
  215. margin-bottom: 5rpx;
  216. color: #33bcb2;
  217. font-weight: bold;
  218. }
  219. .img-view {
  220. /* width: 100%; */
  221. width: 240rpx;
  222. height: 240rpx;
  223. opacity: 1;
  224. background: rgba(0, 0, 0, 0);
  225. border-radius: 20rpx 20rpx 0px 0;
  226. }
  227. .shadow {
  228. position: absolute;
  229. top: 0;
  230. left: 0;
  231. height: 100%;
  232. width: 100%;
  233. background: rgba(0, 0, 0, 0.5);
  234. border-radius: 24rpx;
  235. }
  236. .txt-t {
  237. position: absolute;
  238. top: 100rpx;
  239. left: 110rpx;
  240. font-family: "PingFang-SC-Bold";
  241. font-weight: Bold;
  242. color: #fff;
  243. font-size: 32rpx;
  244. }
  245. .txt-b {
  246. position: absolute;
  247. top: 160rpx;
  248. left: 165rpx;
  249. font-family: "PingFang-SC-Regular";
  250. font-weight: Regular;
  251. color: #fff;
  252. font-size: 10px;
  253. }
  254. .txt-con {
  255. flex: 1;
  256. width: 0;
  257. /* padding: 0 30rpx 0 30rpx; */
  258. margin-left: 30rpx;
  259. text-align: left;
  260. display: flex;
  261. flex-direction: column;
  262. justify-content: space-between;
  263. box-sizing: border-box;
  264. }
  265. .txt-con-fix .title {
  266. font-size: 28rpx;
  267. line-height: 40rpx;
  268. color: #292929;
  269. margin-bottom: 10rpx;
  270. font-family: PingFang SC, PingFang SC-Bold;
  271. font-weight: 700;
  272. text-overflow: ellipsis;
  273. display: -webkit-box;
  274. -webkit-line-clamp: 1;
  275. -webkit-box-orient: vertical;
  276. overflow: hidden;
  277. }
  278. .titem {
  279. width: 100%;
  280. }
  281. .address-type {
  282. display: flex;
  283. justify-content: space-between;
  284. align-items: center;
  285. padding-top: 9rpx;
  286. }
  287. .active-type {
  288. font-size: 24rpx;
  289. font-family: PingFang SC, PingFang SC-Regular;
  290. font-weight: 400;
  291. color: #333333;
  292. flex-shrink: 0;
  293. /* width: 118rpx; */
  294. }
  295. .active-item-address {
  296. display: flex;
  297. position: relative;
  298. width: 100%;
  299. }
  300. .icon-list-dizhi {
  301. /* position: absolute; */
  302. color: #999999 !important;
  303. font-size: 30rpx !important;
  304. margin-right: 9rpx !important;
  305. /* top: 2rpx;
  306. left: -2rpx; */
  307. }
  308. .active-item-address .address-word {
  309. font-size: 24rpx;
  310. font-family: PingFang SC, PingFang SC-Regular;
  311. font-weight: 400;
  312. color: #999999;
  313. /* margin-left: 36rpx; */
  314. white-space: nowrap;
  315. text-overflow: ellipsis;
  316. overflow: hidden;
  317. word-break: break-all;
  318. /* width: 400rpx; */
  319. }
  320. .status {
  321. width: 115rpx;
  322. height: 50rpx;
  323. position: absolute;
  324. left: 0rpx;
  325. top: 0rpx;
  326. font-size: 24rpx;
  327. line-height: 50rpx;
  328. padding-left: 14rpx;
  329. z-index: 10;
  330. color: white;
  331. background-size: 115rpx 50rpx;
  332. background-repeat: no-repeat;
  333. text-align: left;
  334. /* border-radius: 20rpx 20rpx 0 20rpx; */
  335. }
  336. .activestatus {
  337. background: #ffdc2f;
  338. }
  339. .baostatus {
  340. background: #3be5b2;
  341. }
  342. .endstatus {
  343. background: #707070;
  344. }
  345. .nostatus {
  346. background: rgba(251, 177, 120, 0.9);
  347. }
  348. .mstatus {
  349. background: #ff3a3a;
  350. }
  351. /* 3.picuter min */
  352. .boxl {
  353. width: 100%;
  354. height: 60rpx;
  355. display: flex;
  356. margin-top: 12rpx;
  357. }
  358. .boxl image {
  359. flex: 1;
  360. width: 160rpx;
  361. height: 100%;
  362. margin-left: 22rpx;
  363. }
  364. /* 4.picutermax + text */
  365. .two {
  366. width: 100%;
  367. height: 100%;
  368. background-color: #fff;
  369. }
  370. .two-max {
  371. position: relative;
  372. width: 100%;
  373. height: 381rpx;
  374. background-color: #fff;
  375. border: 1px solid #eaeaea;
  376. }
  377. .two-max image {
  378. position: relative;
  379. width: 705rpx;
  380. height: 292rpx;
  381. margin-left: 22rpx;
  382. margin-top: 15rpx;
  383. border-radius: 5rpx;
  384. }
  385. .two-min {
  386. position: relative;
  387. width: 430rpx;
  388. height: 116rpx;
  389. background-color: #fff;
  390. border-radius: 10px;
  391. bottom: 75rpx;
  392. left: 23rpx;
  393. }
  394. .two-min-n {
  395. position: absolute;
  396. width: 410rpx;
  397. height: 94rpx;
  398. background-color: #fefddf;
  399. margin-top: 10rpx;
  400. margin-left: 20rpx;
  401. border-radius: 10rpx;
  402. }
  403. .txt-one text {
  404. font-size: 16px;
  405. color: #ffbe31;
  406. font-family: "PingFang-SC-Bold";
  407. font-weight: Bold;
  408. margin-left: 25rpx;
  409. margin-top: 13rpx;
  410. }
  411. .txt-two text {
  412. position: relative;
  413. font-size: 12px;
  414. color: #ffbe31;
  415. font-family: "PingFang-SC-Regular";
  416. font-weight: Regular;
  417. margin-left: 25rpx;
  418. bottom: 8rpx;
  419. text-align: center;
  420. }
  421. .txt-center {
  422. z-index: 99999;
  423. display: flex;
  424. align-items: center;
  425. justify-content: center;
  426. }
  427. .news-container-txt {
  428. position: absolute;
  429. bottom: 155rpx;
  430. letter-spacing: 5rpx;
  431. text-align: center;
  432. z-index: 9999;
  433. color: #fff;
  434. font-size: 40rpx;
  435. font-weight: 700;
  436. font-family: PingFang-SC-Bold;
  437. }
  438. .news-container-txtwo {
  439. position: absolute;
  440. bottom: 108rpx;
  441. letter-spacing: 5rpx;
  442. z-index: 9999;
  443. color: #fff;
  444. font-size: 27rpx;
  445. font-family: PingFang-SC-Regular;
  446. }
  447. .txt-color {
  448. color: yellow;
  449. }
  450. .box {
  451. display: flex;
  452. justify-content: space-around;
  453. }
  454. .txt-box {
  455. z-index: 99999;
  456. display: flex;
  457. align-items: center;
  458. justify-content: center;
  459. }
  460. .scroll {
  461. height: 347rpx;
  462. position: relative;
  463. z-index: -1;
  464. }
  465. .news-container-txtone {
  466. position: absolute;
  467. top: 41rpx;
  468. letter-spacing: 5rpx;
  469. text-align: center;
  470. z-index: 9999;
  471. font-family: "PingFang-SC-Regular";
  472. font-weight: 700;
  473. font-size: 13px;
  474. color: #fff;
  475. }
  476. .imgwidth {
  477. width: 48%;
  478. }
  479. .imgheight {
  480. height: 100%;
  481. border-radius: 18rpx;
  482. }
  483. .volunteer-box image {
  484. width: 40rpx;
  485. height: 40rpx;
  486. vertical-align: bottom;
  487. position: relative;
  488. }
  489. .volunteer-location {
  490. position: absolute;
  491. bottom: 26rpx;
  492. left: 20rpx;
  493. }
  494. .volunteer-location text {
  495. color: #fff;
  496. }
  497. .volunteer-people {
  498. position: absolute;
  499. bottom: 26rpx;
  500. right: 50rpx;
  501. }
  502. .volunteer-people text {
  503. color: #fff;
  504. }
  505. /* .news-container-txtfir {
  506. position: absolute;
  507. top: 117rpx;
  508. letter-spacing: 5rpx;
  509. text-align: center;
  510. z-index: 9999;
  511. color: #fff;
  512. font-size: 36rpx;
  513. font-weight: 700;
  514. font-family: PingFang-SC-Bold;
  515. }
  516. .news-container-txtsec {
  517. position: absolute;
  518. bottom: 105rpx;
  519. letter-spacing: 5rpx;
  520. z-index: 9999;
  521. color: #fff;
  522. font-size: 27rpx;
  523. font-family: PingFang-SC-Regular;
  524. } */
  525. .boxs {
  526. width: 100%;
  527. height: 347rpx;
  528. background-color: 80rpx;
  529. display: flex;
  530. flex-direction: column;
  531. }
  532. .box-image-l image {
  533. position: relative;
  534. width: 215rpx;
  535. height: 85rpx;
  536. margin-left: 30rpx;
  537. margin-top: 12rpx;
  538. flex: 1;
  539. }
  540. .img-txt {
  541. position: absolute;
  542. top: 37rpx;
  543. left: 101rpx;
  544. font-family: "PingFang-SC-Regular";
  545. font-weight: Regular;
  546. font-size: 13px;
  547. color: #fff;
  548. }
  549. .img-txt2 {
  550. position: absolute;
  551. top: 34rpx;
  552. left: 314rpx;
  553. font-family: "PingFang-SC-Regular";
  554. font-weight: Regular;
  555. font-size: 13px;
  556. color: #fff;
  557. }
  558. .txt-center {
  559. z-index: 99999;
  560. display: flex;
  561. align-items: center;
  562. justify-content: center;
  563. }
  564. .img-txt3 {
  565. position: absolute;
  566. top: 36rpx;
  567. left: 571rpx;
  568. font-family: "PingFang-SC-Regular";
  569. font-weight: Regular;
  570. font-size: 13px;
  571. color: #fff;
  572. }
  573. .news-container-txt {
  574. position: absolute;
  575. top: 30rpx;
  576. letter-spacing: 5rpx;
  577. text-align: center;
  578. z-index: 9999;
  579. color: #fff;
  580. font-size: 35rpx;
  581. font-weight: 700;
  582. font-family: PingFang-SC-Bold;
  583. }
  584. .news-container-txtwo {
  585. position: absolute;
  586. bottom: 100rpx;
  587. letter-spacing: 5rpx;
  588. z-index: 9999;
  589. color: #fff;
  590. font-size: 27rpx;
  591. font-family: PingFang-SC-Regular;
  592. }
  593. /* 下拉菜单 */
  594. .downMenu {
  595. display: flex;
  596. background-color: white;
  597. justify-content: flex-start;
  598. padding: 20rpx 0;
  599. }
  600. .picker text {
  601. font-family: PingFang-SC-Regular;
  602. font-weight: Regular;
  603. color: #1a1a1a;
  604. }
  605. .downMenu .section {
  606. color: #585858;
  607. font-family: PingFang-SC-Regular;
  608. text-align: center;
  609. margin-left: 0;
  610. }
  611. .pageContentfix .downMenu {
  612. margin-top: 0rpx !important;
  613. margin-bottom: 0rpx !important;
  614. display: flex;
  615. flex-direction: row;
  616. /* justify-content: space-around; */
  617. }
  618. .pageContentfix .section {
  619. /* height: 90rpx; */
  620. height: 50px;
  621. width: fit-content;
  622. display: flex;
  623. flex-direction: row;
  624. align-items: center;
  625. }
  626. .pageContentfix .section picker {
  627. justify-content: center;
  628. }
  629. .pageContentfix .section .picker {
  630. display: flex;
  631. /* height: 90rpx; */
  632. height: 60rpx;
  633. align-items: center;
  634. width: 100%;
  635. justify-content: center;
  636. background: #ffffff;
  637. border-radius: 30rpx;
  638. padding: 0 27rpx;
  639. box-sizing: border-box;
  640. }
  641. .box {
  642. display: flex;
  643. justify-content: space-around;
  644. }
  645. .txt-nav {
  646. z-index: 99999;
  647. display: flex;
  648. align-items: center;
  649. justify-content: center;
  650. }
  651. .news-container-txtone {
  652. position: absolute;
  653. top: 41rpx;
  654. letter-spacing: 5rpx;
  655. text-align: center;
  656. z-index: 9999;
  657. font-family: "PingFang-SC-Regular";
  658. font-weight: 700;
  659. font-size: 13px;
  660. color: #fff;
  661. }
  662. .imgwidth {
  663. width: 100%;
  664. height: 347rpx;
  665. }
  666. .imgheight {
  667. height: 100%;
  668. }
  669. .volunteer-box image {
  670. width: 40rpx;
  671. height: 40rpx;
  672. vertical-align: bottom;
  673. position: relative;
  674. }
  675. .volunteer-location {
  676. position: absolute;
  677. bottom: 40rpx;
  678. left: 33rpx;
  679. }
  680. .volunteer-location text {
  681. color: #fff;
  682. }
  683. .txtall {
  684. position: relative;
  685. font-size: 26rpx;
  686. font-family: "PingFang-SC-Regular";
  687. color: #7b7b7b;
  688. vertical-align: top;
  689. padding-left: 5rpx;
  690. }
  691. .volunteer-people {
  692. position: absolute;
  693. bottom: 40rpx;
  694. right: 50rpx;
  695. }
  696. .volunteer-people text {
  697. color: #fff;
  698. }
  699. .gf {
  700. height: 40rpx;
  701. width: 87rpx;
  702. margin-right: 10rpx;
  703. }
  704. .price {
  705. width: 100%;
  706. text-align: center;
  707. color: #ec2e26;
  708. font-size: 36rpx;
  709. font-weight: bold;
  710. }
  711. .activeprice {
  712. text-align: left;
  713. }
  714. @font-face {
  715. font-family: "iconfont";
  716. src: url("iconfont.eot?t=1559296891592"); /* IE9 */
  717. src: url("iconfont.eot?t=1559296891592#iefix") format("embedded-opentype"),
  718. /* IE6-IE8 */
  719. url("data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAO4AAsAAAAAB3wAAANpAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDBgqCWIJNATYCJAMMCwgABCAFhG0HQRueBsiuMTaGVk+UopMxO6KUS5zdhpf05qI/AJ+JoBore3b3EN1TkBWCRFBE5SMUoYoTMYaF4fKRN7mm6YAwJRwxff77pfyl6ZiMnSRQ5BDlJsxuQg424JZps403CNieuvnDmviXaB51qa9Fsjb4xB8lFGBTN3+cP8g3zgPpwqx0YQjxtIljcxf4WJ7PNlpyZZcXTY6F8HxwzHRRgnlAc8tMHOB4QAONyg+wB/zGF/Qfxq5aioPaTqBpno7ocHltK/BQ4H6BuM9zQ8Ajo1Aa0kNdqFZMLWP4Glg9PUE3eRV8fPzTqJNUMjz0xM0yBhT+JNfZ/TGBAMzpdFBnkbEBUIhrlYYLnKPABs6atsClOb6qCGkq9+wEDIdXJf/wSIKowqltsAYFEz8xRiIcsq66KIOqx0h6BPgIsGQ8dHheLfi34/Hl1+oXe/ubaIFDwtPP0WCRY7fhb7dUgErWnzXQMxuzNrrmZlk5umBvX0Az08wIxH7++tKWrg7hU5/0zNe7x7HJcHbAJ7hwzZcla8UVWwqn0uTBkw1W0dYHSR3IskwNU1PDaAQaVVujZjJleet/1Iek7pzyHoW6yF9C/vuXHFArZgr/25GdSmxQqbz9G6tl1Jn+29gU/7Vq/AanaDIz+n+Hd9C6m5FRF9ud5L+dlfrv5C0g/lDIGl5WlOjpV9x2tpRpO37rON6WcB+sqgwLq6gcCka7Ha8aBIMAZgdFzidA6Cun4cn/+RtX9hHfAf/cXwr4gU5BdvckdQmV+TcqSh4AlJbGxv5c0CAqXV2y03fmS2gSCzNkGfoZLpncsTPUbS+TpGbu7k11KxJkwW6AipYdUFW3D5rWq5jdMkI4i9LAOisAQt8+JF2fIOt7QhbsN1RM/UFVPzI0nYvgJVtWxR2vEoKGKGLg8ATkR7CNpWrqFaY3I85hGSJpdkBsR8TOu2GSITEfrkA2RKYYYR/lkillIUuwFZaD3ZDFgqFAsAmNUIORUiE7IYGteiXDCLYCL4cQyBAKYUDDJkC8EZgNK5pTXoX3b4ZwHCyGkIa6Nm07hLDj24eSGCR2QFYIbJ3qbuUWu1GcZBTFglgEZgWVAx1iIQEMEqo7mSAjKAPjAJ8gWwJqxHYVGJYXWd9vCzThs3OkyFF0rjswQbYJbOOMDr37dd7GjSEeAAAAAA==")
  720. format("woff2"),
  721. url("iconfont.woff?t=1559296891592") format("woff"),
  722. url("iconfont.ttf?t=1559296891592") format("truetype"),
  723. /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  724. url("iconfont.svg?t=1559296891592#iconfont") format("svg"); /* iOS 4.1- */
  725. }
  726. .iconfont {
  727. font-family: "iconfont" !important;
  728. font-style: normal;
  729. -webkit-font-smoothing: antialiased;
  730. -moz-osx-font-smoothing: grayscale;
  731. }
  732. .icon-duorenyonghu-:before {
  733. content: "\e68e";
  734. }
  735. .icon-dingwei:before {
  736. content: "\e617";
  737. }
  738. .pageContent {
  739. width: 100%;
  740. /* padding:0 30rpx; */
  741. min-height: 600rpx;
  742. box-sizing: border-box;
  743. background: transparent;
  744. border-radius: 20rpx 20rpx 0 0;
  745. display: flex;
  746. flex-direction: column;
  747. }
  748. .pageContentfix {
  749. width: 100%;
  750. padding: 0;
  751. box-sizing: border-box;
  752. }
  753. .list {
  754. background: white;
  755. border-radius: 20rpx;
  756. margin-bottom: 25rpx;
  757. }
  758. .iTab {
  759. border-radius: 20rpx 20rpx 0 0;
  760. background: #fbfbfb;
  761. height: 90rpx;
  762. width: 100%;
  763. }
  764. page {
  765. /* background: #f7f7f7!important; */
  766. }
  767. .img-content {
  768. padding-top: 20rpx;
  769. box-sizing: border-box;
  770. }
  771. .list-item {
  772. display: flex;
  773. flex-direction: row;
  774. align-items: center;
  775. }
  776. .list-item-mg12 {
  777. margin-top: 10rpx;
  778. }
  779. .list-item-mg {
  780. margin-top: 19rpx;
  781. }
  782. .list-item:nth-child(2n) {
  783. margin-top: 5rpx;
  784. }
  785. .list-brief-item {
  786. font-size: 24rpx;
  787. line-height: 45rpx;
  788. }
  789. .adico {
  790. width: 22rpx;
  791. height: 28rpx;
  792. margin-right: 13rpx;
  793. }
  794. .list-item-mga {
  795. margin-top: 45rpx;
  796. }
  797. .tagwrap {
  798. display: flex;
  799. flex-direction: row;
  800. align-items: center;
  801. margin: 10rpx 0;
  802. }
  803. .tagitem {
  804. font-size: 20rpx;
  805. font-family: PingFang SC, PingFang SC-Regular;
  806. font-weight: 400;
  807. text-align: center;
  808. line-height: 32rpx;
  809. width: 105rpx;
  810. height: 32rpx;
  811. opacity: 1;
  812. color: #9ddb52;
  813. margin-right: 10rpx;
  814. background: #eefaf5;
  815. border-radius: 16rpx 16rpx 16rpx 0px;
  816. }
  817. .txt-con .title {
  818. display: -webkit-box;
  819. overflow: hidden;
  820. -webkit-box-orient: vertical;
  821. -webkit-line-clamp: 1;
  822. }
  823. .txt-con .item {
  824. font-size: 28rpx;
  825. line-height: 36rpx;
  826. font-weight: 400;
  827. color: #333333;
  828. display: -webkit-box;
  829. overflow: hidden;
  830. -webkit-box-orient: vertical;
  831. -webkit-line-clamp: 1;
  832. margin-bottom: 5rpx;
  833. font-family: PingFang SC, PingFang SC-Regular;
  834. }
  835. .txt-con .item .time-box,
  836. .txt-con .address-type,
  837. .txt-con .num-price .num {
  838. display: flex;
  839. align-items: center;
  840. }
  841. .txt-con .item .time-box,
  842. .txt-con .num-price .num {
  843. font-size: 24rpx;
  844. color: #999999;
  845. }
  846. .txt-con .item .icon-box,
  847. .txt-con .address-type .icon-box,
  848. .txt-con .num-price .icon-box {
  849. width: 35rpx;
  850. text-align: left;
  851. margin-right: 9rpx;
  852. flex-shrink: 0;
  853. }
  854. .num-price {
  855. display: flex;
  856. justify-content: space-between;
  857. font-size: 28rpx;
  858. line-height: 36rpx;
  859. font-weight: 400;
  860. color: #333333;
  861. margin-bottom: 5rpx;
  862. font-family: PingFang SC, PingFang SC-Regular;
  863. margin-top: 8rpx;
  864. position: relative;
  865. }
  866. .price-h {
  867. display: flex;
  868. justify-content: space-between;
  869. }
  870. .price-h .p1 {
  871. font-size: 20rpx;
  872. font-weight: 500;
  873. text-align: left;
  874. color: #ec2e26;
  875. }
  876. .price-h .p2 {
  877. font-size: 30rpx;
  878. font-weight: bold;
  879. text-align: left;
  880. color: #ec2e26;
  881. }
  882. .price-h-l {
  883. display: flex;
  884. align-items: center;
  885. justify-content: center;
  886. min-width: 166rpx;
  887. height: 46rpx;
  888. background: #fffaf3;
  889. border: 1rpx solid #f8d6a9;
  890. border-radius: 10rpx;
  891. }
  892. .isvip {
  893. font-size: 24rpx;
  894. color: #e88600;
  895. }
  896. .txt-con .item .red {
  897. color: #ff0000;
  898. font-weight: 500;
  899. text-align: left;
  900. }
  901. .txt-con .item image {
  902. width: 24rpx;
  903. margin-right: 10rpx;
  904. vertical-align: middle;
  905. max-height: 50rpx;
  906. }
  907. .txt-con .item text {
  908. vertical-align: middle;
  909. }
  910. .iconfont {
  911. color: #9ddb52;
  912. font-size: 29rpx;
  913. margin-right: 0;
  914. }
  915. .iconfont.gray {
  916. color: #666666;
  917. font-size: 25rpx;
  918. }
  919. .addresstext {
  920. overflow: hidden;
  921. text-overflow: ellipsis;
  922. white-space: nowrap;
  923. width: 80%;
  924. }
  925. .pagebody {
  926. width: 690rpx;
  927. border-radius: 20rpx 20rpx 0 0;
  928. margin: 0 auto;
  929. background: #f8f8f8;
  930. padding: 0 30rpx;
  931. box-sizing: border-box;
  932. display: flex;
  933. flex-direction: column;
  934. box-shadow: 0px 0px 12px rgba(128, 128, 128, 0.16);
  935. }
  936. .listss-item {
  937. background: #ffffff;
  938. /* box-shadow:0px 1px 6px rgba(128, 128, 128, 0.16); */
  939. }
  940. .pagebodys {
  941. width: 750rpx;
  942. /* width:690rpx; */
  943. margin: 0 auto;
  944. padding: 0 30rpx;
  945. box-sizing: border-box;
  946. background: #f7f8fa;
  947. border-radius: 40rpx 40rpx 30rpx 0px;
  948. }
  949. .pagebodys .downMenu {
  950. /* position: sticky;
  951. top: 0; */
  952. z-index: 1000;
  953. background: #f7f8fa;
  954. }
  955. .pagebodys .marginTop {
  956. /* padding-top:10rpx; */
  957. box-sizing: border-box;
  958. display: flex;
  959. flex-direction: column;
  960. }
  961. .nodata-img {
  962. margin: 130rpx auto;
  963. }
  964. .picker {
  965. white-space: nowrap;
  966. }