index.vue 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722
  1. <template>
  2. <view class="zs-skeleton" v-if="loading" @touchmove.stop.prevent="clear">
  3. <view name="skeleton" v-if="type == 'home'" class="home">
  4. <view class="sk-container">
  5. <view class="home">
  6. <view></view>
  7. <view data-event-opts="^handlePosition,getCity,^search,handleSearch">
  8. <view class="zs-banner">
  9. <view class="position-box" style="height:90px;background:;">
  10. <view class="position" data-event-opts="tap,handlePosition,$event">
  11. <image mode="true" class="position-icon sk-image"></image>
  12. <text class="city sk-transparent sk-text-30-8824-302 sk-text">成都市</text>
  13. </view>
  14. <view class="search-box" data-event-opts="tap,handleSearch,$event">
  15. <view class="search sk-image" data-event-opts="input,__set_model,,search,$event," placeholder="搜索" style="height:32px;" type="text" value="true"></view>
  16. <image mode="true" class="icon sk-image"></image>
  17. </view>
  18. </view>
  19. <view class="top-box" style="--bg:黑色;">
  20. <swiper autoplay="false" circular="true" class="swiper" data-event-opts="change,swiperChange,$event" duration="1000" indicator-dots="true" interval="3000" current="0"></swiper>
  21. </view>
  22. <view class="u-notice-bar bar--u-notice-bar data-v-24c07869 bar--data-v-24c07869" style="background-color:none">
  23. <view class="u-notice column-notice--u-notice data-v-3bda0f19 column-notice--data-v-3bda0f19" data-event-opts="tap,clickHandler,$event">
  24. <view class="u-notice__left-icon column-notice--u-notice__left-icon data-v-3bda0f19 column-notice--data-v-3bda0f19">
  25. <view class="u-icon icon--u-icon data-v-2ee87dc9 icon--data-v-2ee87dc9 u-icon--right icon--u-icon--right" data-event-opts="tap,clickHandler,$event">
  26. <text class="u-icon__icon icon--u-icon__icon data-v-2ee87dc9 icon--data-v-2ee87dc9 uicon-volume-fill icon--uicon-volume-fill sk-transparent sk-text--40-0000-437 sk-text" style="font-size:10px;line-height:10px;font-weight:normal;top:0px;color:#6F4F23"></text>
  27. </view>
  28. </view>
  29. <swiper autoplay="false" circular="true" class="u-notice__swiper column-notice--u-notice__swiper data-v-3bda0f19 column-notice--data-v-3bda0f19" data-event-opts="change,noticeChange,$event" interval="2000" vertical="true" current="0"></swiper>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="login-home">
  35. <view class="discount-list">
  36. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,0,domainUrl,discountsList,,0,id,discountsList,,0,secondaryImg,discountsList,,0,menuName">
  37. <image mode="true" class="icon sk-image"></image>
  38. <view class="title sk-transparent sk-text-14-2857-244 sk-text">研学</view>
  39. <view class="tag sk-transparent sk-text-11-5385-648 sk-text">0000000000</view>
  40. <view class="desc"></view>
  41. </view>
  42. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,1,domainUrl,discountsList,,1,id,discountsList,,1,secondaryImg,discountsList,,1,menuName">
  43. <image mode="true" class="icon sk-image"></image>
  44. <view class="title sk-transparent sk-text-14-2857-367 sk-text">餐饮美食</view>
  45. <view class="desc"></view>
  46. </view>
  47. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,2,domainUrl,discountsList,,2,id,discountsList,,2,secondaryImg,discountsList,,2,menuName">
  48. <image mode="true" class="icon sk-image"></image>
  49. <view class="title sk-transparent sk-text-14-2857-500 sk-text">酒店民宿</view>
  50. <view class="desc"></view>
  51. </view>
  52. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,3,domainUrl,discountsList,,3,id,discountsList,,3,secondaryImg,discountsList,,3,menuName">
  53. <image mode="true" class="icon sk-image"></image>
  54. <view class="title sk-transparent sk-text-14-2857-497 sk-text">景区门票</view>
  55. <view class="tag sk-transparent sk-text-11-5385-643 sk-text">1元秒杀</view>
  56. <view class="desc sk-transparent sk-text-14-2857-677 sk-text" style="background-position-x: 50%;">低至5折</view>
  57. </view>
  58. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,4,domainUrl,discountsList,,4,id,discountsList,,4,secondaryImg,discountsList,,4,menuName">
  59. <image mode="true" class="icon sk-image"></image>
  60. <view class="title sk-transparent sk-text-14-2857-155 sk-text">健身运动</view>
  61. <view class="tag sk-transparent sk-text-11-5385-227 sk-text">大额券</view>
  62. <view class="desc sk-transparent sk-text-14-2857-150 sk-text" style="background-position-x: 50%;">1元秒杀</view>
  63. </view>
  64. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,5,domainUrl,discountsList,,5,id,discountsList,,5,secondaryImg,discountsList,,5,menuName">
  65. <image mode="true" class="icon sk-image"></image>
  66. <view class="title sk-transparent sk-text-14-2857-893 sk-text">超市购物</view>
  67. <view class="desc"></view>
  68. </view>
  69. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,6,domainUrl,discountsList,,6,id,discountsList,,6,secondaryImg,discountsList,,6,menuName">
  70. <image mode="true" class="icon sk-image"></image>
  71. <view class="title sk-transparent sk-text-14-2857-552 sk-text">加油充电</view>
  72. <view class="tag sk-transparent sk-text-11-5385-710 sk-text">大额券</view>
  73. <view class="desc sk-transparent sk-text-14-2857-314 sk-text" style="background-position-x: 50%;">低至5折</view>
  74. </view>
  75. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,7,domainUrl,discountsList,,7,id,discountsList,,7,secondaryImg,discountsList,,7,menuName">
  76. <image mode="true" class="icon sk-image"></image>
  77. <view class="title sk-transparent sk-text-14-2857-327 sk-text">电影演出</view>
  78. <view class="desc"></view>
  79. </view>
  80. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,8,domainUrl,discountsList,,8,id,discountsList,,8,secondaryImg,discountsList,,8,menuName">
  81. <image mode="true" class="icon sk-image"></image>
  82. <view class="title sk-transparent sk-text-14-2857-185 sk-text">用车养车</view>
  83. <view class="desc"></view>
  84. </view>
  85. <view class="discount-item" data-event-opts="tap,goDetail,$0,$1,$2,$3,discountsList,,9,domainUrl,discountsList,,9,id,discountsList,,9,secondaryImg,discountsList,,9,menuName">
  86. <image mode="true" class="icon sk-image"></image>
  87. <view class="title sk-transparent sk-text-14-2857-273 sk-text">出行</view>
  88. <view class="desc"></view>
  89. </view>
  90. </view>
  91. <view class="swiper-box">
  92. <view class="progress sk-transparent sk-text-14-2857-206 sk-text">5/10</view>
  93. <swiper autoplay="false" circular="true" class="swiper" current="0" data-event-opts="change,swiperChange,$event" duration="1000" interval="3000"></swiper>
  94. </view>
  95. <view class="content">
  96. <view class="store-box" data-event-opts="^load,loadMore">
  97. <view class="zs-list list-index--zs-list" style="margin-top:0;">
  98. <view class="left">
  99. <view class="store-item">
  100. <view data-event-opts="tap,jump,$0,list,,0,jumpUrl">
  101. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  102. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzsUengPGwxbQBfWjZW7Zmh0jxaawbDSAe index--lazyzsUengPGwxbQBfWjZW7Zmh0jxaawbDSAe sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 194px; height: 129.333px; border-radius: 9px;"></image>
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. <view class="right">
  108. <view class="store-item">
  109. <view data-event-opts="tap,jump,$0,list1,,0,jumpUrl">
  110. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  111. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzs80KreaJMHXjnZoL3lh9Z4vS0lcaLT8X index--lazyzs80KreaJMHXjnZoL3lh9Z4vS0lcaLT8X sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 194px; height: 141.506px; border-radius: 9px;"></image>
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. </view>
  117. </view>
  118. </view>
  119. </view>
  120. </view>
  121. </view>
  122. </view>
  123. <view name="skeleton" class="integral" v-else-if="type == 'integral'">
  124. <view class="sk-container">
  125. <view class="store">
  126. <view class="bg sk-image">
  127. <view class="info">
  128. <view class="num sk-transparent sk-text-14-2857-943 sk-text"
  129. style="background-position-x: 50%;">3399</view>
  130. <view class="label sk-transparent sk-text-14-2857-299 sk-text"
  131. style="background-position-x: 50%;">剩余积分</view>
  132. </view>
  133. <view class="rule sk-transparent sk-text-14-2857-922 sk-text">积分规则</view>
  134. <image mode="true" class="jump-img sk-image" data-event-opts="tap,jump,./shop"></image>
  135. </view>
  136. <view class="title sk-transparent">
  137. <image mode="true" class="icon sk-image"></image>积分明细
  138. </view>
  139. <view>
  140. <view class="zs-list list-index--zs-list" style="margin-top:0;">
  141. <view class="item">
  142. <view class="top">
  143. <view class="item-title sk-transparent sk-text-14-2857-830 sk-text">天天签到积分</view>
  144. <view class="score sk-transparent sk-text-14-2857-292 sk-text">+5</view>
  145. </view>
  146. <view class="bottom">
  147. <view class="time sk-transparent sk-text-14-2857-594 sk-text">2022-10-01</view>
  148. <view class="num sk-transparent sk-text-14-2857-398 sk-text">剩余1233</view>
  149. </view>
  150. </view>
  151. <view class="item">
  152. <view class="top">
  153. <view class="item-title sk-transparent sk-text-14-2857-214 sk-text">天天签到积分</view>
  154. <view class="score sk-transparent sk-text-14-2857-115 sk-text">+5</view>
  155. </view>
  156. <view class="bottom">
  157. <view class="time sk-transparent sk-text-14-2857-263 sk-text">2022-10-01</view>
  158. <view class="num sk-transparent sk-text-14-2857-429 sk-text">剩余1233</view>
  159. </view>
  160. </view>
  161. <view class="item">
  162. <view class="top">
  163. <view class="item-title sk-transparent sk-text-14-2857-97 sk-text">天天签到积分</view>
  164. <view class="score sk-transparent sk-text-14-2857-514 sk-text">+5</view>
  165. </view>
  166. <view class="bottom">
  167. <view class="time sk-transparent sk-text-14-2857-304 sk-text">2022-10-01</view>
  168. <view class="num sk-transparent sk-text-14-2857-940 sk-text">剩余233</view>
  169. </view>
  170. </view>
  171. <view class="item">
  172. <view class="top">
  173. <view class="item-title sk-transparent sk-text-14-2857-926 sk-text">天天签到积分</view>
  174. <view class="score sk-transparent sk-text-14-2857-255 sk-text">+5</view>
  175. </view>
  176. <view class="bottom">
  177. <view class="time sk-transparent sk-text-14-2857-844 sk-text">2022-10-01</view>
  178. <view class="num sk-transparent sk-text-14-2857-712 sk-text">剩余1233</view>
  179. </view>
  180. </view>
  181. <view class="item">
  182. <view class="top">
  183. <view class="item-title sk-transparent sk-text-14-2857-153 sk-text">天天签到积分</view>
  184. <view class="score sk-transparent sk-text-14-2857-778 sk-text">+15</view>
  185. </view>
  186. <view class="bottom">
  187. <view class="time sk-transparent sk-text-14-2857-605 sk-text">2022-10-01</view>
  188. <view class="num sk-transparent sk-text-14-2857-586 sk-text">剩余1233</view>
  189. </view>
  190. </view>
  191. <view class="more list-index--more">
  192. <view class="uni-load-more more-index--uni-load-more"
  193. data-event-opts="tap,onClick,$event">
  194. <text class="uni-load-more__text more-index--uni-load-more__text"
  195. style="color:#777777;"></text>
  196. </view>
  197. </view>
  198. </view>
  199. </view>
  200. <view></view>
  201. </view>
  202. </view>
  203. </view>
  204. <view name="skeleton" class="integralShop" v-else-if="type == 'integralShop'">
  205. <view class="sk-container">
  206. <view class="integral-shop">
  207. <view class="search-box">
  208. <view>
  209. <view class="zs-search search-index--zs-search">
  210. <view class="input search-index--input sk-image" placeholder="搜索"
  211. style="line-height:39px;height:39px;border-radius:36px;color:#606266;background:#efefef;"
  212. type="text" value="true"></view>
  213. <image mode="true" class="icon search-index--icon sk-image"></image>
  214. <button
  215. class="btn search-index--btn sk-transparent sk-button sk-pseudo sk-pseudo-circle"
  216. data-event-opts="tap,search,$event" type="default">搜索</button>
  217. </view>
  218. </view>
  219. </view>
  220. <image mode="true" class="top-banner sk-image"></image>
  221. <view class="list" data-event-opts="^load,loadMore">
  222. <view class="zs-list list-index--zs-list" style="margin-top:0;">
  223. <view class="item">
  224. <image class="icon sk-image" mode="aspectFill"></image>
  225. <view class="item-title sk-transparent sk-text-14-2857-302 sk-text">宅小鹿芒果干</view>
  226. <view class="handle-box">
  227. <view class="price sk-transparent sk-text-14-2857-723 sk-text">6000分</view>
  228. <view class="exchange-btn sk-transparent sk-image">兑换</view>
  229. </view>
  230. </view>
  231. <view class="item">
  232. <image class="icon sk-image" mode="aspectFill"></image>
  233. <view class="item-title sk-transparent sk-text-14-2857-958 sk-text">麻辣王子地道辣条</view>
  234. <view class="handle-box">
  235. <view class="price sk-transparent sk-text-14-2857-194 sk-text">6000分</view>
  236. <view class="exchange-btn sk-transparent sk-image">兑换</view>
  237. </view>
  238. </view>
  239. <view class="item">
  240. <image class="icon sk-image" mode="aspectFill"></image>
  241. <view class="item-title sk-transparent sk-text-14-2857-601 sk-text">良品铺子酥脆薄饼</view>
  242. <view class="handle-box">
  243. <view class="price sk-transparent sk-text-14-2857-60 sk-text">6000分</view>
  244. <view class="exchange-btn sk-transparent sk-image">兑换</view>
  245. </view>
  246. </view>
  247. <view class="item">
  248. <image class="icon sk-image" mode="aspectFill"></image>
  249. <view class="item-title sk-transparent sk-text-14-2857-403 sk-text">薄脆饼干</view>
  250. <view class="handle-box">
  251. <view class="price sk-transparent sk-text-14-2857-800 sk-text">6000分</view>
  252. <view class="exchange-btn sk-transparent sk-image">兑换</view>
  253. </view>
  254. </view>
  255. <view class="more list-index--more">
  256. <view class="uni-load-more more-index--uni-load-more"
  257. data-event-opts="tap,onClick,$event">
  258. <text class="uni-load-more__text more-index--uni-load-more__text"
  259. style="color:#777777;"></text>
  260. </view>
  261. </view>
  262. </view>
  263. </view>
  264. </view>
  265. </view>
  266. </view>
  267. <view name="skeleton" class="scenic" v-else-if="type == 'scenic'">
  268. <view class="sk-container">
  269. <view class="scenic">
  270. <view class="search-box" data-event-opts="tap,handleSearch,$event">
  271. <view class="city-box">
  272. <image mode="true" class="icon sk-image"></image>
  273. <view class="city sk-transparent sk-text-14-2857-561 sk-text">成都市</view>
  274. </view>
  275. <view class="search sk-image" data-event-opts="input,__set_model,,value,$event," disabled="true" placeholder="景点名称" type="text" value="true"></view>
  276. </view>
  277. <view class="more-box">
  278. <view class="title sk-transparent sk-text-14-2857-257 sk-text">猜你喜欢</view>
  279. <view class="btn-box sk-transparent">更多
  280. <image mode="true" class="btn sk-image"></image>
  281. </view>
  282. </view>
  283. <view class="list" data-event-opts="^load,loadMore">
  284. <view class="zs-list list-index--zs-list" style="margin-top:11px;">
  285. <view class="left">
  286. <view class="item" data-event-opts="tap,goDetail,$0,list,scenicId,poi1994829">
  287. <view >
  288. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  289. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzssI4CVSRrXv5X9SjTGXdfzoY3kygPH1S index--lazyzssI4CVSRrXv5X9SjTGXdfzoY3kygPH1S sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  290. </view>
  291. </view>
  292. <view class="info">
  293. <view class="title sk-transparent sk-text-14-2857-124 sk-text">上海迪士尼乐园</view>
  294. <view class="price-box">
  295. <view class="unit sk-transparent sk-opacity">¥</view>
  296. <view class="price sk-transparent sk-text-14-2857-899 sk-text">580</view>
  297. <view class="text sk-transparent sk-opacity">起</view>
  298. </view>
  299. <view class="address-box">
  300. <view class="address sk-transparent sk-text-14-2857-575 sk-text">重庆</view>
  301. <view class="distance sk-transparent sk-text-14-2857-119 sk-text">7167 KM</view>
  302. </view>
  303. </view>
  304. </view>
  305. <view class="item" data-event-opts="tap,goDetail,$0,list,scenicId,poi18309">
  306. <view>
  307. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  308. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzscu6CB47QQ9b0BFsWbzTZhC3FEIW23LI index--lazyzscu6CB47QQ9b0BFsWbzTZhC3FEIW23LI sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  309. </view>
  310. </view>
  311. <view class="info">
  312. <view class="title sk-transparent sk-text-14-2857-229 sk-text">北京野生动物园</view>
  313. <view class="price-box">
  314. <view class="unit sk-transparent sk-opacity">¥</view>
  315. <view class="price sk-transparent sk-text-14-2857-175 sk-text">580</view>
  316. <view class="text sk-transparent sk-opacity">起</view>
  317. </view>
  318. <view class="address-box">
  319. <view class="address sk-transparent sk-text-14-2857-908 sk-text">重庆</view>
  320. <view class="distance sk-transparent sk-text-14-2857-680 sk-text">7364 KM</view>
  321. </view>
  322. </view>
  323. </view>
  324. <view class="item" data-event-opts="tap,goDetail,$0,list,scenicId,poi136">
  325. <view>
  326. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  327. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzs4bUPMEu7Pt3PS8f16mB2qlS6cG0WhFQ index--lazyzs4bUPMEu7Pt3PS8f16mB2qlS6cG0WhFQ sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  328. </view>
  329. </view>
  330. <view class="info">
  331. <view class="title sk-transparent sk-text-14-2857-374 sk-text">东方明珠</view>
  332. <view class="price-box">
  333. <view class="unit sk-transparent sk-opacity">¥</view>
  334. <view class="price sk-transparent sk-text-14-2857-566 sk-text">580</view>
  335. <view class="text sk-transparent sk-opacity">起</view>
  336. </view>
  337. <view class="address-box">
  338. <view class="address sk-transparent sk-text-14-2857-976 sk-text">重庆</view>
  339. <view class="distance sk-transparent sk-text-14-2857-869 sk-text">7169 KM</view>
  340. </view>
  341. </view>
  342. </view>
  343. <view class="item" data-event-opts="tap,goDetail,$0,list,scenicId,poi1745">
  344. <view>
  345. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  346. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzs2BtjkBFzJGbpwgZ3x6JPa7EujmkBWNU index--lazyzs2BtjkBFzJGbpwgZ3x6JPa7EujmkBWNU sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  347. </view>
  348. </view>
  349. </view>
  350. </view>
  351. <view class="right">
  352. <view class="item" data-event-opts="tap,goDetail,$0,list1,scenicId,poi134">
  353. <view>
  354. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  355. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzsVyDg7Bs4gkavZ7rDQ2QCdDbbLSBEc5k index--lazyzsVyDg7Bs4gkavZ7rDQ2QCdDbbLSBEc5k sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  356. </view>
  357. </view>
  358. <view class="info">
  359. <view class="title sk-transparent sk-text-14-2857-599 sk-text">黄山风景区</view>
  360. <view class="price-box">
  361. <view class="unit sk-transparent sk-opacity">¥</view>
  362. <view class="price sk-transparent sk-text-14-2857-12 sk-text">580</view>
  363. <view class="text sk-transparent sk-opacity">起</view>
  364. </view>
  365. <view class="address-box">
  366. <view class="address sk-transparent sk-text-14-2857-152 sk-text">重庆</view>
  367. <view class="distance sk-transparent sk-text-14-2857-417 sk-text">7141 KM</view>
  368. </view>
  369. </view>
  370. </view>
  371. <view class="item" data-event-opts="tap,goDetail,$0,list1,scenicId,poi824">
  372. <view>
  373. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  374. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzsiEFrevjWKQ1oSPDeaji9ChnM9e0HEMP index--lazyzsiEFrevjWKQ1oSPDeaji9ChnM9e0HEMP sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  375. </view>
  376. </view>
  377. <view class="info">
  378. <view class="title sk-transparent sk-text-14-2857-657 sk-text">香港迪士尼乐园</view>
  379. <view class="price-box">
  380. <view class="unit sk-transparent sk-opacity">¥</view>
  381. <view class="price sk-transparent sk-text-14-2857-818 sk-text">580</view>
  382. <view class="text sk-transparent sk-opacity">起</view>
  383. </view>
  384. <view class="address-box">
  385. <view class="address sk-transparent sk-text-14-2857-881 sk-text">重庆</view>
  386. <view class="distance sk-transparent sk-text-14-2857-349 sk-text">6945 KM</view>
  387. </view>
  388. </view>
  389. </view>
  390. <view class="item" data-event-opts="tap,goDetail,$0,list1,scenicId,poi6325">
  391. <view>
  392. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  393. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzskkTdFcLiGQETTYd2nm99TMXPtdp43zi index--lazyzskkTdFcLiGQETTYd2nm99TMXPtdp43zi sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  394. </view>
  395. </view>
  396. <view class="info">
  397. <view class="title sk-transparent sk-text-14-2857-391 sk-text">北京欢乐谷</view>
  398. <view class="price-box">
  399. <view class="unit sk-transparent sk-opacity">¥</view>
  400. <view class="price sk-transparent sk-text-14-2857-62 sk-text">580</view>
  401. <view class="text sk-transparent sk-opacity">起</view>
  402. </view>
  403. <view class="address-box">
  404. <view class="address sk-transparent sk-text-14-2857-683 sk-text">重庆</view>
  405. <view class="distance sk-transparent sk-text-14-2857-175 sk-text">7373 KM</view>
  406. </view>
  407. </view>
  408. </view>
  409. <view class="item" data-event-opts="tap,goDetail,$0,list1,scenicId,poi38344">
  410. <view>
  411. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  412. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzsMs3lyBFkzRfULLS3nU05QuEVm1l7f3F index--lazyzsMs3lyBFkzRfULLS3nU05QuEVm1l7f3F sk-image" data-event-opts="error,error,$event" mode="widthFix" style="width: 340rpx; height: 105.188px; border-radius: 8px 8px 0px 0px;"></image>
  413. </view>
  414. </view>
  415. </view>
  416. </view>
  417. </view>
  418. </view>
  419. </view>
  420. </view>
  421. </view>
  422. <view name="skeleton" class="scenicDetail" v-else-if="type == 'scenicDetail'">
  423. <view class="sk-container">
  424. <view class="scenic-detail">
  425. <view>
  426. <view class="zs-header index--zs-header data-v-0789c30e index--data-v-0789c30e" data-event-opts="tap,back,$event" style="height:84px;background:;">
  427. <image mode="true" class="back index--back data-v-0789c30e index--data-v-0789c30e sk-image"></image>
  428. <view class="title index--title data-v-0789c30e index--data-v-0789c30e" style="color:#fff;"></view>
  429. </view>
  430. </view>
  431. <image mode="true" class="top-banner sk-image"></image>
  432. <view class="content">
  433. <view class="info">
  434. <view class="title sk-transparent sk-text-14-2857-476 sk-text">上海迪士尼乐园</view>
  435. <view class="address-box">
  436. <view class="province sk-transparent sk-text-14-2857-295 sk-text">上海</view>
  437. <view class="address sk-transparent sk-text-14-2857-207 sk-text">上海市浦东新区川沙新镇申迪北路753号上海迪士尼度假区</view>
  438. </view>
  439. <view class="open-time sk-transparent sk-text-14-2857-206 sk-text">营业时间:8:30-21:30;08:30-21:30 </view>
  440. </view>
  441. <view class="navigation-box">
  442. <view class="address sk-transparent sk-text-14-2857-71 sk-text">上海市浦东新区川沙新镇申迪北路753号上海迪士尼度假区</view>
  443. <view class="btn sk-transparent sk-text-23-2143-483 sk-text" data-event-opts="tap,handleNavigation,$event" style="background-position-x: 50%;">导航</view>
  444. </view>
  445. <view class="list">
  446. <view class="item">
  447. <view class="sub-title"></view>
  448. <view class="ticket-list">
  449. <view class="ticket-item border-bottom">
  450. <view class="top">
  451. <view class="title sk-transparent sk-text-14-2857-690 sk-text">上海迪士尼乐园二日成人票 当天可定</view>
  452. <view class="price-box">
  453. <view class="unit sk-transparent sk-opacity">¥</view>
  454. <view class="price sk-transparent sk-text-14-2857-488 sk-text">772</view>
  455. <view class="text sk-transparent sk-opacity">起</view>
  456. </view>
  457. </view>
  458. <view class="bottom">
  459. <view class="left">
  460. <view class="notice-box sk-transparent" data-event-opts="tap,handleBuy,$0,info.disTickets,,0">预定须知
  461. <image mode="true" class="more sk-image"></image>
  462. </view>
  463. </view>
  464. <view class="btn sk-transparent sk-text-26-7857-804 sk-text" data-event-opts="tap,handleBuy,$0,info.disTickets,,0" style="background-position-x: 50%;">立即预订</view>
  465. </view>
  466. </view>
  467. <view class="ticket-item border-bottom">
  468. <view class="top">
  469. <view class="title sk-transparent sk-text-14-2857-443 sk-text">上海迪士尼乐园二日长者票 适用于60岁及以上人士</view>
  470. <view class="price-box">
  471. <view class="unit sk-transparent sk-opacity">¥</view>
  472. <view class="price sk-transparent sk-text-14-2857-359 sk-text">558</view>
  473. <view class="text sk-transparent sk-opacity">起</view>
  474. </view>
  475. </view>
  476. <view class="bottom">
  477. <view class="left">
  478. <view class="notice-box sk-transparent" data-event-opts="tap,handleBuy,$0,info.disTickets,,1">预定须知
  479. <image mode="true" class="more sk-image"></image>
  480. </view>
  481. </view>
  482. <view class="btn sk-transparent sk-text-26-7857-101 sk-text" data-event-opts="tap,handleBuy,$0,info.disTickets,,1" style="background-position-x: 50%;">立即预订</view>
  483. </view>
  484. </view>
  485. <view class="ticket-item border-bottom">
  486. <view class="top">
  487. <view class="title sk-transparent sk-text-14-2857-450 sk-text">上海迪士尼乐园二日儿童票 需大人陪同</view>
  488. <view class="price-box">
  489. <view class="unit sk-transparent sk-opacity">¥</view>
  490. <view class="price sk-transparent sk-text-14-2857-172 sk-text">558</view>
  491. <view class="text sk-transparent sk-opacity">起</view>
  492. </view>
  493. </view>
  494. <view class="bottom">
  495. <view class="left">
  496. <view class="notice-box sk-transparent" data-event-opts="tap,handleBuy,$0,info.disTickets,,2">预定须知
  497. <image mode="true" class="more sk-image"></image>
  498. </view>
  499. </view>
  500. <view class="btn sk-transparent sk-text-26-7857-856 sk-text" data-event-opts="tap,handleBuy,$0,info.disTickets,,2" style="background-position-x: 50%;">立即预订</view>
  501. </view>
  502. </view>
  503. <view class="ticket-item border-bottom">
  504. <view class="top">
  505. <view class="title sk-transparent sk-text-14-2857-76 sk-text">上海迪士尼乐园1日儿童票 当天可定(需大人陪同)</view>
  506. <view class="price-box">
  507. <view class="unit sk-transparent sk-opacity">¥</view>
  508. <view class="price sk-transparent sk-text-14-2857-410 sk-text">312</view>
  509. <view class="text sk-transparent sk-opacity">起</view>
  510. </view>
  511. </view>
  512. <view class="bottom">
  513. <view class="left">
  514. <view class="notice-box sk-transparent" data-event-opts="tap,handleBuy,$0,info.disTickets,,3">预定须知
  515. <image mode="true" class="more sk-image"></image>
  516. </view>
  517. </view>
  518. <view class="btn sk-transparent sk-text-26-7857-228 sk-text" data-event-opts="tap,handleBuy,$0,info.disTickets,,3" style="background-position-x: 50%;">立即预订</view>
  519. </view>
  520. </view>
  521. <view class="ticket-item border-bottom">
  522. <view class="top">
  523. <view class="title sk-transparent sk-text-14-2857-120 sk-text">上海迪士尼乐园1日长者票 当天可定(适用于60周岁及以上人士)</view>
  524. <view class="price-box">
  525. <view class="unit sk-transparent sk-opacity">¥</view>
  526. <view class="price sk-transparent sk-text-14-2857-636 sk-text">312</view>
  527. <view class="text sk-transparent sk-opacity">起</view>
  528. </view>
  529. </view>
  530. <view class="bottom">
  531. <view class="left">
  532. <view class="notice-box sk-transparent" data-event-opts="tap,handleBuy,$0,info.disTickets,,4">预定须知
  533. <image mode="true" class="more sk-image"></image>
  534. </view>
  535. </view>
  536. <view class="btn sk-transparent sk-text-26-7857-652 sk-text" data-event-opts="tap,handleBuy,$0,info.disTickets,,4" style="background-position-x: 50%;">立即预订</view>
  537. </view>
  538. </view>
  539. </view>
  540. </view>
  541. </view>
  542. </view>
  543. </view>
  544. </view>
  545. </view>
  546. <view name="skeleton" class="orderDetail" v-else-if="type == 'orderDetail'">
  547. <view class="sk-container">
  548. <view class="order-detail">
  549. <view class="status-box">
  550. <view class="text-box">
  551. <view class="status sk-transparent sk-text-14-2857-332 sk-text">待付款</view>
  552. </view>
  553. </view>
  554. <view class="content shop-box">
  555. <view class="shop-name sk-transparent sk-text-14-2857-950 sk-text">漂亮倩宠物(云岩区店)</view>
  556. <view class="address sk-transparent sk-text-14-2857-931 sk-text">贵州省贵阳市云岩区向阳路9向阳路13号大院内,小朱五金店附近48米</view>
  557. </view>
  558. <view class="content info">
  559. <view class="order-info">
  560. <image mode="true" class="icon sk-image"></image>
  561. <view class="shop-info">
  562. <view class="title sk-transparent sk-text-14-2857-727 sk-text">测试商品(云岩)</view>
  563. <view class="goods-desc sk-transparent sk-text-14-2857-818 sk-text">测试商品(云岩)</view>
  564. <view class="price-box">
  565. <view class="price sk-transparent sk-text-14-2857-635 sk-text">¥0.01</view>
  566. </view>
  567. </view>
  568. </view>
  569. </view>
  570. <view class="content">
  571. <view class="title sk-transparent sk-text-14-2857-792 sk-text">订单信息</view>
  572. <view class="item">
  573. <view class="label sk-transparent sk-text-14-2857-395 sk-text">订单编号</view>
  574. <view class="value sk-transparent sk-text-14-2857-850 sk-text">1793885648400547840</view>
  575. </view>
  576. <view class="item">
  577. <view class="label sk-transparent sk-text-14-2857-536 sk-text">下单时间</view>
  578. <view class="value sk-transparent sk-text-14-2857-879 sk-text">2024-05-24 14:04:02</view>
  579. </view>
  580. </view>
  581. <view class="content">
  582. <view class="title sk-transparent sk-text-14-2857-614 sk-text">交易信息</view>
  583. <view class="item">
  584. <view class="label sk-transparent sk-text-14-2857-940 sk-text">商品金额</view>
  585. <view class="value black sk-transparent sk-text-14-2857-614 sk-text">¥0.01</view>
  586. </view>
  587. <view class="item">
  588. <view class="label sk-transparent sk-text-14-2857-761 sk-text">优惠券</view>
  589. <view class="value red sk-transparent sk-text-14-2857-412 sk-text">-¥0</view>
  590. </view>
  591. <view class="item">
  592. <view class="label sk-transparent sk-text-14-2857-730 sk-text">合计</view>
  593. <view class="value">
  594. <text class="red fs28 sk-transparent sk-text-14-2857-418 sk-text">¥0.01</text>
  595. </view>
  596. </view>
  597. </view>
  598. <button class="pay-btn sk-transparent sk-button sk-pseudo sk-pseudo-circle" data-event-opts="tap,pay,$event" type="default">立即支付</button>
  599. </view>
  600. </view>
  601. </view>
  602. <template name="skeleton" class="goodsDetail" v-else-if="type == 'goodsDetail'">
  603. <view class="sk-container">
  604. <view class="goodsDetail">
  605. <image class="good-img sk-image" mode="aspectFit"></image>
  606. <view class="price-box">
  607. <view class="left">
  608. <view class="num-box">
  609. <view class="unit sk-transparent sk-opacity">¥</view>
  610. <view class="price sk-transparent sk-text-14-2857-598 sk-text">0.1</view>
  611. </view>
  612. <view class="old-price sk-transparent sk-text-14-2857-404 sk-text" style="text-decoration-color: transparent;">市场价 ¥0.8</view>
  613. </view>
  614. <view class="right sk-transparent sk-text-14-2857-192 sk-text">销量1</view>
  615. </view>
  616. <view class="goods-info">
  617. <view class="goods-name sk-transparent sk-text-14-2857-155 sk-text">商品回归测试524</view>
  618. <view class="desc sk-transparent sk-text-14-2857-570 sk-text">1</view>
  619. </view>
  620. <view class="shop-limit" data-event-opts="tap,jump,/detail/shopList/index">
  621. <view class="info">
  622. <view class="shop-name sk-transparent sk-text-14-2857-839 sk-text">研学店铺一</view>
  623. <view class="address sk-transparent sk-text-14-2857-553 sk-text">渝中区 276.99 KM</view>
  624. </view>
  625. <view class="num sk-transparent">1家店适用
  626. <image mode="true" class="icon sk-image"></image>
  627. </view>
  628. </view>
  629. <view class="tab-group">
  630. <view class="tab active sk-transparent sk-text-14-2857-580 sk-text" data-event-opts="tap,handleTab,1" style="background-position-x: 50%;">商品详情</view>
  631. <view class="tab sk-transparent sk-text-14-2857-980 sk-text" data-event-opts="tap,handleTab,2" style="background-position-x: 50%;">购买须知</view>
  632. </view>
  633. <view class="desc-box">
  634. <rich-text class="goods-desc" nodes="1"></rich-text>
  635. </view>
  636. <view class="buy-box">
  637. <image mode="true" class="head sk-image" data-event-opts="tap,goShopDetail,$0,shopInfo"></image>
  638. <view class="btn-box">
  639. <view class="buy-btn" data-event-opts="tap,handleBuy,$event">
  640. <!-- <view class="label sk-transparent sk-text-14-2857-14 sk-text" style="background-position-x: 50%;">会员专享价</view>
  641. <view class="price sk-transparent sk-text-14-2857-988 sk-text" style="background-position-x: 50%;">¥0.1</view> -->
  642. </view>
  643. </view>
  644. </view>
  645. </view>
  646. </view>
  647. </template>
  648. <view name="skeleton" class="sk-activity" v-else-if="type == 'activity'">
  649. <view class="data-v-6362e18b data-v-6362e18b">
  650. <view class="zs-header zs-header data-v-6362e18b data-v-6362e18b" style="height:87px;background:#fff;">
  651. <view class="title title data-v-6362e18b data-v-6362e18b">
  652. <view class="title-text data-v-6362e18b sk-transparent sk-text-14-2857-450 sk-text">平台活动</view>
  653. <view class="title-text data-v-6362e18b sk-transparent sk-text-14-2857-911 sk-text">我的活动</view>
  654. </view>
  655. </view>
  656. <view class="data-v-6362e18b data-v-6362e18b" style="margin-top:87px;">
  657. <view class="activity activity data-v-6362e18b data-v-6362e18b">
  658. <view class="data-v-6362e18b data-v-6362e18b" data-event-opts="^load,loadMore">
  659. <view class="zs-list list-index--zs-list" style="margin-top:0;">
  660. <view class="item item data-v-6362e18b data-v-6362e18b" data-event-opts="tap,goDetail,$0,list,id,91,id">
  661. <view class="data-v-6362e18b data-v-6362e18b">
  662. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  663. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzs1qRKubFGRruhkh9p0937QVEN68rUxnW index--lazyzs1qRKubFGRruhkh9p0937QVEN68rUxnW sk-image" data-event-opts="error,error,$event" mode="true" style="width:369px;height:166px;border-radius:8px 8px 0 0;"></image>
  664. </view>
  665. </view>
  666. <view class="info info data-v-6362e18b data-v-6362e18b">
  667. <view class="title data-v-6362e18b sk-transparent sk-text-14-2857-399 sk-text">活动回归测试(后台)</view>
  668. <view class="desc data-v-6362e18b sk-transparent sk-text-14-2857-647 sk-text">活动时间: 2024-08-01 00:00 至 2024-08-31 23:59</view>
  669. </view>
  670. </view>
  671. <view class="item item data-v-6362e18b data-v-6362e18b" data-event-opts="tap,goDetail,$0,list,id,90,id">
  672. <view class="data-v-6362e18b data-v-6362e18b">
  673. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  674. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzsPctnsYinpTTAvbrYmGryZ8NgMbd4YXk index--lazyzsPctnsYinpTTAvbrYmGryZ8NgMbd4YXk sk-image" data-event-opts="error,error,$event" mode="true" style="width:369px;height:166px;border-radius:8px 8px 0 0;"></image>
  675. </view>
  676. </view>
  677. <view class="info info data-v-6362e18b data-v-6362e18b">
  678. <view class="title data-v-6362e18b sk-transparent sk-text-14-2857-784 sk-text">海报</view>
  679. <view class="desc data-v-6362e18b sk-transparent sk-text-14-2857-858 sk-text">活动时间: 2024-08-01 00:00 至 2024-08-31 23:59</view>
  680. </view>
  681. </view>
  682. <view class="item item data-v-6362e18b data-v-6362e18b" data-event-opts="tap,goDetail,$0,list,id,88,id">
  683. <view class="data-v-6362e18b data-v-6362e18b">
  684. <view class="zs-img-box index--zs-img-box data-v-ce5cf0a6 index--data-v-ce5cf0a6">
  685. <image class="img1 index--img1 data-v-ce5cf0a6 index--data-v-ce5cf0a6 lazyzsxUZGFWS9vSpjdwlu8h3EyROiag6fzt1 index--lazyzsxUZGFWS9vSpjdwlu8h3EyROiag6fzt1 sk-image" data-event-opts="error,error,$event" mode="true" style="width:369px;height:166px;border-radius:8px 8px 0 0;"></image>
  686. </view>
  687. </view>
  688. <view class="info info data-v-6362e18b data-v-6362e18b">
  689. <view class="title data-v-6362e18b sk-transparent sk-text-14-2857-393 sk-text">活动回归测试</view>
  690. </view>
  691. </view>
  692. </view>
  693. </view>
  694. </view>
  695. </view>
  696. </view>
  697. </view>
  698. </view>
  699. </template>
  700. <script>
  701. export default {
  702. name: "zs-skeleton",
  703. props: {
  704. type: {
  705. type: String,
  706. default: 'home'
  707. },
  708. loading: {
  709. type: Boolean,
  710. default: true
  711. },
  712. },
  713. data() {
  714. return {
  715. };
  716. },
  717. methods: {
  718. clear(e) {},
  719. },
  720. }
  721. </script>
  722. <style lang="scss">
  723. .zs-skeleton {
  724. position: fixed;
  725. top: 0;
  726. left: 0;
  727. width: 100vw;
  728. height: 100vh;
  729. z-index: 9999999;
  730. background: #fff;
  731. }
  732. .home {
  733. .sk-transparent {
  734. color: transparent !important;
  735. }
  736. .sk-text-30-8824-302 {
  737. background-image: linear-gradient(transparent 30.8824%, #EEEEEE 0%, #EEEEEE 69.1176%, transparent 0%) !important;
  738. background-size: 100% 59.3023rpx;
  739. position: relative !important;
  740. }
  741. .sk-text {
  742. background-origin: content-box !important;
  743. background-clip: content-box !important;
  744. background-color: transparent !important;
  745. color: transparent !important;
  746. background-repeat: repeat-y !important;
  747. }
  748. .sk-text--40-0000-437 {
  749. background-image: linear-gradient(transparent -40.0000%, #EEEEEE 0%, #EEEEEE 140.0000%, transparent 0%) !important;
  750. background-size: 100% 17.4419rpx;
  751. position: relative !important;
  752. }
  753. .sk-text-14-2857-244 {
  754. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  755. background-size: 100% 31.7442rpx;
  756. position: relative !important;
  757. }
  758. .sk-text-11-5385-648 {
  759. background-image: linear-gradient(transparent 11.5385%, #EEEEEE 0%, #EEEEEE 88.4615%, transparent 0%) !important;
  760. background-size: 100% 22.6744rpx;
  761. position: absolute !important;
  762. }
  763. .sk-text-14-2857-367 {
  764. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  765. background-size: 100% 31.7442rpx;
  766. position: relative !important;
  767. }
  768. .sk-text-14-2857-500 {
  769. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  770. background-size: 100% 31.7442rpx;
  771. position: relative !important;
  772. }
  773. .sk-text-14-2857-497 {
  774. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  775. background-size: 100% 31.7442rpx;
  776. position: relative !important;
  777. }
  778. .sk-text-11-5385-643 {
  779. background-image: linear-gradient(transparent 11.5385%, #EEEEEE 0%, #EEEEEE 88.4615%, transparent 0%) !important;
  780. background-size: 100% 22.6744rpx;
  781. position: absolute !important;
  782. }
  783. .sk-text-14-2857-677 {
  784. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  785. background-size: 100% 21.9767rpx;
  786. position: relative !important;
  787. }
  788. .sk-text-14-2857-155 {
  789. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  790. background-size: 100% 31.7442rpx;
  791. position: relative !important;
  792. }
  793. .sk-text-11-5385-227 {
  794. background-image: linear-gradient(transparent 11.5385%, #EEEEEE 0%, #EEEEEE 88.4615%, transparent 0%) !important;
  795. background-size: 100% 22.6744rpx;
  796. position: absolute !important;
  797. }
  798. .sk-text-14-2857-150 {
  799. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  800. background-size: 100% 21.9767rpx;
  801. position: relative !important;
  802. }
  803. .sk-text-14-2857-893 {
  804. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  805. background-size: 100% 31.7442rpx;
  806. position: relative !important;
  807. }
  808. .sk-text-14-2857-552 {
  809. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  810. background-size: 100% 31.7442rpx;
  811. position: relative !important;
  812. }
  813. .sk-text-11-5385-710 {
  814. background-image: linear-gradient(transparent 11.5385%, #EEEEEE 0%, #EEEEEE 88.4615%, transparent 0%) !important;
  815. background-size: 100% 22.6744rpx;
  816. position: absolute !important;
  817. }
  818. .sk-text-14-2857-314 {
  819. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  820. background-size: 100% 21.9767rpx;
  821. position: relative !important;
  822. }
  823. .sk-text-14-2857-327 {
  824. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  825. background-size: 100% 31.7442rpx;
  826. position: relative !important;
  827. }
  828. .sk-text-14-2857-185 {
  829. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  830. background-size: 100% 31.7442rpx;
  831. position: relative !important;
  832. }
  833. .sk-text-14-2857-273 {
  834. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  835. background-size: 100% 31.7442rpx;
  836. position: relative !important;
  837. }
  838. .sk-text-14-2857-206 {
  839. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  840. background-size: 100% 21.9767rpx;
  841. position: absolute !important;
  842. }
  843. .sk-image {
  844. background: #EFEFEF !important;
  845. }
  846. .sk-container {
  847. position: absolute;
  848. left: 0;
  849. top: 0;
  850. width: 100%;
  851. height: 100%;
  852. overflow: hidden;
  853. background-color: transparent;
  854. }
  855. }
  856. .integral {
  857. .sk-transparent {
  858. color: transparent !important;
  859. }
  860. .sk-text-14-2857-943 {
  861. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  862. background-size: 100% 76.0870rpx;
  863. position: relative !important;
  864. }
  865. .sk-text {
  866. background-origin: content-box !important;
  867. background-clip: content-box !important;
  868. background-color: transparent !important;
  869. color: transparent !important;
  870. background-repeat: repeat-y !important;
  871. }
  872. .sk-text-14-2857-299 {
  873. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  874. background-size: 100% 32.9710rpx;
  875. position: relative !important;
  876. }
  877. .sk-text-14-2857-922 {
  878. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  879. background-size: 100% 38.0435rpx;
  880. position: absolute !important;
  881. }
  882. .sk-text-14-2857-830 {
  883. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  884. background-size: 100% 38.0435rpx;
  885. position: relative !important;
  886. }
  887. .sk-text-14-2857-292 {
  888. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  889. background-size: 100% 50.7246rpx;
  890. position: relative !important;
  891. }
  892. .sk-text-14-2857-594 {
  893. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  894. background-size: 100% 32.9710rpx;
  895. position: relative !important;
  896. }
  897. .sk-text-14-2857-398 {
  898. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  899. background-size: 100% 32.9710rpx;
  900. position: relative !important;
  901. }
  902. .sk-text-14-2857-214 {
  903. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  904. background-size: 100% 38.0435rpx;
  905. position: relative !important;
  906. }
  907. .sk-text-14-2857-115 {
  908. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  909. background-size: 100% 50.7246rpx;
  910. position: relative !important;
  911. }
  912. .sk-text-14-2857-263 {
  913. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  914. background-size: 100% 32.9710rpx;
  915. position: relative !important;
  916. }
  917. .sk-text-14-2857-429 {
  918. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  919. background-size: 100% 32.9710rpx;
  920. position: relative !important;
  921. }
  922. .sk-text-14-2857-97 {
  923. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  924. background-size: 100% 38.0435rpx;
  925. position: relative !important;
  926. }
  927. .sk-text-14-2857-514 {
  928. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  929. background-size: 100% 50.7246rpx;
  930. position: relative !important;
  931. }
  932. .sk-text-14-2857-304 {
  933. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  934. background-size: 100% 32.9710rpx;
  935. position: relative !important;
  936. }
  937. .sk-text-14-2857-940 {
  938. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  939. background-size: 100% 32.9710rpx;
  940. position: relative !important;
  941. }
  942. .sk-text-14-2857-926 {
  943. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  944. background-size: 100% 38.0435rpx;
  945. position: relative !important;
  946. }
  947. .sk-text-14-2857-255 {
  948. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  949. background-size: 100% 50.7246rpx;
  950. position: relative !important;
  951. }
  952. .sk-text-14-2857-844 {
  953. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  954. background-size: 100% 32.9710rpx;
  955. position: relative !important;
  956. }
  957. .sk-text-14-2857-712 {
  958. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  959. background-size: 100% 32.9710rpx;
  960. position: relative !important;
  961. }
  962. .sk-text-14-2857-153 {
  963. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  964. background-size: 100% 38.0435rpx;
  965. position: relative !important;
  966. }
  967. .sk-text-14-2857-778 {
  968. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  969. background-size: 100% 50.7246rpx;
  970. position: relative !important;
  971. }
  972. .sk-text-14-2857-605 {
  973. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  974. background-size: 100% 32.9710rpx;
  975. position: relative !important;
  976. }
  977. .sk-text-14-2857-586 {
  978. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  979. background-size: 100% 32.9710rpx;
  980. position: relative !important;
  981. }
  982. .sk-image {
  983. background: #EFEFEF !important;
  984. }
  985. .sk-container {
  986. position: absolute;
  987. left: 0;
  988. top: 0;
  989. width: 100%;
  990. height: 100%;
  991. overflow: hidden;
  992. background-color: transparent;
  993. }
  994. }
  995. .integralShop {
  996. .sk-transparent {
  997. color: transparent !important;
  998. }
  999. .sk-text-14-2857-302 {
  1000. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1001. background-size: 100% 35.5072rpx;
  1002. position: relative !important;
  1003. }
  1004. .sk-text {
  1005. background-origin: content-box !important;
  1006. background-clip: content-box !important;
  1007. background-color: transparent !important;
  1008. color: transparent !important;
  1009. background-repeat: repeat-y !important;
  1010. }
  1011. .sk-text-14-2857-723 {
  1012. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1013. background-size: 100% 35.5072rpx;
  1014. position: relative !important;
  1015. }
  1016. .sk-text-14-2857-958 {
  1017. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1018. background-size: 100% 35.5072rpx;
  1019. position: relative !important;
  1020. }
  1021. .sk-text-14-2857-194 {
  1022. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1023. background-size: 100% 35.5072rpx;
  1024. position: relative !important;
  1025. }
  1026. .sk-text-14-2857-601 {
  1027. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1028. background-size: 100% 35.5072rpx;
  1029. position: relative !important;
  1030. }
  1031. .sk-text-14-2857-60 {
  1032. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1033. background-size: 100% 35.5072rpx;
  1034. position: relative !important;
  1035. }
  1036. .sk-text-14-2857-403 {
  1037. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1038. background-size: 100% 35.5072rpx;
  1039. position: relative !important;
  1040. }
  1041. .sk-text-14-2857-800 {
  1042. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1043. background-size: 100% 35.5072rpx;
  1044. position: relative !important;
  1045. }
  1046. .sk-button {
  1047. color: #EFEFEF !important;
  1048. background: #EFEFEF !important;
  1049. border: none !important;
  1050. box-shadow: none !important;
  1051. }
  1052. .sk-image {
  1053. background: #EFEFEF !important;
  1054. }
  1055. .sk-pseudo::before,
  1056. .sk-pseudo::after {
  1057. background: #EFEFEF !important;
  1058. background-image: none !important;
  1059. color: transparent !important;
  1060. border-color: transparent !important;
  1061. }
  1062. .sk-pseudo-rect::before,
  1063. .sk-pseudo-rect::after {
  1064. border-radius: 0 !important;
  1065. }
  1066. .sk-pseudo-circle::before,
  1067. .sk-pseudo-circle::after {
  1068. border-radius: 50% !important;
  1069. }
  1070. .sk-container {
  1071. position: absolute;
  1072. left: 0;
  1073. top: 0;
  1074. width: 100%;
  1075. height: 100%;
  1076. overflow: hidden;
  1077. background-color: transparent;
  1078. }
  1079. }
  1080. .scenic{
  1081. .zs-list{
  1082. display: flex;
  1083. justify-content: space-between!important;
  1084. }
  1085. .sk-transparent {
  1086. color: transparent !important;
  1087. }
  1088. .sk-text-14-2857-561 {
  1089. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1090. background-size: 100% 38.0435rpx;
  1091. position: relative !important;
  1092. }
  1093. .sk-text {
  1094. background-origin: content-box !important;
  1095. background-clip: content-box !important;
  1096. background-color: transparent !important;
  1097. color: transparent !important;
  1098. background-repeat: repeat-y !important;
  1099. }
  1100. .sk-text-14-2857-257 {
  1101. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1102. background-size: 100% 43.1159rpx;
  1103. position: relative !important;
  1104. }
  1105. .sk-text-14-2857-124 {
  1106. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1107. background-size: 100% 32.9710rpx;
  1108. position: relative !important;
  1109. }
  1110. .sk-opacity {
  1111. opacity: 0 !important;
  1112. }
  1113. .sk-text-14-2857-899 {
  1114. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1115. background-size: 100% 48.1884rpx;
  1116. position: relative !important;
  1117. }
  1118. .sk-text-14-2857-575 {
  1119. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1120. background-size: 100% 27.8986rpx;
  1121. position: relative !important;
  1122. }
  1123. .sk-text-14-2857-119 {
  1124. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1125. background-size: 100% 27.8986rpx;
  1126. position: relative !important;
  1127. }
  1128. .sk-text-14-2857-229 {
  1129. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1130. background-size: 100% 32.9710rpx;
  1131. position: relative !important;
  1132. }
  1133. .sk-text-14-2857-175 {
  1134. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1135. background-size: 100% 48.1884rpx;
  1136. position: relative !important;
  1137. }
  1138. .sk-text-14-2857-908 {
  1139. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1140. background-size: 100% 27.8986rpx;
  1141. position: relative !important;
  1142. }
  1143. .sk-text-14-2857-680 {
  1144. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1145. background-size: 100% 27.8986rpx;
  1146. position: relative !important;
  1147. }
  1148. .sk-text-14-2857-374 {
  1149. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1150. background-size: 100% 32.9710rpx;
  1151. position: relative !important;
  1152. }
  1153. .sk-text-14-2857-566 {
  1154. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1155. background-size: 100% 48.1884rpx;
  1156. position: relative !important;
  1157. }
  1158. .sk-text-14-2857-976 {
  1159. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1160. background-size: 100% 27.8986rpx;
  1161. position: relative !important;
  1162. }
  1163. .sk-text-14-2857-869 {
  1164. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1165. background-size: 100% 27.8986rpx;
  1166. position: relative !important;
  1167. }
  1168. .sk-text-14-2857-599 {
  1169. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1170. background-size: 100% 32.9710rpx;
  1171. position: relative !important;
  1172. }
  1173. .sk-text-14-2857-12 {
  1174. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1175. background-size: 100% 48.1884rpx;
  1176. position: relative !important;
  1177. }
  1178. .sk-text-14-2857-152 {
  1179. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1180. background-size: 100% 27.8986rpx;
  1181. position: relative !important;
  1182. }
  1183. .sk-text-14-2857-417 {
  1184. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1185. background-size: 100% 27.8986rpx;
  1186. position: relative !important;
  1187. }
  1188. .sk-text-14-2857-657 {
  1189. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1190. background-size: 100% 32.9710rpx;
  1191. position: relative !important;
  1192. }
  1193. .sk-text-14-2857-818 {
  1194. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1195. background-size: 100% 48.1884rpx;
  1196. position: relative !important;
  1197. }
  1198. .sk-text-14-2857-881 {
  1199. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1200. background-size: 100% 27.8986rpx;
  1201. position: relative !important;
  1202. }
  1203. .sk-text-14-2857-349 {
  1204. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1205. background-size: 100% 27.8986rpx;
  1206. position: relative !important;
  1207. }
  1208. .sk-text-14-2857-391 {
  1209. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1210. background-size: 100% 32.9710rpx;
  1211. position: relative !important;
  1212. }
  1213. .sk-text-14-2857-62 {
  1214. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1215. background-size: 100% 48.1884rpx;
  1216. position: relative !important;
  1217. }
  1218. .sk-text-14-2857-683 {
  1219. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1220. background-size: 100% 27.8986rpx;
  1221. position: relative !important;
  1222. }
  1223. .sk-image {
  1224. background: #EFEFEF !important;
  1225. }
  1226. .sk-container {
  1227. position: absolute;
  1228. left: 0;
  1229. top: 0;
  1230. width: 100%;
  1231. height: 100%;
  1232. overflow: hidden;
  1233. background-color: transparent;
  1234. }
  1235. }
  1236. .scenicDetail{
  1237. .sk-transparent {
  1238. color: transparent !important;
  1239. }
  1240. .sk-text-14-2857-476 {
  1241. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1242. background-size: 100% 43.1159rpx;
  1243. position: relative !important;
  1244. }
  1245. .sk-text {
  1246. background-origin: content-box !important;
  1247. background-clip: content-box !important;
  1248. background-color: transparent !important;
  1249. color: transparent !important;
  1250. background-repeat: repeat-y !important;
  1251. }
  1252. .sk-text-14-2857-295 {
  1253. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1254. background-size: 100% 32.9710rpx;
  1255. position: relative !important;
  1256. }
  1257. .sk-text-14-2857-207 {
  1258. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1259. background-size: 100% 32.9710rpx;
  1260. position: relative !important;
  1261. }
  1262. .sk-text-14-2857-206 {
  1263. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1264. background-size: 100% 32.9710rpx;
  1265. position: relative !important;
  1266. }
  1267. .sk-text-14-2857-71 {
  1268. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1269. background-size: 100% 32.9710rpx;
  1270. position: relative !important;
  1271. }
  1272. .sk-text-23-2143-483 {
  1273. background-image: linear-gradient(transparent 23.2143%, #EEEEEE 0%, #EEEEEE 76.7857%, transparent 0%) !important;
  1274. background-size: 100% 50.7246rpx;
  1275. position: relative !important;
  1276. }
  1277. .sk-text-14-2857-690 {
  1278. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1279. background-size: 100% 38.0435rpx;
  1280. position: relative !important;
  1281. }
  1282. .sk-opacity {
  1283. opacity: 0 !important;
  1284. }
  1285. .sk-text-14-2857-488 {
  1286. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1287. background-size: 100% 43.1159rpx;
  1288. position: relative !important;
  1289. }
  1290. .sk-text-26-7857-804 {
  1291. background-image: linear-gradient(transparent 26.7857%, #EEEEEE 0%, #EEEEEE 73.2143%, transparent 0%) !important;
  1292. background-size: 100% 50.7246rpx;
  1293. position: relative !important;
  1294. }
  1295. .sk-text-14-2857-443 {
  1296. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1297. background-size: 100% 38.0435rpx;
  1298. position: relative !important;
  1299. }
  1300. .sk-text-14-2857-359 {
  1301. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1302. background-size: 100% 43.1159rpx;
  1303. position: relative !important;
  1304. }
  1305. .sk-text-26-7857-101 {
  1306. background-image: linear-gradient(transparent 26.7857%, #EEEEEE 0%, #EEEEEE 73.2143%, transparent 0%) !important;
  1307. background-size: 100% 50.7246rpx;
  1308. position: relative !important;
  1309. }
  1310. .sk-text-14-2857-450 {
  1311. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1312. background-size: 100% 38.0435rpx;
  1313. position: relative !important;
  1314. }
  1315. .sk-text-14-2857-172 {
  1316. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1317. background-size: 100% 43.1159rpx;
  1318. position: relative !important;
  1319. }
  1320. .sk-text-26-7857-856 {
  1321. background-image: linear-gradient(transparent 26.7857%, #EEEEEE 0%, #EEEEEE 73.2143%, transparent 0%) !important;
  1322. background-size: 100% 50.7246rpx;
  1323. position: relative !important;
  1324. }
  1325. .sk-text-14-2857-76 {
  1326. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1327. background-size: 100% 38.0435rpx;
  1328. position: relative !important;
  1329. }
  1330. .sk-text-14-2857-410 {
  1331. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1332. background-size: 100% 43.1159rpx;
  1333. position: relative !important;
  1334. }
  1335. .sk-text-26-7857-228 {
  1336. background-image: linear-gradient(transparent 26.7857%, #EEEEEE 0%, #EEEEEE 73.2143%, transparent 0%) !important;
  1337. background-size: 100% 50.7246rpx;
  1338. position: relative !important;
  1339. }
  1340. .sk-text-14-2857-120 {
  1341. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1342. background-size: 100% 38.0435rpx;
  1343. position: relative !important;
  1344. }
  1345. .sk-text-14-2857-636 {
  1346. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1347. background-size: 100% 43.1159rpx;
  1348. position: relative !important;
  1349. }
  1350. .sk-text-26-7857-652 {
  1351. background-image: linear-gradient(transparent 26.7857%, #EEEEEE 0%, #EEEEEE 73.2143%, transparent 0%) !important;
  1352. background-size: 100% 50.7246rpx;
  1353. position: relative !important;
  1354. }
  1355. .sk-text-14-2857-609 {
  1356. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1357. background-size: 100% 40.5797rpx;
  1358. position: absolute !important;
  1359. }
  1360. .sk-image {
  1361. background: #EFEFEF !important;
  1362. }
  1363. .sk-container {
  1364. position: absolute;
  1365. left: 0;
  1366. top: 0;
  1367. width: 100%;
  1368. height: 100%;
  1369. overflow: hidden;
  1370. background-color: transparent;
  1371. }
  1372. }
  1373. .orderDetail{
  1374. .sk-transparent {
  1375. color: transparent !important;
  1376. }
  1377. .sk-text-14-2857-332 {
  1378. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1379. background-size: 100% 43.9535rpx;
  1380. position: relative !important;
  1381. }
  1382. .sk-text {
  1383. background-origin: content-box !important;
  1384. background-clip: content-box !important;
  1385. background-color: transparent !important;
  1386. color: transparent !important;
  1387. background-repeat: repeat-y !important;
  1388. }
  1389. .sk-text-14-2857-950 {
  1390. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1391. background-size: 100% 43.9535rpx;
  1392. position: relative !important;
  1393. }
  1394. .sk-text-14-2857-931 {
  1395. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1396. background-size: 100% 31.7442rpx;
  1397. position: relative !important;
  1398. }
  1399. .sk-text-14-2857-727 {
  1400. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1401. background-size: 100% 39.0698rpx;
  1402. position: relative !important;
  1403. }
  1404. .sk-text-14-2857-818 {
  1405. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1406. background-size: 100% 31.7442rpx;
  1407. position: relative !important;
  1408. }
  1409. .sk-text-14-2857-635 {
  1410. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1411. background-size: 100% 43.9535rpx;
  1412. position: relative !important;
  1413. }
  1414. .sk-text-14-2857-792 {
  1415. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1416. background-size: 100% 39.0698rpx;
  1417. position: relative !important;
  1418. }
  1419. .sk-text-14-2857-395 {
  1420. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1421. background-size: 100% 39.0698rpx;
  1422. position: relative !important;
  1423. }
  1424. .sk-text-14-2857-850 {
  1425. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1426. background-size: 100% 39.0698rpx;
  1427. position: relative !important;
  1428. }
  1429. .sk-text-14-2857-536 {
  1430. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1431. background-size: 100% 39.0698rpx;
  1432. position: relative !important;
  1433. }
  1434. .sk-text-14-2857-879 {
  1435. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1436. background-size: 100% 39.0698rpx;
  1437. position: relative !important;
  1438. }
  1439. .sk-text-14-2857-614 {
  1440. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1441. background-size: 100% 39.0698rpx;
  1442. position: relative !important;
  1443. }
  1444. .sk-text-14-2857-940 {
  1445. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1446. background-size: 100% 39.0698rpx;
  1447. position: relative !important;
  1448. }
  1449. .sk-text-14-2857-761 {
  1450. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1451. background-size: 100% 39.0698rpx;
  1452. position: relative !important;
  1453. }
  1454. .sk-text-14-2857-412 {
  1455. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1456. background-size: 100% 39.0698rpx;
  1457. position: relative !important;
  1458. }
  1459. .sk-text-14-2857-730 {
  1460. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1461. background-size: 100% 39.0698rpx;
  1462. position: relative !important;
  1463. }
  1464. .sk-text-14-2857-418 {
  1465. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1466. background-size: 100% 39.0698rpx;
  1467. position: relative !important;
  1468. }
  1469. .sk-button {
  1470. color: #EFEFEF !important;
  1471. background: #EFEFEF !important;
  1472. border: none !important;
  1473. box-shadow: none !important;
  1474. }
  1475. .sk-image {
  1476. background: #EFEFEF !important;
  1477. }
  1478. .sk-pseudo::before, .sk-pseudo::after {
  1479. background: #EFEFEF !important;
  1480. background-image: none !important;
  1481. color: transparent !important;
  1482. border-color: transparent !important;
  1483. }
  1484. .sk-pseudo-rect::before, .sk-pseudo-rect::after {
  1485. border-radius: 0 !important;
  1486. }
  1487. .sk-pseudo-circle::before, .sk-pseudo-circle::after {
  1488. border-radius: 50% !important;
  1489. }
  1490. .sk-container {
  1491. position: absolute;
  1492. left: 0;
  1493. top: 0;
  1494. width: 100%;
  1495. height: 100%;
  1496. overflow: hidden;
  1497. background-color: transparent;
  1498. }
  1499. }
  1500. .goodsDetail{
  1501. .sk-transparent {
  1502. color: transparent !important;
  1503. }
  1504. .sk-opacity {
  1505. opacity: 0 !important;
  1506. }
  1507. .sk-text-14-2857-598 {
  1508. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1509. background-size: 100% 65.9302rpx;
  1510. position: relative !important;
  1511. }
  1512. .sk-text {
  1513. background-origin: content-box !important;
  1514. background-clip: content-box !important;
  1515. background-color: transparent !important;
  1516. color: transparent !important;
  1517. background-repeat: repeat-y !important;
  1518. }
  1519. .sk-text-14-2857-404 {
  1520. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1521. background-size: 100% 26.8605rpx;
  1522. position: relative !important;
  1523. }
  1524. .sk-text-14-2857-192 {
  1525. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1526. background-size: 100% 31.7442rpx;
  1527. position: relative !important;
  1528. }
  1529. .sk-text-14-2857-155 {
  1530. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1531. background-size: 100% 43.9535rpx;
  1532. position: relative !important;
  1533. }
  1534. .sk-text-14-2857-570 {
  1535. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1536. background-size: 100% 31.7442rpx;
  1537. position: relative !important;
  1538. }
  1539. .sk-text-14-2857-839 {
  1540. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1541. background-size: 100% 39.0698rpx;
  1542. position: relative !important;
  1543. }
  1544. .sk-text-14-2857-553 {
  1545. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1546. background-size: 100% 31.7442rpx;
  1547. position: relative !important;
  1548. }
  1549. .sk-text-14-2857-580 {
  1550. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1551. background-size: 100% 39.0698rpx;
  1552. position: relative !important;
  1553. }
  1554. .sk-text-14-2857-980 {
  1555. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1556. background-size: 100% 39.0698rpx;
  1557. position: relative !important;
  1558. }
  1559. .sk-text-14-2857-14 {
  1560. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1561. background-size: 100% 39.0698rpx;
  1562. position: relative !important;
  1563. }
  1564. .sk-text-14-2857-988 {
  1565. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1566. background-size: 100% 31.7442rpx;
  1567. position: relative !important;
  1568. }
  1569. .sk-image {
  1570. background: #EFEFEF !important;
  1571. }
  1572. .sk-container {
  1573. position: absolute;
  1574. left: 0;
  1575. top: 0;
  1576. width: 100%;
  1577. height: 100%;
  1578. overflow: hidden;
  1579. background-color: transparent;
  1580. }
  1581. }
  1582. .sk-activity{
  1583. .sk-transparent {
  1584. color: transparent !important;
  1585. }
  1586. .sk-text-14-2857-450 {
  1587. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1588. background-size: 100% 43.0769rpx;
  1589. position: relative !important;
  1590. }
  1591. .sk-text {
  1592. background-origin: content-box !important;
  1593. background-clip: content-box !important;
  1594. background-color: transparent !important;
  1595. color: transparent !important;
  1596. background-repeat: repeat-y !important;
  1597. }
  1598. .sk-text-14-2857-911 {
  1599. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1600. background-size: 100% 43.0769rpx;
  1601. position: relative !important;
  1602. }
  1603. .sk-text-14-2857-399 {
  1604. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1605. background-size: 100% 37.6923rpx;
  1606. position: relative !important;
  1607. }
  1608. .sk-text-14-2857-647 {
  1609. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1610. background-size: 100% 32.3077rpx;
  1611. position: relative !important;
  1612. }
  1613. .sk-text-14-2857-784 {
  1614. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1615. background-size: 100% 37.6923rpx;
  1616. position: relative !important;
  1617. }
  1618. .sk-text-14-2857-858 {
  1619. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1620. background-size: 100% 32.3077rpx;
  1621. position: relative !important;
  1622. }
  1623. .sk-text-14-2857-393 {
  1624. background-image: linear-gradient(transparent 14.2857%, #EEEEEE 0%, #EEEEEE 85.7143%, transparent 0%) !important;
  1625. background-size: 100% 37.6923rpx;
  1626. position: relative !important;
  1627. }
  1628. .sk-image {
  1629. background: #EFEFEF !important;
  1630. }
  1631. .sk-container {
  1632. position: absolute;
  1633. left: 0;
  1634. top: 0;
  1635. width: 100%;
  1636. height: 100%;
  1637. overflow: hidden;
  1638. background-color: transparent;
  1639. }
  1640. }
  1641. </style>