index.wxss 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589
  1. @import "template/volunteer-template/volunteer-template.wxss";
  2. @import "template/growth-template/growth-template.wxss";
  3. /* @font-face {
  4. font-family: "iconfont";
  5. src: url('iconfont.eot?t=1559792796005');
  6. src: url('iconfont.eot?t=1559792796005#iefix') format('embedded-opentype'),
  7. url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAN8AAsAAAAAB2QAAAMtAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCCfAqCVIJHATYCJAMMCwgABCAFhG0HOhuHBlFUThpkX2HjGmgmUuyNPccugoc2IwA+opyBA4CIiQuzDAAAEEH8frTZ3XcmEu+aoFk0mSRSIRE6KUDVUGgkz+RveTvTqnlKoXS2H+2HULUsKVGIhGZrzVJAoSoztUCyCuGf9VF2j9PJsXEv/f/92kIenkT/MtBgOtU7UaxBJ1v6FdO76dBOLN3f2dAurVg7tYglIIAwbMBZzrlHPMELh9Ou+B1l5XLPoT4GGAcU6PmHpEACTMhTGN6J1WEsJzBolaGuH+/f0NWgXSDeeNqEbsapaVKkX+itGNqm40+P/nyb34B3wefjn2V0ST0FXW+9Pjiw/knXlY6HHgJrOj2kURSOQSPuVRpvaETBY9qgQdm0CZrGmIrj/ecJDUn0Qvow2OdCyU+jQyaNWeJc/SoFetGHp8B7Djsd29Tw8PgIulTsbZbNclxOEAo836D8fEhP/zbLVvJra4domK0bKdzizPess9Bq8bLrzrnb7EOWe8wJzwX+KW8coMtW7owt19c+Npc7vonUlkwi9J8isNkADWSzJUXrvW5AgN5sbPfpFSiKfkXkiuoa9KqaXFdVqOtPPHAgXWAfSOQw/+BMXXxjq+Ew7I12ffULLzTDaJ0DigKWx4l01geIMnCEj5JYwsDhAAxL8+huMf/a+xfxhNbhYQxJqr2B+EeVYLQdCRgA3fWhLgN02mLF/+U77n36jydjZ//7bQ18D54UsLulgn5JZ9ZfKGjnQFuUOVBV04UaswLl1Mj+xCDx0AXrpDdcOnO74dBvJoHUZwVKv21kwx5DjyEn0KvfJRh0JI4eMqVpiDaAQ5OBMG5BGvURyriDbNgLPWZ96DUeDRj0IKamHLIbXv+akJmSg6nCanOsqCbth5mfpLPQlDQnwP2SJJ4H/XSej5woJpmiR8/1cqQKWTjCwKxGYcgowj7Z6bSk6WtFM1X1oGnmCPquEcSUIg6UVFBlYzHlVU/1C+//RLRMyCQNZQ3qX0QkvPqRZ7kOyJMw7lR2K6d0OW1pSCmICRZBgdGTkAQZkupGPmJLTZUB/pcV4ipxV+F0eXH0fmtgEIZWZFQ0vc9ZmbHu+IYFAAAAAA==') format('woff2'),
  8. url('iconfont.woff?t=1559792796005') format('woff'),
  9. url('iconfont.ttf?t=1559792796005') format('truetype'),
  10. url('iconfont.svg?t=1559792796005#iconfont') format('svg');
  11. }
  12. */
  13. .home {
  14. overflow-x: hidden;
  15. display: flex;
  16. flex-direction: column;
  17. position: relative;
  18. background-size: 100% 806rpx;
  19. background-repeat: no-repeat;
  20. /* background-position: center; */
  21. }
  22. .slide-box {
  23. position: absolute;
  24. bottom: 25rpx;
  25. left: 50%;
  26. transform: translateX(-50%);
  27. z-index: 100;
  28. height: 10rpx;
  29. /* width: 100%; */
  30. display: flex;
  31. }
  32. .slide-item {
  33. width: 50rpx;
  34. height: 10rpx;
  35. border-radius: 5rpx;
  36. background-color: white;
  37. opacity: 0.5;
  38. margin-left: 10rpx;
  39. }
  40. .slide-active {
  41. width: 50rpx;
  42. height: 10rpx;
  43. border-radius: 5rpx;
  44. background-color: white;
  45. margin-left: 10rpx;
  46. }
  47. .home-top-bg {
  48. /* position: absolute;
  49. z-index: -1; */
  50. width: 100%;
  51. height: 310rpx;
  52. padding: 0 30rpx;
  53. position: relative;
  54. /* background-color: #fff; */
  55. box-sizing: border-box;
  56. }
  57. .home-top-bg .bg {
  58. height: 100%;
  59. width: 690rpx;
  60. /* position: absolute;
  61. top: 0;
  62. left: 0; */
  63. }
  64. .home-top-bg .bg2 {
  65. height: 100%;
  66. width: 100%;
  67. position: absolute;
  68. bottom: 0;
  69. left: 0;
  70. z-index: 1;
  71. }
  72. .lun-img {
  73. height: 310rpx;
  74. border-radius: 18rpx;
  75. }
  76. .bottom-type {
  77. width: 100%;
  78. display: flex;
  79. justify-content: space-around;
  80. padding: 40rpx 30rpx 30rpx;
  81. box-sizing: border-box;
  82. /* background-color: #fff; */
  83. }
  84. .bottom-type .box {
  85. position: relative;
  86. text-align: center;
  87. display: flex;
  88. flex-direction: column;
  89. justify-content: space-between;
  90. align-items: center;
  91. /* width: 112rpx; */
  92. font-size: 24rpx;
  93. }
  94. .bot-box0 {
  95. /* margin-left: 30rpx; */
  96. }
  97. .bot-box1 {
  98. /* margin-left: 24rpx; */
  99. }
  100. .bot-box2 {
  101. /* margin-left: 23rpx; */
  102. }
  103. .bot-box3 {
  104. /* margin-left: 23rpx; */
  105. }
  106. .bot-box4 {
  107. /* margin-left: 20rpx; */
  108. }
  109. /* .bottom-type .box image{
  110. height: 88rpx;
  111. width: 88rpx;
  112. } */
  113. .type-img {
  114. width: 135rpx;
  115. height: 135rpx;
  116. }
  117. .type-img0 {
  118. width: 64rpx;
  119. height: 64rpx;
  120. }
  121. .type-img1 {
  122. width: 56rpx;
  123. height: 56rpx;
  124. }
  125. .type-img2 {
  126. width: 69rpx;
  127. height: 69rpx;
  128. }
  129. .type-img3 {
  130. width: 72rpx;
  131. height: 72rpx;
  132. }
  133. .type-img4 {
  134. width: 63rpx;
  135. height: 56rpx;
  136. }
  137. .bottom-type .box view {
  138. font-size: 28rpx;
  139. font-weight: 400;
  140. text-align: center;
  141. /* margin-top: -20rpx; */
  142. font-family: "FZZhunYuan-M02S";
  143. margin-top: 13rpx;
  144. color: #333333;
  145. position: absolute;
  146. bottom: -16rpx;
  147. }
  148. .hot-title {
  149. position: relative;
  150. display: flex;
  151. justify-content: space-between;
  152. align-items: center;
  153. /* margin-top: 25rpx; */
  154. margin-bottom: 24rpx;
  155. padding-right: 30rpx;
  156. height: 41rpx;
  157. font-size: 36rpx;
  158. /* font-family: "FZZhunYuan-M02S"; */
  159. font-family: "FZCuYuan-M03";
  160. font-weight: 400;
  161. color: #333333;
  162. position: relative;
  163. }
  164. .hot-title .title {
  165. position: relative;
  166. }
  167. .hot-title .title .label {
  168. position: relative;
  169. z-index: 2;
  170. }
  171. .hot-title .title::after {
  172. display: block;
  173. content: "";
  174. position: absolute;
  175. top: -3%;
  176. right: -3%;
  177. width: 30rpx;
  178. height: 30rpx;
  179. background-color: #005eff42;
  180. border-radius: 50%;
  181. z-index: 1;
  182. }
  183. .hot-title .line {
  184. position: absolute;
  185. width: 6rpx;
  186. height: 38rpx;
  187. background: #ffdd36;
  188. border-radius: 3rpx;
  189. top: 50%;
  190. transform: translateY(-50%);
  191. left: 0;
  192. opacity: 0.5;
  193. }
  194. .hot-title .title {
  195. /* font-size: 28rpx; */
  196. font-weight: 600;
  197. }
  198. .hot-title .mword {
  199. color: #999999;
  200. font-size: 24rpx;
  201. font-family: PingFang SC, PingFang SC-Regular;
  202. font-weight: 400;
  203. position: relative;
  204. }
  205. .hoticon {
  206. position: absolute;
  207. right: -12rpx;
  208. top: -5rpx;
  209. }
  210. .diy-top {
  211. width: 100%;
  212. /* height: 100%; */
  213. /* background: linear-gradient(90deg,#8fcd4d, #afde7c); */
  214. /* background-color: white; */
  215. position: fixed;
  216. left: 0;
  217. top: 0;
  218. z-index: 10000;
  219. /* display: flex; */
  220. /* align-items: flex-end; */
  221. box-sizing: border-box;
  222. padding-bottom: 12rpx;
  223. /* background-image: linear-gradient(0deg, #ffffff 10%, #fff9e0 100%); */
  224. /* background: linear-gradient(180deg, #cad8ff 0%, #e7edfe 100%); */
  225. }
  226. .diy-top .logo {
  227. width: 184rpx;
  228. height: 68rpx;
  229. /* padding-left: 25rpx;
  230. box-sizing: border-box; */
  231. vertical-align: middle;
  232. margin-left: 25rpx;
  233. /* margin-bottom: 6rpx; */
  234. }
  235. .diy-top .title {
  236. height: 80rpx;
  237. line-height: 80rpx;
  238. text-align: center;
  239. font-size: 36rpx;
  240. font-weight: 700;
  241. }
  242. .diy-top .left {
  243. margin-left: 10rpx;
  244. font-weight: 400;
  245. display: inline-block;
  246. vertical-align: middle;
  247. font-size: 32rpx;
  248. font-family: "FZCuYuan-M03";
  249. color: #333333;
  250. }
  251. .diy-top .center {
  252. margin: 0 10rpx;
  253. display: inline-block;
  254. vertical-align: middle;
  255. font-size: 32rpx;
  256. font-family: "FZCuYuan-M03";
  257. font-weight: 400;
  258. color: #333333;
  259. }
  260. .diy-top .right {
  261. display: inline-block;
  262. vertical-align: middle;
  263. font-size: 32rpx;
  264. font-family: "FZCuYuan-M03";
  265. font-weight: 400;
  266. color: #333333;
  267. }
  268. .down-icon {
  269. font-size: 30rpx;
  270. color: #666666;
  271. }
  272. .diy-top .right-word {
  273. height: 67rpx;
  274. display: flex;
  275. flex-direction: column;
  276. justify-content: space-between;
  277. margin-left: 20rpx;
  278. /* margin-bottom: 14rpx; */
  279. line-height: 1;
  280. }
  281. .diy-top .right-word .box text {
  282. line-height: 1;
  283. margin-bottom: 4rpx;
  284. }
  285. .diy-top .right-word .word2 {
  286. font-size: 24rpx;
  287. font-family: "FZZhunYuan-M02S";
  288. font-weight: 400;
  289. color: #666666;
  290. line-height: 1;
  291. }
  292. .iconfont {
  293. font-family: "iconfont" !important;
  294. font-style: normal;
  295. -webkit-font-smoothing: antialiased;
  296. -moz-osx-font-smoothing: grayscale;
  297. }
  298. .icon-bofang:before {
  299. content: "\f001b";
  300. }
  301. .icon-bofang1:before {
  302. content: "\e606";
  303. }
  304. .videoplay {
  305. position: absolute;
  306. right: 25rpx;
  307. }
  308. .index-wrap-box {
  309. /* width: 720rpx; */
  310. /* margin-left: -30rpx; */
  311. margin-top: 20rpx;
  312. padding: 0 30rpx 30rpx;
  313. /* background: linear-gradient(90deg,#8fcd4d, #afde7c); */
  314. /* background-color: white; */
  315. }
  316. .index-wrap {
  317. width: 100%;
  318. /* padding: 0 30rpx; */
  319. box-sizing: border-box;
  320. background-color: #f7f8fa;
  321. /* background: linear-gradient(180deg, #f7f8fa 0%, #f7f8fa 100%); */
  322. }
  323. .index-container {
  324. position: relative;
  325. display: flex;
  326. flex-direction: column;
  327. }
  328. .volunteer-font {
  329. color: #7b7b7b;
  330. font-size: 30rpx;
  331. }
  332. .white-space {
  333. white-space: nowrap;
  334. text-overflow: ellipsis;
  335. overflow: hidden;
  336. /* width: 100%; */
  337. }
  338. .side {
  339. color: #333 !important;
  340. padding-left: 7rpx;
  341. font-size: 30rpx;
  342. margin: auto 10rpx;
  343. font-family: "FZZhunYuan-M02S";
  344. font-weight: 400;
  345. text-align: center;
  346. color: #666666;
  347. }
  348. .nodata {
  349. padding-top: 200rpx;
  350. text-align: center;
  351. font-size: 32rpx;
  352. color: #ddd;
  353. }
  354. .news-container-txt {
  355. position: absolute;
  356. bottom: 155rpx;
  357. letter-spacing: 5rpx;
  358. text-align: center;
  359. z-index: 9999;
  360. color: #fff;
  361. font-size: 40rpx;
  362. font-weight: 700;
  363. font-family: PingFang-SC-Bold;
  364. }
  365. .news-container-txtwo {
  366. position: absolute;
  367. bottom: 108rpx;
  368. letter-spacing: 5rpx;
  369. z-index: 9999;
  370. color: #fff;
  371. font-size: 27rpx;
  372. font-family: PingFang-SC-Regular;
  373. }
  374. .partimg {
  375. margin: 15rpx auto;
  376. padding: 15rpx 0;
  377. width: 94%;
  378. border-bottom: 1rpx solid #ededed;
  379. }
  380. .partimg .title {
  381. font-size: 30rpx;
  382. color: #000000;
  383. overflow: hidden;
  384. text-overflow: ellipsis;
  385. white-space: nowrap;
  386. width: 70%;
  387. }
  388. .partimg .price {
  389. color: #ff8000;
  390. font-size: 29rpx;
  391. width: 28%;
  392. text-align: right;
  393. }
  394. .price .price- {
  395. font-size: 34rpx;
  396. font-weight: 600;
  397. }
  398. .volunteer-container {
  399. position: absolute;
  400. bottom: 155rpx;
  401. letter-spacing: 5rpx;
  402. text-align: center;
  403. z-index: 9999;
  404. color: #fff;
  405. font-size: 40rpx;
  406. font-weight: 700;
  407. font-family: PingFang-SC-Bold;
  408. }
  409. .volunteertwo-container {
  410. position: absolute;
  411. bottom: 108rpx;
  412. letter-spacing: 5rpx;
  413. z-index: 9999;
  414. color: #fff;
  415. font-size: 27rpx;
  416. font-family: PingFang-SC-Regular;
  417. }
  418. .txt-color {
  419. color: yellow;
  420. }
  421. .news-container-txthree {
  422. position: absolute;
  423. top: 123rpx;
  424. left: 20rpx;
  425. letter-spacing: 5rpx;
  426. z-index: 9999;
  427. color: #101010;
  428. font-size: 36rpx;
  429. font-weight: 700;
  430. font-family: PingFang-SC-Bold;
  431. }
  432. .news-container-txtfour .red {
  433. position: absolute;
  434. top: 122rpx;
  435. right: 34rpx;
  436. letter-spacing: 5rpx;
  437. z-index: 9999;
  438. color: #ff8000;
  439. font-size: 38rpx;
  440. font-weight: 700;
  441. font-family: PingFang-SC-Bold;
  442. }
  443. .news-container-txtfour .text {
  444. position: absolute;
  445. top: 128rpx;
  446. right: 13rpx;
  447. letter-spacing: 5rpx;
  448. z-index: 9999;
  449. color: #ec2e26;
  450. font-size: 28rpx;
  451. font-weight: 700;
  452. font-family: PingFang-SC-Bold;
  453. }
  454. .news-container swiper {
  455. width: 100%;
  456. height: 245rpx;
  457. }
  458. .news-container swiper image {
  459. width: 100%;
  460. height: 100%;
  461. }
  462. .navwrap {
  463. display: flex;
  464. flex-direction: row;
  465. align-items: center;
  466. justify-content: space-between;
  467. margin-top: 30rpx;
  468. padding: 0 15rpx;
  469. box-sizing: border-box;
  470. }
  471. .navitem {
  472. display: flex;
  473. flex-direction: column;
  474. }
  475. .navico {
  476. width: 93rpx;
  477. height: 93rpx;
  478. }
  479. .navtitle {
  480. font-family: PingFang SC, PingFang SC-Medium;
  481. font-size: 24rpx;
  482. font-weight: 500;
  483. text-align: center;
  484. color: #1a1a1a;
  485. margin-top: 15rpx;
  486. }
  487. .gray {
  488. color: #ccc;
  489. font-size: 25rpx;
  490. padding-left: 7rpx;
  491. }
  492. .activity-more {
  493. position: relative;
  494. white-space: nowrap;
  495. }
  496. .righticon {
  497. font-size: 40rpx;
  498. color: #999999;
  499. display: inline-block;
  500. vertical-align: middle;
  501. /* line-height: 44rpx; */
  502. }
  503. .list-warpper {
  504. position: relative;
  505. width: 100%;
  506. height: 100%;
  507. box-sizing: border-box;
  508. background: #fff;
  509. }
  510. .list-search {
  511. /* position: absolute; */
  512. top: 0;
  513. left: 0;
  514. display: flex;
  515. flex-direction: row;
  516. justify-content: space-between;
  517. align-items: center;
  518. /* width: calc(100% - 30rpx); */
  519. height: 70rpx;
  520. /* padding: 10rpx 20rpx; */
  521. box-sizing: border-box;
  522. z-index: 20;
  523. background: transparent;
  524. }
  525. .temp {
  526. /* width: 310rpx; */
  527. display: flex;
  528. flex-direction: row;
  529. align-items: center;
  530. height: 100%;
  531. margin-right: 10rpx;
  532. flex-shrink: 0;
  533. }
  534. .temp-box {
  535. width: 100%;
  536. height: 100%;
  537. }
  538. .growthimg {
  539. width: 96%;
  540. margin: 13rpx auto 0rpx auto;
  541. }
  542. .txt-center {
  543. z-index: 99999;
  544. display: flex;
  545. align-items: center;
  546. justify-content: center;
  547. }
  548. .list-search-box {
  549. flex: 1;
  550. display: flex;
  551. align-items: center;
  552. padding: 0 30rpx;
  553. /* width: 380rpx; */
  554. height: 70rpx;
  555. background: #fff;
  556. border-radius: 90rpx;
  557. font-size: 24rpx;
  558. box-sizing: border-box;
  559. box-shadow: 0rpx 2rpx 20rpx 0rpx rgba(100, 100, 100, 0.1);
  560. }
  561. .list-search-box .search-icon {
  562. width: 24rpx;
  563. height: 24rpx;
  564. margin-right: 20rpx;
  565. }
  566. .list-search-box input {
  567. width: 100%;
  568. font-size: 24rpx;
  569. }
  570. .list-search-box input::-webkit-input-placeholder {
  571. /* WebKit browsers */
  572. color: #999999;
  573. }
  574. .list-search-box input:-moz-placeholder {
  575. /* Mozilla Firefox 4 to 18 */
  576. color: #999999;
  577. }
  578. .list-search-box input::-moz-placeholder {
  579. /* Mozilla Firefox 19+ */
  580. color: #999999;
  581. }
  582. .list-search-box input:-ms-input-placeholder {
  583. /* Internet Explorer 10+ */
  584. color: #999999;
  585. }
  586. .list-iconfont {
  587. margin-right: 10rpx;
  588. /* margin-top: 10rpx; */
  589. /* margin-left: 7rpx; */
  590. }
  591. .wrap {
  592. display: flex;
  593. flex-direction: row;
  594. }
  595. .white-space {
  596. overflow: hidden;
  597. text-overflow: ellipsis;
  598. white-space: nowrap;
  599. }
  600. .white-spaceone {
  601. /* width: 310rpx; */
  602. height: 100%;
  603. display: flex;
  604. align-items: center;
  605. overflow: hidden;
  606. text-overflow: ellipsis;
  607. white-space: nowrap;
  608. /* margin-bottom: 30rpx; */
  609. }
  610. .white-spaceone picker {
  611. display: inline-block;
  612. vertical-align: bottom !important;
  613. color: white;
  614. /* margin: 0 5px; */
  615. max-width: 230rpx;
  616. text-overflow: ellipsis;
  617. overflow: hidden;
  618. white-space: nowrap;
  619. height: 70rpx !important;
  620. line-height: 70rpx !important;
  621. }
  622. .white-spaceone picker .picker {
  623. height: 70rpx;
  624. }
  625. .white-spaceone picker .picker .side {
  626. display: block;
  627. height: 70rpx;
  628. font-weight: 700;
  629. }
  630. .white-spaceone .xiala {
  631. /* width: 21rpx;
  632. height: 21rpx !important; */
  633. width: 40rpx;
  634. height: 40rpx !important;
  635. }
  636. .white-spacetwo {
  637. width: 205px;
  638. overflow: hidden;
  639. text-overflow: ellipsis;
  640. white-space: nowrap;
  641. }
  642. .two-icon {
  643. position: absolute;
  644. display: flex;
  645. width: 100%;
  646. height: 49rpx;
  647. left: -3rpx;
  648. top: 315rpx;
  649. background-color: #fff;
  650. }
  651. .two-icon image {
  652. width: 40rpx;
  653. height: 40rpx;
  654. }
  655. .two-icon-x1 {
  656. left: 8rpx;
  657. margin-right: 8rpx;
  658. top: -4rpx;
  659. }
  660. /* image{
  661. display: inline-block;
  662. overflow:hidden;
  663. } */
  664. /* new */
  665. .location {
  666. width: 42rpx;
  667. height: 42rpx;
  668. vertical-align: middle;
  669. }
  670. .arrowico {
  671. width: 19rpx;
  672. height: 12rpx;
  673. vertical-align: middle;
  674. }
  675. .news-url {
  676. position: absolute;
  677. top: 193rpx;
  678. left: 20rpx;
  679. z-index: 9999;
  680. }
  681. .news-place {
  682. position: absolute;
  683. top: 191rpx;
  684. left: 70rpx;
  685. z-index: 9999;
  686. color: #858585;
  687. font-family: PingFang-SC-Regular;
  688. }
  689. .boxs {
  690. width: 100%;
  691. display: flex;
  692. align-items: center;
  693. }
  694. .box-activity-img {
  695. width: 100%;
  696. margin-top: 35rpx;
  697. position: relative;
  698. box-sizing: border-box;
  699. }
  700. .box-activity-titlefix {
  701. width: 100% !important;
  702. }
  703. .box-activity-title text:last-child {
  704. color: #7b7b7b;
  705. font-family: PingFang-SC-Bold;
  706. height: 35rpx;
  707. }
  708. .box-image-l {
  709. flex: 1;
  710. text-align: center;
  711. }
  712. .box-image-f {
  713. flex: 2;
  714. }
  715. .box-image-l image {
  716. width: 70rpx;
  717. height: 75rpx;
  718. /* margin-left: 72rpx; */
  719. margin-top: 35rpx;
  720. }
  721. .box-image-txt {
  722. width: 100%;
  723. }
  724. .box-image-txt text {
  725. /* height: 75rpx; */
  726. font-size: 26rpx;
  727. font-family: PingFang-SC-Bold;
  728. color: #101010;
  729. box-sizing: border-box;
  730. font-weight: 600;
  731. }
  732. .box-image-txt .one {
  733. display: inline-block;
  734. text-align: center;
  735. width: 24%;
  736. }
  737. .activity-sale {
  738. color: #ff8000;
  739. font-size: 25rpx;
  740. }
  741. .box-image-txt .two {
  742. display: inline-block;
  743. text-align: center;
  744. width: 26%;
  745. }
  746. .box-image-txt .three {
  747. display: inline-block;
  748. text-align: center;
  749. width: 25%;
  750. }
  751. .box-image-txt .four {
  752. display: inline-block;
  753. text-align: center;
  754. width: 24%;
  755. }
  756. .box-image-r {
  757. width: 44%;
  758. margin: 0 20rpx;
  759. }
  760. .box-image-r image {
  761. width: 100%;
  762. height: 228rpx;
  763. border-radius: 10rpx;
  764. border: 1rpx solid #f7f7f7;
  765. }
  766. .box-position {
  767. position: relative;
  768. }
  769. .mgtop {
  770. margin-top: 35rpx;
  771. }
  772. .box-bg {
  773. padding-top: 7rpx;
  774. padding-bottom: 15rpx;
  775. width: 100%;
  776. padding-left: 6rpx;
  777. }
  778. .box-bg .box-txt {
  779. font-size: 31rpx;
  780. color: #000000;
  781. display: inline-block;
  782. box-sizing: border-box;
  783. white-space: nowrap;
  784. text-overflow: ellipsis;
  785. overflow: hidden;
  786. width: 100%;
  787. font-weight: 600;
  788. }
  789. .txt-remark {
  790. font-size: 29rpx;
  791. color: #878787;
  792. }
  793. .box-bg .txt-bottom {
  794. font-size: 26rpx;
  795. color: #fff;
  796. display: inline-block;
  797. /* padding-left: 6rpx; */
  798. white-space: nowrap;
  799. text-overflow: ellipsis;
  800. overflow: hidden;
  801. width: 90%;
  802. margin: auto;
  803. }
  804. .box-image-r .box-txtwo {
  805. position: absolute;
  806. bottom: 10rpx;
  807. left: 247rpx;
  808. background: rgba(0, 0, 0, 0.3);
  809. padding-top: 7rpx;
  810. padding-bottom: 7rpx;
  811. font-size: 31.8rpx;
  812. width: 29.3%;
  813. color: #fff;
  814. padding-left: 10rpx;
  815. }
  816. .box-image-r .box-txthree {
  817. position: absolute;
  818. bottom: 10rpx;
  819. right: 20rpx;
  820. background: rgba(0, 0, 0, 0.3);
  821. padding-top: 7rpx;
  822. padding-bottom: 7rpx;
  823. font-size: 31.8rpx;
  824. width: 29.3%;
  825. color: #fff;
  826. padding-left: 10rpx;
  827. }
  828. .maxBox {
  829. width: 100%;
  830. margin-top: 35rpx;
  831. }
  832. .txt-btwo {
  833. position: absolute;
  834. top: 160rpx;
  835. left: 221rpx;
  836. font-family: "PingFang-SC-Regular";
  837. font-weight: Regular;
  838. color: #fff;
  839. font-size: 22rpx;
  840. }
  841. .txt-bthree {
  842. position: absolute;
  843. top: 160rpx;
  844. left: 226rpx;
  845. font-family: "PingFang-SC-Regular";
  846. font-weight: Regular;
  847. color: #fff;
  848. font-size: 22rpx;
  849. }
  850. .txt-title {
  851. position: absolute;
  852. top: 100rpx;
  853. left: 285rpx;
  854. font-family: "PingFang-SC-Bold";
  855. font-weight: Bold;
  856. color: #fff;
  857. font-size: 36rpx;
  858. }
  859. /* 3.picuter min */
  860. .boxl {
  861. width: 100%;
  862. height: 60rpx;
  863. display: flex;
  864. margin-top: 12rpx;
  865. }
  866. .boxl image {
  867. flex: 1;
  868. width: 160rpx;
  869. height: 100%;
  870. margin-left: 22rpx;
  871. }
  872. /* 4.picutermax + text */
  873. .two {
  874. width: 100%;
  875. height: 100%;
  876. background-color: #fff;
  877. }
  878. /* .two-min {
  879. position: relative;
  880. width: 430rpx;
  881. height: 116rpx;
  882. background-color: #fff;
  883. border-radius: 10px;
  884. bottom: 75rpx;
  885. left: 23rpx;
  886. }
  887. .two-min-n {
  888. position: absolute;
  889. width: 410rpx;
  890. height: 94rpx;
  891. background-color: #fefddf;
  892. margin-top: 10rpx;
  893. margin-left: 20rpx;
  894. border-radius: 10rpx;
  895. } */
  896. /* .txt-one text {
  897. font-size: 16px;
  898. color: #ffbe31;
  899. font-family: "PingFang-SC-Bold";
  900. font-weight: Bold;
  901. margin-left: 25rpx;
  902. margin-top: 13rpx;
  903. }
  904. .txt-two text {
  905. position: relative;
  906. font-size: 12px;
  907. color: #ffbe31;
  908. font-family: "PingFang-SC-Regular";
  909. font-weight: Regular;
  910. margin-left: 25rpx;
  911. bottom: 8rpx;
  912. text-align: center;
  913. } */
  914. .activity-moretxt {
  915. font-weight: normal;
  916. color: #999999;
  917. font-family: PingFang-SC-Bold;
  918. font-size: 28rpx;
  919. display: inline-block;
  920. vertical-align: middle;
  921. }
  922. .two-mini {
  923. position: absolute;
  924. width: 458rpx;
  925. border-radius: 6px;
  926. bottom: 95rpx;
  927. left: 8rpx;
  928. }
  929. .txt-wrap {
  930. font-size: 32rpx;
  931. font-weight: 700;
  932. font-family: PingFang-SC-Bold;
  933. }
  934. /* 活动实验室 */
  935. .news-container image {
  936. border-radius: 28rpx;
  937. }
  938. .two-min {
  939. position: absolute;
  940. width: 458rpx;
  941. height: 117rpx;
  942. /* background-color:#b0abaf; */
  943. border-radius: 6px;
  944. bottom: -40rpx;
  945. left: -1rpx;
  946. }
  947. .two-min-n {
  948. width: 452rpx;
  949. height: 70rpx;
  950. background-color: #36a891;
  951. margin-left: 3rpx;
  952. margin-top: -30rpx;
  953. border-radius: 10rpx;
  954. }
  955. .txt-one text {
  956. font-size: 32rpx;
  957. color: #ffffff;
  958. font-family: "PingFang-SC-Bold";
  959. font-weight: Bold;
  960. margin-left: 25rpx;
  961. margin-top: 13rpx;
  962. overflow: hidden;
  963. text-overflow: ellipsis;
  964. white-space: nowrap;
  965. }
  966. .txt-two text {
  967. position: relative;
  968. font-size: 12px;
  969. color: #ffffff;
  970. font-family: "PingFang-SC-Regular";
  971. font-weight: Regular;
  972. margin-left: 25rpx;
  973. bottom: -5rpx;
  974. text-align: center;
  975. overflow: hidden;
  976. text-overflow: ellipsis;
  977. white-space: nowrap;
  978. }
  979. .view-img {
  980. width: 98%;
  981. height: 300rpx;
  982. margin: 10rpx auto 0rpx;
  983. position: relative;
  984. }
  985. @font-face {
  986. font-family: "iconfont";
  987. src: url("iconfont.eot?t=1559296891592");
  988. /* IE9 */
  989. src: url("iconfont.eot?t=1559296891592#iefix") format("embedded-opentype"),
  990. /* IE6-IE8 */
  991. 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==")
  992. format("woff2"),
  993. url("iconfont.woff?t=1559296891592") format("woff"),
  994. url("iconfont.ttf?t=1559296891592") format("truetype"),
  995. /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  996. url("iconfont.svg?t=1559296891592#iconfont") format("svg");
  997. /* iOS 4.1- */
  998. }
  999. .iconfont {
  1000. font-family: "iconfont" !important;
  1001. font-style: normal;
  1002. -webkit-font-smoothing: antialiased;
  1003. -moz-osx-font-smoothing: grayscale;
  1004. }
  1005. .icon-duorenyonghu-:before {
  1006. content: "\e68e";
  1007. }
  1008. .icon-dingwei:before {
  1009. content: "\e617";
  1010. }
  1011. .iconC-BD {
  1012. color: #bdbdbd;
  1013. }
  1014. .add {
  1015. margin-top: 20rpx;
  1016. width: 100%;
  1017. }
  1018. .add .add-txt {
  1019. font-size: 28rpx;
  1020. color: #848484;
  1021. overflow: hidden;
  1022. text-overflow: ellipsis;
  1023. white-space: nowrap;
  1024. }
  1025. .sv {
  1026. margin-top: 20rpx;
  1027. }
  1028. .toBottom {
  1029. font-size: 28rpx;
  1030. color: rgb(182, 182, 182);
  1031. line-height: 30rpx;
  1032. margin: 60rpx auto 30rpx;
  1033. text-align: center;
  1034. }
  1035. /* 活动 */
  1036. .weekacontent {
  1037. display: flex;
  1038. width: calc(100% + 30rpx);
  1039. flex-direction: row;
  1040. flex-wrap: nowrap;
  1041. overflow-x: auto;
  1042. overflow-y: hidden;
  1043. margin: 14rpx auto;
  1044. }
  1045. .weekitem {
  1046. width: 690rpx;
  1047. height: 223rpx;
  1048. opacity: 1;
  1049. background: #ffffff;
  1050. border-radius: 8rpx;
  1051. padding: 25rpx 30rpx;
  1052. box-sizing: border-box;
  1053. display: flex;
  1054. margin-right: 30rpx;
  1055. flex-direction: row;
  1056. }
  1057. .weekico {
  1058. width: 173rpx;
  1059. height: 173rpx;
  1060. opacity: 1;
  1061. background: rgba(0, 0, 0, 0);
  1062. /* border-radius: 8rpx; */
  1063. box-shadow: 0px 3rpx 6rpx 0px rgba(209, 209, 209, 0.16);
  1064. margin-right: 24rpx;
  1065. }
  1066. .weekinfo {
  1067. width: 462rpx;
  1068. display: flex;
  1069. flex-direction: column;
  1070. }
  1071. .weekt1 {
  1072. display: flex;
  1073. flex-direction: row;
  1074. align-items: center;
  1075. margin-top: 15rpx;
  1076. }
  1077. .weekt1 .tips {
  1078. margin-top: 8rpx;
  1079. width: 66rpx;
  1080. height: 31rpx;
  1081. font-size: 20rpx;
  1082. color: white;
  1083. display: flex;
  1084. justify-content: center;
  1085. align-items: center;
  1086. opacity: 1;
  1087. background: #14d995;
  1088. border-radius: 6rpx 0px 6rpx 0px;
  1089. margin-right: 11rpx;
  1090. }
  1091. .weekt1 .tipstitle {
  1092. width: 322rpx;
  1093. display: inline-block;
  1094. overflow: hidden;
  1095. text-overflow: ellipsis;
  1096. white-space: nowrap;
  1097. font-size: 28rpx;
  1098. font-weight: 700;
  1099. color: #333333;
  1100. letter-spacing: -1rpx;
  1101. }
  1102. .adico {
  1103. width: 21rpx;
  1104. height: 29rpx;
  1105. margin-right: 10rpx;
  1106. }
  1107. .weekt1 .tipstitlex {
  1108. width: 371rpx;
  1109. font-size: 24rpx;
  1110. font-weight: 400;
  1111. text-align: left;
  1112. color: #999999;
  1113. }
  1114. .weekt1fee {
  1115. margin-top: 30rpx;
  1116. }
  1117. .weekt1 .level {
  1118. opacity: 1;
  1119. font-size: 22rpx;
  1120. font-weight: 500;
  1121. color: #666666;
  1122. letter-spacing: 0rpx;
  1123. }
  1124. .weekt1 .fee {
  1125. font-size: 34rpx;
  1126. font-weight: 500;
  1127. text-align: left;
  1128. color: #ec2e26;
  1129. position: relative;
  1130. padding-left: 20rpx;
  1131. margin-left: 20rpx;
  1132. box-sizing: border-box;
  1133. }
  1134. .weekt1 .fee::after {
  1135. position: absolute;
  1136. content: "¥";
  1137. left: 0;
  1138. bottom: 5rpx;
  1139. font-size: 24rpx;
  1140. font-weight: 500;
  1141. text-align: left;
  1142. color: #ec2e26;
  1143. }
  1144. /* 列表 */
  1145. .namewrap {
  1146. display: flex;
  1147. flex-direction: row;
  1148. align-items: center;
  1149. padding: 20rpx 0 30rpx 0;
  1150. position: sticky;
  1151. top: 60px;
  1152. z-index: 100;
  1153. background: #f6f6f6;
  1154. }
  1155. .namewrap .nameitem {
  1156. font-size: 30rpx;
  1157. font-weight: 600;
  1158. text-align: left;
  1159. color: #666666;
  1160. margin-right: 43rpx;
  1161. position: relative;
  1162. white-space: nowrap;
  1163. }
  1164. .namewrap .nameactive {
  1165. font-size: 34rpx;
  1166. font-weight: 700;
  1167. text-align: left;
  1168. color: #1a1a1a;
  1169. position: relative;
  1170. }
  1171. /* .namewrap .nameactive::after {
  1172. position: absolute;
  1173. left: 0;
  1174. bottom: 2rpx;
  1175. content: '';
  1176. width: 100%;
  1177. z-index: -1;
  1178. height: 8rpx;
  1179. background-color: #9DDB52;
  1180. border-radius: 8rpx;
  1181. } */
  1182. .categorywrap {
  1183. display: flex;
  1184. flex-direction: column;
  1185. padding-top: 16rpx;
  1186. box-sizing: border-box;
  1187. }
  1188. .categorywrapfix {
  1189. flex-direction: row;
  1190. flex-wrap: wrap;
  1191. }
  1192. .hot-wap-box {
  1193. /* background-color: #ffffff; */
  1194. /* x1 y1, x2 y2, 当x1等于x2,y1不等于y2,实现垂直渐变,调整y1,y2的值可以调整渐变半径大小; */
  1195. /* background: -webkit-gradient(
  1196. linear,
  1197. 0% 100%,
  1198. 0% 20%,
  1199. from(#fff),
  1200. to(#f8f8f8)
  1201. ); */
  1202. padding-left: 30rpx;
  1203. margin-top: 46rpx;
  1204. border-radius: 20rpx;
  1205. position: relative;
  1206. /* //x偏移 y偏移 模糊量 阴影延展 颜色 */
  1207. /* box-shadow:0 24px 5px 44px rgba(248, 248, 248, .5) inset; */
  1208. }
  1209. .hot-box {
  1210. display: flex;
  1211. width: 100%;
  1212. /* margin-top: 22rpx; */
  1213. /* min-height: 490rpx; */
  1214. }
  1215. .scroll-view {
  1216. white-space: nowrap;
  1217. display: flex;
  1218. }
  1219. .hot-item {
  1220. width: 640rpx;
  1221. margin-left: 20rpx;
  1222. padding: 30rpx;
  1223. /* height: 285rpx; */
  1224. /* padding-bottom: 20rpx; */
  1225. display: inline-block;
  1226. position: relative;
  1227. background-color: #fff;
  1228. border-radius: 20rpx;
  1229. box-sizing: border-box;
  1230. box-shadow: 0rpx 2rpx 26rpx 0rpx rgba(100, 100, 100, 0.1);
  1231. }
  1232. .hot-item-conetnt {
  1233. display: flex;
  1234. }
  1235. .hot-item #hot-right {
  1236. /* width: 330rpx; */
  1237. flex: 1;
  1238. margin-left: 20rpx;
  1239. padding-top: 20rpx;
  1240. box-sizing: border-box;
  1241. display: flex;
  1242. flex-direction: column;
  1243. justify-content: space-between;
  1244. overflow: hidden;
  1245. text-overflow: ellipsis;
  1246. white-space: nowrap;
  1247. }
  1248. .hot-item:first-child {
  1249. margin-left: 0;
  1250. }
  1251. .hot-img {
  1252. /* width: 550rpx; */
  1253. width: 210rpx;
  1254. height: 210rpx;
  1255. border-radius: 20rpx;
  1256. flex-shrink: 0;
  1257. font-size: 0;
  1258. }
  1259. .hot-item .name {
  1260. /* font-size: 28rpx;
  1261. font-family: "FZZhunYuan-M02S";
  1262. font-weight: 400;
  1263. color: #1a1a1a;
  1264. margin-top: 22rpx; */
  1265. font-size: 32rpx;
  1266. line-height: 40rpx;
  1267. color: #333333;
  1268. margin-bottom: 10rpx;
  1269. font-family: PingFang SC, PingFang SC-Bold;
  1270. font-weight: 700;
  1271. text-overflow: ellipsis;
  1272. display: -webkit-box;
  1273. -webkit-line-clamp: 1;
  1274. -webkit-box-orient: vertical;
  1275. overflow: hidden;
  1276. }
  1277. .icon-home-dizhi-a {
  1278. color: #ffdc2f !important;
  1279. font-size: 30rpx !important;
  1280. margin-right: 9rpx !important;
  1281. }
  1282. .hot-item .time-box {
  1283. /* margin-top: 25rpx; */
  1284. /* font-family: "FZZhunYuan-M02S"; */
  1285. font-weight: 400;
  1286. display: flex;
  1287. align-items: center;
  1288. font-size: 24rpx;
  1289. color: #999999;
  1290. margin-bottom: 11rpx;
  1291. }
  1292. .hot-item .icon-box {
  1293. /* width: 35rpx; */
  1294. width: 21rpx;
  1295. height: auto;
  1296. text-align: left;
  1297. margin-right: 10rpx;
  1298. flex-shrink: 0;
  1299. }
  1300. .hot-item .icon-box image {
  1301. width: 100%;
  1302. height: 100%;
  1303. }
  1304. .icon-home-time {
  1305. font-size: 30rpx;
  1306. color: #ffdc2f;
  1307. margin-right: 9rpx;
  1308. }
  1309. .ming-box {
  1310. display: flex;
  1311. justify-content: space-between;
  1312. align-items: center;
  1313. }
  1314. .ming-box .per-box {
  1315. font-size: 24rpx;
  1316. /* font-family: "FZZhunYuan-M02S"; */
  1317. font-weight: 400;
  1318. color: #999999;
  1319. margin-top: 8rpx;
  1320. position: relative;
  1321. display: flex;
  1322. align-items: center;
  1323. margin-bottom: 5rpx;
  1324. }
  1325. .ming-box .vip-txt {
  1326. font-size: 24rpx;
  1327. color: #999999;
  1328. }
  1329. .icon-home-pel {
  1330. font-size: 30rpx;
  1331. color: #ffdc2f;
  1332. margin-right: 9rpx;
  1333. /* margin-top: 4rpx; */
  1334. /* position: absolute;
  1335. top: 2rpx; */
  1336. }
  1337. .address-h-box {
  1338. /* width: 100%; */
  1339. margin-bottom: 11rpx;
  1340. display: flex;
  1341. }
  1342. .address-h-box .address {
  1343. display: flex;
  1344. flex: 1;
  1345. width: 0;
  1346. /* align-items: center; */
  1347. padding-top: 9rpx;
  1348. /* margin-top: 25rpx; */
  1349. /* color: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#0000ff)); */
  1350. }
  1351. .address-h-box .address .address-word {
  1352. flex: 1;
  1353. font-size: 24rpx;
  1354. font-family: "FZZhunYuan-M02S";
  1355. font-weight: 400;
  1356. color: #999999;
  1357. /* white-space: nowrap;
  1358. text-overflow: ellipsis;
  1359. overflow: hidden; */
  1360. word-break: break-all;
  1361. /* width: 285rpx; */
  1362. /* flex-shrink: 0; */
  1363. overflow: hidden;
  1364. display: -webkit-box;
  1365. -webkit-line-clamp: 2;
  1366. /* 设置最大显示行数 */
  1367. -webkit-box-orient: vertical;
  1368. text-overflow: ellipsis;
  1369. }
  1370. .address-h-box .address .price-h {
  1371. margin-left: 10rpx;
  1372. flex-shrink: 0;
  1373. }
  1374. .address-h-box .word-type {
  1375. font-size: 24rpx;
  1376. font-family: "FZZhunYuan-M02S";
  1377. font-weight: 400;
  1378. color: #333333;
  1379. /* width: 124rpx;
  1380. flex-shrink: 0; */
  1381. }
  1382. .jianzhi-box {
  1383. border-radius: 20rpx;
  1384. padding: 30rpx 30rpx 0;
  1385. margin-bottom: 46rpx;
  1386. box-sizing: border-box;
  1387. margin-top: 25rpx;
  1388. }
  1389. .jianzhi-item {
  1390. display: flex;
  1391. flex-direction: column;
  1392. justify-content: space-between;
  1393. /* height: 145rpx; */
  1394. padding: 30rpx;
  1395. margin-bottom: 20rpx;
  1396. box-sizing: border-box;
  1397. background-color: #ffffff;
  1398. border-radius: 20rpx;
  1399. }
  1400. .jianzhi-item .name-price {
  1401. display: flex;
  1402. justify-content: space-between;
  1403. align-items: baseline;
  1404. margin-bottom: 10rpx;
  1405. line-height: 1;
  1406. }
  1407. .jianzhi-item .name-price .price {
  1408. display: flex;
  1409. align-items: baseline;
  1410. margin: 0;
  1411. flex-shrink: 0;
  1412. }
  1413. .jianzhi-item .name-price .price .p1,
  1414. .jianzhi-item .name-price .price .p2 {
  1415. line-height: 1;
  1416. }
  1417. .jian-name {
  1418. /* width: 480rpx; */
  1419. /* flex-shrink: 0; */
  1420. margin-right: 20rpx;
  1421. text-overflow: ellipsis;
  1422. overflow: hidden;
  1423. white-space: nowrap;
  1424. /* display: -webkit-box;
  1425. -webkit-line-clamp: 1;
  1426. -webkit-box-orient: vertical; */
  1427. color: #333333;
  1428. font-size: 28rpx;
  1429. font-family: "FZZhunYuan-M02S";
  1430. font-weight: bold;
  1431. letter-spacing: 0.28px;
  1432. }
  1433. .address-bao {
  1434. display: flex;
  1435. justify-content: space-between;
  1436. align-items: center;
  1437. /* margin-top: 10rpx; */
  1438. }
  1439. .address-bao .address {
  1440. display: flex;
  1441. justify-content: space-between;
  1442. align-items: center;
  1443. position: relative;
  1444. margin-bottom: 20rpx;
  1445. }
  1446. .address-bao .address image {
  1447. width: 21rpx;
  1448. height: 23rpx !important;
  1449. vertical-align: middle;
  1450. }
  1451. .address-bao .address .address-word {
  1452. font-size: 24rpx;
  1453. font-family: "FZZhunYuan-M02S";
  1454. font-weight: 400;
  1455. color: #666666;
  1456. width: 420rpx;
  1457. flex-shrink: 0;
  1458. text-overflow: ellipsis;
  1459. display: -webkit-box;
  1460. -webkit-line-clamp: 1;
  1461. -webkit-box-orient: vertical;
  1462. overflow: hidden;
  1463. /* text-indent: 40rpx; */
  1464. margin-left: 9rpx;
  1465. }
  1466. .icon-address {
  1467. position: absolute;
  1468. top: -4rpx;
  1469. left: 0;
  1470. font-size: 36rpx;
  1471. }
  1472. .address-bao .yu {
  1473. width: 150rpx;
  1474. height: 55rpx;
  1475. text-align: center;
  1476. line-height: 55rpx;
  1477. background: #e6e6e6;
  1478. border-radius: 28rpx;
  1479. font-size: 28rpx;
  1480. font-family: "FZZhunYuan-M02S";
  1481. font-weight: 400;
  1482. color: #0a0a0a;
  1483. }
  1484. .address-bao .man {
  1485. width: 150rpx;
  1486. height: 55rpx;
  1487. text-align: center;
  1488. line-height: 55rpx;
  1489. background: #e6e6e6;
  1490. color: #0a0a0a;
  1491. border-radius: 28rpx;
  1492. font-size: 28rpx;
  1493. font-family: "FZZhunYuan-M02S";
  1494. font-weight: 400;
  1495. }
  1496. .address-bao .job-info .job--base-info {
  1497. color: #ec931a;
  1498. font-size: 24rpx;
  1499. }
  1500. .address-bao .job-info .job--base-info text {
  1501. display: inline-block;
  1502. padding: 0 20rpx;
  1503. border-right: 1rpx solid #ec931a;
  1504. }
  1505. .address-bao .job-info .job--base-info text:first-child {
  1506. padding-left: 0;
  1507. }
  1508. .address-bao .job-info .job--base-info text:last-child {
  1509. border-right: 0;
  1510. }
  1511. .school-box {
  1512. background-color: #ffffff;
  1513. border-radius: 20rpx;
  1514. padding: 30rpx;
  1515. box-sizing: border-box;
  1516. margin-top: 25rpx;
  1517. }
  1518. .school-wap {
  1519. display: flex;
  1520. margin-top: 23rpx;
  1521. }
  1522. .school-item {
  1523. width: 236rpx;
  1524. margin-left: 20rpx;
  1525. display: flex;
  1526. flex-direction: column;
  1527. /* height: 380rpx; */
  1528. /* border-radius: 16rpx !important; */
  1529. }
  1530. .school-item:first-child {
  1531. margin-left: 0;
  1532. }
  1533. .school-img {
  1534. width: 236rpx;
  1535. height: 236rpx;
  1536. border-radius: 16rpx 16rpx 0 0;
  1537. }
  1538. .school-b {
  1539. background-color: #f5f5f4;
  1540. /* height: 122rpx; */
  1541. height: 165rpx;
  1542. border-radius: 0 0 16rpx 16rpx;
  1543. text-align: center;
  1544. padding-top: 24rpx;
  1545. box-sizing: border-box;
  1546. }
  1547. .school-b .name {
  1548. font-size: 28rpx;
  1549. font-family: "FZZhunYuan-M02S";
  1550. /* text-align: center; */
  1551. color: #1a1a1a;
  1552. }
  1553. .school-b .zhi {
  1554. font-size: 24rpx;
  1555. font-family: "FZZhunYuan-M02S";
  1556. font-weight: 400;
  1557. color: #666666;
  1558. margin-top: 13rpx;
  1559. text-overflow: ellipsis;
  1560. display: -webkit-box;
  1561. -webkit-line-clamp: 2;
  1562. -webkit-box-orient: vertical;
  1563. overflow: hidden;
  1564. }
  1565. .hang-box {
  1566. background-color: white;
  1567. padding: 22rpx 30rpx 31rpx 30rpx;
  1568. margin-top: 28rpx;
  1569. border-radius: 16rpx;
  1570. }
  1571. .hang-item {
  1572. padding-bottom: 21rpx;
  1573. border-bottom: 1px solid #e6e6e6;
  1574. }
  1575. .hang-item:last-child {
  1576. border-bottom: none;
  1577. }
  1578. .hang-item .info-box {
  1579. display: flex;
  1580. /* justify-content: space-between; */
  1581. margin-top: 23rpx;
  1582. }
  1583. .hang-item .info-box .per-img {
  1584. width: 140rpx;
  1585. height: 140rpx;
  1586. border-radius: 50%;
  1587. }
  1588. .hang-item .info-box .right-box {
  1589. display: flex;
  1590. margin-left: 65rpx;
  1591. justify-content: space-between;
  1592. width: 425rpx;
  1593. }
  1594. .hang-item-name {
  1595. font-size: 28rpx;
  1596. margin-top: 25rpx;
  1597. font-family: "FZCuYuan-M03";
  1598. font-weight: 400;
  1599. color: #1a1a1a;
  1600. }
  1601. .hang-item-zhi {
  1602. font-size: 24rpx;
  1603. font-family: "FZZhunYuan-M02S";
  1604. font-weight: 400;
  1605. color: #808080;
  1606. margin-top: 16rpx;
  1607. }
  1608. .jh {
  1609. font-family: "FZCuYuan-M03";
  1610. font-weight: 400;
  1611. }
  1612. .hang-item-address {
  1613. display: flex;
  1614. padding-top: 25rpx;
  1615. width: 210rpx;
  1616. flex-shrink: 0;
  1617. justify-content: flex-end;
  1618. }
  1619. .hang-item-address .address-word {
  1620. font-size: 24rpx;
  1621. font-family: "FZZhunYuan-M02S";
  1622. font-weight: 400;
  1623. color: #999999;
  1624. }
  1625. .hang-item .label {
  1626. font-size: 24rpx;
  1627. font-family: "FZZhunYuan-M02S";
  1628. font-weight: 400;
  1629. color: #333333;
  1630. margin-top: 13rpx;
  1631. }
  1632. .hang-item-type-box {
  1633. display: flex;
  1634. flex-wrap: wrap;
  1635. }
  1636. .hang-item-type-box .item {
  1637. padding: 0 16rpx;
  1638. height: 40rpx;
  1639. line-height: 40rpx;
  1640. opacity: 0.67;
  1641. background: #f5f5f5;
  1642. border-radius: 10rpx 0px 10rpx 0px;
  1643. margin-right: 15rpx;
  1644. font-size: 24rpx;
  1645. font-family: "FZZhunYuan-M02S";
  1646. font-weight: 400;
  1647. color: #333333;
  1648. margin-top: 10rpx;
  1649. }
  1650. .jiao-box {
  1651. display: flex;
  1652. justify-content: space-between;
  1653. margin-top: 12rpx;
  1654. align-items: baseline;
  1655. }
  1656. .jiao-box .num-box {
  1657. font-size: 24rpx;
  1658. font-family: "FZZhunYuan-M02S";
  1659. font-weight: 400;
  1660. color: #666666;
  1661. }
  1662. .pers {
  1663. color: #ff9209;
  1664. }
  1665. .shop-box {
  1666. padding: 18rpx 30rpx 27rpx 30rpx;
  1667. margin-top: 28rpx;
  1668. border-radius: 16rpx;
  1669. }
  1670. .shop-item {
  1671. margin-top: 20rpx;
  1672. }
  1673. .shop-img {
  1674. width: 630rpx;
  1675. height: 248rpx;
  1676. border-radius: 16rpx 16rpx 0px 0px;
  1677. }
  1678. .shop-name {
  1679. font-size: 28rpx;
  1680. font-family: "FZZhunYuan-M02S";
  1681. font-weight: 400;
  1682. color: #1a1a1a;
  1683. margin-top: 22rpx;
  1684. }
  1685. .shop-address {
  1686. margin-top: 17rpx;
  1687. display: flex;
  1688. align-items: center;
  1689. border-bottom: 1px solid #e6e6e6;
  1690. padding-bottom: 27rpx;
  1691. font-family: "FZZhunYuan-M02S";
  1692. }
  1693. .shop-address .address-word {
  1694. /* margin-left: 13rpx; */
  1695. font-size: 24rpx;
  1696. font-family: "FZZhunYuan-M02S";
  1697. font-weight: 400;
  1698. color: #333333;
  1699. }
  1700. .juli {
  1701. font-size: 24rpx;
  1702. font-family: "FZZhunYuan-M02S";
  1703. font-weight: 400;
  1704. color: #666666;
  1705. margin-left: 8rpx;
  1706. }
  1707. .ju-box {
  1708. display: flex;
  1709. justify-content: space-between;
  1710. align-items: center;
  1711. margin-top: 25rpx;
  1712. }
  1713. .ju-word {
  1714. font-size: 24rpx;
  1715. font-family: "FZZhunYuan-M02S";
  1716. font-weight: 400;
  1717. color: #666666;
  1718. padding-right: 30rpx;
  1719. box-sizing: border-box;
  1720. }
  1721. .icons {
  1722. display: flex;
  1723. align-items: center;
  1724. }
  1725. .dingwei-img {
  1726. width: 33rpx;
  1727. height: 33rpx;
  1728. color: #639ffd;
  1729. }
  1730. .icon-phone {
  1731. font-size: 33rpx;
  1732. color: #fd75a7;
  1733. }
  1734. .price {
  1735. display: flex;
  1736. flex-direction: row;
  1737. align-items: flex-end;
  1738. }
  1739. .price-h .p2 {
  1740. font-size: 30rpx;
  1741. font-weight: bold;
  1742. text-align: left;
  1743. color: #ec2e26;
  1744. }
  1745. .price-h .p1 {
  1746. font-size: 20rpx;
  1747. font-weight: 500;
  1748. text-align: left;
  1749. color: #ec2e26;
  1750. }
  1751. .catebottom .sub-btn-box {
  1752. display: inline-block;
  1753. width: calc(100% - 375rpx);
  1754. text-align: right;
  1755. vertical-align: text-top;
  1756. margin-top: -10rpx;
  1757. }
  1758. .catebottom .sub-btn {
  1759. background: #fcc26e;
  1760. border: 2rpx solid #ffffff;
  1761. border-radius: 27rpx;
  1762. padding: 0 24rpx;
  1763. line-height: 50rpx;
  1764. color: white;
  1765. font-size: 28rpx;
  1766. width: fit-content;
  1767. display: inline-block;
  1768. }
  1769. .green2 {
  1770. background: #2b58a5 !important;
  1771. color: #ffffff !important;
  1772. }
  1773. .touritem {
  1774. display: flex;
  1775. flex-direction: column;
  1776. width: 100%;
  1777. height: 428rpx;
  1778. opacity: 1;
  1779. background: #ffffff;
  1780. border-radius: 8rpx;
  1781. margin-bottom: 15rpx;
  1782. }
  1783. .touritem .namebg {
  1784. width: 100%;
  1785. height: 260rpx;
  1786. opacity: 1;
  1787. background: rgba(0, 0, 0, 0);
  1788. border-radius: 8rpx 8rpx 0px 0px;
  1789. }
  1790. .touritem .tourbody {
  1791. height: 168rpx;
  1792. display: flex;
  1793. flex-direction: column;
  1794. width: 100%;
  1795. padding: 16rpx 30rpx;
  1796. box-sizing: border-box;
  1797. }
  1798. .tourtitle {
  1799. font-size: 28rpx;
  1800. font-weight: 700;
  1801. text-align: left;
  1802. color: #333333;
  1803. text-overflow: ellipsis;
  1804. white-space: nowrap;
  1805. overflow: hidden;
  1806. }
  1807. .touradwr {
  1808. display: flex;
  1809. flex-direction: row;
  1810. align-items: center;
  1811. padding-top: 5rpx;
  1812. box-sizing: border-box;
  1813. }
  1814. .tourleft {
  1815. width: 403rpx;
  1816. display: flex;
  1817. flex-direction: column;
  1818. }
  1819. .tourright {
  1820. display: flex;
  1821. flex-direction: row;
  1822. align-items: flex-end;
  1823. margin-left: auto;
  1824. }
  1825. .tourright .t1 {
  1826. font-size: 22rpx;
  1827. font-weight: 500;
  1828. text-align: right;
  1829. color: #ec2e26;
  1830. padding-bottom: 5rpx;
  1831. }
  1832. .tourright .t2 {
  1833. font-size: 36rpx;
  1834. font-weight: bold;
  1835. color: #ec2e26;
  1836. }
  1837. .tourleftitem {
  1838. display: flex;
  1839. flex-direction: row;
  1840. align-items: center;
  1841. margin-top: 15rpx;
  1842. }
  1843. .left1ico {
  1844. width: 21rpx;
  1845. height: 29rpx;
  1846. margin-right: 21rpx;
  1847. }
  1848. .left2ico {
  1849. width: 21rpx;
  1850. height: 21rpx;
  1851. }
  1852. .lefttext {
  1853. width: 371rpx;
  1854. overflow: hidden;
  1855. text-overflow: ellipsis;
  1856. white-space: nowrap;
  1857. font-size: 24rpx;
  1858. font-weight: 400;
  1859. text-align: left;
  1860. color: #999999;
  1861. }
  1862. .flowitem {
  1863. width: 334rpx;
  1864. height: 538rpx;
  1865. opacity: 1;
  1866. background: #ffffff;
  1867. border-radius: 8rpx;
  1868. display: flex;
  1869. flex-direction: column;
  1870. margin-bottom: 15rpx;
  1871. margin-right: 22rpx;
  1872. }
  1873. .flowitem:nth-child(2n) {
  1874. margin-right: 0rpx !important;
  1875. }
  1876. .flowcover {
  1877. width: 334rpx;
  1878. height: 260rpx;
  1879. border-radius: 8rpx 8rpx 0 0;
  1880. }
  1881. .flowbody {
  1882. display: flex;
  1883. flex-direction: column;
  1884. height: 278rpx;
  1885. padding: 24rpx 30rpx;
  1886. box-sizing: border-box;
  1887. }
  1888. .flowbody .f1 {
  1889. font-size: 28rpx;
  1890. font-weight: 700;
  1891. color: #333333;
  1892. text-overflow: ellipsis;
  1893. overflow: hidden;
  1894. white-space: nowrap;
  1895. }
  1896. .flowbody .f2 {
  1897. margin-top: 8rpx;
  1898. font-size: 24rpx;
  1899. height: 60rpx;
  1900. font-weight: 400;
  1901. text-align: left;
  1902. color: #999999;
  1903. text-align: left;
  1904. text-overflow: ellipsis;
  1905. display: -webkit-box;
  1906. -webkit-line-clamp: 2;
  1907. -webkit-box-orient: vertical;
  1908. overflow: hidden;
  1909. }
  1910. .flowbtn {
  1911. width: 161rpx;
  1912. height: 50rpx;
  1913. margin-top: 17rpx;
  1914. opacity: 1;
  1915. background: #9ddb52;
  1916. border: 2rpx solid #ffffff;
  1917. border-radius: 27rpx;
  1918. font-size: 28rpx;
  1919. font-weight: 400;
  1920. text-align: left;
  1921. color: #ffffff;
  1922. display: flex;
  1923. justify-content: center;
  1924. align-items: center;
  1925. }
  1926. .fprice {
  1927. display: flex;
  1928. flex-direction: row;
  1929. align-items: center;
  1930. margin-top: 17rpx;
  1931. }
  1932. .fprice text {
  1933. font-size: 24rpx;
  1934. font-weight: 400;
  1935. text-align: left;
  1936. color: #999999;
  1937. /* line-height: 33rpx; */
  1938. }
  1939. .fprice .price {
  1940. display: flex;
  1941. flex-direction: row;
  1942. align-items: flex-end;
  1943. }
  1944. .fprice .price .p1 {
  1945. font-size: 20rpx;
  1946. font-weight: 500;
  1947. text-align: left;
  1948. color: #ec2e26;
  1949. }
  1950. .fprice .price .p2 {
  1951. font-size: 30rpx;
  1952. font-weight: bold;
  1953. text-align: left;
  1954. color: #ec2e26;
  1955. }
  1956. .activeity-fix {
  1957. margin-left: auto;
  1958. }
  1959. .weekt1 .feeafter {
  1960. padding-left: 0rpx;
  1961. margin-left: 0rpx;
  1962. }
  1963. .weekt1 .feeafter::after {
  1964. display: none;
  1965. }
  1966. .nodata-img {
  1967. margin: 5rpx auto;
  1968. }
  1969. .popup-box {
  1970. width: 750rpx;
  1971. height: 100vh;
  1972. background-color: rgba(0, 0, 0, 0.7);
  1973. display: flex;
  1974. align-items: center;
  1975. justify-content: center;
  1976. position: fixed;
  1977. left: 0;
  1978. top: 0;
  1979. z-index: 100000;
  1980. }
  1981. .popup-wap {
  1982. display: flex;
  1983. flex-direction: column;
  1984. align-items: flex-end;
  1985. width: 630rpx;
  1986. }
  1987. .popup-close {
  1988. width: 54rpx;
  1989. height: 54rpx;
  1990. }
  1991. .popup-img {
  1992. width: 630rpx;
  1993. height: 751rpx;
  1994. margin-top: 43rpx;
  1995. border-radius: 20rpx;
  1996. }
  1997. .status {
  1998. width: 115rpx;
  1999. height: 50rpx;
  2000. position: absolute;
  2001. left: 30rpx;
  2002. top: 30rpx;
  2003. font-size: 24rpx;
  2004. line-height: 50rpx;
  2005. padding-left: 14rpx;
  2006. z-index: 10;
  2007. color: white;
  2008. background-size: 115rpx 50rpx;
  2009. background-repeat: no-repeat;
  2010. /* border-radius: 20rpx 20rpx 0 20rpx; */
  2011. }
  2012. .activestatus {
  2013. background: #ffdc2f;
  2014. }
  2015. .baostatus {
  2016. background: #00de9b;
  2017. }
  2018. .endstatus {
  2019. background: #707070;
  2020. }
  2021. .nostatus {
  2022. background: rgba(251, 177, 120, 0.9);
  2023. }
  2024. .mstatus {
  2025. background: #ff3a3a;
  2026. }
  2027. .txt-con .item {
  2028. font-size: 28rpx;
  2029. line-height: 36rpx;
  2030. font-weight: 400;
  2031. color: #333333;
  2032. display: -webkit-box;
  2033. overflow: hidden;
  2034. -webkit-box-orient: vertical;
  2035. -webkit-line-clamp: 1;
  2036. margin-bottom: 5rpx;
  2037. font-family: PingFang SC, PingFang SC-Regular;
  2038. }
  2039. .txt-con .item .time-box,
  2040. .txt-con .address-type,
  2041. .txt-con .num-price .num {
  2042. display: flex;
  2043. align-items: center;
  2044. }
  2045. .txt-con .item .time-box,
  2046. .txt-con .num-price .num {
  2047. font-size: 24rpx;
  2048. color: #999999;
  2049. }
  2050. .txt-con .item .icon-box,
  2051. .txt-con .address-type .icon-box,
  2052. .txt-con .num-price .icon-box {
  2053. width: 35rpx;
  2054. text-align: left;
  2055. margin-right: 9rpx;
  2056. flex-shrink: 0;
  2057. }
  2058. .num-price {
  2059. display: flex;
  2060. justify-content: space-between;
  2061. font-size: 28rpx;
  2062. line-height: 36rpx;
  2063. font-weight: 400;
  2064. color: #333333;
  2065. margin-bottom: 5rpx;
  2066. font-family: PingFang SC, PingFang SC-Regular;
  2067. margin-top: 8rpx;
  2068. position: relative;
  2069. }
  2070. /* 分类管理 */
  2071. .classfiy-box {
  2072. padding: 0 30rpx 0;
  2073. margin-bottom: 46rpx;
  2074. box-sizing: border-box;
  2075. }
  2076. .classfiy-box .main {
  2077. }
  2078. .classfiy-box .main .goods-item {
  2079. display: flex;
  2080. /* align-items: center; */
  2081. padding: 30rpx;
  2082. font-size: 28rpx;
  2083. color: #3b403d;
  2084. font-weight: 400;
  2085. background-color: #fff;
  2086. border-radius: 20rpx;
  2087. margin-bottom: 20rpx;
  2088. }
  2089. .classfiy-box .main .goods-item image {
  2090. width: 210rpx;
  2091. height: 210rpx;
  2092. margin-right: 30rpx;
  2093. /* background: #000; */
  2094. border-radius: 20rpx;
  2095. flex-shrink: 0;
  2096. }
  2097. .classfiy-box .main .goods-item .goods-btn {
  2098. flex: 1;
  2099. min-height: 210rpx;
  2100. display: flex;
  2101. flex-direction: column;
  2102. justify-content: space-between;
  2103. /* align-items: center; */
  2104. }
  2105. .classfiy-box .main .goods-item .goods-btn .title {
  2106. overflow: hidden;
  2107. text-overflow: ellipsis;
  2108. white-space: nowrap;
  2109. font-weight: 700;
  2110. font-size: 30rpx;
  2111. margin-bottom: 8rpx;
  2112. }
  2113. .classfiy-box .main .goods-item .goods-btn .desc {
  2114. display: -webkit-box;
  2115. -webkit-box-orient: vertical;
  2116. -webkit-line-clamp: 2;
  2117. /* 限制为两行 */
  2118. overflow: hidden;
  2119. font-size: 24rpx;
  2120. margin-bottom: 8rpx;
  2121. color: #808080;
  2122. }
  2123. .classfiy-box .main .goods-item .goods-btn .btn {
  2124. display: inline-block;
  2125. width: 165rpx;
  2126. height: 60rrpx;
  2127. line-height: 56rpx;
  2128. text-align: center;
  2129. font-size: 24rpx;
  2130. color: #ffffff;
  2131. background-color: #2b58a5;
  2132. border-radius: 30rpx;
  2133. flex-shrink: 0;
  2134. }
  2135. .shop-list-box {
  2136. padding: 0 30rpx 30rpx;
  2137. margin-bottom: 46rpx;
  2138. box-sizing: border-box;
  2139. }
  2140. .shop-list-box .main {
  2141. display: flex;
  2142. flex-wrap: wrap;
  2143. }
  2144. .shop-list-box .shop-item-box {
  2145. width: 335rpx;
  2146. height: 441rpx;
  2147. font-weight: 400;
  2148. overflow: hidden;
  2149. margin-right: 20rpx;
  2150. background-color: #fff;
  2151. border-radius: 20rpx;
  2152. }
  2153. .shop-list-box .shop-item-box:nth-child(2n) {
  2154. margin-right: 0;
  2155. }
  2156. .shop-list-box .shop-item-box .shop-pic {
  2157. width: 100%;
  2158. height: 221rpx !important;
  2159. margin-bottom: 24rpx;
  2160. vertical-align: middle;
  2161. }
  2162. .shop-list-box .shop-item-box .shops-name {
  2163. font-size: 28rpx;
  2164. color: #1a1a1a;
  2165. font-weight: 400;
  2166. margin-bottom: 9rpx;
  2167. }
  2168. .shop-list-box .shop-item-box .shop-info {
  2169. width: 100%;
  2170. padding: 0 20rpx;
  2171. box-sizing: border-box;
  2172. }
  2173. .shop-list-box .shop-item-box .shops-address {
  2174. display: flex;
  2175. height: 66rpx;
  2176. font-size: 24rpx;
  2177. color: #999999;
  2178. margin-bottom: 20rpx;
  2179. }
  2180. .shop-list-box .shop-item-box .shops-address .address-icon {
  2181. width: 21rpx;
  2182. height: 23rpx !important;
  2183. margin-right: 10rpx;
  2184. margin-top: 6rpx;
  2185. flex-shrink: 0;
  2186. }
  2187. .shop-list-box .shop-item-box .shops-address .address-text {
  2188. overflow: hidden;
  2189. -webkit-line-clamp: 2;
  2190. text-overflow: ellipsis;
  2191. display: -webkit-box;
  2192. -webkit-box-orient: vertical;
  2193. color: #999999;
  2194. font-size: 24rpx;
  2195. }
  2196. .shop-list-box .shop-item-box .shop-info .shop-juli {
  2197. display: flex;
  2198. justify-content: space-between;
  2199. align-items: center;
  2200. padding: 9rpx 20rpx;
  2201. font-size: 24rpx;
  2202. color: #77603d;
  2203. background-color: #e8f1ff;
  2204. }
  2205. .shop-list-box .shop-item-box .shop-info .shop-juli {
  2206. flex: 1;
  2207. }
  2208. .shop-list-box .shop-item-box .shop-info .shop-juli .juli-num {
  2209. flex: 1;
  2210. overflow: hidden;
  2211. text-overflow: ellipsis;
  2212. white-space: nowrap;
  2213. }
  2214. .shop-list-box .shop-item-box .shop-info .shop-juli .btns {
  2215. display: flex;
  2216. justify-content: space-between;
  2217. align-items: center;
  2218. margin-left: 20rpx;
  2219. flex-shrink: 0;
  2220. }
  2221. .shop-list-box .shop-item-box .shop-info .shop-juli image {
  2222. width: 32rpx;
  2223. height: 32rpx !important;
  2224. margin-right: 20rpx;
  2225. }
  2226. .shop-list-box .shop-item-box .shop-info .shop-juli image:last-child {
  2227. margin-right: 0;
  2228. }
  2229. .yin {
  2230. font-size: 30rpx;
  2231. color: #00a5fb;
  2232. }
  2233. .popup2Btns {
  2234. display: flex;
  2235. justify-content: space-around;
  2236. padding: 30rpx;
  2237. border-top: 1rpx solid #efefef;
  2238. }
  2239. .popup2Btns .btn {
  2240. width: 200rpx;
  2241. height: 80rpx;
  2242. border: 1px solid #efefef;
  2243. border-radius: 46rpx;
  2244. background-color: #efefef;
  2245. color: #101010;
  2246. line-height: 80rpx;
  2247. }
  2248. .popup2Btns #agree-btn1 {
  2249. background: #ffdc2f !important;
  2250. }