index.wxss 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586
  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: 40rpx;
  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. }
  629. .white-spaceone .xiala {
  630. width: 21rpx;
  631. height: 21rpx !important;
  632. }
  633. .white-spacetwo {
  634. width: 205px;
  635. overflow: hidden;
  636. text-overflow: ellipsis;
  637. white-space: nowrap;
  638. }
  639. .two-icon {
  640. position: absolute;
  641. display: flex;
  642. width: 100%;
  643. height: 49rpx;
  644. left: -3rpx;
  645. top: 315rpx;
  646. background-color: #fff;
  647. }
  648. .two-icon image {
  649. width: 40rpx;
  650. height: 40rpx;
  651. }
  652. .two-icon-x1 {
  653. left: 8rpx;
  654. margin-right: 8rpx;
  655. top: -4rpx;
  656. }
  657. /* image{
  658. display: inline-block;
  659. overflow:hidden;
  660. } */
  661. /* new */
  662. .location {
  663. width: 42rpx;
  664. height: 42rpx;
  665. vertical-align: middle;
  666. }
  667. .arrowico {
  668. width: 19rpx;
  669. height: 12rpx;
  670. vertical-align: middle;
  671. }
  672. .news-url {
  673. position: absolute;
  674. top: 193rpx;
  675. left: 20rpx;
  676. z-index: 9999;
  677. }
  678. .news-place {
  679. position: absolute;
  680. top: 191rpx;
  681. left: 70rpx;
  682. z-index: 9999;
  683. color: #858585;
  684. font-family: PingFang-SC-Regular;
  685. }
  686. .boxs {
  687. width: 100%;
  688. display: flex;
  689. align-items: center;
  690. }
  691. .box-activity-img {
  692. width: 100%;
  693. margin-top: 35rpx;
  694. position: relative;
  695. box-sizing: border-box;
  696. }
  697. .box-activity-titlefix {
  698. width: 100% !important;
  699. }
  700. .box-activity-title text:last-child {
  701. color: #7b7b7b;
  702. font-family: PingFang-SC-Bold;
  703. height: 35rpx;
  704. }
  705. .box-image-l {
  706. flex: 1;
  707. text-align: center;
  708. }
  709. .box-image-f {
  710. flex: 2;
  711. }
  712. .box-image-l image {
  713. width: 70rpx;
  714. height: 75rpx;
  715. /* margin-left: 72rpx; */
  716. margin-top: 35rpx;
  717. }
  718. .box-image-txt {
  719. width: 100%;
  720. }
  721. .box-image-txt text {
  722. /* height: 75rpx; */
  723. font-size: 26rpx;
  724. font-family: PingFang-SC-Bold;
  725. color: #101010;
  726. box-sizing: border-box;
  727. font-weight: 600;
  728. }
  729. .box-image-txt .one {
  730. display: inline-block;
  731. text-align: center;
  732. width: 24%;
  733. }
  734. .activity-sale {
  735. color: #ff8000;
  736. font-size: 25rpx;
  737. }
  738. .box-image-txt .two {
  739. display: inline-block;
  740. text-align: center;
  741. width: 26%;
  742. }
  743. .box-image-txt .three {
  744. display: inline-block;
  745. text-align: center;
  746. width: 25%;
  747. }
  748. .box-image-txt .four {
  749. display: inline-block;
  750. text-align: center;
  751. width: 24%;
  752. }
  753. .box-image-r {
  754. width: 44%;
  755. margin: 0 20rpx;
  756. }
  757. .box-image-r image {
  758. width: 100%;
  759. height: 228rpx;
  760. border-radius: 10rpx;
  761. border: 1rpx solid #f7f7f7;
  762. }
  763. .box-position {
  764. position: relative;
  765. }
  766. .mgtop {
  767. margin-top: 35rpx;
  768. }
  769. .box-bg {
  770. padding-top: 7rpx;
  771. padding-bottom: 15rpx;
  772. width: 100%;
  773. padding-left: 6rpx;
  774. }
  775. .box-bg .box-txt {
  776. font-size: 31rpx;
  777. color: #000000;
  778. display: inline-block;
  779. box-sizing: border-box;
  780. white-space: nowrap;
  781. text-overflow: ellipsis;
  782. overflow: hidden;
  783. width: 100%;
  784. font-weight: 600;
  785. }
  786. .txt-remark {
  787. font-size: 29rpx;
  788. color: #878787;
  789. }
  790. .box-bg .txt-bottom {
  791. font-size: 26rpx;
  792. color: #fff;
  793. display: inline-block;
  794. /* padding-left: 6rpx; */
  795. white-space: nowrap;
  796. text-overflow: ellipsis;
  797. overflow: hidden;
  798. width: 90%;
  799. margin: auto;
  800. }
  801. .box-image-r .box-txtwo {
  802. position: absolute;
  803. bottom: 10rpx;
  804. left: 247rpx;
  805. background: rgba(0, 0, 0, 0.3);
  806. padding-top: 7rpx;
  807. padding-bottom: 7rpx;
  808. font-size: 31.8rpx;
  809. width: 29.3%;
  810. color: #fff;
  811. padding-left: 10rpx;
  812. }
  813. .box-image-r .box-txthree {
  814. position: absolute;
  815. bottom: 10rpx;
  816. right: 20rpx;
  817. background: rgba(0, 0, 0, 0.3);
  818. padding-top: 7rpx;
  819. padding-bottom: 7rpx;
  820. font-size: 31.8rpx;
  821. width: 29.3%;
  822. color: #fff;
  823. padding-left: 10rpx;
  824. }
  825. .maxBox {
  826. width: 100%;
  827. margin-top: 35rpx;
  828. }
  829. .txt-btwo {
  830. position: absolute;
  831. top: 160rpx;
  832. left: 221rpx;
  833. font-family: "PingFang-SC-Regular";
  834. font-weight: Regular;
  835. color: #fff;
  836. font-size: 22rpx;
  837. }
  838. .txt-bthree {
  839. position: absolute;
  840. top: 160rpx;
  841. left: 226rpx;
  842. font-family: "PingFang-SC-Regular";
  843. font-weight: Regular;
  844. color: #fff;
  845. font-size: 22rpx;
  846. }
  847. .txt-title {
  848. position: absolute;
  849. top: 100rpx;
  850. left: 285rpx;
  851. font-family: "PingFang-SC-Bold";
  852. font-weight: Bold;
  853. color: #fff;
  854. font-size: 36rpx;
  855. }
  856. /* 3.picuter min */
  857. .boxl {
  858. width: 100%;
  859. height: 60rpx;
  860. display: flex;
  861. margin-top: 12rpx;
  862. }
  863. .boxl image {
  864. flex: 1;
  865. width: 160rpx;
  866. height: 100%;
  867. margin-left: 22rpx;
  868. }
  869. /* 4.picutermax + text */
  870. .two {
  871. width: 100%;
  872. height: 100%;
  873. background-color: #fff;
  874. }
  875. /* .two-min {
  876. position: relative;
  877. width: 430rpx;
  878. height: 116rpx;
  879. background-color: #fff;
  880. border-radius: 10px;
  881. bottom: 75rpx;
  882. left: 23rpx;
  883. }
  884. .two-min-n {
  885. position: absolute;
  886. width: 410rpx;
  887. height: 94rpx;
  888. background-color: #fefddf;
  889. margin-top: 10rpx;
  890. margin-left: 20rpx;
  891. border-radius: 10rpx;
  892. } */
  893. /* .txt-one text {
  894. font-size: 16px;
  895. color: #ffbe31;
  896. font-family: "PingFang-SC-Bold";
  897. font-weight: Bold;
  898. margin-left: 25rpx;
  899. margin-top: 13rpx;
  900. }
  901. .txt-two text {
  902. position: relative;
  903. font-size: 12px;
  904. color: #ffbe31;
  905. font-family: "PingFang-SC-Regular";
  906. font-weight: Regular;
  907. margin-left: 25rpx;
  908. bottom: 8rpx;
  909. text-align: center;
  910. } */
  911. .activity-moretxt {
  912. font-weight: normal;
  913. color: #999999;
  914. font-family: PingFang-SC-Bold;
  915. font-size: 28rpx;
  916. display: inline-block;
  917. vertical-align: middle;
  918. }
  919. .two-mini {
  920. position: absolute;
  921. width: 458rpx;
  922. border-radius: 6px;
  923. bottom: 95rpx;
  924. left: 8rpx;
  925. }
  926. .txt-wrap {
  927. font-size: 32rpx;
  928. font-weight: 700;
  929. font-family: PingFang-SC-Bold;
  930. }
  931. /* 活动实验室 */
  932. .news-container image {
  933. border-radius: 28rpx;
  934. }
  935. .two-min {
  936. position: absolute;
  937. width: 458rpx;
  938. height: 117rpx;
  939. /* background-color:#b0abaf; */
  940. border-radius: 6px;
  941. bottom: -40rpx;
  942. left: -1rpx;
  943. }
  944. .two-min-n {
  945. width: 452rpx;
  946. height: 70rpx;
  947. background-color: #36a891;
  948. margin-left: 3rpx;
  949. margin-top: -30rpx;
  950. border-radius: 10rpx;
  951. }
  952. .txt-one text {
  953. font-size: 32rpx;
  954. color: #ffffff;
  955. font-family: "PingFang-SC-Bold";
  956. font-weight: Bold;
  957. margin-left: 25rpx;
  958. margin-top: 13rpx;
  959. overflow: hidden;
  960. text-overflow: ellipsis;
  961. white-space: nowrap;
  962. }
  963. .txt-two text {
  964. position: relative;
  965. font-size: 12px;
  966. color: #ffffff;
  967. font-family: "PingFang-SC-Regular";
  968. font-weight: Regular;
  969. margin-left: 25rpx;
  970. bottom: -5rpx;
  971. text-align: center;
  972. overflow: hidden;
  973. text-overflow: ellipsis;
  974. white-space: nowrap;
  975. }
  976. .view-img {
  977. width: 98%;
  978. height: 300rpx;
  979. margin: 10rpx auto 0rpx;
  980. position: relative;
  981. }
  982. @font-face {
  983. font-family: "iconfont";
  984. src: url("iconfont.eot?t=1559296891592");
  985. /* IE9 */
  986. src: url("iconfont.eot?t=1559296891592#iefix") format("embedded-opentype"),
  987. /* IE6-IE8 */
  988. 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==")
  989. format("woff2"),
  990. url("iconfont.woff?t=1559296891592") format("woff"),
  991. url("iconfont.ttf?t=1559296891592") format("truetype"),
  992. /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */
  993. url("iconfont.svg?t=1559296891592#iconfont") format("svg");
  994. /* iOS 4.1- */
  995. }
  996. .iconfont {
  997. font-family: "iconfont" !important;
  998. font-style: normal;
  999. -webkit-font-smoothing: antialiased;
  1000. -moz-osx-font-smoothing: grayscale;
  1001. }
  1002. .icon-duorenyonghu-:before {
  1003. content: "\e68e";
  1004. }
  1005. .icon-dingwei:before {
  1006. content: "\e617";
  1007. }
  1008. .iconC-BD {
  1009. color: #bdbdbd;
  1010. }
  1011. .add {
  1012. margin-top: 20rpx;
  1013. width: 100%;
  1014. }
  1015. .add .add-txt {
  1016. font-size: 28rpx;
  1017. color: #848484;
  1018. overflow: hidden;
  1019. text-overflow: ellipsis;
  1020. white-space: nowrap;
  1021. }
  1022. .sv {
  1023. margin-top: 20rpx;
  1024. }
  1025. .toBottom {
  1026. font-size: 28rpx;
  1027. color: rgb(182, 182, 182);
  1028. line-height: 30rpx;
  1029. margin: 60rpx auto 30rpx;
  1030. text-align: center;
  1031. }
  1032. /* 活动 */
  1033. .weekacontent {
  1034. display: flex;
  1035. width: calc(100% + 30rpx);
  1036. flex-direction: row;
  1037. flex-wrap: nowrap;
  1038. overflow-x: auto;
  1039. overflow-y: hidden;
  1040. margin: 14rpx auto;
  1041. }
  1042. .weekitem {
  1043. width: 690rpx;
  1044. height: 223rpx;
  1045. opacity: 1;
  1046. background: #ffffff;
  1047. border-radius: 8rpx;
  1048. padding: 25rpx 30rpx;
  1049. box-sizing: border-box;
  1050. display: flex;
  1051. margin-right: 30rpx;
  1052. flex-direction: row;
  1053. }
  1054. .weekico {
  1055. width: 173rpx;
  1056. height: 173rpx;
  1057. opacity: 1;
  1058. background: rgba(0, 0, 0, 0);
  1059. /* border-radius: 8rpx; */
  1060. box-shadow: 0px 3rpx 6rpx 0px rgba(209, 209, 209, 0.16);
  1061. margin-right: 24rpx;
  1062. }
  1063. .weekinfo {
  1064. width: 462rpx;
  1065. display: flex;
  1066. flex-direction: column;
  1067. }
  1068. .weekt1 {
  1069. display: flex;
  1070. flex-direction: row;
  1071. align-items: center;
  1072. margin-top: 15rpx;
  1073. }
  1074. .weekt1 .tips {
  1075. margin-top: 8rpx;
  1076. width: 66rpx;
  1077. height: 31rpx;
  1078. font-size: 20rpx;
  1079. color: white;
  1080. display: flex;
  1081. justify-content: center;
  1082. align-items: center;
  1083. opacity: 1;
  1084. background: #14d995;
  1085. border-radius: 6rpx 0px 6rpx 0px;
  1086. margin-right: 11rpx;
  1087. }
  1088. .weekt1 .tipstitle {
  1089. width: 322rpx;
  1090. display: inline-block;
  1091. overflow: hidden;
  1092. text-overflow: ellipsis;
  1093. white-space: nowrap;
  1094. font-size: 28rpx;
  1095. font-weight: 700;
  1096. color: #333333;
  1097. letter-spacing: -1rpx;
  1098. }
  1099. .adico {
  1100. width: 21rpx;
  1101. height: 29rpx;
  1102. margin-right: 10rpx;
  1103. }
  1104. .weekt1 .tipstitlex {
  1105. width: 371rpx;
  1106. font-size: 24rpx;
  1107. font-weight: 400;
  1108. text-align: left;
  1109. color: #999999;
  1110. }
  1111. .weekt1fee {
  1112. margin-top: 30rpx;
  1113. }
  1114. .weekt1 .level {
  1115. opacity: 1;
  1116. font-size: 22rpx;
  1117. font-weight: 500;
  1118. color: #666666;
  1119. letter-spacing: 0rpx;
  1120. }
  1121. .weekt1 .fee {
  1122. font-size: 34rpx;
  1123. font-weight: 500;
  1124. text-align: left;
  1125. color: #ec2e26;
  1126. position: relative;
  1127. padding-left: 20rpx;
  1128. margin-left: 20rpx;
  1129. box-sizing: border-box;
  1130. }
  1131. .weekt1 .fee::after {
  1132. position: absolute;
  1133. content: "¥";
  1134. left: 0;
  1135. bottom: 5rpx;
  1136. font-size: 24rpx;
  1137. font-weight: 500;
  1138. text-align: left;
  1139. color: #ec2e26;
  1140. }
  1141. /* 列表 */
  1142. .namewrap {
  1143. display: flex;
  1144. flex-direction: row;
  1145. align-items: center;
  1146. padding: 20rpx 0 30rpx 0;
  1147. position: sticky;
  1148. top: 60px;
  1149. z-index: 100;
  1150. background: #f6f6f6;
  1151. }
  1152. .namewrap .nameitem {
  1153. font-size: 30rpx;
  1154. font-weight: 600;
  1155. text-align: left;
  1156. color: #666666;
  1157. margin-right: 43rpx;
  1158. position: relative;
  1159. white-space: nowrap;
  1160. }
  1161. .namewrap .nameactive {
  1162. font-size: 34rpx;
  1163. font-weight: 700;
  1164. text-align: left;
  1165. color: #1a1a1a;
  1166. position: relative;
  1167. }
  1168. /* .namewrap .nameactive::after {
  1169. position: absolute;
  1170. left: 0;
  1171. bottom: 2rpx;
  1172. content: '';
  1173. width: 100%;
  1174. z-index: -1;
  1175. height: 8rpx;
  1176. background-color: #9DDB52;
  1177. border-radius: 8rpx;
  1178. } */
  1179. .categorywrap {
  1180. display: flex;
  1181. flex-direction: column;
  1182. padding-top: 16rpx;
  1183. box-sizing: border-box;
  1184. }
  1185. .categorywrapfix {
  1186. flex-direction: row;
  1187. flex-wrap: wrap;
  1188. }
  1189. .hot-wap-box {
  1190. /* background-color: #ffffff; */
  1191. /* x1 y1, x2 y2, 当x1等于x2,y1不等于y2,实现垂直渐变,调整y1,y2的值可以调整渐变半径大小; */
  1192. /* background: -webkit-gradient(
  1193. linear,
  1194. 0% 100%,
  1195. 0% 20%,
  1196. from(#fff),
  1197. to(#f8f8f8)
  1198. ); */
  1199. padding-left: 30rpx;
  1200. margin-top: 46rpx;
  1201. border-radius: 20rpx;
  1202. position: relative;
  1203. /* //x偏移 y偏移 模糊量 阴影延展 颜色 */
  1204. /* box-shadow:0 24px 5px 44px rgba(248, 248, 248, .5) inset; */
  1205. }
  1206. .hot-box {
  1207. display: flex;
  1208. width: 100%;
  1209. /* margin-top: 22rpx; */
  1210. /* min-height: 490rpx; */
  1211. }
  1212. .scroll-view {
  1213. white-space: nowrap;
  1214. display: flex;
  1215. }
  1216. .hot-item {
  1217. width: 640rpx;
  1218. margin-left: 20rpx;
  1219. padding: 30rpx;
  1220. /* height: 285rpx; */
  1221. /* padding-bottom: 20rpx; */
  1222. display: inline-block;
  1223. position: relative;
  1224. background-color: #fff;
  1225. border-radius: 20rpx;
  1226. box-sizing: border-box;
  1227. box-shadow: 0rpx 2rpx 26rpx 0rpx rgba(100, 100, 100, 0.1);
  1228. }
  1229. .hot-item-conetnt {
  1230. display: flex;
  1231. }
  1232. .hot-item #hot-right {
  1233. /* width: 330rpx; */
  1234. flex: 1;
  1235. margin-left: 20rpx;
  1236. padding-top: 20rpx;
  1237. box-sizing: border-box;
  1238. display: flex;
  1239. flex-direction: column;
  1240. justify-content: space-between;
  1241. overflow: hidden;
  1242. text-overflow: ellipsis;
  1243. white-space: nowrap;
  1244. }
  1245. .hot-item:first-child {
  1246. margin-left: 0;
  1247. }
  1248. .hot-img {
  1249. /* width: 550rpx; */
  1250. width: 210rpx;
  1251. height: 210rpx;
  1252. border-radius: 20rpx;
  1253. flex-shrink: 0;
  1254. font-size: 0;
  1255. }
  1256. .hot-item .name {
  1257. /* font-size: 28rpx;
  1258. font-family: "FZZhunYuan-M02S";
  1259. font-weight: 400;
  1260. color: #1a1a1a;
  1261. margin-top: 22rpx; */
  1262. font-size: 32rpx;
  1263. line-height: 40rpx;
  1264. color: #333333;
  1265. margin-bottom: 10rpx;
  1266. font-family: PingFang SC, PingFang SC-Bold;
  1267. font-weight: 700;
  1268. text-overflow: ellipsis;
  1269. display: -webkit-box;
  1270. -webkit-line-clamp: 1;
  1271. -webkit-box-orient: vertical;
  1272. overflow: hidden;
  1273. }
  1274. .icon-home-dizhi-a {
  1275. color: #ffdc2f !important;
  1276. font-size: 30rpx !important;
  1277. margin-right: 9rpx !important;
  1278. }
  1279. .hot-item .time-box {
  1280. /* margin-top: 25rpx; */
  1281. /* font-family: "FZZhunYuan-M02S"; */
  1282. font-weight: 400;
  1283. display: flex;
  1284. align-items: center;
  1285. font-size: 24rpx;
  1286. color: #999999;
  1287. margin-bottom: 11rpx;
  1288. }
  1289. .hot-item .icon-box {
  1290. /* width: 35rpx; */
  1291. width: 21rpx;
  1292. height: auto;
  1293. text-align: left;
  1294. margin-right: 10rpx;
  1295. flex-shrink: 0;
  1296. }
  1297. .hot-item .icon-box image {
  1298. width: 100%;
  1299. height: 100%;
  1300. }
  1301. .icon-home-time {
  1302. font-size: 30rpx;
  1303. color: #ffdc2f;
  1304. margin-right: 9rpx;
  1305. }
  1306. .ming-box {
  1307. display: flex;
  1308. justify-content: space-between;
  1309. align-items: center;
  1310. }
  1311. .ming-box .per-box {
  1312. font-size: 24rpx;
  1313. /* font-family: "FZZhunYuan-M02S"; */
  1314. font-weight: 400;
  1315. color: #999999;
  1316. margin-top: 8rpx;
  1317. position: relative;
  1318. display: flex;
  1319. align-items: center;
  1320. margin-bottom: 5rpx;
  1321. }
  1322. .ming-box .vip-txt {
  1323. font-size: 24rpx;
  1324. color: #999999;
  1325. }
  1326. .icon-home-pel {
  1327. font-size: 30rpx;
  1328. color: #ffdc2f;
  1329. margin-right: 9rpx;
  1330. /* margin-top: 4rpx; */
  1331. /* position: absolute;
  1332. top: 2rpx; */
  1333. }
  1334. .address-h-box {
  1335. /* width: 100%; */
  1336. margin-bottom: 11rpx;
  1337. display: flex;
  1338. }
  1339. .address-h-box .address {
  1340. display: flex;
  1341. flex: 1;
  1342. width: 0;
  1343. /* align-items: center; */
  1344. padding-top: 9rpx;
  1345. /* margin-top: 25rpx; */
  1346. /* color: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#0000ff)); */
  1347. }
  1348. .address-h-box .address .address-word {
  1349. flex: 1;
  1350. font-size: 24rpx;
  1351. font-family: "FZZhunYuan-M02S";
  1352. font-weight: 400;
  1353. color: #999999;
  1354. /* white-space: nowrap;
  1355. text-overflow: ellipsis;
  1356. overflow: hidden; */
  1357. word-break: break-all;
  1358. /* width: 285rpx; */
  1359. /* flex-shrink: 0; */
  1360. overflow: hidden;
  1361. display: -webkit-box;
  1362. -webkit-line-clamp: 2;
  1363. /* 设置最大显示行数 */
  1364. -webkit-box-orient: vertical;
  1365. text-overflow: ellipsis;
  1366. }
  1367. .address-h-box .address .price-h {
  1368. margin-left: 10rpx;
  1369. flex-shrink: 0;
  1370. }
  1371. .address-h-box .word-type {
  1372. font-size: 24rpx;
  1373. font-family: "FZZhunYuan-M02S";
  1374. font-weight: 400;
  1375. color: #333333;
  1376. /* width: 124rpx;
  1377. flex-shrink: 0; */
  1378. }
  1379. .jianzhi-box {
  1380. border-radius: 20rpx;
  1381. padding: 30rpx 30rpx 0;
  1382. margin-bottom: 46rpx;
  1383. box-sizing: border-box;
  1384. margin-top: 25rpx;
  1385. }
  1386. .jianzhi-item {
  1387. display: flex;
  1388. flex-direction: column;
  1389. justify-content: space-between;
  1390. /* height: 145rpx; */
  1391. padding: 30rpx;
  1392. margin-bottom: 20rpx;
  1393. box-sizing: border-box;
  1394. background-color: #ffffff;
  1395. border-radius: 20rpx;
  1396. }
  1397. .jianzhi-item .name-price {
  1398. display: flex;
  1399. justify-content: space-between;
  1400. align-items: baseline;
  1401. margin-bottom: 10rpx;
  1402. line-height: 1;
  1403. }
  1404. .jianzhi-item .name-price .price {
  1405. display: flex;
  1406. align-items: baseline;
  1407. margin: 0;
  1408. flex-shrink: 0;
  1409. }
  1410. .jianzhi-item .name-price .price .p1,
  1411. .jianzhi-item .name-price .price .p2 {
  1412. line-height: 1;
  1413. }
  1414. .jian-name {
  1415. /* width: 480rpx; */
  1416. /* flex-shrink: 0; */
  1417. margin-right: 20rpx;
  1418. text-overflow: ellipsis;
  1419. overflow: hidden;
  1420. white-space: nowrap;
  1421. /* display: -webkit-box;
  1422. -webkit-line-clamp: 1;
  1423. -webkit-box-orient: vertical; */
  1424. color: #333333;
  1425. font-size: 28rpx;
  1426. font-family: "FZZhunYuan-M02S";
  1427. font-weight: bold;
  1428. letter-spacing: 0.28px;
  1429. }
  1430. .address-bao {
  1431. display: flex;
  1432. justify-content: space-between;
  1433. align-items: center;
  1434. /* margin-top: 10rpx; */
  1435. }
  1436. .address-bao .address {
  1437. display: flex;
  1438. justify-content: space-between;
  1439. align-items: center;
  1440. position: relative;
  1441. margin-bottom: 20rpx;
  1442. }
  1443. .address-bao .address image {
  1444. width: 21rpx;
  1445. height: 23rpx !important;
  1446. vertical-align: middle;
  1447. }
  1448. .address-bao .address .address-word {
  1449. font-size: 24rpx;
  1450. font-family: "FZZhunYuan-M02S";
  1451. font-weight: 400;
  1452. color: #666666;
  1453. width: 420rpx;
  1454. flex-shrink: 0;
  1455. text-overflow: ellipsis;
  1456. display: -webkit-box;
  1457. -webkit-line-clamp: 1;
  1458. -webkit-box-orient: vertical;
  1459. overflow: hidden;
  1460. /* text-indent: 40rpx; */
  1461. margin-left: 9rpx;
  1462. }
  1463. .icon-address {
  1464. position: absolute;
  1465. top: -4rpx;
  1466. left: 0;
  1467. font-size: 36rpx;
  1468. }
  1469. .address-bao .yu {
  1470. width: 150rpx;
  1471. height: 55rpx;
  1472. text-align: center;
  1473. line-height: 55rpx;
  1474. background: #e6e6e6;
  1475. border-radius: 28rpx;
  1476. font-size: 28rpx;
  1477. font-family: "FZZhunYuan-M02S";
  1478. font-weight: 400;
  1479. color: #0a0a0a;
  1480. }
  1481. .address-bao .man {
  1482. width: 150rpx;
  1483. height: 55rpx;
  1484. text-align: center;
  1485. line-height: 55rpx;
  1486. background: #e6e6e6;
  1487. color: #0a0a0a;
  1488. border-radius: 28rpx;
  1489. font-size: 28rpx;
  1490. font-family: "FZZhunYuan-M02S";
  1491. font-weight: 400;
  1492. }
  1493. .address-bao .job-info .job--base-info {
  1494. color: #ec931a;
  1495. font-size: 24rpx;
  1496. }
  1497. .address-bao .job-info .job--base-info text {
  1498. display: inline-block;
  1499. padding: 0 20rpx;
  1500. border-right: 1rpx solid #ec931a;
  1501. }
  1502. .address-bao .job-info .job--base-info text:first-child {
  1503. padding-left: 0;
  1504. }
  1505. .address-bao .job-info .job--base-info text:last-child {
  1506. border-right: 0;
  1507. }
  1508. .school-box {
  1509. background-color: #ffffff;
  1510. border-radius: 20rpx;
  1511. padding: 30rpx;
  1512. box-sizing: border-box;
  1513. margin-top: 25rpx;
  1514. }
  1515. .school-wap {
  1516. display: flex;
  1517. margin-top: 23rpx;
  1518. }
  1519. .school-item {
  1520. width: 236rpx;
  1521. margin-left: 20rpx;
  1522. display: flex;
  1523. flex-direction: column;
  1524. /* height: 380rpx; */
  1525. /* border-radius: 16rpx !important; */
  1526. }
  1527. .school-item:first-child {
  1528. margin-left: 0;
  1529. }
  1530. .school-img {
  1531. width: 236rpx;
  1532. height: 236rpx;
  1533. border-radius: 16rpx 16rpx 0 0;
  1534. }
  1535. .school-b {
  1536. background-color: #f5f5f4;
  1537. /* height: 122rpx; */
  1538. height: 165rpx;
  1539. border-radius: 0 0 16rpx 16rpx;
  1540. text-align: center;
  1541. padding-top: 24rpx;
  1542. box-sizing: border-box;
  1543. }
  1544. .school-b .name {
  1545. font-size: 28rpx;
  1546. font-family: "FZZhunYuan-M02S";
  1547. /* text-align: center; */
  1548. color: #1a1a1a;
  1549. }
  1550. .school-b .zhi {
  1551. font-size: 24rpx;
  1552. font-family: "FZZhunYuan-M02S";
  1553. font-weight: 400;
  1554. color: #666666;
  1555. margin-top: 13rpx;
  1556. text-overflow: ellipsis;
  1557. display: -webkit-box;
  1558. -webkit-line-clamp: 2;
  1559. -webkit-box-orient: vertical;
  1560. overflow: hidden;
  1561. }
  1562. .hang-box {
  1563. background-color: white;
  1564. padding: 22rpx 30rpx 31rpx 30rpx;
  1565. margin-top: 28rpx;
  1566. border-radius: 16rpx;
  1567. }
  1568. .hang-item {
  1569. padding-bottom: 21rpx;
  1570. border-bottom: 1px solid #e6e6e6;
  1571. }
  1572. .hang-item:last-child {
  1573. border-bottom: none;
  1574. }
  1575. .hang-item .info-box {
  1576. display: flex;
  1577. /* justify-content: space-between; */
  1578. margin-top: 23rpx;
  1579. }
  1580. .hang-item .info-box .per-img {
  1581. width: 140rpx;
  1582. height: 140rpx;
  1583. border-radius: 50%;
  1584. }
  1585. .hang-item .info-box .right-box {
  1586. display: flex;
  1587. margin-left: 65rpx;
  1588. justify-content: space-between;
  1589. width: 425rpx;
  1590. }
  1591. .hang-item-name {
  1592. font-size: 28rpx;
  1593. margin-top: 25rpx;
  1594. font-family: "FZCuYuan-M03";
  1595. font-weight: 400;
  1596. color: #1a1a1a;
  1597. }
  1598. .hang-item-zhi {
  1599. font-size: 24rpx;
  1600. font-family: "FZZhunYuan-M02S";
  1601. font-weight: 400;
  1602. color: #808080;
  1603. margin-top: 16rpx;
  1604. }
  1605. .jh {
  1606. font-family: "FZCuYuan-M03";
  1607. font-weight: 400;
  1608. }
  1609. .hang-item-address {
  1610. display: flex;
  1611. padding-top: 25rpx;
  1612. width: 210rpx;
  1613. flex-shrink: 0;
  1614. justify-content: flex-end;
  1615. }
  1616. .hang-item-address .address-word {
  1617. font-size: 24rpx;
  1618. font-family: "FZZhunYuan-M02S";
  1619. font-weight: 400;
  1620. color: #999999;
  1621. }
  1622. .hang-item .label {
  1623. font-size: 24rpx;
  1624. font-family: "FZZhunYuan-M02S";
  1625. font-weight: 400;
  1626. color: #333333;
  1627. margin-top: 13rpx;
  1628. }
  1629. .hang-item-type-box {
  1630. display: flex;
  1631. flex-wrap: wrap;
  1632. }
  1633. .hang-item-type-box .item {
  1634. padding: 0 16rpx;
  1635. height: 40rpx;
  1636. line-height: 40rpx;
  1637. opacity: 0.67;
  1638. background: #f5f5f5;
  1639. border-radius: 10rpx 0px 10rpx 0px;
  1640. margin-right: 15rpx;
  1641. font-size: 24rpx;
  1642. font-family: "FZZhunYuan-M02S";
  1643. font-weight: 400;
  1644. color: #333333;
  1645. margin-top: 10rpx;
  1646. }
  1647. .jiao-box {
  1648. display: flex;
  1649. justify-content: space-between;
  1650. margin-top: 12rpx;
  1651. align-items: baseline;
  1652. }
  1653. .jiao-box .num-box {
  1654. font-size: 24rpx;
  1655. font-family: "FZZhunYuan-M02S";
  1656. font-weight: 400;
  1657. color: #666666;
  1658. }
  1659. .pers {
  1660. color: #ff9209;
  1661. }
  1662. .shop-box {
  1663. padding: 18rpx 30rpx 27rpx 30rpx;
  1664. margin-top: 28rpx;
  1665. border-radius: 16rpx;
  1666. }
  1667. .shop-item {
  1668. margin-top: 20rpx;
  1669. }
  1670. .shop-img {
  1671. width: 630rpx;
  1672. height: 248rpx;
  1673. border-radius: 16rpx 16rpx 0px 0px;
  1674. }
  1675. .shop-name {
  1676. font-size: 28rpx;
  1677. font-family: "FZZhunYuan-M02S";
  1678. font-weight: 400;
  1679. color: #1a1a1a;
  1680. margin-top: 22rpx;
  1681. }
  1682. .shop-address {
  1683. margin-top: 17rpx;
  1684. display: flex;
  1685. align-items: center;
  1686. border-bottom: 1px solid #e6e6e6;
  1687. padding-bottom: 27rpx;
  1688. font-family: "FZZhunYuan-M02S";
  1689. }
  1690. .shop-address .address-word {
  1691. /* margin-left: 13rpx; */
  1692. font-size: 24rpx;
  1693. font-family: "FZZhunYuan-M02S";
  1694. font-weight: 400;
  1695. color: #333333;
  1696. }
  1697. .juli {
  1698. font-size: 24rpx;
  1699. font-family: "FZZhunYuan-M02S";
  1700. font-weight: 400;
  1701. color: #666666;
  1702. margin-left: 8rpx;
  1703. }
  1704. .ju-box {
  1705. display: flex;
  1706. justify-content: space-between;
  1707. align-items: center;
  1708. margin-top: 25rpx;
  1709. }
  1710. .ju-word {
  1711. font-size: 24rpx;
  1712. font-family: "FZZhunYuan-M02S";
  1713. font-weight: 400;
  1714. color: #666666;
  1715. padding-right: 30rpx;
  1716. box-sizing: border-box;
  1717. }
  1718. .icons {
  1719. display: flex;
  1720. align-items: center;
  1721. }
  1722. .dingwei-img {
  1723. width: 33rpx;
  1724. height: 33rpx;
  1725. color: #639ffd;
  1726. }
  1727. .icon-phone {
  1728. font-size: 33rpx;
  1729. color: #fd75a7;
  1730. }
  1731. .price {
  1732. display: flex;
  1733. flex-direction: row;
  1734. align-items: flex-end;
  1735. }
  1736. .price-h .p2 {
  1737. font-size: 30rpx;
  1738. font-weight: bold;
  1739. text-align: left;
  1740. color: #ec2e26;
  1741. }
  1742. .price-h .p1 {
  1743. font-size: 20rpx;
  1744. font-weight: 500;
  1745. text-align: left;
  1746. color: #ec2e26;
  1747. }
  1748. .catebottom .sub-btn-box {
  1749. display: inline-block;
  1750. width: calc(100% - 375rpx);
  1751. text-align: right;
  1752. vertical-align: text-top;
  1753. margin-top: -10rpx;
  1754. }
  1755. .catebottom .sub-btn {
  1756. background: #fcc26e;
  1757. border: 2rpx solid #ffffff;
  1758. border-radius: 27rpx;
  1759. padding: 0 24rpx;
  1760. line-height: 50rpx;
  1761. color: white;
  1762. font-size: 28rpx;
  1763. width: fit-content;
  1764. display: inline-block;
  1765. }
  1766. .green2 {
  1767. background: #2b58a5 !important;
  1768. color: #ffffff !important;
  1769. }
  1770. .touritem {
  1771. display: flex;
  1772. flex-direction: column;
  1773. width: 100%;
  1774. height: 428rpx;
  1775. opacity: 1;
  1776. background: #ffffff;
  1777. border-radius: 8rpx;
  1778. margin-bottom: 15rpx;
  1779. }
  1780. .touritem .namebg {
  1781. width: 100%;
  1782. height: 260rpx;
  1783. opacity: 1;
  1784. background: rgba(0, 0, 0, 0);
  1785. border-radius: 8rpx 8rpx 0px 0px;
  1786. }
  1787. .touritem .tourbody {
  1788. height: 168rpx;
  1789. display: flex;
  1790. flex-direction: column;
  1791. width: 100%;
  1792. padding: 16rpx 30rpx;
  1793. box-sizing: border-box;
  1794. }
  1795. .tourtitle {
  1796. font-size: 28rpx;
  1797. font-weight: 700;
  1798. text-align: left;
  1799. color: #333333;
  1800. text-overflow: ellipsis;
  1801. white-space: nowrap;
  1802. overflow: hidden;
  1803. }
  1804. .touradwr {
  1805. display: flex;
  1806. flex-direction: row;
  1807. align-items: center;
  1808. padding-top: 5rpx;
  1809. box-sizing: border-box;
  1810. }
  1811. .tourleft {
  1812. width: 403rpx;
  1813. display: flex;
  1814. flex-direction: column;
  1815. }
  1816. .tourright {
  1817. display: flex;
  1818. flex-direction: row;
  1819. align-items: flex-end;
  1820. margin-left: auto;
  1821. }
  1822. .tourright .t1 {
  1823. font-size: 22rpx;
  1824. font-weight: 500;
  1825. text-align: right;
  1826. color: #ec2e26;
  1827. padding-bottom: 5rpx;
  1828. }
  1829. .tourright .t2 {
  1830. font-size: 36rpx;
  1831. font-weight: bold;
  1832. color: #ec2e26;
  1833. }
  1834. .tourleftitem {
  1835. display: flex;
  1836. flex-direction: row;
  1837. align-items: center;
  1838. margin-top: 15rpx;
  1839. }
  1840. .left1ico {
  1841. width: 21rpx;
  1842. height: 29rpx;
  1843. margin-right: 21rpx;
  1844. }
  1845. .left2ico {
  1846. width: 21rpx;
  1847. height: 21rpx;
  1848. }
  1849. .lefttext {
  1850. width: 371rpx;
  1851. overflow: hidden;
  1852. text-overflow: ellipsis;
  1853. white-space: nowrap;
  1854. font-size: 24rpx;
  1855. font-weight: 400;
  1856. text-align: left;
  1857. color: #999999;
  1858. }
  1859. .flowitem {
  1860. width: 334rpx;
  1861. height: 538rpx;
  1862. opacity: 1;
  1863. background: #ffffff;
  1864. border-radius: 8rpx;
  1865. display: flex;
  1866. flex-direction: column;
  1867. margin-bottom: 15rpx;
  1868. margin-right: 22rpx;
  1869. }
  1870. .flowitem:nth-child(2n) {
  1871. margin-right: 0rpx !important;
  1872. }
  1873. .flowcover {
  1874. width: 334rpx;
  1875. height: 260rpx;
  1876. border-radius: 8rpx 8rpx 0 0;
  1877. }
  1878. .flowbody {
  1879. display: flex;
  1880. flex-direction: column;
  1881. height: 278rpx;
  1882. padding: 24rpx 30rpx;
  1883. box-sizing: border-box;
  1884. }
  1885. .flowbody .f1 {
  1886. font-size: 28rpx;
  1887. font-weight: 700;
  1888. color: #333333;
  1889. text-overflow: ellipsis;
  1890. overflow: hidden;
  1891. white-space: nowrap;
  1892. }
  1893. .flowbody .f2 {
  1894. margin-top: 8rpx;
  1895. font-size: 24rpx;
  1896. height: 60rpx;
  1897. font-weight: 400;
  1898. text-align: left;
  1899. color: #999999;
  1900. text-align: left;
  1901. text-overflow: ellipsis;
  1902. display: -webkit-box;
  1903. -webkit-line-clamp: 2;
  1904. -webkit-box-orient: vertical;
  1905. overflow: hidden;
  1906. }
  1907. .flowbtn {
  1908. width: 161rpx;
  1909. height: 50rpx;
  1910. margin-top: 17rpx;
  1911. opacity: 1;
  1912. background: #9ddb52;
  1913. border: 2rpx solid #ffffff;
  1914. border-radius: 27rpx;
  1915. font-size: 28rpx;
  1916. font-weight: 400;
  1917. text-align: left;
  1918. color: #ffffff;
  1919. display: flex;
  1920. justify-content: center;
  1921. align-items: center;
  1922. }
  1923. .fprice {
  1924. display: flex;
  1925. flex-direction: row;
  1926. align-items: center;
  1927. margin-top: 17rpx;
  1928. }
  1929. .fprice text {
  1930. font-size: 24rpx;
  1931. font-weight: 400;
  1932. text-align: left;
  1933. color: #999999;
  1934. /* line-height: 33rpx; */
  1935. }
  1936. .fprice .price {
  1937. display: flex;
  1938. flex-direction: row;
  1939. align-items: flex-end;
  1940. }
  1941. .fprice .price .p1 {
  1942. font-size: 20rpx;
  1943. font-weight: 500;
  1944. text-align: left;
  1945. color: #ec2e26;
  1946. }
  1947. .fprice .price .p2 {
  1948. font-size: 30rpx;
  1949. font-weight: bold;
  1950. text-align: left;
  1951. color: #ec2e26;
  1952. }
  1953. .activeity-fix {
  1954. margin-left: auto;
  1955. }
  1956. .weekt1 .feeafter {
  1957. padding-left: 0rpx;
  1958. margin-left: 0rpx;
  1959. }
  1960. .weekt1 .feeafter::after {
  1961. display: none;
  1962. }
  1963. .nodata-img {
  1964. margin: 5rpx auto;
  1965. }
  1966. .popup-box {
  1967. width: 750rpx;
  1968. height: 100vh;
  1969. background-color: rgba(0, 0, 0, 0.7);
  1970. display: flex;
  1971. align-items: center;
  1972. justify-content: center;
  1973. position: fixed;
  1974. left: 0;
  1975. top: 0;
  1976. z-index: 100000;
  1977. }
  1978. .popup-wap {
  1979. display: flex;
  1980. flex-direction: column;
  1981. align-items: flex-end;
  1982. width: 630rpx;
  1983. }
  1984. .popup-close {
  1985. width: 54rpx;
  1986. height: 54rpx;
  1987. }
  1988. .popup-img {
  1989. width: 630rpx;
  1990. height: 751rpx;
  1991. margin-top: 43rpx;
  1992. border-radius: 20rpx;
  1993. }
  1994. .status {
  1995. width: 115rpx;
  1996. height: 50rpx;
  1997. position: absolute;
  1998. left: 30rpx;
  1999. top: 30rpx;
  2000. font-size: 24rpx;
  2001. line-height: 50rpx;
  2002. padding-left: 14rpx;
  2003. z-index: 10;
  2004. color: white;
  2005. background-size: 115rpx 50rpx;
  2006. background-repeat: no-repeat;
  2007. /* border-radius: 20rpx 20rpx 0 20rpx; */
  2008. }
  2009. .activestatus {
  2010. background: #ffdc2f;
  2011. }
  2012. .baostatus {
  2013. background: #00de9b;
  2014. }
  2015. .endstatus {
  2016. background: #707070;
  2017. }
  2018. .nostatus {
  2019. background: rgba(251, 177, 120, 0.9);
  2020. }
  2021. .mstatus {
  2022. background: #ff3a3a;
  2023. }
  2024. .txt-con .item {
  2025. font-size: 28rpx;
  2026. line-height: 36rpx;
  2027. font-weight: 400;
  2028. color: #333333;
  2029. display: -webkit-box;
  2030. overflow: hidden;
  2031. -webkit-box-orient: vertical;
  2032. -webkit-line-clamp: 1;
  2033. margin-bottom: 5rpx;
  2034. font-family: PingFang SC, PingFang SC-Regular;
  2035. }
  2036. .txt-con .item .time-box,
  2037. .txt-con .address-type,
  2038. .txt-con .num-price .num {
  2039. display: flex;
  2040. align-items: center;
  2041. }
  2042. .txt-con .item .time-box,
  2043. .txt-con .num-price .num {
  2044. font-size: 24rpx;
  2045. color: #999999;
  2046. }
  2047. .txt-con .item .icon-box,
  2048. .txt-con .address-type .icon-box,
  2049. .txt-con .num-price .icon-box {
  2050. width: 35rpx;
  2051. text-align: left;
  2052. margin-right: 9rpx;
  2053. flex-shrink: 0;
  2054. }
  2055. .num-price {
  2056. display: flex;
  2057. justify-content: space-between;
  2058. font-size: 28rpx;
  2059. line-height: 36rpx;
  2060. font-weight: 400;
  2061. color: #333333;
  2062. margin-bottom: 5rpx;
  2063. font-family: PingFang SC, PingFang SC-Regular;
  2064. margin-top: 8rpx;
  2065. position: relative;
  2066. }
  2067. /* 分类管理 */
  2068. .classfiy-box {
  2069. padding: 0 30rpx 0;
  2070. margin-bottom: 46rpx;
  2071. box-sizing: border-box;
  2072. }
  2073. .classfiy-box .main {
  2074. }
  2075. .classfiy-box .main .goods-item {
  2076. display: flex;
  2077. /* align-items: center; */
  2078. padding: 30rpx;
  2079. font-size: 28rpx;
  2080. color: #3b403d;
  2081. font-weight: 400;
  2082. background-color: #fff;
  2083. border-radius: 20rpx;
  2084. margin-bottom: 20rpx;
  2085. }
  2086. .classfiy-box .main .goods-item image {
  2087. width: 210rpx;
  2088. height: 210rpx;
  2089. margin-right: 30rpx;
  2090. /* background: #000; */
  2091. border-radius: 20rpx;
  2092. flex-shrink: 0;
  2093. }
  2094. .classfiy-box .main .goods-item .goods-btn {
  2095. flex: 1;
  2096. min-height: 210rpx;
  2097. display: flex;
  2098. flex-direction: column;
  2099. justify-content: space-between;
  2100. /* align-items: center; */
  2101. }
  2102. .classfiy-box .main .goods-item .goods-btn .title {
  2103. overflow: hidden;
  2104. text-overflow: ellipsis;
  2105. white-space: nowrap;
  2106. font-weight: 700;
  2107. font-size: 30rpx;
  2108. margin-bottom: 8rpx;
  2109. }
  2110. .classfiy-box .main .goods-item .goods-btn .desc {
  2111. display: -webkit-box;
  2112. -webkit-box-orient: vertical;
  2113. -webkit-line-clamp: 2;
  2114. /* 限制为两行 */
  2115. overflow: hidden;
  2116. font-size: 24rpx;
  2117. margin-bottom: 8rpx;
  2118. color: #808080;
  2119. }
  2120. .classfiy-box .main .goods-item .goods-btn .btn {
  2121. display: inline-block;
  2122. width: 165rpx;
  2123. height: 60rrpx;
  2124. line-height: 56rpx;
  2125. text-align: center;
  2126. font-size: 24rpx;
  2127. color: #ffffff;
  2128. background-color: #2b58a5;
  2129. border-radius: 30rpx;
  2130. flex-shrink: 0;
  2131. }
  2132. .shop-list-box {
  2133. padding: 0 30rpx 30rpx;
  2134. margin-bottom: 46rpx;
  2135. box-sizing: border-box;
  2136. }
  2137. .shop-list-box .main {
  2138. display: flex;
  2139. flex-wrap: wrap;
  2140. }
  2141. .shop-list-box .shop-item-box {
  2142. width: 335rpx;
  2143. height: 441rpx;
  2144. font-weight: 400;
  2145. overflow: hidden;
  2146. margin-right: 20rpx;
  2147. background-color: #fff;
  2148. border-radius: 20rpx;
  2149. }
  2150. .shop-list-box .shop-item-box:nth-child(2n) {
  2151. margin-right: 0;
  2152. }
  2153. .shop-list-box .shop-item-box .shop-pic {
  2154. width: 100%;
  2155. height: 221rpx !important;
  2156. margin-bottom: 24rpx;
  2157. vertical-align: middle;
  2158. }
  2159. .shop-list-box .shop-item-box .shops-name {
  2160. font-size: 28rpx;
  2161. color: #1a1a1a;
  2162. font-weight: 400;
  2163. margin-bottom: 9rpx;
  2164. }
  2165. .shop-list-box .shop-item-box .shop-info {
  2166. width: 100%;
  2167. padding: 0 20rpx;
  2168. box-sizing: border-box;
  2169. }
  2170. .shop-list-box .shop-item-box .shops-address {
  2171. display: flex;
  2172. height: 66rpx;
  2173. font-size: 24rpx;
  2174. color: #999999;
  2175. margin-bottom: 20rpx;
  2176. }
  2177. .shop-list-box .shop-item-box .shops-address .address-icon {
  2178. width: 21rpx;
  2179. height: 23rpx !important;
  2180. margin-right: 10rpx;
  2181. margin-top: 6rpx;
  2182. flex-shrink: 0;
  2183. }
  2184. .shop-list-box .shop-item-box .shops-address .address-text {
  2185. overflow: hidden;
  2186. -webkit-line-clamp: 2;
  2187. text-overflow: ellipsis;
  2188. display: -webkit-box;
  2189. -webkit-box-orient: vertical;
  2190. color: #999999;
  2191. font-size: 24rpx;
  2192. }
  2193. .shop-list-box .shop-item-box .shop-info .shop-juli {
  2194. display: flex;
  2195. justify-content: space-between;
  2196. align-items: center;
  2197. padding: 9rpx 20rpx;
  2198. font-size: 24rpx;
  2199. color: #77603d;
  2200. background-color: #e8f1ff;
  2201. }
  2202. .shop-list-box .shop-item-box .shop-info .shop-juli {
  2203. flex: 1;
  2204. }
  2205. .shop-list-box .shop-item-box .shop-info .shop-juli .juli-num {
  2206. flex: 1;
  2207. overflow: hidden;
  2208. text-overflow: ellipsis;
  2209. white-space: nowrap;
  2210. }
  2211. .shop-list-box .shop-item-box .shop-info .shop-juli .btns {
  2212. display: flex;
  2213. justify-content: space-between;
  2214. align-items: center;
  2215. margin-left: 20rpx;
  2216. flex-shrink: 0;
  2217. }
  2218. .shop-list-box .shop-item-box .shop-info .shop-juli image {
  2219. width: 32rpx;
  2220. height: 32rpx !important;
  2221. margin-right: 20rpx;
  2222. }
  2223. .shop-list-box .shop-item-box .shop-info .shop-juli image:last-child {
  2224. margin-right: 0;
  2225. }
  2226. .yin {
  2227. font-size: 30rpx;
  2228. color: #00a5fb;
  2229. }
  2230. .popup2Btns {
  2231. display: flex;
  2232. justify-content: space-around;
  2233. padding: 30rpx;
  2234. border-top: 1rpx solid #efefef;
  2235. }
  2236. .popup2Btns .btn {
  2237. width: 200rpx;
  2238. height: 80rpx;
  2239. border: 1px solid #efefef;
  2240. border-radius: 46rpx;
  2241. background-color: #efefef;
  2242. color: #101010;
  2243. line-height: 80rpx;
  2244. }
  2245. .popup2Btns #agree-btn1 {
  2246. background: #ffdc2f !important;
  2247. }