index.wxss 19 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019
  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: 38px;
  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: 38px;
  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. box-sizing: border-box;
  600. }
  601. .picker text {
  602. font-family: PingFang-SC-Regular;
  603. font-weight: Regular;
  604. color: #1a1a1a;
  605. }
  606. .downMenu .section {
  607. color: #585858;
  608. font-family: PingFang-SC-Regular;
  609. text-align: center;
  610. margin-left: 0;
  611. }
  612. .pageContentfix .downMenu {
  613. margin-top: 0rpx !important;
  614. margin-bottom: 0rpx !important;
  615. display: flex;
  616. flex-direction: row;
  617. /* justify-content: space-around; */
  618. }
  619. .pageContentfix .section {
  620. /* height: 90rpx; */
  621. height: 60rpx;
  622. width: fit-content;
  623. display: flex;
  624. flex-direction: row;
  625. align-items: center;
  626. }
  627. .pageContentfix .section picker {
  628. justify-content: center;
  629. }
  630. .pageContentfix .section .picker {
  631. display: flex;
  632. /* height: 90rpx; */
  633. height: 60rpx;
  634. align-items: center;
  635. width: 100%;
  636. justify-content: center;
  637. background: #ffffff;
  638. border-radius: 30rpx;
  639. padding: 0 27rpx;
  640. box-sizing: border-box;
  641. }
  642. .box {
  643. display: flex;
  644. justify-content: space-around;
  645. }
  646. .txt-nav {
  647. z-index: 99999;
  648. display: flex;
  649. align-items: center;
  650. justify-content: center;
  651. }
  652. .news-container-txtone {
  653. position: absolute;
  654. top: 41rpx;
  655. letter-spacing: 5rpx;
  656. text-align: center;
  657. z-index: 9999;
  658. font-family: "PingFang-SC-Regular";
  659. font-weight: 700;
  660. font-size: 13px;
  661. color: #fff;
  662. }
  663. .imgwidth {
  664. width: 100%;
  665. height: 347rpx;
  666. }
  667. .imgheight {
  668. height: 100%;
  669. }
  670. .volunteer-box image {
  671. width: 40rpx;
  672. height: 40rpx;
  673. vertical-align: bottom;
  674. position: relative;
  675. }
  676. .volunteer-location {
  677. position: absolute;
  678. bottom: 40rpx;
  679. left: 33rpx;
  680. }
  681. .volunteer-location text {
  682. color: #fff;
  683. }
  684. .txtall {
  685. position: relative;
  686. font-size: 26rpx;
  687. font-family: "PingFang-SC-Regular";
  688. color: #7b7b7b;
  689. vertical-align: top;
  690. padding-left: 5rpx;
  691. }
  692. .volunteer-people {
  693. position: absolute;
  694. bottom: 40rpx;
  695. right: 50rpx;
  696. }
  697. .volunteer-people text {
  698. color: #fff;
  699. }
  700. .gf {
  701. height: 40rpx;
  702. width: 87rpx;
  703. margin-right: 10rpx;
  704. }
  705. .price {
  706. width: 100%;
  707. text-align: center;
  708. color: #ec2e26;
  709. font-size: 36rpx;
  710. font-weight: bold;
  711. }
  712. .activeprice {
  713. text-align: left;
  714. }
  715. @font-face {
  716. font-family: "iconfont";
  717. src: url("iconfont.eot?t=1559296891592"); /* IE9 */
  718. src: url("iconfont.eot?t=1559296891592#iefix") format("embedded-opentype"),
  719. /* IE6-IE8 */
  720. 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==")
  721. format("woff2"),
  722. url("iconfont.woff?t=1559296891592") format("woff"),
  723. url("iconfont.ttf?t=1559296891592") format("truetype"),
  724. /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  725. url("iconfont.svg?t=1559296891592#iconfont") format("svg"); /* iOS 4.1- */
  726. }
  727. .iconfont {
  728. font-family: "iconfont" !important;
  729. font-style: normal;
  730. -webkit-font-smoothing: antialiased;
  731. -moz-osx-font-smoothing: grayscale;
  732. }
  733. .icon-duorenyonghu-:before {
  734. content: "\e68e";
  735. }
  736. .icon-dingwei:before {
  737. content: "\e617";
  738. }
  739. .pageContent {
  740. width: 100%;
  741. /* padding:0 30rpx; */
  742. min-height: 600rpx;
  743. box-sizing: border-box;
  744. background: transparent;
  745. border-radius: 20rpx 20rpx 0 0;
  746. display: flex;
  747. flex-direction: column;
  748. }
  749. .pageContentfix {
  750. width: 100%;
  751. padding: 0;
  752. box-sizing: border-box;
  753. }
  754. .list {
  755. background: white;
  756. border-radius: 20rpx;
  757. margin-bottom: 25rpx;
  758. }
  759. .iTab {
  760. border-radius: 20rpx 20rpx 0 0;
  761. background: #fbfbfb;
  762. height: 90rpx;
  763. width: 100%;
  764. }
  765. page {
  766. /* background: #f7f7f7!important; */
  767. }
  768. .img-content {
  769. padding-top: 20rpx;
  770. box-sizing: border-box;
  771. }
  772. .list-item {
  773. display: flex;
  774. flex-direction: row;
  775. align-items: center;
  776. }
  777. .list-item-mg12 {
  778. margin-top: 10rpx;
  779. }
  780. .list-item-mg {
  781. margin-top: 19rpx;
  782. }
  783. .list-item:nth-child(2n) {
  784. margin-top: 5rpx;
  785. }
  786. .list-brief-item {
  787. font-size: 24rpx;
  788. line-height: 45rpx;
  789. }
  790. .adico {
  791. width: 22rpx;
  792. height: 28rpx;
  793. margin-right: 13rpx;
  794. }
  795. .list-item-mga {
  796. margin-top: 45rpx;
  797. }
  798. .tagwrap {
  799. display: flex;
  800. flex-direction: row;
  801. align-items: center;
  802. margin: 10rpx 0;
  803. }
  804. .tagitem {
  805. font-size: 20rpx;
  806. font-family: PingFang SC, PingFang SC-Regular;
  807. font-weight: 400;
  808. text-align: center;
  809. line-height: 32rpx;
  810. width: 105rpx;
  811. height: 32rpx;
  812. opacity: 1;
  813. color: #9ddb52;
  814. margin-right: 10rpx;
  815. background: #eefaf5;
  816. border-radius: 16rpx 16rpx 16rpx 0px;
  817. }
  818. .txt-con .title {
  819. display: -webkit-box;
  820. overflow: hidden;
  821. -webkit-box-orient: vertical;
  822. -webkit-line-clamp: 1;
  823. }
  824. .txt-con .item {
  825. font-size: 28rpx;
  826. line-height: 36rpx;
  827. font-weight: 400;
  828. color: #333333;
  829. display: -webkit-box;
  830. overflow: hidden;
  831. -webkit-box-orient: vertical;
  832. -webkit-line-clamp: 1;
  833. margin-bottom: 5rpx;
  834. font-family: PingFang SC, PingFang SC-Regular;
  835. }
  836. .txt-con .item .time-box,
  837. .txt-con .address-type,
  838. .txt-con .num-price .num {
  839. display: flex;
  840. align-items: center;
  841. }
  842. .txt-con .item .time-box,
  843. .txt-con .num-price .num {
  844. font-size: 24rpx;
  845. color: #999999;
  846. }
  847. .txt-con .item .icon-box,
  848. .txt-con .address-type .icon-box,
  849. .txt-con .num-price .icon-box {
  850. width: 35rpx;
  851. text-align: left;
  852. margin-right: 9rpx;
  853. flex-shrink: 0;
  854. }
  855. .num-price {
  856. display: flex;
  857. justify-content: space-between;
  858. font-size: 28rpx;
  859. line-height: 36rpx;
  860. font-weight: 400;
  861. color: #333333;
  862. margin-bottom: 5rpx;
  863. font-family: PingFang SC, PingFang SC-Regular;
  864. margin-top: 8rpx;
  865. position: relative;
  866. }
  867. .price-h {
  868. display: flex;
  869. justify-content: space-between;
  870. }
  871. .price-h .p1 {
  872. font-size: 20rpx;
  873. font-weight: 500;
  874. text-align: left;
  875. color: #ec2e26;
  876. }
  877. .price-h .p2 {
  878. font-size: 30rpx;
  879. font-weight: bold;
  880. text-align: left;
  881. color: #ec2e26;
  882. }
  883. .price-h-l {
  884. display: flex;
  885. align-items: center;
  886. justify-content: center;
  887. min-width: 166rpx;
  888. height: 46rpx;
  889. background: #fffaf3;
  890. border: 1rpx solid #f8d6a9;
  891. border-radius: 10rpx;
  892. }
  893. .isvip {
  894. font-size: 24rpx;
  895. color: #e88600;
  896. }
  897. .txt-con .item .red {
  898. color: #ff0000;
  899. font-weight: 500;
  900. text-align: left;
  901. }
  902. .txt-con .item image {
  903. width: 24rpx;
  904. margin-right: 10rpx;
  905. vertical-align: middle;
  906. max-height: 50rpx;
  907. }
  908. .txt-con .item text {
  909. vertical-align: middle;
  910. }
  911. .iconfont {
  912. color: #9ddb52;
  913. font-size: 29rpx;
  914. margin-right: 0;
  915. }
  916. .iconfont.gray {
  917. color: #666666;
  918. font-size: 25rpx;
  919. }
  920. .addresstext {
  921. overflow: hidden;
  922. text-overflow: ellipsis;
  923. white-space: nowrap;
  924. width: 80%;
  925. }
  926. .pagebody {
  927. width: 690rpx;
  928. border-radius: 20rpx 20rpx 0 0;
  929. margin: 0 auto;
  930. background: #f8f8f8;
  931. padding: 0 30rpx;
  932. box-sizing: border-box;
  933. display: flex;
  934. flex-direction: column;
  935. box-shadow: 0px 0px 12px rgba(128, 128, 128, 0.16);
  936. }
  937. .listss-item {
  938. background: #ffffff;
  939. /* box-shadow:0px 1px 6px rgba(128, 128, 128, 0.16); */
  940. }
  941. .pagebodys {
  942. width: 750rpx;
  943. /* width:690rpx; */
  944. margin: 0 auto;
  945. padding: 0 30rpx;
  946. box-sizing: border-box;
  947. background: #f7f8fa;
  948. border-radius: 40rpx 40rpx 30rpx 0px;
  949. }
  950. .pagebodys .downMenu {
  951. /* position: sticky;
  952. top: 0; */
  953. z-index: 1000;
  954. background: #f7f8fa;
  955. }
  956. .pagebodys .marginTop {
  957. /* padding-top:10rpx; */
  958. box-sizing: border-box;
  959. display: flex;
  960. flex-direction: column;
  961. }
  962. .nodata-img {
  963. margin: 130rpx auto;
  964. }
  965. .picker {
  966. white-space: nowrap;
  967. }