home.vue 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139
  1. <template>
  2. <div style="background: #f7f7f7">
  3. <div class="swiper-wrap">
  4. <ul>
  5. <li v-for="(item,index) in actionList" :key="index" :class="action === index ? 'act-tab' : ''">
  6. <div class="">
  7. <div class="bgimg">
  8. <img :src="item.url" alt="" class="bigImg">
  9. </div>
  10. <div class="arrowBox">
  11. <img src="~@/assets/images/home/leftArrow.png" alt="" class="arrow" @click="reduceAction">
  12. <img src="~@/assets/images/home/rightArrow.png" alt="" class="arrow" @click="addAction">
  13. </div>
  14. </div>
  15. </li>
  16. </ul>
  17. <div class="navi-tab">
  18. <ul>
  19. <li :class="action == 0 ? 'act-tab-index' : ''" @click="action = 0">
  20. <span />
  21. </li>
  22. <li :class="action == 1 ? 'act-tab-index' : ''" @click="action = 1">
  23. <span />
  24. </li>
  25. <li :class="action == 2 ? 'act-tab-index' : ''" @click="action = 2">
  26. <span />
  27. </li>
  28. <li :class="action == 3 ? 'act-tab-index' : ''" @click="action = 3">
  29. <span />
  30. </li>
  31. <li :class="action == 4 ? 'act-tab-index' : ''" @click="action = 4">
  32. <span />
  33. </li>
  34. </ul>
  35. </div>
  36. </div>
  37. <div class="about-wrap">
  38. <div class="title-item">
  39. <div class="unMidTitle" @click="toServiceLocator('/serviceLocator')">
  40. <h3>服务定位</h3>
  41. <p>SERVICE LOCATION</p>
  42. </div>
  43. <div class="midTitle" @click="toServiceLocator('/surroundings')">
  44. <h3 class="midTitleName">园区简介</h3>
  45. <p>PARK PROFILE</p>
  46. </div>
  47. <div class="unMidTitle" @click="toServiceLocator('industry')">
  48. <h3>产业集群</h3>
  49. <p>INDUSTRIAL CLUSTERS</p>
  50. </div>
  51. </div>
  52. <div class="park-content-wrap">
  53. <div class="park-content">
  54. <div class="about-text">
  55. <h3>苏南快递产业园区</h3>
  56. <p>
  57. 苏南快递产业园区规划面积2平方公里,依托机场的航空货运优势,建立产业园区,通过规模化、标准化的运营,满足区域经济发展对快递服务的需求,将无锡打造成为快递服务的国内重要基地和国际快递服务的重要门户。园区已进驻顺丰、中通、韵达等快递企业的区域总公司或大型分拨中心,国内前10强快递品牌企业已有6家在园区内经营。</p>
  58. <button @click="jumb(1)">了解更多</button>
  59. </div>
  60. <div class="ahout-img">
  61. <img src="~@/assets/images/chuanBg.png" alt="">
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. <div class="service-wrap">
  67. <div class="title-item">
  68. <div class="midTitle">
  69. <h3>企业服务</h3>
  70. <p>PARK SERVICE</p>
  71. </div>
  72. </div>
  73. <div class="qyfwBody">
  74. <div v-for="item in yqfwList" class="qyfwItem" >
  75. <img :src="item.url" class="qyfwImg">
  76. <div class="msgBox">
  77. <div class="msgTit">{{ item.name }}</div>
  78. <button class="msgBtn" @click="toServiceLocator(item.path)">了解详情</button>
  79. </div>
  80. </div>
  81. </div>
  82. <!-- <div class="service-nav">-->
  83. <!-- <ul>-->
  84. <!-- <li-->
  85. <!-- :class="serviceActive == 1 ? 'service-active' : ''"-->
  86. <!-- @click="jumb(2, 1)"-->
  87. <!-- >-->
  88. <!-- <span>最新活动</span>-->
  89. <!-- </li>-->
  90. <!-- <li-->
  91. <!-- :class="serviceActive == 2 ? 'service-active' : ''"-->
  92. <!-- @click="jumb(2, 2)"-->
  93. <!-- >-->
  94. <!-- <span>园区培训</span>-->
  95. <!-- </li>-->
  96. <!-- <li-->
  97. <!-- :class="serviceActive == 3 ? 'service-active' : ''"-->
  98. <!-- @click="jumb(2, 3)"-->
  99. <!-- >-->
  100. <!-- <span>园区周边</span>-->
  101. <!-- </li>-->
  102. <!-- <li-->
  103. <!-- :class="serviceActive == 4 ? 'service-active' : ''"-->
  104. <!-- @click="jumb(2, 4)"-->
  105. <!-- >-->
  106. <!-- <span>服务特色</span>-->
  107. <!-- </li>-->
  108. <!-- </ul>-->
  109. <!-- </div>-->
  110. <!-- <div class="service-content-wrap">-->
  111. <!-- <div class="service-park-content">-->
  112. <!-- <div class="service-img">-->
  113. <!-- <img src="~@/assets/images/fuwu.png" alt="">-->
  114. <!-- </div>-->
  115. <!-- <div class="service-text">-->
  116. <!-- <h3>税收优惠政策</h3>-->
  117. <!-- <span>欢迎快递企业考察、入驻园区,享地方税收优惠政策,专项产业发展扶持政策。</span><br>-->
  118. <!-- <h3>营商环境优质</h3>-->
  119. <!-- <span>园区支持力度大,政策长期稳定,多年企业服务经验,申报流程快捷。园区招商顾问一对一陪同落户,服务团队全程代办,方案售后风控跟进。已建成CPA、税务师、审计师专业风控团队,全流程保障企业安全落户。</span><br>-->
  120. <!-- <h3>园区服务优质</h3>-->
  121. <!-- <span>入园流程一步到位,为企业提供“保姆式”落户服务,线上企业操作+线下园区代办,免费提供注册地址,办公场地,企业落户无忧。</span><br>-->
  122. <!-- <h3>协调优惠政策</h3>-->
  123. <!-- <span>入驻企业,园区将会协助申请高新技术企业认证奖励,总部经济、上市奖励、产业扶持等优惠政策。</span><br>-->
  124. <!-- &lt;!&ndash; <button>了解更多</button>&ndash;&gt;-->
  125. <!-- </div>-->
  126. <!-- </div>-->
  127. <!-- </div>-->
  128. <!-- </div>-->
  129. <div class="notice-wrap">
  130. <div class="title-item">
  131. <div class="midTitle">
  132. <h3 style="text-align: center">园区通知</h3>
  133. <p>PARK NOTICE</p>
  134. </div>
  135. </div>
  136. <div class="notice-content-wrap">
  137. <!--PC端显示-->
  138. <div class="notice-park-content">
  139. <div class="notice-parks">
  140. <div class="notice-park-img">
  141. <div>
  142. <img src="~@/assets/images/yqtz.png" alt="">
  143. <h3>园区通知</h3>
  144. </div>
  145. </div>
  146. <div class="notice-park-list">
  147. <ul>
  148. <li v-for="(item, index) in notices.park" :key="index">
  149. <div>
  150. <h3>{{ item.name }}</h3>
  151. <p>{{ item.content }}</p>
  152. </div>
  153. </li>
  154. </ul>
  155. </div>
  156. <div class="notice-park-more" @click="jumb(3, 1)">
  157. <span>更多&gt;</span>
  158. </div>
  159. </div>
  160. <!-- <div class="notice-parks">-->
  161. <!-- <div class="notice-park-img">-->
  162. <!-- <div>-->
  163. <!-- <img src="~@/assets/images/shn2.png" alt="">-->
  164. <!-- <h3>物业通知</h3>-->
  165. <!-- </div>-->
  166. <!-- </div>-->
  167. <!-- <div class="notice-park-list">-->
  168. <!-- <ul>-->
  169. <!-- <li-->
  170. <!-- v-for="(item, index) in notices.parkManagement"-->
  171. <!-- :key="index"-->
  172. <!-- >-->
  173. <!-- <div>-->
  174. <!-- <h3>{{ item.name }}</h3>-->
  175. <!-- <p>{{ item.content }}</p>-->
  176. <!-- </div>-->
  177. <!-- </li>-->
  178. <!-- </ul>-->
  179. <!-- </div>-->
  180. <!-- <div class="notice-park-more" @click="jumb(3, 2)">-->
  181. <!-- <span>更多&gt;</span>-->
  182. <!-- </div>-->
  183. <!-- </div>-->
  184. </div>
  185. <!--APP端-->
  186. <div class="notice-app-content">
  187. <div class="notice-app-nav">
  188. <div class="service-nav">
  189. <ul>
  190. <li
  191. :class="noticeActive == 1 ? 'service-active' : ''"
  192. @click="noticeActive = 1"
  193. >
  194. <span>园区通知</span>
  195. </li>
  196. <li
  197. :class="noticeActive == 2 ? 'service-active' : ''"
  198. @click="noticeActive = 2"
  199. >
  200. <span>物业通知</span>
  201. </li>
  202. </ul>
  203. </div>
  204. <div v-if="noticeActive === 1" class="notice-item-app">
  205. <ul>
  206. <li v-for="(item, index) in notices.park" :key="index">
  207. <div>
  208. <h3 style="text-align: left">{{ item.name }}</h3>
  209. <p style="text-align: left">{{ item.content }}</p>
  210. <div class="more-info" @click="noticeDetail(item)">
  211. <button>了解详情</button>
  212. </div>
  213. </div>
  214. </li>
  215. </ul>
  216. <button class="notice-all" @click="jumb(3, 1)">查看全部</button>
  217. </div>
  218. <div v-if="noticeActive === 2" class="notice-item-app">
  219. <ul>
  220. <li
  221. v-for="(item, index) in notices.parkManagement"
  222. :key="index"
  223. >
  224. <div>
  225. <h3 style="text-align: left">{{ item.name }}</h3>
  226. <p style="text-align: left">{{ item.content }}</p>
  227. <div class="more-info" @click="noticeDetail(item)">
  228. <button>了解详情</button>
  229. </div>
  230. </div>
  231. </li>
  232. </ul>
  233. <button class="notice-all" @click="jumb(3, 2)">查看全部</button>
  234. </div>
  235. </div>
  236. </div>
  237. </div>
  238. </div>
  239. <!-- <div class="money-wrap">
  240. <div class="title-item">
  241. <div>
  242. <h3>投融圈</h3>
  243. <p>INVESTMENT CIRCLE</p>
  244. </div>
  245. </div>
  246. <div class="money-content-wrap">
  247. <div class="money-park-content">
  248. <div class="swiper-container">
  249. <div class="swiper-wrapper">
  250. <div class="swiper-slide" v-for="(item,index) in casebox" :key="index" @click="financeDetail(item)">
  251. <div class="case-wrap">
  252. <div class="case-content">
  253. <span>案例展示</span>
  254. <p class="case-title">{{item.title}}</p>
  255. <p class="case-text">{{item.content}}</p>
  256. <button @click="jumb(4)">了解更多</button>
  257. </div>
  258. <div class="case-img">
  259. <img :src="item.img" alt="">
  260. </div>
  261. </div>
  262. </div>
  263. </div>
  264. 如果需要分页器
  265. <div class="swiper-pagination"></div>
  266. 如果需要导航按钮
  267. <div class="swiper-button-prev"></div>
  268. <div class="swiper-button-next"></div>
  269. </div>
  270. </div>
  271. <div class="money-app-content">
  272. <div class="money-app-content-wrap" v-for="(item,index) in casebox" @click="financeDetail(item)">
  273. <div class="m-app-img">
  274. <img :src="item.img" alt="" />
  275. </div>
  276. <div class="m-app-content">
  277. <h3>{{item.title}}</h3>
  278. <p>{{item.content}}</p>
  279. </div>
  280. </div>
  281. </div>
  282. </div>
  283. </div> -->
  284. <div class="jobs-wrap">
  285. <div class="title-item">
  286. <div class="midTitle">
  287. <h3>优质人才</h3>
  288. <p>HIGH QUELITY TALENT</p>
  289. </div>
  290. </div>
  291. <div class="jobs-content-wrap">
  292. <div class="jobs-park-content">
  293. <div class="jobs-title">
  294. <div>
  295. <img src="~@/assets/images/job11.png" alt="">
  296. <div>企业招聘</div>
  297. <button @click="jumb(5)">了解更多</button>
  298. </div>
  299. </div>
  300. <div class="jobs-list">
  301. <div class="jobs-item">
  302. <ul>
  303. <li
  304. v-for="(item, index) in jobs"
  305. :key="index"
  306. @click="jobDetail(item)"
  307. >
  308. <div>
  309. <div class="jobs-time">
  310. <span>{{ item.createTime }}</span>
  311. </div>
  312. <div class="jobs-name">
  313. <h3>{{ item.name }}</h3>
  314. <p>{{ item.company }}</p>
  315. </div>
  316. </div>
  317. </li>
  318. </ul>
  319. </div>
  320. </div>
  321. </div>
  322. </div>
  323. </div>
  324. <div class="join-wrap">
  325. <div class="title-item">
  326. <div class="midTitle">
  327. <h3>政策服务</h3>
  328. <p>INVESTMENT POLICY</p>
  329. </div>
  330. </div>
  331. <div class="join-content-wrap">
  332. <div class="join-park-content">
  333. <div>
  334. <ul>
  335. <li
  336. v-for="(item, index) in zhaoshang"
  337. :key="index"
  338. @click="jumb(6)"
  339. >
  340. <div class="zs-pc">
  341. <img
  342. :src="require('../../assets/images/' + item.img)"
  343. alt=""
  344. >
  345. <span>{{ item.title }}</span>
  346. </div>
  347. <div class="zs-app">
  348. <img
  349. :src="require('../../assets/images/' + item.img)"
  350. alt=""
  351. >
  352. <span>{{ item.title }}</span>
  353. </div>
  354. </li>
  355. </ul>
  356. </div>
  357. </div>
  358. </div>
  359. </div>
  360. <div class="company-wrap">
  361. <div class="title-item">
  362. <div class="midTitle">
  363. <h3>知名企业</h3>
  364. <p>well-known enterprise</p>
  365. </div>
  366. </div>
  367. <div class="company-content-wrap">
  368. <div class="company-park-content">
  369. <div class="company-swiper-container">
  370. <div class="swiper-wrapper">
  371. <div
  372. v-for="(item, index) in companyList"
  373. :key="index"
  374. class="swiper-slide"
  375. >
  376. <div class="wrap-device-detail">
  377. <div class="c-logo">
  378. <img :src="item.img" alt="">
  379. </div>
  380. <div class="c-content">
  381. <h3>{{ item.name }}</h3>
  382. <p style="height: 5rem">{{ item.detail }}</p>
  383. </div>
  384. <div class="detail-btn" @click="jumb(7, item)">
  385. <span>查看详情</span>
  386. </div>
  387. </div>
  388. </div>
  389. </div>
  390. <!-- 如果需要分页器 -->
  391. <!-- <div class="swiper-pagination"></div>-->
  392. <!-- 如果需要导航按钮 -->
  393. <div class="swiper-button-prev" />
  394. <div class="swiper-button-next" />
  395. </div>
  396. </div>
  397. <div class="company-app-content">
  398. <div class="c-app-wrap">
  399. <ul>
  400. <li
  401. v-for="(item, index) in companyList"
  402. :key="index"
  403. @click="companyDetail(item)"
  404. >
  405. <div class="wrap-device-detail">
  406. <div class="c-logo">
  407. <img :src="item.img" alt="">
  408. </div>
  409. <div class="c-content">
  410. <h3>{{ item.name }}</h3>
  411. <p>{{ item.detail }}</p>
  412. </div>
  413. <div class="detail-btn">
  414. <span>查看详情</span>
  415. </div>
  416. </div>
  417. </li>
  418. </ul>
  419. </div>
  420. </div>
  421. </div>
  422. </div>
  423. <button class="follow-me" @click="show = true">关注我们</button>
  424. <div class="qrcode-list">
  425. <span>扫一扫</span>
  426. <div>
  427. <span>园区小程序</span>
  428. <img
  429. style="width: 82%"
  430. src="~@/assets/images/xiaochengxuxiao.jpg"
  431. alt=""
  432. >
  433. </div>
  434. <!-- <div>-->
  435. <!-- <span>园区安卓App</span>-->
  436. <!-- <img src="~@/assets/images/android5GPark.png" alt="" />-->
  437. <!-- </div>-->
  438. <!-- <div>-->
  439. <!-- <span>园区苹果App</span>-->
  440. <!-- <img src="~@/assets/images/ios5GPark.png" alt="" />-->
  441. <!-- </div>-->
  442. </div>
  443. <van-popup v-model="show" class="qrcode-app-box">
  444. <div class="qrcode-app-list">
  445. <span>扫一扫<i @click.stop="show = false">×</i></span>
  446. <div>
  447. <span>园区小程序</span>
  448. <img src="~@/assets/images/xiaochengxzheshi.jpg" alt="">
  449. </div>
  450. <!-- <div>-->
  451. <!-- <span>园区安卓App</span>-->
  452. <!-- <img src="~@/assets/images/android5GPark.png" alt="" />-->
  453. <!-- </div>-->
  454. <!-- <div>-->
  455. <!-- <span>园区苹果App</span>-->
  456. <!-- <img src="~@/assets/images/ios5GPark.png" alt="" />-->
  457. <!-- </div>-->
  458. </div>
  459. </van-popup>
  460. </div>
  461. </div></template>
  462. <script>
  463. import Swiper from 'swiper'
  464. import {
  465. parkNotice,
  466. propertyNotice,
  467. getInvestmentCase,
  468. getRecruit,
  469. getPropaganda
  470. } from '@/service/api_service'
  471. import Base from '@/views/base/base'
  472. import BaseData from '@/views/base/baseData'
  473. export default {
  474. name: 'Homepage',
  475. mixins: [Base, BaseData],
  476. data() {
  477. return {
  478. action: 0, // 控制轮播图锚点
  479. serviceActive: 0, // 控制园区服务tab切换锚点
  480. noticeActive: 1, // 控制园区通知tab切换锚点
  481. actionList: [
  482. { url: require('@/assets/images/home/homebg.png') },
  483. { url: require('@/assets/images/home/1(1).jpg') },
  484. { url: require('@/assets/images/home/5(1).jpg') },
  485. { url: require('@/assets/images/home/3(1).jpg') },
  486. { url: require('@/assets/images/home/4(1).jpg') }
  487. ],
  488. showCode: 0,
  489. show: false,
  490. showimg: false,
  491. preImgUrl: 'zss1.png',
  492. yqfwList: [
  493. { url: require('@/assets/images/zyfb.png'), name: '资源发布', path: '/service/characteristic' },
  494. { url: require('@/assets/images/zcfw.png'), name: '政策服务', path: '/zhaoshang/list' },
  495. { url: require('@/assets/images/yqpx.png'), name: '园区培训', path: '/service/activities' },
  496. { url: require('@/assets/images/qyhd.png'), name: '园区活动', path: '/service/educate' }
  497. ],
  498. notices: {
  499. park: [
  500. // {
  501. // title:'走进年轻创业团队——对话完美村,探索创业新思维',
  502. // detail:'新冠疫情改变了原本习惯线下消费人群的习惯,令此类消费者深度线上化。对实体商业连连做出改变实体商业连连做出改变此,实体商业连连做出改变,实体商业连连做出改变,实体商业连连做出改变,为的是寻找更… 在线上时代刚刚启幕之时,一度有观点认为线上消费将会颠覆线下商业。而在5G时代的在线新经济蓬勃发展之时,不断涌现的成功创新企业正在用事实证明,以短视频内容制作等为代表的线上新平台正成为推动线下消费增长新力量,线上线下并非你死我活的对立,而是在融合中迸发出新的经济增长活力。'
  503. // },
  504. // {
  505. // title:'走进年轻创业团队——对话完美村,探索创业新思维',
  506. // detail:'新冠疫情改变了原本习惯线下消费人群的习惯,令此类消费者深度线上化。对实体商业连连做出改变实体商业连连做出改变此,实体商业连连做出改变,实体商业连连做出改变,实体商业连连做出改变,为的是寻找更… 在线上时代刚刚启幕之时,一度有观点认为线上消费将会颠覆线下商业。而在5G时代的在线新经济蓬勃发展之时,不断涌现的成功创新企业正在用事实证明,以短视频内容制作等为代表的线上新平台正成为推动线下消费增长新力量,线上线下并非你死我活的对立,而是在融合中迸发出新的经济增长活力。'
  507. // }
  508. ],
  509. parkManagement: [
  510. // {
  511. // title:'走进年轻创业团队——对话完美村,探索创业新思维',
  512. // detail:'新冠疫情改变了原本习惯线下消费人群的习惯,令此类消费者深度线上化。对实体商业连连做出改变实体商业连连做出改变此,实体商业连连做出改变,实体商业连连做出改变,实体商业连连做出改变,为的是寻找更… 在线上时代刚刚启幕之时,一度有观点认为线上消费将会颠覆线下商业。而在5G时代的在线新经济蓬勃发展之时,不断涌现的成功创新企业正在用事实证明,以短视频内容制作等为代表的线上新平台正成为推动线下消费增长新力量,线上线下并非你死我活的对立,而是在融合中迸发出新的经济增长活力。'
  513. // },
  514. // {
  515. // title:'走进年轻创业团队——对话完美村,探索创业新思维',
  516. // detail:'新冠疫情改变了原本习惯线下消费人群的习惯,令此类消费者深度线上化。对实体商业连连做出改变实体商业连连做出改变此,实体商业连连做出改变,实体商业连连做出改变,实体商业连连做出改变,为的是寻找更… 在线上时代刚刚启幕之时,一度有观点认为线上消费将会颠覆线下商业。而在5G时代的在线新经济蓬勃发展之时,不断涌现的成功创新企业正在用事实证明,以短视频内容制作等为代表的线上新平台正成为推动线下消费增长新力量,线上线下并非你死我活的对立,而是在融合中迸发出新的经济增长活力。'
  517. // }
  518. ]
  519. },
  520. casebox: [
  521. // {
  522. // title:'基金优秀教育平台1',
  523. // content:'在同类型平台中,基金教育平台专注于成为知识变现技术服务商,为各位自媒体人、教育者、培训传播机构等提供更加稳固的技术支撑与更加精细的运营解决方案。容承载、用户管理、付费转化、社群运营、数据分析五大核心需求,形成品牌闭环,快速完成用户沉淀,实现体系内变。',
  524. // img:'001.png'
  525. // },
  526. // {
  527. // title:'基金优秀教育平台2',
  528. // content:'在同类型平台中,基金教育平台专注于成为知识变现技术服务商,为各位自媒体人、教育者、培训传播机构等提供更加稳固的技术支撑与更加精细的运营解决方案。容承载、用户管理、付费转化、社群运营、数据分析五大核心需求,形成品牌闭环,快速完成用户沉淀,实现体系内变。',
  529. // img:'c1.png'
  530. // },
  531. // {
  532. // title:'基金优秀教育平台3',
  533. // content:'在同类型平台中,基金教育平台专注于成为知识变现技术服务商,为各位自媒体人、教育者、培训传播机构等提供更加稳固的技术支撑与更加精细的运营解决方案。容承载、用户管理、付费转化、社群运营、数据分析五大核心需求,形成品牌闭环,快速完成用户沉淀,实现体系内变。',
  534. // img:'c1.png'
  535. // }
  536. ],
  537. jobs: [],
  538. zhaoshang: [
  539. {
  540. img: 'zjbt.png',
  541. title: '我要入驻'
  542. },
  543. {
  544. img: 'zss1.png',
  545. title: '装修补贴'
  546. },
  547. {
  548. img: 'zss2.png',
  549. title: '创新创优奖励'
  550. },
  551. {
  552. img: 'zss3.png',
  553. title: '物业补贴'
  554. }
  555. ],
  556. companyList: [
  557. {
  558. img: require('@/assets/images/com11.png'),
  559. name: '北京磁擎科技有限公司',
  560. eventIndex: 1,
  561. detail: '北京磁擎科技有限公司成立于2018年11月14日,经营范围包括技术开发、技术服务;产品设计;软件开发;合同能源管理;机械设备租赁(不含汽车租赁);委托加工机械设备(限分支机构经营);销售自行开发的产品、机械设备、电气设备、电子产品、计算机、软件及辅助设备;货物进出口…'
  562. },
  563. {
  564. img: require('@/assets/images/com11.png'),
  565. name: '北京磁擎科技有限公司',
  566. eventIndex: 1,
  567. detail: '北京磁擎科技有限公司成立于2018年11月14日,经营范围包括技术开发、技术服务;产品设计;软件开发;合同能源管理;机械设备租赁(不含汽车租赁);委托加工机械设备(限分支机构经营);销售自行开发的产品、机械设备、电气设备、电子产品、计算机、软件及辅助设备;货物进出口…'
  568. },
  569. {
  570. img: require('@/assets/images/com11.png'),
  571. name: '北京磁擎科技有限公司',
  572. eventIndex: 1,
  573. detail: '北京磁擎科技有限公司成立于2018年11月14日,经营范围包括技术开发、技术服务;产品设计;软件开发;合同能源管理;机械设备租赁(不含汽车租赁);委托加工机械设备(限分支机构经营);销售自行开发的产品、机械设备、电气设备、电子产品、计算机、软件及辅助设备;货物进出口…'
  574. },
  575. {
  576. img: require('@/assets/images/com11.png'),
  577. name: '北京磁擎科技有限公司',
  578. eventIndex: 1,
  579. detail: '北京磁擎科技有限公司成立于2018年11月14日,经营范围包括技术开发、技术服务;产品设计;软件开发;合同能源管理;机械设备租赁(不含汽车租赁);委托加工机械设备(限分支机构经营);销售自行开发的产品、机械设备、电气设备、电子产品、计算机、软件及辅助设备;货物进出口…'
  580. }
  581. // {
  582. // img: 'clogo.png',
  583. // name: '深圳腾讯计算机有限公司',
  584. // eventIndex: 2,
  585. // detail: '深圳腾讯计算机有限公司深圳腾讯计算机有限公司'
  586. // },
  587. // {
  588. // img: 'clogo.png',
  589. // name: '华为技术有限公司',
  590. // eventIndex: 3,
  591. // detail: '华为技术有限公司华为技术有限公司华为技术有限公司华为技术有限公司'
  592. // },
  593. // {
  594. // img: 'clogo.png',
  595. // name: '小艾科技',
  596. // eventIndex: 3,
  597. // detail: '小艾科技小艾科技小艾科技小艾科技小艾科技'
  598. // }
  599. ]
  600. }
  601. },
  602. mounted() {
  603. this.initBiz().then((res) => {
  604. this.getRecruit()
  605. })
  606. this.initParkNotice()
  607. this.initPropertyNotice()
  608. this.getInvestmentCase()
  609. this.getPropaganda()
  610. // Swiper是轮播图插件
  611. new Swiper('.swiper-container', {
  612. loop: true,
  613. // 如果需要分页器
  614. pagination: '.swiper-pagination',
  615. // 如果需要前进后退按钮
  616. nextButton: '.swiper-button-next',
  617. prevButton: '.swiper-button-prev',
  618. observer: true,
  619. observeParents: true
  620. // slidesPerView : 2,
  621. // centeredSlides : true,
  622. // 如果需要滚动条
  623. // scrollbar: '.swiper-scrollbar',
  624. // 如果需要自动切换海报
  625. // autoplay: {
  626. // delay: 100000,//时间 毫秒
  627. // disableOnInteraction: false,//用户操作之后是否停止自动轮播默认true
  628. // },
  629. })
  630. new Swiper('.company-swiper-container', {
  631. loop: true,
  632. // 如果需要分页器
  633. pagination: '.swiper-pagination',
  634. // 如果需要前进后退按钮
  635. nextButton: '.swiper-button-next',
  636. prevButton: '.swiper-button-prev',
  637. slidesPerView: 3,
  638. centeredSlides: false,
  639. observer: true,
  640. observeParents: true
  641. // 如果需要滚动条
  642. // scrollbar: '.swiper-scrollbar',
  643. // 如果需要自动切换海报
  644. // autoplay: {
  645. // delay: 100000,//时间 毫秒
  646. // disableOnInteraction: false,//用户操作之后是否停止自动轮播默认true
  647. // },
  648. })
  649. if (window.history && window.history.pushState) {
  650. // 向历史记录中插入了当前页
  651. history.pushState(null, null, document.URL)
  652. window.addEventListener('popstate', this.goBack, false)
  653. }
  654. },
  655. destroyed() {
  656. window.removeEventListener('popstate', this.goBack, false)
  657. },
  658. methods: {
  659. toServiceLocator(e) {
  660. this.$router.push(e)
  661. },
  662. reduceAction() {
  663. if (this.action == 0) {
  664. this.action = this.actionList.length - 1
  665. } else {
  666. this.action--
  667. }
  668. },
  669. addAction() {
  670. if (this.action >= this.actionList.length - 1) {
  671. this.action = 0
  672. } else {
  673. this.action++
  674. }
  675. console.log(this.action)
  676. },
  677. goBack() {
  678. // window.location.href = 'https://smartpark.idea-sf.com/smartParkH5';
  679. location.reload()
  680. },
  681. jumb(index, ac) {
  682. switch (index) {
  683. case 1:
  684. this.$router.push({ path: '/about' })
  685. break
  686. case 2:
  687. switch (ac) {
  688. case 1:
  689. this.$router.push({ path: '/service/activities' })
  690. break
  691. case 2:
  692. this.$router.push({ path: '/service/educate' })
  693. break
  694. case 3:
  695. this.$router.push({ path: '/service/periphery' })
  696. break
  697. case 4:
  698. this.$router.push({ path: '/service/characteristic' })
  699. break
  700. }
  701. break
  702. case 3:
  703. switch (ac) {
  704. case 1:
  705. this.$router.push({ path: '/notice/list', query: { active: 1 }})
  706. break
  707. case 2:
  708. this.$router.push({ path: '/notice/list', query: { active: 2 }})
  709. break
  710. }
  711. break
  712. case 4:
  713. this.$router.push({ path: '/finance/list' })
  714. break
  715. case 5:
  716. this.$router.push({ path: '/jobs/list' })
  717. break
  718. case 6:
  719. this.$router.push({ path: '/zhaoshang/list' })
  720. break
  721. case 7:
  722. this.$router.push({ name: 'companyDetail', params: ac })
  723. break
  724. }
  725. },
  726. getPropaganda() {
  727. const _this = this
  728. const params = {
  729. pageNum: 1,
  730. pageSize: 5,
  731. type: '1',
  732. status: 'published'
  733. }
  734. // getPropaganda(params).then((res) => {
  735. // if (res.rows) {
  736. // _this.companyList = []
  737. // res.rows.forEach((item) => {
  738. // let url = ''
  739. // if (item.logo && item.logo.length > 2) {
  740. // const annex = _this.$common.castEval(item.logo)
  741. // url = annex[0].url
  742. // }
  743. // const i = {
  744. // id: item.id,
  745. // img: _this.$common.replaceWxDownload(url),
  746. // name: item.companyName,
  747. // content: item.content,
  748. // detail: item.introduction
  749. // }
  750. // _this.companyList.push(i)
  751. // })
  752. // }
  753. // })
  754. },
  755. getRecruit() {
  756. const _this = this
  757. const params = {
  758. pageNum: 1,
  759. pageSize: 10,
  760. type: '1',
  761. status: 'published'
  762. }
  763. getRecruit(params).then((res) => {
  764. if (res.rows) {
  765. this.jobs = []
  766. res.rows.forEach((item) => {
  767. const i = {
  768. name: item.position,
  769. eventIndex: 3,
  770. num: item.peopleNumber,
  771. company: _this.BizMap[item.enterpriseId],
  772. createTime: item.createdAt.substring(5),
  773. workRequire: item.workRequire,
  774. recruitRecruit: item.recruitRecruit,
  775. peopleNumber: item.peopleNumber
  776. }
  777. this.jobs.push(i)
  778. })
  779. }
  780. })
  781. },
  782. getInvestmentCase() {
  783. getInvestmentCase({ status: 'published' }).then((res) => {
  784. if (res) {
  785. this.casebox = []
  786. res.forEach((item) => {
  787. const i = {
  788. img: this.$common.castEval(item.themeMap)[0].url,
  789. title: item.title,
  790. content: this.$common.delHtmlTag(item.content)
  791. }
  792. this.casebox.push(i)
  793. })
  794. }
  795. })
  796. },
  797. initParkNotice() {
  798. const _this = this
  799. const params = {
  800. pageNum: 1,
  801. pageSize: 2,
  802. type: '1',
  803. status: 'published'
  804. }
  805. parkNotice(params).then((res) => {
  806. console.log(res)
  807. this.total = res.total
  808. if (res.rows) {
  809. _this.noticeList = []
  810. res.rows.forEach((item) => {
  811. const i = {
  812. name: item.title,
  813. detail: item.content,
  814. source: item.source,
  815. content: this.$common.delHtmlTag(item.content)
  816. }
  817. _this.notices.park.push(i)
  818. })
  819. }
  820. })
  821. },
  822. noticeDetail(index) {
  823. index.active = this.noticeActive
  824. this.$router.push({ name: 'noticeDetail', params: index })
  825. },
  826. jobDetail(index) {
  827. this.$router.push({ name: 'jobsDetail', params: index })
  828. },
  829. companyDetail(index) {
  830. this.$router.push({ name: 'companyDetail', params: index })
  831. },
  832. financeDetail(index) {
  833. this.$router.push({ name: 'financeDetail', params: index })
  834. },
  835. initPropertyNotice() {
  836. const _this = this
  837. // _this.params.parks = '' //绑定园区
  838. const params = {
  839. pageNum: 1,
  840. pageSize: 2,
  841. type: '2',
  842. status: 'published'
  843. }
  844. propertyNotice(params).then((res) => {
  845. console.log(res)
  846. this.total = res.total
  847. if (res.rows) {
  848. _this.noticeList = []
  849. res.rows.forEach((item) => {
  850. const i = {
  851. name: item.title,
  852. detail: item.content,
  853. source: item.source,
  854. content: this.$common.delHtmlTag(item.content)
  855. }
  856. _this.notices.parkManagement.push(i)
  857. })
  858. }
  859. })
  860. },
  861. // 大图预览招商四张图片
  862. preview(img) {
  863. this.showimg = true
  864. this.preImgUrl = img
  865. }
  866. }
  867. }
  868. </script>
  869. <style scoped>
  870. @media screen and (min-width: 1000px) {
  871. .swiper-wrap {
  872. position: relative;
  873. height: 1068px;
  874. }
  875. .arrowBox{
  876. position: absolute;
  877. top: 0px;
  878. padding: 0 50px;
  879. display: flex;
  880. width: 95%;
  881. height: 100%;
  882. align-items: center;
  883. justify-content: space-between;
  884. }
  885. .arrow{
  886. width: 32px;
  887. height: 184px;
  888. }
  889. .qyfwBody {
  890. display: grid;
  891. grid-template-columns: 1fr 1fr;
  892. background: black;
  893. }
  894. .qyfwItem{
  895. position: relative;
  896. }
  897. .qyfwImg{
  898. width: 50vw;
  899. }
  900. .msgBox{
  901. position: absolute;
  902. display: flex;
  903. flex-direction: column;
  904. top: 129px;
  905. left: 252px;
  906. z-index: 10;
  907. }
  908. .msgBox > .msgTit{
  909. color: white;
  910. font-size: 48px;
  911. margin-bottom: 50px;
  912. }
  913. .msgBox > .msgBtn{
  914. color: white;
  915. background: rgba(0,0,0,0);
  916. border: 1px solid white;
  917. border-radius: 15px;
  918. padding: 7px 0;
  919. }
  920. .swiper-wrap ul,
  921. .swiper-wrap li > div {
  922. height: 100%;
  923. position: relative;
  924. }
  925. .swiper-wrap > ul li {
  926. width: 100%;
  927. position: absolute;
  928. height: 100%;
  929. background: rgba(225, 219, 219, 1);
  930. overflow: hidden;
  931. display: none;
  932. }
  933. .bgimg {
  934. height: 100%;
  935. }
  936. .inner-text {
  937. position: absolute;
  938. transform: translateY(300%);
  939. font-size: 4rem;
  940. top: 0;
  941. left: 0;
  942. right: 0;
  943. font-weight: 800;
  944. color: #fff;
  945. letter-spacing: 1rem;
  946. }
  947. .swiper-wrap li .bigImg {
  948. width: 100%;
  949. height: 100%;
  950. }
  951. .act-tab {
  952. display: block !important;
  953. }
  954. .act-tab img {
  955. animation: 5s effect;
  956. }
  957. @keyframes effect {
  958. 0% {
  959. transform: scale(1.6);
  960. }
  961. 100% {
  962. transform: scale(1);
  963. }
  964. }
  965. .navi-tab {
  966. position: absolute;
  967. bottom: 4rem;
  968. left: 0;
  969. right: 0;
  970. color: #fff;
  971. width: 50%;
  972. margin: 0 auto;
  973. }
  974. .navi-tab ul {
  975. display: flex;
  976. justify-content: center;
  977. flex-wrap: nowrap;
  978. }
  979. .navi-tab ul li {
  980. width: 10%;
  981. text-align: center;
  982. cursor: pointer;
  983. }
  984. .navi-tab ul li span {
  985. display: inline-block;
  986. position: relative;
  987. width: 60%;
  988. height: 3px;
  989. margin: 0 auto;
  990. background: rgba(52, 53, 54, 0.5);
  991. }
  992. .act-tab-index span {
  993. background: rgba(41, 107, 169, 1) !important;
  994. }
  995. /*简介*/
  996. .about-wrap {
  997. /*background: #575274;*/
  998. }
  999. .title-item {
  1000. text-align: center;
  1001. display: flex;
  1002. justify-content: center;
  1003. align-items: flex-end;
  1004. margin: 6rem 0 3rem 0;
  1005. }
  1006. .midTitle {
  1007. margin: 0 30px;
  1008. }
  1009. .midTitle h3 {
  1010. color: rgba(41, 107, 169, 1);
  1011. font-size: 1.5rem;
  1012. }
  1013. .unMidTitle h3{
  1014. color: rgba(153, 153, 153, 1);
  1015. font-size: 1.2rem;
  1016. }
  1017. .title-item p {
  1018. color: rgba(153, 153, 153, 1);
  1019. font-size: 1rem;
  1020. margin-top: 0.5rem;
  1021. }
  1022. .park-content-wrap {
  1023. background: white;
  1024. padding: 5rem 0;
  1025. }
  1026. .park-content {
  1027. width: 1200px;
  1028. margin: 0 auto;
  1029. display: flex;
  1030. justify-content: center;
  1031. flex-wrap: nowrap;
  1032. }
  1033. .park-content > div {
  1034. width: 50%;
  1035. }
  1036. .about-text {
  1037. width: 90%;
  1038. color: rgba(51, 51, 51, 1);
  1039. text-align: left;
  1040. position: relative;
  1041. }
  1042. .about-text h3 {
  1043. margin-bottom: 2rem;
  1044. }
  1045. .about-text p {
  1046. line-height: 2rem;
  1047. height: 22rem;
  1048. overflow: hidden;
  1049. }
  1050. .about-text button {
  1051. background: transparent;
  1052. border: 1px solid rgba(41, 107, 169, 1);
  1053. color: rgba(41, 107, 169, 1);
  1054. border-radius: 2px;
  1055. position: absolute;
  1056. bottom: 1rem;
  1057. left: 0;
  1058. cursor: pointer;
  1059. }
  1060. .about-img {
  1061. width: 90%;
  1062. margin: 0 auto;
  1063. text-align: right;
  1064. }
  1065. .ahout-img img {
  1066. width: 90%;
  1067. height: 25rem;
  1068. }
  1069. /*园区服务*/
  1070. .service-content-wrap {
  1071. /*padding: 5rem 0;*/
  1072. }
  1073. .service-nav {
  1074. width: 1000px;
  1075. margin: 2rem auto 3rem auto;
  1076. }
  1077. .service-nav ul {
  1078. display: flex;
  1079. justify-content: center;
  1080. flex-wrap: wrap;
  1081. }
  1082. .service-nav ul li {
  1083. width: 25%;
  1084. cursor: pointer;
  1085. }
  1086. .service-nav ul li span {
  1087. display: inline-block;
  1088. border-bottom: 2px solid transparent;
  1089. padding-bottom: 2px;
  1090. }
  1091. .service-park-content {
  1092. width: 1200px;
  1093. margin: 0 auto;
  1094. display: flex;
  1095. justify-content: center;
  1096. flex-wrap: nowrap;
  1097. }
  1098. .service-active span {
  1099. border-bottom: 2px solid #996eee !important;
  1100. color: #996eee;
  1101. }
  1102. .service-park-content > div {
  1103. width: 50%;
  1104. }
  1105. .service-text {
  1106. width: 90%;
  1107. color: #333;
  1108. text-align: left;
  1109. position: relative;
  1110. }
  1111. .service-text h3 {
  1112. margin: 0.4rem 0;
  1113. }
  1114. .service-text span {
  1115. line-height: 2rem;
  1116. }
  1117. .service-text .service-info {
  1118. font-size: 20px;
  1119. font-weight: 700;
  1120. }
  1121. .service-text p {
  1122. line-height: 2rem;
  1123. height: 22rem;
  1124. overflow: hidden;
  1125. }
  1126. .service-text button {
  1127. background: transparent;
  1128. border: 1px solid #996eee;
  1129. color: #996eee;
  1130. position: absolute;
  1131. bottom: 1rem;
  1132. left: 0;
  1133. }
  1134. .service-img {
  1135. width: 90%;
  1136. margin: 0 auto;
  1137. text-align: left;
  1138. }
  1139. .service-img img {
  1140. width: 90%;
  1141. height: 25rem;
  1142. }
  1143. /*园区通知*/
  1144. .notice-app-content {
  1145. display: none;
  1146. }
  1147. .notice-park-content {
  1148. width: 1200px;
  1149. margin: 0 auto;
  1150. }
  1151. .notice-parks {
  1152. display: flex;
  1153. justify-content: center;
  1154. flex-wrap: nowrap;
  1155. margin-bottom: 3rem;
  1156. }
  1157. .notice-parks > div:nth-child(1) {
  1158. width: 20%;
  1159. }
  1160. .notice-parks > div:nth-child(2) {
  1161. width: 70%;
  1162. }
  1163. .notice-parks > div:nth-child(3) {
  1164. width: 10%;
  1165. }
  1166. .notice-park-img > div {
  1167. width: 90%;
  1168. background: #fff;
  1169. height: 9rem;
  1170. color: rgba(75, 175, 227, 1);
  1171. padding-top: 3rem;
  1172. }
  1173. .notice-park-img > div img {
  1174. width: 20%;
  1175. }
  1176. .notice-park-list ul {
  1177. width: 90%;
  1178. margin: 0 auto;
  1179. }
  1180. .notice-park-list ul li {
  1181. margin-bottom: 1.5rem;
  1182. text-align: left;
  1183. }
  1184. .notice-park-list ul li p {
  1185. height: 3.8rem;
  1186. overflow: hidden;
  1187. line-height: 1.75rem;
  1188. font-size: 0.8rem;
  1189. }
  1190. .notice-park-more span {
  1191. position: relative;
  1192. top: 45%;
  1193. margin-top: -2rem;
  1194. display: inline-block;
  1195. background: rgba(75, 175, 227, 1);
  1196. color: #fff;
  1197. padding: 0.2rem 1rem;
  1198. }
  1199. /*投融资*/
  1200. .case-wrap {
  1201. width: 93%;
  1202. margin: 0 auto;
  1203. display: flex;
  1204. justify-content: center;
  1205. flex-wrap: nowrap;
  1206. }
  1207. .money-app-content {
  1208. display: none;
  1209. }
  1210. .case-content {
  1211. width: 40%;
  1212. }
  1213. .case-img {
  1214. width: 60%;
  1215. text-align: right;
  1216. }
  1217. .case-img img {
  1218. width: 90%;
  1219. height: 27rem;
  1220. }
  1221. .money-content-wrap {
  1222. width: 1300px;
  1223. margin: 0 auto;
  1224. }
  1225. .case-content {
  1226. text-align: left;
  1227. }
  1228. .case-content span {
  1229. display: inline-block;
  1230. background: #996eee;
  1231. color: #fff;
  1232. padding: 1rem;
  1233. width: 50%;
  1234. text-align: center;
  1235. }
  1236. .case-title {
  1237. font-size: 1.2rem;
  1238. margin: 2rem 0;
  1239. }
  1240. .case-text {
  1241. font-size: 1rem;
  1242. line-height: 2rem;
  1243. height: 17rem;
  1244. overflow: hidden;
  1245. }
  1246. .case-content button {
  1247. background: transparent;
  1248. color: #996eee;
  1249. border: 1px solid #996eee;
  1250. }
  1251. /*人才招聘*/
  1252. .jobs-content-wrap {
  1253. width: 1200px;
  1254. margin: 0 auto;
  1255. }
  1256. .jobs-park-content {
  1257. display: flex;
  1258. justify-content: center;
  1259. flex-wrap: nowrap;
  1260. }
  1261. .jobs-title {
  1262. width: 30%;
  1263. position: relative;
  1264. }
  1265. .jobs-title > div > div {
  1266. margin-top: 3rem;
  1267. height: 22rem;
  1268. z-index: 99;
  1269. position: relative;
  1270. color: #fff;
  1271. font-size: 3rem;
  1272. position: relative;
  1273. }
  1274. .jobs-title > div > div:after {
  1275. content: "";
  1276. width: 2.9rem;
  1277. height: 4px;
  1278. background: #fff;
  1279. position: absolute;
  1280. left: 0;
  1281. top: 5rem;
  1282. }
  1283. .jobs-title > div {
  1284. width: 70%;
  1285. margin: 0 auto;
  1286. text-align: left;
  1287. }
  1288. .jobs-title button {
  1289. position: relative;
  1290. z-index: 99;
  1291. color: #9540ff;
  1292. background: #fffff80;
  1293. font-size: 0.8rem;
  1294. }
  1295. .jobs-title img {
  1296. position: absolute;
  1297. left: 0;
  1298. top: 0;
  1299. width: 100%;
  1300. height: 100%;
  1301. z-index: 0;
  1302. }
  1303. .jobs-list {
  1304. width: 70%;
  1305. background: #fff;
  1306. }
  1307. .jobs-item {
  1308. width: 90%;
  1309. margin: 0 auto;
  1310. height: 30rem;
  1311. overflow: hidden;
  1312. }
  1313. .jobs-item ul {
  1314. display: flex;
  1315. justify-content: left;
  1316. flex-wrap: wrap;
  1317. }
  1318. .jobs-item ul li {
  1319. width: 50%;
  1320. margin-top: 2rem;
  1321. }
  1322. .jobs-item ul li > div {
  1323. width: 90%;
  1324. margin: 0 auto;
  1325. text-align: left;
  1326. display: flex;
  1327. flex-wrap: nowrap;
  1328. border-bottom: 1px solid #dedede;
  1329. padding-bottom: 1rem;
  1330. }
  1331. .jobs-time {
  1332. width: 20%;
  1333. }
  1334. .jobs-time span {
  1335. width: 3rem;
  1336. height: 3rem;
  1337. border-radius: 10rem;
  1338. background: rgba(41, 107, 169, 1);
  1339. display: inline-block;
  1340. color: #fff;
  1341. line-height: 3rem;
  1342. font-size: 0.8rem;
  1343. text-align: center;
  1344. }
  1345. .jobs-name {
  1346. width: 80%;
  1347. }
  1348. /*招商*/
  1349. .zhaoshang-preview {
  1350. display: none;
  1351. }
  1352. .zs-app {
  1353. display: none;
  1354. }
  1355. .join-content-wrap {
  1356. width: 1200px;
  1357. margin: 0 auto;
  1358. }
  1359. .join-park-content ul {
  1360. display: flex;
  1361. justify-content: center;
  1362. flex-wrap: nowrap;
  1363. }
  1364. .join-park-content ul li {
  1365. width: 25%;
  1366. position: relative;
  1367. overflow: hidden;
  1368. }
  1369. .join-park-content li:hover div img {
  1370. animation: 1s effectForzs;
  1371. }
  1372. @keyframes effectForzs {
  1373. 0% {
  1374. transform: scale(1);
  1375. }
  1376. 100% {
  1377. transform: scale(1.2);
  1378. }
  1379. }
  1380. .join-park-content ul li img {
  1381. width: 100%;
  1382. }
  1383. .join-park-content ul li span {
  1384. position: absolute;
  1385. bottom: 0;
  1386. left: 0;
  1387. right: 0;
  1388. display: block;
  1389. text-align: center;
  1390. width: 100%;
  1391. background: #fff;
  1392. padding: 1.5rem 0;
  1393. font-weight: 800;
  1394. }
  1395. .join-park-content ul li span:hover{
  1396. background: rgba(42, 68, 94, 1);
  1397. color: white;
  1398. }
  1399. /*知名企业*/
  1400. .company-app-content {
  1401. display: none;
  1402. }
  1403. .company-park-content {
  1404. width: 1300px;
  1405. margin: 0rem auto;
  1406. overflow: hidden;
  1407. padding-bottom: 5rem;
  1408. position: relative;
  1409. }
  1410. .company-park-content {
  1411. position: relative;
  1412. }
  1413. .company-swiper-container {
  1414. width: 94%;
  1415. margin: 0 auto;
  1416. }
  1417. .wrap-device-detail {
  1418. background: #fff;
  1419. width:70%;
  1420. height: 300px;
  1421. margin: 0 auto;
  1422. border-bottom: 4px solid rgba(75, 175, 227, 1);
  1423. padding-top: 1rem;
  1424. }
  1425. .c-logo {
  1426. width: 90%;
  1427. margin: 0 auto;
  1428. text-align: center;
  1429. }
  1430. .c-logo img {
  1431. width: 60%;
  1432. height: 5rem;
  1433. }
  1434. .c-content {
  1435. width: 90%;
  1436. margin: 0 auto;
  1437. }
  1438. .c-content h3 {
  1439. text-align: center;
  1440. font-size: 1rem;
  1441. margin: 1rem 0;
  1442. }
  1443. .c-content p {
  1444. font-size: 0.8rem;
  1445. line-height: 1.6rem;
  1446. /*height: 10rem;*/
  1447. margin-bottom: 1rem;
  1448. overflow: hidden;
  1449. display: -webkit-box;
  1450. -webkit-line-clamp: 3;
  1451. -webkit-box-orient: vertical;
  1452. }
  1453. .detail-btn {
  1454. position: absolute;
  1455. left: 0;
  1456. right: 0;
  1457. bottom: -10px;
  1458. text-align: center;
  1459. }
  1460. .detail-btn span {
  1461. display: inline-block;
  1462. width: 40%;
  1463. margin: 0 auto;
  1464. text-align: center;
  1465. background: rgba(75, 175, 227, 1);
  1466. color: #fff;
  1467. }
  1468. /*扫码二维码*/
  1469. .van-overlay {
  1470. display: none !important;
  1471. }
  1472. .qrcode-app-box {
  1473. display: none;
  1474. }
  1475. .follow-me {
  1476. display: none;
  1477. }
  1478. .qrcode-list {
  1479. width: 10rem;
  1480. position: fixed;
  1481. right: 0;
  1482. top: 20%;
  1483. text-align: center;
  1484. border-radius: 10px;
  1485. background: #fff;
  1486. overflow: hidden;
  1487. z-index: 999;
  1488. }
  1489. .qrcode-list > span {
  1490. display: block;
  1491. width: 100%;
  1492. background: #524c66;
  1493. color: #fff;
  1494. height: 2rem;
  1495. line-height: 2rem;
  1496. }
  1497. .qrcode-list > div {
  1498. width: 90%;
  1499. margin: 1rem auto;
  1500. text-align: center;
  1501. }
  1502. .qrcode-list > div span {
  1503. color: #333;
  1504. display: inline-block;
  1505. margin: 1rem 0;
  1506. }
  1507. .qrcode-list > div img {
  1508. width: 60%;
  1509. }
  1510. }
  1511. /*移动端*/
  1512. @media screen and (max-width: 1000px) {
  1513. .arrowBox{
  1514. position: absolute;
  1515. top: 0px;
  1516. padding: 0 5vw;
  1517. display: flex;
  1518. width: 90%;
  1519. height: 100%;
  1520. align-items: center;
  1521. justify-content: space-between;
  1522. }
  1523. .arrow{
  1524. width: 5vw;
  1525. height: 30vw;
  1526. }
  1527. .qyfwBody {
  1528. /*display: grid;*/
  1529. /*grid-template-columns: 1fr 1fr;*/
  1530. background: black;
  1531. }
  1532. .qyfwItem{
  1533. position: relative;
  1534. }
  1535. .qyfwImg{
  1536. width: 100vw;
  1537. }
  1538. .msgBox{
  1539. position: absolute;
  1540. display: flex;
  1541. flex-direction: column;
  1542. top: 7vw;
  1543. left: 20vw;
  1544. z-index: 10;
  1545. }
  1546. .msgBox > .msgTit{
  1547. color: white;
  1548. font-size: 7vw;
  1549. margin-bottom: 5vw;
  1550. }
  1551. .msgBox > .msgBtn{
  1552. color: white;
  1553. background: rgba(0,0,0,0);
  1554. border: 1px solid white;
  1555. border-radius: 15px;
  1556. padding: 7px 0;
  1557. }
  1558. .swiper-wrap {
  1559. position: relative;
  1560. height: 28rem;
  1561. }
  1562. .swiper-wrap ul,
  1563. .swiper-wrap li > div {
  1564. height: 100%;
  1565. position: relative;
  1566. }
  1567. .swiper-wrap > ul li {
  1568. width: 100%;
  1569. position: absolute;
  1570. height: 100%;
  1571. background: #333;
  1572. overflow: hidden;
  1573. display: none;
  1574. }
  1575. .bgimg {
  1576. height: 100%;
  1577. }
  1578. .inner-text {
  1579. position: absolute;
  1580. transform: translateY(300%);
  1581. font-size: 2rem;
  1582. top: 0;
  1583. left: 0;
  1584. right: 0;
  1585. font-weight: 800;
  1586. color: #fff;
  1587. letter-spacing: 0rem;
  1588. }
  1589. .swiper-wrap li .bigImg {
  1590. /*width: 100%;*/
  1591. height: 100%;
  1592. }
  1593. .act-tab {
  1594. display: block !important;
  1595. }
  1596. .act-tab img {
  1597. animation: 5s effect;
  1598. }
  1599. @keyframes effect {
  1600. 0% {
  1601. transform: scale(1.6);
  1602. }
  1603. 100% {
  1604. transform: scale(1);
  1605. }
  1606. }
  1607. .navi-tab {
  1608. position: absolute;
  1609. bottom: 1rem;
  1610. left: 0;
  1611. right: 0;
  1612. color: #fff;
  1613. width: 80%;
  1614. margin: 0 auto;
  1615. }
  1616. .navi-tab ul {
  1617. display: flex;
  1618. justify-content: center;
  1619. flex-wrap: nowrap;
  1620. }
  1621. .navi-tab ul li {
  1622. width: 10%;
  1623. text-align: center;
  1624. cursor: pointer;
  1625. }
  1626. .navi-tab ul li span {
  1627. display: inline-block;
  1628. position: relative;
  1629. width: 60%;
  1630. margin: 0 auto;
  1631. height: 2px;
  1632. background: #fff;
  1633. }
  1634. .act-tab-index span {
  1635. background: #9540ff !important;
  1636. }
  1637. /*简介*/
  1638. .park-content-wrap {
  1639. background: white;
  1640. padding-bottom: 10rem;
  1641. }
  1642. .park-content {
  1643. position: relative;
  1644. padding-bottom: 5rem;
  1645. }
  1646. .park-content .about-text {
  1647. position: relative;
  1648. top: 13rem;
  1649. text-align: left;
  1650. width: 90%;
  1651. margin: 0 auto;
  1652. color: rgba(51, 51, 51, 1);
  1653. overflow: hidden;
  1654. }
  1655. .about-text h3 {
  1656. margin: 1rem 0;
  1657. }
  1658. .about-text p {
  1659. font-size: 0.8rem;
  1660. line-height: 1.5rem;
  1661. }
  1662. .ahout-img {
  1663. position: absolute;
  1664. width: 90%;
  1665. margin: 0 auto;
  1666. height: 12rem;
  1667. text-align: center;
  1668. top: 0;
  1669. left: 0;
  1670. right: 0;
  1671. padding-top: 1rem;
  1672. }
  1673. .ahout-img img {
  1674. width: 100%;
  1675. height: 100%;
  1676. }
  1677. .about-text button {
  1678. display: none;
  1679. }
  1680. .title-item {
  1681. text-align: center;
  1682. display: flex;
  1683. justify-content: center;
  1684. align-items: flex-end;
  1685. margin: 6rem 0 3rem 0;
  1686. }
  1687. .midTitle {
  1688. margin: 0 5vw;
  1689. }
  1690. .midTitle h3 {
  1691. color: rgba(41, 107, 169, 1);
  1692. font-size: 1.3rem;
  1693. }
  1694. .unMidTitle h3{
  1695. color: rgba(153, 153, 153, 1);
  1696. font-size: 1rem;
  1697. }
  1698. .title-item p {
  1699. color: rgba(153, 153, 153, 1);
  1700. font-size: 0.7rem;
  1701. margin-top: 0.5rem;
  1702. }
  1703. /*园区服务*/
  1704. .service-content-wrap {
  1705. /*padding: 5rem 0;*/
  1706. }
  1707. .service-nav {
  1708. width: 100%;
  1709. margin: 2rem auto 1rem auto;
  1710. padding: 0.8rem 0;
  1711. background: #fff;
  1712. }
  1713. .service-nav ul {
  1714. display: flex;
  1715. justify-content: center;
  1716. flex-wrap: wrap;
  1717. }
  1718. .service-nav ul li {
  1719. width: 25%;
  1720. cursor: pointer;
  1721. }
  1722. .service-nav ul li span {
  1723. display: inline-block;
  1724. border-bottom: 2px solid transparent;
  1725. padding-bottom: 2px;
  1726. }
  1727. .service-park-content {
  1728. width: 90%;
  1729. margin: 0 auto;
  1730. }
  1731. .service-active span {
  1732. border-bottom: 2px solid #996eee !important;
  1733. color: #996eee;
  1734. }
  1735. .service-park-content > div {
  1736. }
  1737. .service-text {
  1738. width: 100%;
  1739. color: #333;
  1740. text-align: left;
  1741. position: relative;
  1742. }
  1743. .service-text h3 {
  1744. margin: 0.5rem 0;
  1745. }
  1746. .service-text span {
  1747. font-size: 0.8rem;
  1748. line-height: 1.5rem;
  1749. }
  1750. .service-text p {
  1751. line-height: 2rem;
  1752. height: 10rem;
  1753. overflow: hidden;
  1754. }
  1755. .service-text button {
  1756. background: #996fec;
  1757. color: #fff;
  1758. border: none;
  1759. padding: 0 1rem;
  1760. margin: 1rem auto;
  1761. display: block;
  1762. }
  1763. .service-img {
  1764. width: 100%;
  1765. margin: 0 auto;
  1766. text-align: left;
  1767. }
  1768. .service-img img {
  1769. width: 100%;
  1770. height: 15rem;
  1771. }
  1772. /*园区通知*/
  1773. .notice-park-content {
  1774. display: none;
  1775. }
  1776. .notice-item-app {
  1777. width: 90%;
  1778. margin: 0 auto;
  1779. overflow: hidden;
  1780. }
  1781. .notice-item-app li {
  1782. margin-bottom: 1rem;
  1783. border-bottom: 1px solid #ddd;
  1784. }
  1785. .notice-wrap {
  1786. background: #fff;
  1787. padding-top: 1px;
  1788. margin-top: 2rem;
  1789. }
  1790. .notice-wrap h3 {
  1791. white-space: nowrap;
  1792. overflow: hidden;
  1793. text-overflow: ellipsis;
  1794. margin-bottom: 1rem;
  1795. /*text-align: left;*/
  1796. }
  1797. .notice-item-app p {
  1798. font-size: 0.8rem;
  1799. line-height: 1.5rem;
  1800. color: #999;
  1801. height: 4.3rem;
  1802. overflow: hidden;
  1803. margin-bottom: 1rem;
  1804. }
  1805. .more-info {
  1806. text-align: right;
  1807. margin: 1rem;
  1808. }
  1809. .more-info button {
  1810. background: #996fec;
  1811. border: none;
  1812. color: #fff;
  1813. font-size: 0.9rem;
  1814. }
  1815. .notice-all {
  1816. color: #996fec;
  1817. border: 1px solid #996fec;
  1818. background: transparent;
  1819. padding: 0.2rem 1rem;
  1820. margin: 2rem 0;
  1821. }
  1822. /*投融圈*/
  1823. .money-park-content {
  1824. display: none;
  1825. }
  1826. .money-app-content-wrap {
  1827. width: 90%;
  1828. margin: 0 auto;
  1829. position: relative;
  1830. }
  1831. .m-app-img img {
  1832. width: 100%;
  1833. }
  1834. .m-app-content {
  1835. text-align: left;
  1836. position: absolute;
  1837. bottom: 0;
  1838. left: 0;
  1839. right: 0;
  1840. background: #5a517575;
  1841. color: #fff;
  1842. }
  1843. .m-app-content h3 {
  1844. width: 90%;
  1845. margin: 1rem auto;
  1846. }
  1847. .m-app-content p {
  1848. width: 90%;
  1849. margin: 1rem auto;
  1850. line-height: 1rem;
  1851. font-size: 0.8rem;
  1852. height: 2rem;
  1853. overflow: hidden;
  1854. }
  1855. /*人才招聘*/
  1856. .jobs-content-wrap {
  1857. }
  1858. .jobs-park-content {
  1859. }
  1860. .jobs-title {
  1861. display: none;
  1862. }
  1863. .jobs-title > div > div {
  1864. margin-top: 3rem;
  1865. height: 22rem;
  1866. z-index: 99;
  1867. position: relative;
  1868. color: #fff;
  1869. font-size: 3rem;
  1870. position: relative;
  1871. }
  1872. .jobs-title > div > div:after {
  1873. content: "";
  1874. width: 2.9rem;
  1875. height: 4px;
  1876. background: #fff;
  1877. position: absolute;
  1878. left: 0;
  1879. top: 5rem;
  1880. }
  1881. .jobs-title > div {
  1882. }
  1883. .jobs-title button {
  1884. position: relative;
  1885. z-index: 99;
  1886. color: #9540ff;
  1887. background: #fffff80;
  1888. font-size: 0.8rem;
  1889. }
  1890. .jobs-title img {
  1891. position: absolute;
  1892. left: 0;
  1893. top: 0;
  1894. width: 100%;
  1895. height: 100%;
  1896. z-index: 0;
  1897. }
  1898. .jobs-list {
  1899. }
  1900. .jobs-item {
  1901. width: 90%;
  1902. margin: 0 auto;
  1903. overflow: hidden;
  1904. }
  1905. .jobs-item ul {
  1906. }
  1907. .jobs-item ul li {
  1908. margin-bottom: 2rem;
  1909. background: #fff;
  1910. padding: 1.5rem 0 1rem 0;
  1911. }
  1912. .jobs-item ul li > div {
  1913. width: 90%;
  1914. margin: 0 auto;
  1915. text-align: left;
  1916. display: flex;
  1917. flex-wrap: nowrap;
  1918. padding-bottom: 1rem;
  1919. }
  1920. .jobs-time {
  1921. width: 24%;
  1922. }
  1923. .jobs-time span {
  1924. width: 3.5rem;
  1925. height: 3.5rem;
  1926. border-radius: 10rem;
  1927. background: rgba(41, 107, 169, 1);
  1928. display: inline-block;
  1929. color: #fff;
  1930. line-height: 3.5rem;
  1931. font-size: 1rem;
  1932. text-align: center;
  1933. }
  1934. .jobs-name {
  1935. width: 63%;
  1936. position: relative;
  1937. }
  1938. .jobs-name p {
  1939. white-space: nowrap;
  1940. overflow: hidden;
  1941. text-overflow: ellipsis;
  1942. margin-top: 0.8rem;
  1943. }
  1944. .jobs-name:after {
  1945. content: "";
  1946. width: 0.6rem;
  1947. height: 0.6rem;
  1948. border-right: 2px solid #666;
  1949. border-top: 2px solid #666;
  1950. transform: rotate(45deg);
  1951. position: absolute;
  1952. right: -2rem;
  1953. top: 1.5rem;
  1954. }
  1955. /*招商*/
  1956. .join-content-wrap {
  1957. }
  1958. .zs-pc {
  1959. display: none;
  1960. }
  1961. .join-park-content ul {
  1962. display: flex;
  1963. justify-content: center;
  1964. flex-wrap: nowrap;
  1965. }
  1966. .join-park-content ul li {
  1967. width: 25%;
  1968. position: relative;
  1969. }
  1970. .join-park-content ul li img {
  1971. width: 100%;
  1972. }
  1973. .join-park-content ul li span {
  1974. position: absolute;
  1975. bottom: 0;
  1976. left: 0;
  1977. right: 0;
  1978. display: block;
  1979. text-align: center;
  1980. width: 100%;
  1981. background: rgba(42, 68, 94, 1);
  1982. padding: 0.8rem 0;
  1983. font-weight: 400;
  1984. color: #ffffff;
  1985. font-size: 0.8rem;
  1986. }
  1987. /*知名企业*/
  1988. .company-park-content {
  1989. display: none;
  1990. }
  1991. .wrap-device-detail {
  1992. background: #fff;
  1993. width: 90%;
  1994. margin: 0 auto;
  1995. border: 1px solid #996fec;
  1996. padding-top: 1.5rem;
  1997. }
  1998. .c-logo {
  1999. width: 90%;
  2000. margin: 0 auto;
  2001. text-align: center;
  2002. }
  2003. .c-logo img {
  2004. width: 60%;
  2005. height: 5rem;
  2006. }
  2007. .c-content {
  2008. width: 90%;
  2009. margin: 0 auto;
  2010. }
  2011. .c-content h3 {
  2012. text-align: center;
  2013. font-size: 1rem;
  2014. margin: 1rem 0;
  2015. }
  2016. .c-content p {
  2017. font-size: 0.8rem;
  2018. line-height: 1.6rem;
  2019. height: 4.5rem;
  2020. margin-bottom: 2rem;
  2021. overflow: hidden;
  2022. }
  2023. .detail-btn {
  2024. position: absolute;
  2025. left: 0;
  2026. right: 0;
  2027. bottom: -10px;
  2028. text-align: center;
  2029. }
  2030. .detail-btn span {
  2031. display: inline-block;
  2032. width: 40%;
  2033. margin: 0 auto;
  2034. text-align: center;
  2035. background: rgba(75, 175, 227, 1);
  2036. color: #fff;
  2037. }
  2038. .c-app-wrap li {
  2039. position: relative;
  2040. margin-bottom: 2rem;
  2041. }
  2042. /*二维码*/
  2043. .qrcode-list {
  2044. display: none;
  2045. }
  2046. .follow-me {
  2047. position: fixed;
  2048. right: 0;
  2049. top: 30%;
  2050. background: #9540ff;
  2051. color: #fff;
  2052. border-radius: 10px;
  2053. padding: 0.1rem 0.8rem;
  2054. font-size: 0.6rem;
  2055. border: none;
  2056. }
  2057. .qrcode-app-list {
  2058. width: 10rem;
  2059. right: 0;
  2060. left: 0;
  2061. top: 30%;
  2062. margin: 0 auto;
  2063. text-align: center;
  2064. border-radius: 10px;
  2065. background: #fff;
  2066. overflow: hidden;
  2067. }
  2068. .qrcode-app-list > span {
  2069. display: block;
  2070. width: 100%;
  2071. background: #524c66;
  2072. color: #fff;
  2073. height: 2rem;
  2074. line-height: 2rem;
  2075. position: relative;
  2076. }
  2077. .qrcode-app-list > span i {
  2078. font-style: normal;
  2079. font-size: 1.5rem;
  2080. color: #fff;
  2081. position: absolute;
  2082. right: 1rem;
  2083. }
  2084. .qrcode-app-list > div {
  2085. width: 90%;
  2086. margin: 1rem auto;
  2087. text-align: center;
  2088. }
  2089. .qrcode-app-list > div span {
  2090. color: #333;
  2091. display: inline-block;
  2092. margin: 1rem 0;
  2093. }
  2094. .qrcode-app-list > div img {
  2095. width: 60%;
  2096. }
  2097. .van-popup {
  2098. border-radius: 12px !important;
  2099. }
  2100. }
  2101. .van-popup {
  2102. background: transparent;
  2103. }
  2104. .showZS {
  2105. width: 100%;
  2106. margin: 0 auto;
  2107. text-align: center;
  2108. }
  2109. .showZS img {
  2110. width: 100%;
  2111. }
  2112. .company-park-content /deep/ .swiper-button-prev,
  2113. .money-park-content /deep/ .swiper-button-prev {
  2114. border-top: 2px solid #996eee;
  2115. border-left: 2px solid #996eee;
  2116. height: 1rem !important;
  2117. width: 1rem !important;
  2118. transform: rotate(-45deg);
  2119. background: none;
  2120. }
  2121. .company-park-content /deep/ .swiper-button-next,
  2122. .money-park-content /deep/ .swiper-button-next {
  2123. border-top: 2px solid #996eee;
  2124. border-right: 2px solid #996eee;
  2125. height: 1rem !important;
  2126. width: 1rem !important;
  2127. transform: rotate(45deg);
  2128. background: none;
  2129. }
  2130. </style>