newpage-demo.vue 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772
  1. <template>
  2. <div class="yying-bg">
  3. <!-- 头部 -->
  4. <div class="yy-header">
  5. <div class="head-left">
  6. <div class="head-time">
  7. <!-- 风向 -->
  8. <span><i class="head-fx"></i>东南西北风</span>
  9. <span
  10. ><i class="head-fs"></i>{{ weatherinformationPower
  11. }}<u>m/s</u></span
  12. >
  13. <span
  14. ><i class="head-jsl"></i>{{ weatherinformationTemperature
  15. }}<u>%</u></span
  16. >
  17. <span
  18. ><i class="head-wd"></i>{{ weatherinformationLow }}<u>℃</u></span
  19. >
  20. </div>
  21. <!-- <el-select
  22. v-model="place"
  23. size="small"
  24. placeholder="请选择"
  25. class="select-newpage"
  26. :popper-append-to-body="false"
  27. >
  28. <el-option
  29. v-for="item in deptList"
  30. :key="item.value"
  31. :label="item.label"
  32. :value="item.value"
  33. >
  34. </el-option>
  35. </el-select> -->
  36. </div>
  37. <div class="yy-header-tit">
  38. <div class="yy-header-tit-text">{{ headerTitle }}</div>
  39. </div>
  40. <!-- <div class="head-right">-->
  41. <!-- <div-->
  42. <!-- style="-->
  43. <!-- color: #eee;-->
  44. <!-- height: 2rem;-->
  45. <!-- line-height: 2rem;-->
  46. <!-- border: 0px;-->
  47. <!-- padding: 0 10px;-->
  48. <!-- background-size: 100% 100%;-->
  49. <!-- background: url(/static/img/leader-topk.d4e183b5.png) no-repeat-->
  50. <!-- center;-->
  51. <!-- "-->
  52. <!-- >-->
  53. <!-- <span-->
  54. <!-- ><i class="el-icon-box"></i>-->
  55. <!-- <a-->
  56. <!-- style="font-size: 14px; margin-left: 0.5rem"-->
  57. <!-- href="./General_DSS-LightWeight-Client_x64_V2.6.0.2205.R.20220621.exe"-->
  58. <!-- >下载插件</a-->
  59. <!-- ></span-->
  60. <!-- >-->
  61. <!-- </div>-->
  62. <!-- </div>-->
  63. <!---demo-管辖区导航 开始--->
  64. <div class="new-header-nav-list">
  65. <div class="new-header-nav-list-btn" v-for="(item ,index) in deptList" :key="index">
  66. {{ item.label }}
  67. </div>
  68. </div>
  69. <rightClock></rightClock>
  70. </div>
  71. <div style="width: 100%; height: 100%; position: absolute; z-index: 1">
  72. <div class="starfield">
  73. <div class="static"></div>
  74. <div class="moving-1"></div>
  75. <div class="moving-2"></div>
  76. <div class="moving-3"></div>
  77. </div>
  78. </div>
  79. <div class="go-center-top" ref="centerHeight">
  80. <div class="c-left" ref="sideWidth">
  81. <div
  82. class="icon-list-con"
  83. v-for="(item, index) in iList.slice(0, 4)"
  84. ref="conWid"
  85. @click="goCenter(item.to)"
  86. >
  87. <div class="icon-list-img" style="margin-top: 2rem;">
  88. <el-image
  89. :src="item.imgSrc"
  90. :class="{ l1: item.limits === 1, l2: item.limits === 2 }"
  91. fit="scale-down"
  92. id="lineHeight222"
  93. @load="imgLoad2"
  94. style="transform: rotateY(180deg)"
  95. >
  96. </el-image>
  97. <div
  98. class="icon-list-tit"
  99. style="margin-top: 1rem;"
  100. :class="{
  101. 'tit-gray': item.limits === 1,
  102. 'tit-red': item.limits === 2,
  103. }"
  104. >
  105. {{ item.name }}
  106. </div>
  107. </div>
  108. <div
  109. class="icon-line"
  110. :class="{
  111. 'icon-line1': item.limits === 1,
  112. 'icon-line2': item.limits === 2,
  113. }"
  114. style="transform: rotateY(180deg)"
  115. >
  116. <dv-border-box-8
  117. class="i-x-line"
  118. style="width: 70px; height: 3px"
  119. :dur="2.5"
  120. v-if="item.limits === 0"
  121. ></dv-border-box-8>
  122. <dv-border-box-7
  123. class="i-x-line"
  124. style="width: 70px; height: 3px"
  125. :dur="2.5"
  126. v-if="item.limits === 1"
  127. ></dv-border-box-7>
  128. <dv-border-box-7
  129. class="i-x-line"
  130. style="width: 70px; height: 3px"
  131. :dur="2.5"
  132. v-if="item.limits === 2"
  133. :color="['red', 'red']"
  134. ></dv-border-box-7>
  135. </div>
  136. <div class="i-origin0 to-right-31" v-if="item.limits === 0"></div>
  137. <div
  138. class="i-origin1 to-right-31"
  139. v-else-if="item.limits === 1"
  140. ></div>
  141. <div class="i-origin2 to-right-31" v-else-if="item.limits === 2">
  142. <i class="el-icon-warning-outline"></i>
  143. </div>
  144. </div>
  145. </div>
  146. <div
  147. class="center-ring-click"
  148. @click="ringClick(ldUrl)"
  149. v-if="ldUrl != ''"
  150. ></div>
  151. <div class="container-c">
  152. <div class="circle1"></div>
  153. <!-- <div class="circle2"></div> -->
  154. <!-- <div class="circle3"></div> -->
  155. </div>
  156. <div class="c-right">
  157. <div
  158. class="icon-list-con"
  159. v-for="(item, index) in iList.slice(4, 8)"
  160. ref="conWid2"
  161. @click="goCenter(item.to)"
  162. >
  163. <div class="i-origin0 to-left-31" v-if="item.limits === 0"></div>
  164. <div class="i-origin1 to-left-31" v-else-if="item.limits === 1"></div>
  165. <div class="i-origin2 to-left-31" v-else-if="item.limits === 2">
  166. <i class="el-icon-warning-outline"></i>
  167. </div>
  168. <div
  169. class="icon-line"
  170. :class="{
  171. 'icon-line1': item.limits === 1,
  172. 'icon-line2': item.limits === 2,
  173. }"
  174. >
  175. <dv-border-box-8
  176. class="i-x-line"
  177. style="width: 70px; height: 3px"
  178. :dur="2.5"
  179. v-if="item.limits === 0"
  180. ></dv-border-box-8>
  181. <dv-border-box-7
  182. class="i-x-line"
  183. style="width: 70px; height: 3px"
  184. :dur="2.5"
  185. v-if="item.limits === 1"
  186. ></dv-border-box-7>
  187. <dv-border-box-7
  188. class="i-x-line"
  189. style="width: 70px; height: 3px"
  190. :dur="2.5"
  191. v-if="item.limits === 2"
  192. :color="['red', 'red']"
  193. ></dv-border-box-7>
  194. </div>
  195. <div class="icon-list-img" style="margin-top: 2rem;">
  196. <el-image
  197. :src="item.imgSrc"
  198. :class="{ l1: item.limits === 1, l2: item.limits === 2 }"
  199. fit="scale-down"
  200. >
  201. </el-image>
  202. <div
  203. class="icon-list-tit"
  204. style="margin-top: 1rem;"
  205. :class="{
  206. 'tit-gray': item.limits === 1,
  207. 'tit-red': item.limits === 2,
  208. }"
  209. >
  210. {{ item.name }}
  211. </div>
  212. </div>
  213. </div>
  214. </div>
  215. <!-- <div
  216. class="icon-list-con team-last"
  217. @click="
  218. $router.push({
  219. path: centerList[8].to,
  220. })
  221. "
  222. >
  223. <div
  224. class="icon-list-img"
  225. style="
  226. width: 100%;
  227. display: flex;
  228. flex-direction: column;
  229. align-items: center;
  230. "
  231. >
  232. <el-image
  233. :src="centerList[8].imgSrc"
  234. :class="{
  235. l1: centerList[8].limits === 1,
  236. l2: centerList[8].limits === 2,
  237. }"
  238. fit="scale-down"
  239. :style="'width:' + bottomH + 'px'"
  240. >
  241. </el-image>
  242. <div
  243. class="icon-list-tit"
  244. :class="{
  245. 'tit-gray': centerList[8].limits === 1,
  246. 'tit-red': centerList[8].limits === 2,
  247. }"
  248. >
  249. {{ centerList[8].name }}
  250. </div>
  251. </div>
  252. </div> -->
  253. </div>
  254. <!-- 上一体化入口 -->
  255. <div class="go-integration-button" ref="lineHeight1">
  256. <!-- 入口容器 -->
  257. <div class="img-con">
  258. <!-- 入口单元格 -->
  259. <div
  260. class="img-l-con"
  261. v-for="(item, index) in centerList"
  262. ref="lineHeight222"
  263. @click="goCenter(item.to)"
  264. >
  265. <el-image
  266. :src="item.imgSrc"
  267. :class="{ l1: item.limits === 1, l2: item.limits === 2 }"
  268. style="width:110px"
  269. ></el-image>
  270. <div class="i-name-con" ref="lineHeight4">
  271. <div class="name-item">
  272. <div
  273. class="i-name"
  274. :class="{
  275. 'name-gray': item.limits === 1,
  276. 'name-red': item.limits === 2,
  277. }"
  278. >
  279. {{ item.name }}
  280. </div>
  281. </div>
  282. </div>
  283. </div>
  284. </div>
  285. </div>
  286. <!-- 中间动画 -->
  287. <div class="yyzx-center-container">
  288. <!-- 圆环 -->
  289. <!-- <div class="ring-outside">
  290. <div class="c c13"></div>
  291. <div class="c c14"></div>
  292. <div class="c c15"></div>
  293. <div class="c c16"></div>
  294. <div class="c c17"></div>
  295. <div class="c c18"></div>
  296. <div class="c c19"></div>
  297. <div class="c c20"></div>
  298. <div class="c c21"></div>
  299. <div class="c c22"></div>
  300. <div class="c c23"></div>
  301. <div class="c c24"></div>
  302. <div class="c c25"></div>
  303. <div class="c c26"></div>
  304. <div class="c c27"></div>
  305. <div class="c c28"></div>
  306. <div class="c c29"></div>
  307. <div class="c c30"></div>
  308. <div class="l"></div>
  309. </div> -->
  310. <div class="center-demon-container">
  311. <div class="center-demon" style="">
  312. <img src="../assets/yyzx2/logo-bg.png" />
  313. </div>
  314. <div class="center-demon1" style="">
  315. <img src="../assets/yyzx2/ring-in.png" />
  316. </div>
  317. <div class="center-demon2" style="">
  318. <img src="../assets/yyzx2/ring-kd.png" />
  319. </div>
  320. <div class="center-demon3" style="">
  321. <img src="../assets/yyzx2/ring-out.png" />
  322. </div>
  323. <div class="center-demon4" style="">
  324. <img src="../assets/yyzx2/ring-t.png" />
  325. </div>
  326. <div class="center-demon5" style="">
  327. <img src="../assets/yyzx2/ring-t-out.png" />
  328. </div>
  329. <div id="atome">
  330. <div class="atome-wrap">
  331. <div class="circle circle_0"></div>
  332. <div class="circle circle_1"></div>
  333. <div class="circle circle_2"></div>
  334. <div class="circle circle_3"></div>
  335. <div class="circle circle_4"></div>
  336. <div class="circle circle_5"></div>
  337. <div class="circle circle_6"></div>
  338. </div>
  339. </div>
  340. </div>
  341. <div class="bg-bt"><img src="../assets/yyzx2/center1.png" /></div>
  342. <!-- <img class="center-building" src="../assets/yyzx2/yy-bg.png" ref="centerFlash" /> -->
  343. <div class="ring">
  344. <div class="particle" v-for="(item, index) in 58"></div>
  345. </div>
  346. </div>
  347. <!-- 弹层 -->
  348. <el-dialog
  349. title="简介"
  350. :visible.sync="infoDialogVisible"
  351. width="80%"
  352. :before-close="handleClose"
  353. class="info-d"
  354. >
  355. <div class="info-con">
  356. <div class="img-con">
  357. <el-image
  358. :src="img"
  359. fit="scale-down"
  360. class="dia-img"
  361. v-for="(img, index) in infoDialogData.imgList"
  362. key="index"
  363. >
  364. </el-image>
  365. </div>
  366. <span class="info-text">{{ infoDialogData.info }}</span>
  367. </div>
  368. <span
  369. slot="footer"
  370. class="dialog-footer"
  371. style="display: flex; justify-content: center"
  372. >
  373. <el-button @click="infoDialogVisible = false">取 消</el-button>
  374. <el-button type="primary" @click="goIntegratime(infoDialogData.to)"
  375. >进入</el-button
  376. >
  377. </span>
  378. </el-dialog>
  379. </div>
  380. </template>
  381. <script>
  382. import { selectRoleMenuVisuTreest } from "@/api/system/user";
  383. import { fontConfig } from "@/api/login";
  384. import rightClock from "@/components/clock";
  385. import { getWeather } from "@/api/system/commandCenter";
  386. import { selectConfigKey, getConfigKey } from "@/api/system/config";
  387. import Cookies from "js-cookie";
  388. export default {
  389. components: {
  390. rightClock,
  391. },
  392. data() {
  393. return {
  394. //天气信息
  395. weatherinformationLow: 0,
  396. weatherinformationTemperature: 0,
  397. weatherinformationPower: 0,
  398. headerTitle: "全域视联平台",
  399. bottomW: 0, // 中心入口 下方按钮宽
  400. bottomH: 0, // 中心入口 下方按钮高
  401. // 可视化入口
  402. // name: 入口名称
  403. // imgSrc: 图片路径
  404. // limits: 权限状态 0 === 默认 正常
  405. // 权限状态 1 === 无权限 置灰
  406. // 权限状态 2 === 断开连接 置红
  407. // to: 入口路径
  408. ldUrl: "",
  409. deptList: [
  410. {
  411. value: "365",
  412. label: "四平市",
  413. }, // 365_四平市
  414. {
  415. value: "369",
  416. label: "双辽市",
  417. }, // 369_双辽市
  418. {
  419. value: "371",
  420. label: "梨树县",
  421. }, // 371_梨树县
  422. {
  423. value: "373",
  424. label: "铁西区",
  425. }, // 373_铁西区
  426. {
  427. value: "372",
  428. label: "铁东区",
  429. }, // 372_铁东区
  430. {
  431. value: "370",
  432. label: "伊通县",
  433. }, // 370_伊通县
  434. ],
  435. place: "365",
  436. dept: "365",
  437. iList: [
  438. {
  439. name: "数字林业",
  440. imgSrc: require("@/assets/yyzx2/icon-szly.png"),
  441. limits: 0,
  442. to: "",
  443. info: "",
  444. imgList: "",
  445. },
  446. {
  447. name: "数字农业",
  448. imgSrc: require("@/assets/yyzx2/icon-szny.png"),
  449. limits: 0,
  450. to: "",
  451. info: "",
  452. imgList: "",
  453. },
  454. {
  455. name: "数字水利",
  456. imgSrc: require("@/assets/yyzx2/icon-szsl.png"),
  457. limits: 0,
  458. to: "",
  459. info: "",
  460. imgList: "",
  461. },
  462. {
  463. name: "数字环保",
  464. imgSrc: require("@/assets/yyzx2/icon-szhb.png"),
  465. limits: 0,
  466. to: "",
  467. info: "",
  468. imgList: "",
  469. },
  470. {
  471. name: "数字应急",
  472. imgSrc: require("@/assets/yyzx2/icon-szyj.png"),
  473. limits: 0,
  474. to: "",
  475. info: "",
  476. imgList: "",
  477. },
  478. {
  479. name: "数字交通",
  480. imgSrc: require("@/assets/yyzx2/icon-szjt.png"),
  481. limits: 0,
  482. to: "",
  483. info: "",
  484. imgList: "",
  485. },
  486. {
  487. name: "数字资源",
  488. imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  489. limits: 0,
  490. to: "",
  491. info: "",
  492. imgList: "",
  493. },
  494. {
  495. name: "数字消防",
  496. imgSrc: require("@/assets/yyzx2/icon-szxf.png"),
  497. limits: 0,
  498. to: "",
  499. info: "",
  500. imgList: "",
  501. },
  502. // {
  503. // name: "数字城管",
  504. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  505. // limits: 0,
  506. // to: "",
  507. // info: "",
  508. // imgList: "",
  509. // },
  510. // {
  511. // name: "数字食药",
  512. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  513. // limits: 0,
  514. // to: "",
  515. // info: "",
  516. // imgList: "",
  517. // },
  518. // {
  519. // name: "数字文旅",
  520. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  521. // limits: 0,
  522. // to: "",
  523. // info: "",
  524. // imgList: "",
  525. // },
  526. // {
  527. // name: "数字教育",
  528. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  529. // limits: 0,
  530. // to: "",
  531. // info: "",
  532. // imgList: "",
  533. // },
  534. // {
  535. // name: "数字计生",
  536. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  537. // limits: 0,
  538. // to: "",
  539. // info: "",
  540. // imgList: "",
  541. // },
  542. // {
  543. // name: "数字医保",
  544. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  545. // limits: 0,
  546. // to: "",
  547. // info: "",
  548. // imgList: "",
  549. // },
  550. // {
  551. // name: "数字社保",
  552. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  553. // limits: 0,
  554. // to: "",
  555. // info: "",
  556. // imgList: "",
  557. // },
  558. // {
  559. // name: "城乡治理",
  560. // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
  561. // limits: 0,
  562. // to: "",
  563. // info: "",
  564. // imgList: "",
  565. // },
  566. // {
  567. // name: "基层党建",
  568. // imgSrc: require("@/assets/yyzx2/icon-szxf.png"),
  569. // limits: 0,
  570. // to: "",
  571. // info: "",
  572. // imgList: "",
  573. // },
  574. ],
  575. //中心入口
  576. centerList: [
  577. {
  578. name: "任务中心",
  579. imgSrc: require("@/assets/yyzx2/icon-rwzx.png"),
  580. limits: 0,
  581. to: "",
  582. },
  583. {
  584. name: "消息中心",
  585. imgSrc: require("@/assets/yyzx2/icon-xxzx.png"),
  586. limits: 0,
  587. to: "",
  588. },
  589. {
  590. name: "测评中心",
  591. imgSrc: require("@/assets/yyzx2/icon-pczx.png"),
  592. limits: 0,
  593. to: "",
  594. },
  595. {
  596. name: "档案中心",
  597. imgSrc: require("@/assets/yyzx2/icon-dazx.png"),
  598. limits: 0,
  599. to: "",
  600. },
  601. {
  602. name: "数据中心",
  603. imgSrc: require("@/assets/yyzx2/icon-sjzx.png"),
  604. limits: 0,
  605. to: "",
  606. },
  607. {
  608. name: "事件中心",
  609. imgSrc: require("@/assets/yyzx2/icon-sjianzx.png"),
  610. limits: 0,
  611. to: "",
  612. },
  613. {
  614. name: "监控中心",
  615. imgSrc: require("@/assets/yyzx2/icon-jkzx.png"),
  616. limits: 0,
  617. to: "",
  618. },
  619. {
  620. name: "维护中心",
  621. imgSrc: require("@/assets/yyzx2/icon-ygzx.png"),
  622. limits: 0,
  623. to: "",
  624. },
  625. {
  626. name: "运营中心",
  627. imgSrc: require("@/assets/yyzx2/icon-yyzx.png"),
  628. limits: 0,
  629. to: "",
  630. },
  631. ],
  632. roleMenuVisuList: [],
  633. //弹层
  634. infoDialogVisible: false,
  635. infoDialogData: {
  636. info: "第十六课积分啊拉萨款到即发阿里斯顿抗击非典拉克丝大姐夫拉屎订单交付拉萨款到即发拉松了萨顶顶啦蛇口街道法老师叫发的卢卡斯积分卢萨卡积分阿斯利康放假阿斯利康大姐夫拉屎抗击非典",
  637. imgList: [
  638. require("@/assets/yyzx2/icon-dazx.png"),
  639. require("@/assets/yyzx2/icon-dazx.png"),
  640. require("@/assets/yyzx2/icon-dazx.png"),
  641. ],
  642. to: "",
  643. },
  644. };
  645. },
  646. created() {
  647. this.selectRoleMenuVisuTreest();
  648. // 获取天气
  649. this.getWeather();
  650. //进入主页时就获取超图地址并存入cookie
  651. this.getConfigKey("superMap.iServer").then((response) => {
  652. console.log("///////////" + response.msg);
  653. Cookies.set("superMap.iServer", response.msg, {
  654. expires: 300,
  655. });
  656. });
  657. this.getheaderTitle();
  658. },
  659. mounted() {
  660. window.onresize = () => {
  661. this.imgLoad2();
  662. };
  663. },
  664. methods: {
  665. //获取标题
  666. getheaderTitle() {
  667. const that = this;
  668. selectConfigKey("titlename").then((res) => {
  669. that.headerTitle = res.data;
  670. });
  671. },
  672. // 获取天气数据
  673. getWeather() {
  674. let that = this;
  675. let date = new Date();
  676. let y = date.getFullYear();
  677. let m = date.getMonth() + 1;
  678. m = m < 10 ? "0" + m : m;
  679. let d = date.getDate();
  680. d = d < 10 ? "0" + d : d;
  681. let str = y + "-" + m + "-" + d;
  682. getWeather({
  683. day: str,
  684. }).then((res) => {
  685. if (res.data.length > 0) {
  686. that.weatherinformationLow = res.data[0].weatherinformationLow;
  687. that.weatherinformationPower = res.data[0].weatherinformationPower;
  688. that.weatherinformationTemperature =
  689. res.data[0].weatherinformationTemperature;
  690. }
  691. console.log("获取天气数据=", res.data[0]);
  692. });
  693. },
  694. // 获取用户权限
  695. selectRoleMenuVisuTreest() {
  696. let _that = this;
  697. selectRoleMenuVisuTreest().then((response) => {
  698. // debugger
  699. for (let i in response.list) {
  700. if (response.list[i].menuType == "ZC") {
  701. for (let j in _that.iList) {
  702. if (response.list[i].menuName == _that.iList[j].name) {
  703. _that.iList[j].name = response.list[i].menuName;
  704. _that.iList[j].limits = response.list[i].roleMenuVisuIsShow
  705. ? 0
  706. : 1;
  707. _that.iList[j].to = response.list[i].roleMenuVisuIsShow
  708. ? response.list[i].pageRouterUrl
  709. : "";
  710. _that.iList[j].info = response.list[i].remark;
  711. _that.iList[j].imgList = response.list[i].imageUrl;
  712. _that.iList[j].imgSrc = response.list[i].imageId;
  713. } else if (response.list[i].perms == "index:lingdaoshouye") {
  714. _that.ldUrl = response.list[i].roleMenuVisuIsShow
  715. ? response.list[i].pageRouterUrl
  716. : "";
  717. }
  718. }
  719. } else if (response.list[i].menuType == "FC") {
  720. for (let j in _that.centerList) {
  721. if (response.list[i].menuName == _that.centerList[j].name) {
  722. _that.centerList[j].name = response.list[i].menuName;
  723. _that.centerList[j].limits = response.list[i].roleMenuVisuIsShow
  724. ? 0
  725. : 1;
  726. _that.centerList[j].to = response.list[i].roleMenuVisuIsShow
  727. ? response.list[i].pageRouterUrl
  728. : "";
  729. }
  730. }
  731. }
  732. }
  733. });
  734. },
  735. //获取一体化入口宽高
  736. getHeight() {
  737. this.$nextTick(() => {
  738. var h1 = this.$refs.lineHeight1.offsetHeight;
  739. var h4 = this.$refs.lineHeight4[0].offsetHeight;
  740. var w1 = this.$refs.lineHeight1.offsetWidth;
  741. var w2 = this.$refs.lineHeight222[0].offsetWidth;
  742. var h5 = this.$refs.centerHeight.offsetHeight;
  743. var w3 = this.$refs.sideWidth.offsetWidth;
  744. var w4 = this.$refs.conWid[0].offsetWidth;
  745. var w444 = this.$refs.conWid2[0].offsetWidth;
  746. var h6 = this.$refs.conWid[0].offsetHeight;
  747. this.conHeight1 = h1;
  748. this.conHeight4 = h4;
  749. this.conWidth1 = w1 - w2;
  750. this.conWidth2 = w2;
  751. this.conHeight5 = h5 / 6;
  752. this.conWidth3 = w3 - w4;
  753. this.position1 = w4;
  754. this.conHeight6 = h6 * 3;
  755. });
  756. },
  757. //获取一体化入口宽高
  758. imgLoad() {
  759. var imgH = document.getElementById("lineHeight2");
  760. this.$nextTick(() => {
  761. this.conHeight3 = this.conHeight1 - imgH.offsetHeight - this.conHeight4;
  762. this.lineTop = imgH.offsetHeight + this.conHeight3;
  763. this.conHeight2 = imgH.offsetHeight;
  764. });
  765. },
  766. imgLoad2() {
  767. var imgH2 = document.getElementById("lineHeight222");
  768. this.$nextTick(() => {
  769. this.bottomW = imgH2.offsetWidth; // 中心入口 下方按钮宽
  770. this.bottomH = imgH2.offsetHeight;
  771. // console.log(this.bottomW ,this.bottomH ,'这是啥')
  772. });
  773. },
  774. // 中间logo点击事件
  775. ringClick(to) {
  776. window.location.href = to;
  777. },
  778. //一体化入口点击跳转
  779. goIntegratime(to) {
  780. window.location.href = to;
  781. },
  782. //中心入口点击跳转
  783. goCenter(to) {
  784. if (to != "") {
  785. window.location.href = to;
  786. }
  787. },
  788. //点击弹出简介pop
  789. showInfoPop(item) {
  790. this.infoDialogData.info = item.info;
  791. this.infoDialogData.imgList =
  792. item.imgList != null ? item.imgList.split(",") : [];
  793. this.infoDialogData.to = item.to;
  794. this.infoDialogVisible = true;
  795. },
  796. //弹层关闭
  797. handleClose(done) {
  798. this.infoDialogVisible = false;
  799. },
  800. },
  801. };
  802. </script>
  803. <style lang="scss">
  804. @import "@/assets/styles/base.scss";
  805. @keyframes shineB {
  806. 0% {
  807. box-shadow: 0 0 0px #097bde;
  808. }
  809. 50% {
  810. box-shadow: 0 0 15px #01dcde;
  811. }
  812. 100% {
  813. box-shadow: 0 0 0px #097bde;
  814. }
  815. }
  816. @-webkit-keyframes spin {
  817. from {
  818. -webkit-transform: rotate(0deg);
  819. }
  820. to {
  821. -webkit-transform: rotate(360deg);
  822. }
  823. }
  824. @-webkit-keyframes spin2 {
  825. from {
  826. -webkit-transform: rotate(0deg);
  827. }
  828. to {
  829. -webkit-transform: rotate(-360deg);
  830. }
  831. }
  832. @keyframes spin {
  833. from {
  834. transform: rotate(0deg);
  835. }
  836. to {
  837. transform: rotate(360deg);
  838. }
  839. }
  840. @keyframes shineimg2 {
  841. 0% {
  842. box-shadow: 0 0 0px #1aa7ff;
  843. }
  844. 50% {
  845. box-shadow: 0 0 25px #90d3ff;
  846. }
  847. 100% {
  848. box-shadow: 0 0 0px #1aa7ff;
  849. }
  850. }
  851. @keyframes shinetext2 {
  852. 0% {
  853. text-shadow: 0 0 0px #1aa7ff;
  854. }
  855. 50% {
  856. text-shadow: 0 0 10px #90d3ff;
  857. }
  858. 100% {
  859. text-shadow: 0 0 0px #1aa7ff;
  860. }
  861. }
  862. @keyframes shineheader {
  863. 0% {
  864. text-shadow: 0 0 2px #1aa7ff;
  865. }
  866. 50% {
  867. text-shadow: 0 0 18px #90d3ff;
  868. }
  869. 100% {
  870. text-shadow: 0 0 2px #1aa7ff;
  871. }
  872. }
  873. @keyframes shinetextred {
  874. 0% {
  875. text-shadow: 0 0 0px #ffb403;
  876. }
  877. 50% {
  878. text-shadow: 0 0 10px #ff7300;
  879. }
  880. 100% {
  881. text-shadow: 0 0 0px #ffb403;
  882. }
  883. }
  884. //弹层
  885. .info-d {
  886. .el-dialog {
  887. background: #04080c !important;
  888. border: 1px $barBorder !important;
  889. height: 70%;
  890. }
  891. .el-dialog__header {
  892. padding: 15px 20px !important;
  893. background-image: -moz-linear-gradient($GradualGreen) !important;
  894. background-image: -webkit-linear-gradient($GradualGreen) !important;
  895. background-image: linear-gradient($GradualGreen) !important;
  896. box-shadow: $shadowTitle !important;
  897. .el-dialog__title {
  898. font-weight: bolder !important;
  899. color: #3cd7ef;
  900. }
  901. }
  902. .el-dialog__body {
  903. height: 80%;
  904. overflow-y: scroll;
  905. .info-con {
  906. display: flex;
  907. flex-direction: column;
  908. align-items: center;
  909. padding: 2rem;
  910. .info-text {
  911. color: $white;
  912. }
  913. .img-con {
  914. width: 100%;
  915. display: flex;
  916. margin-bottom: 2rem;
  917. justify-content: space-between;
  918. .dia-img {
  919. width: 31%;
  920. }
  921. }
  922. }
  923. }
  924. }
  925. .select-newpage {
  926. width: 8rem;
  927. height: 2.4rem;
  928. z-index: 1000;
  929. display: flex;
  930. align-items: center;
  931. border-radius: 30px;
  932. margin-left: 1rem !important;
  933. .el-select-dropdown {
  934. border: none;
  935. background-color: rgba(1, 28, 82, 0.8);
  936. }
  937. .el-input {
  938. position: relative;
  939. }
  940. .el-input:after {
  941. content: " ";
  942. display: block;
  943. position: absolute;
  944. left: 0.5rem;
  945. top: 0.25rem;
  946. width: 1rem;
  947. height: 1.3rem;
  948. z-index: 11;
  949. background: url("../assets/images/leader-icon1.png") no-repeat center;
  950. }
  951. //聚焦时的样式
  952. .el-select .el-input.is-focus .el-input__inner {
  953. border-color: #0b61aa;
  954. background-color: rgba(1, 28, 82, 0.8);
  955. color: #00d3e9;
  956. }
  957. //下拉框选中
  958. .el-select-dropdown__item {
  959. color: #eee;
  960. padding: 0 20px;
  961. }
  962. //鼠标经过下拉框
  963. .el-select-dropdown__item.hover,
  964. .el-select-dropdown__item:hover {
  965. color: #00d3e9;
  966. background-color: #0f3360;
  967. }
  968. //输入框
  969. .el-input__inner {
  970. color: #eee;
  971. border: 0px;
  972. padding-left: 2rem;
  973. background-size: 100% 100%;
  974. background: url("../assets/images/leader-topk.png") no-repeat center;
  975. }
  976. }
  977. </style>
  978. <style lang="scss" scoped>
  979. @import url("../assets/yyzx2/yyzx.css");
  980. @import url("../assets/yyzx2/starflash.css");
  981. @import "@/assets/styles/base.scss";
  982. .center-ring-click {
  983. width: 500px;
  984. height: 500px;
  985. position: absolute;
  986. left: 50%;
  987. top: 50%;
  988. transform: translate(-50%, -50%);
  989. background: none;
  990. // background: #615426;
  991. z-index: 100;
  992. cursor: pointer;
  993. }
  994. .team-last {
  995. position: absolute !important;
  996. z-index: 200 !important;
  997. left: 50% !important;
  998. transform: translateX(-50%) !important;
  999. bottom: -5rem !important;
  1000. }
  1001. .to-right-31 {
  1002. position: absolute;
  1003. right: -33px;
  1004. z-index: 100;
  1005. }
  1006. .to-left-31 {
  1007. position: absolute;
  1008. left: -33px;
  1009. z-index: 100;
  1010. }
  1011. .container-c {
  1012. width: 60%;
  1013. height: 59vh;
  1014. text-align: center;
  1015. position: absolute;
  1016. overflow: hidden;
  1017. position: absolute;
  1018. left: 50%;
  1019. top: 50%;
  1020. -webkit-transform: translate(-50%, -50%);
  1021. transform: translate(-50%, -50%);
  1022. z-index: -1;
  1023. }
  1024. .circle1 {
  1025. width: 90%;
  1026. height: 110vh;
  1027. border: 2px solid #295587;
  1028. border-radius: 100%;
  1029. left: 50%;
  1030. top: 50%;
  1031. -webkit-transform-origin: center center;
  1032. transform-origin: center center;
  1033. -webkit-transform: translate(-50%, -50%);
  1034. transform: translate(-50%, -50%);
  1035. position: absolute;
  1036. }
  1037. //头部
  1038. .yy-header {
  1039. width: 100%;
  1040. height: 7rem;
  1041. position: absolute;
  1042. top: 0;
  1043. background: url("../assets/yyzx2/yy-header-bg.png") no-repeat;
  1044. background-size: 100%;
  1045. z-index: 999999999999999;
  1046. .new-header-nav-list {
  1047. position: absolute;
  1048. bottom: -40px;
  1049. left: 50%;
  1050. transform: translateX(-50%);
  1051. display: flex;
  1052. .new-header-nav-list-btn {
  1053. font-size: 1rem;
  1054. text-align: center;
  1055. width: 176px;
  1056. height: 55px;
  1057. line-height: 55px;
  1058. background: url("../assets/images/new-nav-btn-bg.png") no-repeat;
  1059. cursor: pointer;
  1060. }
  1061. .new-header-nav-list-btn:hover {
  1062. background: url("../assets/images/new-nav-btn-bg-hover.png") no-repeat;
  1063. }
  1064. }
  1065. .head-left {
  1066. position: absolute;
  1067. left: 0;
  1068. height: 5vh;
  1069. display: flex;
  1070. align-items: center;
  1071. .head-time {
  1072. display: flex;
  1073. flex-direction: row;
  1074. justify-content: flex-end;
  1075. i {
  1076. display: inline-block;
  1077. width: 2rem;
  1078. height: 2rem;
  1079. }
  1080. .head-fx {
  1081. background: url("../assets/images/leader-icon-fengxiang.png") no-repeat
  1082. 5px 5px;
  1083. }
  1084. .head-fs {
  1085. background: url("../assets/images/leader-icon2.png") no-repeat 5px 5px;
  1086. }
  1087. .head-jsl {
  1088. background: url("../assets/images/leader-icon3.png") no-repeat 4px 5px;
  1089. }
  1090. .head-wd {
  1091. background: url("../assets/images/leader-icon4.png") no-repeat 5px 6px;
  1092. }
  1093. }
  1094. span {
  1095. margin-right: 1rem;
  1096. color: #fff;
  1097. font-size: 1rem;
  1098. display: flex;
  1099. flex-direction: row;
  1100. align-items: center;
  1101. u {
  1102. text-decoration: none;
  1103. }
  1104. }
  1105. .timer {
  1106. padding-right: 1rem;
  1107. font-weight: bold;
  1108. font-style: oblique;
  1109. }
  1110. }
  1111. .head-right {
  1112. height: 5vh;
  1113. position: absolute;
  1114. right: 340px;
  1115. display: flex;
  1116. font-size: 1rem;
  1117. align-items: center;
  1118. color: $white;
  1119. }
  1120. .yy-header-tit {
  1121. width: 35%;
  1122. height: 5rem;
  1123. position: absolute;
  1124. top: 0;
  1125. left: 50%;
  1126. transform: translateX(-50%);
  1127. // background: url('../assets/yyzx2/yy-header-tit.png') no-repeat;
  1128. display: flex;
  1129. justify-content: center;
  1130. background-size: 100%;
  1131. align-items: flex-start;
  1132. .yy-header-tit-text {
  1133. display: flex;
  1134. align-items: center;
  1135. text-align: center;
  1136. color: #d5f2ff;
  1137. // background-image:linear-gradient(180deg, #0cfbff,#ffffff);
  1138. // background-clip: text;
  1139. // -webkit-background-clip: text;
  1140. font-size: 2rem;
  1141. line-height: 3.5rem;
  1142. letter-spacing: 0.5rem;
  1143. font-family: $fontHk;
  1144. // text-shadow:0 0 0px #fff;
  1145. animation: shineheader 2s infinite;
  1146. }
  1147. }
  1148. }
  1149. //中心入口
  1150. .go-center-top {
  1151. width: 100%;
  1152. position: absolute;
  1153. height: 62%;
  1154. top: 15%;
  1155. left: 0;
  1156. z-index: 12;
  1157. display: flex;
  1158. justify-content: space-between;
  1159. .i-line-x {
  1160. position: absolute;
  1161. top: 50%;
  1162. transform: translateY(-50%);
  1163. background: #003d2b;
  1164. height: 3px;
  1165. width: 50%;
  1166. }
  1167. .i-line-y {
  1168. height: 75%;
  1169. position: absolute;
  1170. top: 50%;
  1171. transform: translateY(-50%);
  1172. background: #003d2b;
  1173. width: 3px;
  1174. }
  1175. // .icon-list-con:last-child,.icon-list-con:first-child{
  1176. // left:-14% !important
  1177. // }
  1178. // .icon-list-con:last-child,.icon-list-con:first-child{
  1179. // left:14% !important
  1180. // }
  1181. .icon-list-con {
  1182. height: 25%;
  1183. display: flex;
  1184. align-items: center;
  1185. cursor: pointer;
  1186. position: relative;
  1187. justify-content: center;
  1188. .icon-list-img {
  1189. -webkit-transition: all 0.5s;
  1190. transition: all 0.5s;
  1191. .el-image {
  1192. }
  1193. .l1 {
  1194. filter: grayscale(100%) !important;
  1195. }
  1196. .l2 {
  1197. filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg) !important;
  1198. }
  1199. .icon-list-tit {
  1200. // position: relative;
  1201. transform: translateY(-1.3rem);
  1202. font-size: 1.1rem;
  1203. text-align: center;
  1204. color: #fff;
  1205. font-family: zk;
  1206. -webkit-transition: all 0.5s;
  1207. transition: all 0.5s;
  1208. white-space: nowrap;
  1209. }
  1210. .tit-gray {
  1211. color: #999999 !important;
  1212. }
  1213. .tit-red {
  1214. color: #ff8e01;
  1215. }
  1216. }
  1217. .icon-line {
  1218. width: 70px;
  1219. height: 3px;
  1220. z-index: 9;
  1221. background-color: #1a6a8c !important;
  1222. }
  1223. .icon-line1 {
  1224. width: 70px;
  1225. background-color: #495051 !important;
  1226. height: 3px;
  1227. z-index: 9;
  1228. }
  1229. .icon-line2 {
  1230. width: 70px;
  1231. background-color: #f67300 !important;
  1232. height: 3px;
  1233. z-index: 9;
  1234. }
  1235. .i-origin0 {
  1236. width: 30px;
  1237. height: 30px;
  1238. z-index: 13;
  1239. box-shadow: 0 0 15px #159fd4;
  1240. transform: rotate(45deg);
  1241. animation: shineB 2s infinite;
  1242. // padding: 10em;
  1243. border: 1px solid #159fd4;
  1244. }
  1245. .i-origin0:after {
  1246. width: 8px;
  1247. height: 8px;
  1248. background: none;
  1249. content: "";
  1250. display: block;
  1251. position: absolute;
  1252. background: #0ff;
  1253. background-image: linear-gradient(
  1254. 180deg,
  1255. rgba($color: #0085f6, $alpha: 1),
  1256. rgba($color: #0ff, $alpha: 1)
  1257. );
  1258. border: 2px solid #01dcde;
  1259. top: 50%;
  1260. left: 50%;
  1261. transform: translate(-50%, -50%);
  1262. pointer-events: none;
  1263. // width: 20px;
  1264. // height: 20px;
  1265. // padding: 5px;
  1266. // background: none;
  1267. // border: 1px solid #fff;
  1268. // content:"";
  1269. // display: block;
  1270. // position: absolute;
  1271. // top: 10px;
  1272. // left: 10px;
  1273. // right: 10px;
  1274. // bottom: 10px;
  1275. // pointer-events: none;
  1276. // z-index: 100;
  1277. // width: 1.5rem;
  1278. // height: 1.5rem;
  1279. // position: absolute;
  1280. // right: 0;
  1281. // background:none;
  1282. // border: 1px solid #01dcde;
  1283. // z-index: 13;
  1284. // transform: rotate(45deg);
  1285. // animation: shineB 2s infinite;
  1286. // z-index: 1000
  1287. }
  1288. .i-origin1 {
  1289. width: 30px;
  1290. height: 30px;
  1291. z-index: 13;
  1292. transform: rotate(45deg);
  1293. // padding: 10em;
  1294. border: 1px solid #acbbbf;
  1295. }
  1296. .i-origin1:after {
  1297. width: 8px;
  1298. height: 8px;
  1299. background: none;
  1300. content: "";
  1301. display: block;
  1302. position: absolute;
  1303. background: #acbbbf;
  1304. background-image: linear-gradient(
  1305. 180deg,
  1306. rgba($color: #acbbbf, $alpha: 1),
  1307. rgba($color: #acbbbf, $alpha: 1)
  1308. );
  1309. border: 2px solid #acbbbf;
  1310. top: 50%;
  1311. left: 50%;
  1312. transform: translate(-50%, -50%);
  1313. pointer-events: none;
  1314. }
  1315. .i-origin2 {
  1316. width: 32px;
  1317. height: 32px;
  1318. background: #0ff;
  1319. background-image: linear-gradient(
  1320. 180deg,
  1321. rgba($color: #f60000, $alpha: 1),
  1322. rgba($color: #ff8e0c, $alpha: 1)
  1323. );
  1324. border-radius: 100%;
  1325. border: 1px solid #ff6e06;
  1326. z-index: 13;
  1327. animation: shineRed22 2s infinite;
  1328. display: flex;
  1329. justify-content: center;
  1330. align-items: center;
  1331. i {
  1332. color: #fed507;
  1333. font-size: 1.5rem;
  1334. }
  1335. }
  1336. @keyframes shineRed22 {
  1337. 0% {
  1338. box-shadow: 0 0 3px #ffef07;
  1339. }
  1340. 50% {
  1341. scale: 1;
  1342. box-shadow: 0 0 20px #ff6702;
  1343. }
  1344. 100% {
  1345. box-shadow: 0 0 3px #ffef07;
  1346. }
  1347. }
  1348. }
  1349. .icon-list-con:hover {
  1350. .icon-list-img {
  1351. transform: scale(1.2, 1.2);
  1352. .el-image {
  1353. animation: cccbt 2s infinite;
  1354. }
  1355. .l1 {
  1356. filter: grayscale(100%) !important;
  1357. }
  1358. .l2 {
  1359. filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg) !important;
  1360. }
  1361. .icon-list-tit {
  1362. // position: relative;
  1363. transform: translateY(-1rem);
  1364. text-align: center;
  1365. color: #ffffff;
  1366. font-family: zk;
  1367. animation: shinetext2 1s infinite;
  1368. }
  1369. .tit-gray {
  1370. color: #999999 !important;
  1371. animation: none !important;
  1372. }
  1373. .tit-red {
  1374. color: #ff8e01;
  1375. animation: shinetextred 1s infinite;
  1376. }
  1377. }
  1378. }
  1379. .c-left {
  1380. width: 10.8%;
  1381. display: flex;
  1382. flex-direction: column;
  1383. position: relative;
  1384. left: 11.6%;
  1385. justify-content: center;
  1386. align-items: center;
  1387. .icon-list-con:last-child,
  1388. .icon-list-con:first-child {
  1389. left: 20% !important;
  1390. }
  1391. }
  1392. .c-right {
  1393. width: 10.8%;
  1394. display: flex;
  1395. flex-direction: column;
  1396. justify-content: center;
  1397. position: relative;
  1398. right: 11.6%;
  1399. align-items: center;
  1400. .icon-list-con:last-child,
  1401. .icon-list-con:first-child {
  1402. left: -20% !important;
  1403. }
  1404. }
  1405. }
  1406. //一体化入口
  1407. .go-integration-button {
  1408. width: 100%;
  1409. height: 150px;
  1410. position: absolute;
  1411. left: 50%;
  1412. transform: translateX(-50%);
  1413. bottom: 0;
  1414. z-index: 6;
  1415. display: flex;
  1416. flex-direction: column;
  1417. background: url("../assets/yyzx2/btm-menu-bg.png") no-repeat bottom;
  1418. align-items: center;
  1419. background-size: contain;
  1420. .i-line-y {
  1421. position: absolute;
  1422. top: 0;
  1423. left: 50%;
  1424. transform: translateX(-50%);
  1425. width: 3px;
  1426. background: #003d2b;
  1427. height: 50%;
  1428. }
  1429. //图片
  1430. .img-con {
  1431. width: 85%;
  1432. z-index: 7;
  1433. display: flex;
  1434. justify-content: space-evenly;
  1435. position: absolute;
  1436. bottom: 0.2rem;
  1437. .i-x-line {
  1438. }
  1439. .img-l-con {
  1440. // width: 11%;
  1441. // height: 100%;
  1442. display: flex;
  1443. flex-direction: column;
  1444. align-items: center;
  1445. justify-content: center;
  1446. position: relative;
  1447. cursor: pointer;
  1448. transform: scale(1, 1) translateY(0px);
  1449. transition: all 1s;
  1450. .el-image {
  1451. // box-shadow: 0 0 5px #00ffb7;
  1452. // border: 1px solid #01458e;
  1453. z-index: 10;
  1454. transition: all 0.5s;
  1455. img {
  1456. width: 100%;
  1457. }
  1458. }
  1459. .show-button {
  1460. width: 100%;
  1461. height: 50px;
  1462. position: absolute;
  1463. top: 0%;
  1464. left: 50%;
  1465. transform: translateX(-50%);
  1466. background: rgba(0, 0, 0, 0);
  1467. z-index: 11;
  1468. // transition: all 0.5s;
  1469. opacity: 0;
  1470. display: flex;
  1471. align-items: center;
  1472. justify-content: center;
  1473. .button-item {
  1474. width: 100%;
  1475. position: relative;
  1476. z-index: 14;
  1477. display: flex;
  1478. justify-content: space-evenly;
  1479. align-items: center;
  1480. padding: 5%;
  1481. transition: all 0.5s;
  1482. transform: translateY(-50px);
  1483. button {
  1484. width: 40%;
  1485. height: 2rem;
  1486. background-image: linear-gradient(
  1487. 180deg,
  1488. rgba($color: #215de8, $alpha: 0.8),
  1489. rgba($color: #3d7bdd, $alpha: 1)
  1490. );
  1491. color: #fff;
  1492. border: 1px solid #33467f;
  1493. display: flex;
  1494. padding: 0;
  1495. display: flex;
  1496. align-items: center;
  1497. justify-content: center;
  1498. }
  1499. button:hover {
  1500. width: 40%;
  1501. background-image: linear-gradient(
  1502. 180deg,
  1503. rgba($color: #215de8, $alpha: 0.8),
  1504. rgba($color: #4edda6, $alpha: 1)
  1505. );
  1506. color: #fff;
  1507. border: 1px solid #8de9fe;
  1508. box-shadow: 0 0 6px #00ffb7;
  1509. animation: shineimg2 2s infinite;
  1510. padding: 0;
  1511. align-items: center;
  1512. justify-content: center;
  1513. }
  1514. }
  1515. }
  1516. .l1 {
  1517. filter: grayscale(100%) !important;
  1518. }
  1519. .l2 {
  1520. filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg);
  1521. animation: shineimg 1s infinite;
  1522. }
  1523. @keyframes shineimg {
  1524. 0% {
  1525. box-shadow: 0 0 0px #00ffb7;
  1526. }
  1527. 50% {
  1528. box-shadow: 0 0 15px #00ffb7;
  1529. }
  1530. 100% {
  1531. box-shadow: 0 0 0px #44ff00;
  1532. }
  1533. }
  1534. .img-line0 {
  1535. width: 1px;
  1536. top: -8px;
  1537. position: relative;
  1538. z-index: 9;
  1539. background-color: #1a6a8c !important;
  1540. }
  1541. .img-line1 {
  1542. background-color: #495051 !important;
  1543. }
  1544. .img-line2 {
  1545. background-color: #f67300 !important;
  1546. }
  1547. //名称
  1548. .i-name-con {
  1549. width: 100%;
  1550. height: 25%;
  1551. display: flex;
  1552. justify-content: space-between;
  1553. z-index: 10;
  1554. .name-item {
  1555. width: 100%;
  1556. height: 100%;
  1557. // background: red;
  1558. display: flex;
  1559. flex-direction: column;
  1560. position: relative;
  1561. justify-content: center;
  1562. .i-origin0 {
  1563. width: 0.5rem;
  1564. height: 0.5rem;
  1565. background: #0ff;
  1566. background-image: linear-gradient(
  1567. 180deg,
  1568. rgba($color: #0085f6, $alpha: 1),
  1569. rgba($color: #0ff, $alpha: 1)
  1570. );
  1571. position: absolute;
  1572. border: 1px solid #01dcde;
  1573. top: -0.4rem;
  1574. z-index: 8;
  1575. left: 50%;
  1576. transform: translateX(-50%) rotate(45deg);
  1577. box-shadow: 0 0 15px #00ffb7;
  1578. animation: shineB 2s infinite;
  1579. }
  1580. .i-origin1 {
  1581. width: 0.3rem;
  1582. height: 0.3rem;
  1583. background: #0ff;
  1584. background-image: linear-gradient(
  1585. 180deg,
  1586. rgba($color: #676767, $alpha: 1),
  1587. rgba($color: #cccccc, $alpha: 1)
  1588. );
  1589. border-radius: 100%;
  1590. position: absolute;
  1591. border: 1px solid #ebebeb;
  1592. top: -0.4rem;
  1593. z-index: 8;
  1594. left: 50%;
  1595. transform: translateX(-50%);
  1596. }
  1597. .i-origin2 {
  1598. width: 0.3rem;
  1599. height: 0.3rem;
  1600. background: #0ff;
  1601. background-image: linear-gradient(
  1602. 180deg,
  1603. rgba($color: #f60000, $alpha: 1),
  1604. rgba($color: #ff8e0c, $alpha: 1)
  1605. );
  1606. border-radius: 100%;
  1607. position: absolute;
  1608. border: 1px solid #ff6e06;
  1609. top: -0.4rem;
  1610. z-index: 8;
  1611. left: 50%;
  1612. transform: translateX(-50%) scale(1, 1);
  1613. box-shadow: 0 0 15px #ffef07;
  1614. display: flex;
  1615. justify-content: center;
  1616. align-items: center;
  1617. transition: all 1s;
  1618. animation: shineRed 1s infinite;
  1619. i {
  1620. color: #fed507;
  1621. }
  1622. }
  1623. @keyframes shineRed {
  1624. 0% {
  1625. box-shadow: 0 0 3px #ffef07;
  1626. }
  1627. 50% {
  1628. transform: translateX(-50%) scale(1.5, 1.5);
  1629. box-shadow: 0 0 15px #ff6702;
  1630. }
  1631. 100% {
  1632. box-shadow: 0 0 3px #ffef07;
  1633. }
  1634. }
  1635. .i-name {
  1636. font-size: 1.1rem;
  1637. text-align: center;
  1638. color: #ffffff;
  1639. font-family: $fontFk;
  1640. transition: all 0.5s;
  1641. }
  1642. .name-gray {
  1643. color: #999999 !important;
  1644. }
  1645. .name-red {
  1646. color: #ff8e01;
  1647. }
  1648. }
  1649. }
  1650. }
  1651. //一体化窗口滑过
  1652. .img-l-con:hover {
  1653. display: flex;
  1654. flex-direction: column;
  1655. align-items: center;
  1656. position: relative;
  1657. cursor: pointer;
  1658. transform: scale(1.1, 1.1) translateY(-10px);
  1659. transition: all 0.5s;
  1660. .el-image {
  1661. // box-shadow: 0 0 10px #00ffb7;
  1662. // border: 2px solid #95ecff;
  1663. // animation: shineimg2 2s infinite;
  1664. // img {
  1665. // width: 100%;
  1666. // }
  1667. animation: cccbt 2s infinite;
  1668. }
  1669. .show-button {
  1670. transform: translateX(-50%) translateY(-8px);
  1671. opacity: 1;
  1672. z-index: 11;
  1673. transition: all 0.5s;
  1674. background: rgba(0, 0, 0, 0.5);
  1675. .button-item {
  1676. width: 100%;
  1677. position: relative;
  1678. z-index: 14;
  1679. display: flex;
  1680. justify-content: space-evenly;
  1681. align-items: center;
  1682. padding: 5%;
  1683. transform: translateY(0);
  1684. }
  1685. }
  1686. .l1 {
  1687. filter: grayscale(100%) !important;
  1688. animation: none !important;
  1689. }
  1690. .l2 {
  1691. filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg);
  1692. animation: shineimg 1s infinite;
  1693. }
  1694. .img-line0 {
  1695. width: 1px;
  1696. background-color: #69cbff !important;
  1697. animation: shineimg2 1s infinite;
  1698. }
  1699. .img-line1 {
  1700. background-color: #495051 !important;
  1701. }
  1702. .img-line2 {
  1703. background-color: #f67300 !important;
  1704. }
  1705. //名称
  1706. .i-name-con {
  1707. width: 100%;
  1708. height: 25%;
  1709. display: flex;
  1710. justify-content: space-between;
  1711. z-index: 10;
  1712. .name-item {
  1713. width: 100%;
  1714. height: 100%;
  1715. // background: red;
  1716. display: flex;
  1717. flex-direction: column;
  1718. position: relative;
  1719. justify-content: center;
  1720. .i-origin0 {
  1721. width: 10px;
  1722. height: 10px;
  1723. background: #0ff;
  1724. background-image: linear-gradient(
  1725. 180deg,
  1726. rgba($color: #0077f6, $alpha: 1),
  1727. rgba($color: #d3ff0c, $alpha: 1)
  1728. );
  1729. border-radius: 100%;
  1730. position: absolute;
  1731. border: 1px solid #01dcde;
  1732. top: -0.4rem;
  1733. z-index: 8;
  1734. left: 50%;
  1735. transform: translateX(-50%) rotate(45deg);
  1736. box-shadow: 0 0 15px #00ffb7;
  1737. animation: shineB 2s infinite;
  1738. }
  1739. .i-origin1 {
  1740. width: 10px;
  1741. height: 10px;
  1742. background: #0ff;
  1743. background-image: linear-gradient(
  1744. 180deg,
  1745. rgba($color: #676767, $alpha: 1),
  1746. rgba($color: #cccccc, $alpha: 1)
  1747. );
  1748. border-radius: 100%;
  1749. position: absolute;
  1750. border: 1px solid #ebebeb;
  1751. top: -0.4rem;
  1752. z-index: 8;
  1753. left: 50%;
  1754. transform: translateX(-50%);
  1755. animation: none !important;
  1756. }
  1757. .i-origin2 {
  1758. width: 10px;
  1759. height: 10px;
  1760. background: #0ff;
  1761. background-image: linear-gradient(
  1762. 180deg,
  1763. rgba($color: #f60000, $alpha: 1),
  1764. rgba($color: #ff8e0c, $alpha: 1)
  1765. );
  1766. border-radius: 100%;
  1767. position: absolute;
  1768. border: 1px solid #ff6e06;
  1769. top: -0.4rem;
  1770. z-index: 8;
  1771. left: 50%;
  1772. transform: translateX(-50%);
  1773. box-shadow: 0 0 15px #ffef07;
  1774. display: flex;
  1775. justify-content: center;
  1776. align-items: center;
  1777. i {
  1778. color: #fed507;
  1779. }
  1780. animation: shineRed 1s infinite;
  1781. }
  1782. .i-name {
  1783. text-align: center;
  1784. font-family: $fontFk;
  1785. animation: shinetext2 1s infinite;
  1786. }
  1787. .name-gray {
  1788. color: #999999 !important;
  1789. animation: none !important;
  1790. }
  1791. .name-red {
  1792. color: #ff8e01;
  1793. animation: shinetextred 1s infinite;
  1794. }
  1795. }
  1796. }
  1797. }
  1798. }
  1799. }
  1800. .ring-outside {
  1801. width: 445px;
  1802. height: 510px;
  1803. position: absolute;
  1804. top: 50%;
  1805. left: 50%;
  1806. transform: translateX(-50%);
  1807. }
  1808. .center-demon-container {
  1809. position: absolute;
  1810. width: 300px;
  1811. height: 300px;
  1812. top: 23%;
  1813. left: 50%;
  1814. z-index: 5;
  1815. transform: translateX(-50%);
  1816. display: flex;
  1817. align-items: center;
  1818. justify-content: center;
  1819. .center-demon {
  1820. animation: ccc 3s infinite;
  1821. -webkit-filter: hue-rotate(20deg);
  1822. position: absolute;
  1823. z-index: 3;
  1824. }
  1825. .center-demon1 {
  1826. animation: spin 5s infinite;
  1827. position: absolute;
  1828. z-index: 3;
  1829. }
  1830. .center-demon2 {
  1831. animation: spin2 5s infinite;
  1832. position: absolute;
  1833. z-index: 3;
  1834. }
  1835. .center-demon3 {
  1836. animation: spin 10s infinite;
  1837. position: absolute;
  1838. z-index: 3;
  1839. }
  1840. .center-demon4 {
  1841. animation: spin2 8s infinite;
  1842. position: absolute;
  1843. z-index: 3;
  1844. }
  1845. .center-demon5 {
  1846. position: absolute;
  1847. z-index: 3;
  1848. }
  1849. }
  1850. .bg-bt {
  1851. position: absolute;
  1852. top: 45%;
  1853. left: 50%;
  1854. transform: translateX(-50%);
  1855. // -webkit-filter: hue-rotate(20deg);
  1856. animation: cccbt 3.5s infinite;
  1857. }
  1858. @keyframes ccc {
  1859. 0% {
  1860. -webkit-filter: hue-rotate(0deg) brightness(1);
  1861. }
  1862. 50% {
  1863. -webkit-filter: hue-rotate(0deg) brightness(1.5);
  1864. }
  1865. 100% {
  1866. -webkit-filter: hue-rotate(0deg) brightness(1);
  1867. }
  1868. }
  1869. @keyframes cccbt {
  1870. 0% {
  1871. -webkit-filter: hue-rotate(0deg) brightness(1);
  1872. }
  1873. 25% {
  1874. -webkit-filter: hue-rotate(0deg) brightness(1.1);
  1875. }
  1876. 50% {
  1877. -webkit-filter: hue-rotate(0deg) brightness(1);
  1878. }
  1879. 75% {
  1880. -webkit-filter: hue-rotate(0deg) brightness(1.3);
  1881. }
  1882. 100% {
  1883. -webkit-filter: hue-rotate(0deg) brightness(1);
  1884. }
  1885. }
  1886. @keyframes cc {
  1887. 0% {
  1888. -webkit-filter: hue-rotate(0deg);
  1889. top: 35%;
  1890. }
  1891. 20% {
  1892. -webkit-filter: hue-rotate(343deg);
  1893. top: 36%;
  1894. }
  1895. 50% {
  1896. -webkit-filter: hue-rotate(0deg);
  1897. top: 35%;
  1898. }
  1899. 70% {
  1900. -webkit-filter: hue-rotate(216deg);
  1901. top: 36%;
  1902. }
  1903. 100% {
  1904. -webkit-filter: hue-rotate(0deg);
  1905. top: 35%;
  1906. }
  1907. }
  1908. @media screen and (min-width: 1600px) and (max-width: 1920px) {
  1909. // 容器
  1910. .yyzx-center-container {
  1911. // transform:scale(2,2);
  1912. width: 50%;
  1913. height: 45rem;
  1914. position: absolute;
  1915. top: 5%;
  1916. left: 50%;
  1917. transform: translateX(-50%);
  1918. }
  1919. .team-last {
  1920. position: absolute !important;
  1921. z-index: 200 !important;
  1922. left: 50% !important;
  1923. transform: translateX(-50%) !important;
  1924. bottom: -5rem !important;
  1925. }
  1926. }
  1927. @media screen and (min-width: 1930px) and (max-width: 2660px) {
  1928. .go-integration-button .img-con .img-l-con .i-name-con .name-item .i-name,
  1929. .go-center-top .icon-list-con .icon-list-img .icon-list-tit {
  1930. font-size: 1.6rem;
  1931. }
  1932. .yy-header .yy-header-tit .yy-header-tit-text {
  1933. font-size: 3rem;
  1934. line-height: 5rem;
  1935. }
  1936. // 容器
  1937. .yyzx-center-container {
  1938. width: 50%;
  1939. height: 45rem;
  1940. position: absolute;
  1941. top: 20%;
  1942. left: 50%;
  1943. transform: translateX(-50%) scale(1.3, 1.3);
  1944. }
  1945. .team-last {
  1946. position: absolute !important;
  1947. z-index: 200 !important;
  1948. left: 50% !important;
  1949. transform: translateX(-50%) !important;
  1950. bottom: -10rem !important;
  1951. }
  1952. }
  1953. @media screen and (min-width: 2670px) and (max-width: 3850px) {
  1954. // 容器
  1955. .go-integration-button .img-con .img-l-con .i-name-con .name-item .i-name,
  1956. .go-center-top .icon-list-con .icon-list-img .icon-list-tit {
  1957. font-size: 2rem;
  1958. }
  1959. .yy-header .yy-header-tit .yy-header-tit-text {
  1960. font-size: 3rem;
  1961. line-height: 5rem;
  1962. }
  1963. .yyzx-center-container {
  1964. width: 50%;
  1965. height: 45rem;
  1966. position: absolute;
  1967. top: 25%;
  1968. left: 50%;
  1969. transform: translateX(-50%) scale(1.8, 1.8);
  1970. }
  1971. .team-last {
  1972. position: absolute !important;
  1973. z-index: 200 !important;
  1974. left: 50% !important;
  1975. transform: translateX(-50%) !important;
  1976. bottom: -15rem !important;
  1977. }
  1978. .starfield {
  1979. display: none !important;
  1980. }
  1981. }
  1982. .center-building {
  1983. height: 50%;
  1984. position: absolute;
  1985. top: 62%;
  1986. left: 50%;
  1987. transform: translate(-50%, -50%);
  1988. z-index: 2;
  1989. height: 510px;
  1990. animation: abc 15s infinite;
  1991. -webkit-filter: hue-rotate(0deg);
  1992. }
  1993. @keyframes abc {
  1994. 0% {
  1995. -webkit-filter: hue-rotate(0deg);
  1996. }
  1997. 20% {
  1998. -webkit-filter: hue-rotate(343deg);
  1999. }
  2000. 50% {
  2001. -webkit-filter: hue-rotate(30deg);
  2002. }
  2003. 70% {
  2004. -webkit-filter: hue-rotate(216deg);
  2005. }
  2006. 100% {
  2007. -webkit-filter: hue-rotate(0deg);
  2008. }
  2009. }
  2010. .yying-bg {
  2011. width: 100%;
  2012. height: 100%;
  2013. // background-color: #010739;
  2014. background: url("../assets/yyzx2/bg.jpg") no-repeat center;
  2015. background-size: cover;
  2016. overflow: hidden;
  2017. position: absolute;
  2018. font-size: 16px;
  2019. }
  2020. #atome {
  2021. width: 100%;
  2022. height: 100%;
  2023. position: absolute;
  2024. z-index: 1;
  2025. }
  2026. .atome-wrap {
  2027. height: 200px;
  2028. width: 200px;
  2029. margin: auto;
  2030. position: absolute;
  2031. transform-style: preserve-3d;
  2032. top: 0;
  2033. left: 0;
  2034. right: 0;
  2035. bottom: 0;
  2036. animation: turn 8s infinite;
  2037. animation-timing-function: linear;
  2038. }
  2039. .atome-wrap:after,
  2040. .atome-wrap:before {
  2041. content: "";
  2042. position: absolute;
  2043. height: 8px;
  2044. width: 8px;
  2045. border-radius: 100%;
  2046. background-color: #fff;
  2047. box-shadow: 0 0 10px #000, 0 0 15px #4fff34, 0 0 30px #31ff42;
  2048. top: 50%;
  2049. left: 50%;
  2050. margin-top: -4px;
  2051. margin-left: -4px;
  2052. }
  2053. .atome-wrap:before {
  2054. transform: rotateX(90deg);
  2055. }
  2056. .circle {
  2057. height: 200px;
  2058. width: 200px;
  2059. position: absolute;
  2060. box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  2061. border-radius: 100%;
  2062. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2063. animation-timing-function: linear;
  2064. }
  2065. .circle:before {
  2066. content: "";
  2067. position: absolute;
  2068. height: 4px;
  2069. width: 8px;
  2070. border-radius: 100%;
  2071. background-color: #fff;
  2072. box-shadow: 0 0 10px #c1fffd, 0 0 15px #3bff1d, 0 0 30px #f9ff74,
  2073. 0 0 40px #69cbff;
  2074. animation: electrons 3s infinite;
  2075. animation-timing-function: linear;
  2076. }
  2077. .circle:after {
  2078. content: "";
  2079. position: absolute;
  2080. height: 8px;
  2081. width: 8px;
  2082. border-radius: 100%;
  2083. background-color: #fff;
  2084. top: 50%;
  2085. left: 50%;
  2086. margin-top: -4px;
  2087. margin-left: -4px;
  2088. box-shadow: 0 0 10px #000, 0 0 15px #64fff9, 0 0 30px #0ff;
  2089. }
  2090. .circle_0 {
  2091. transform: translateZ(0px) rotateY(0deg) rotateX(0deg);
  2092. animation: rotate_0 1.8s infinite;
  2093. animation-timing-function: linear;
  2094. height: 300px;
  2095. width: 300px;
  2096. top: -50px;
  2097. left: -50px;
  2098. }
  2099. .circle_0:before {
  2100. top: 50%;
  2101. left: 0;
  2102. margin-left: -3px;
  2103. margin-top: 0;
  2104. height: 8px;
  2105. width: 3px;
  2106. }
  2107. .circle_1 {
  2108. transform: translateZ(0px) rotateY(90deg) rotateX(0deg);
  2109. animation: rotate_1 1.8s infinite;
  2110. animation-timing-function: linear;
  2111. height: 300px;
  2112. width: 300px;
  2113. top: -50px;
  2114. left: -50px;
  2115. }
  2116. .circle_1:before {
  2117. top: 50%;
  2118. right: 0;
  2119. margin-right: -2px;
  2120. margin-top: 0px;
  2121. width: 3px;
  2122. height: 8px;
  2123. }
  2124. .circle_2 {
  2125. transform: translateZ(0px) rotateY(45deg) rotateX(0deg);
  2126. animation: rotate_2 1.2s infinite;
  2127. animation-timing-function: linear;
  2128. }
  2129. .circle_2:before {
  2130. top: 50%;
  2131. right: 0;
  2132. margin-right: -3px;
  2133. margin-top: 0;
  2134. height: 8px;
  2135. width: 3px;
  2136. }
  2137. .circle_3 {
  2138. transform: translateZ(0px) rotateY(135deg) rotateX(0deg);
  2139. animation: rotate_3 1.2s infinite;
  2140. animation-timing-function: linear;
  2141. }
  2142. .circle_3:before {
  2143. bottom: 50%;
  2144. right: 0;
  2145. margin-right: -3px;
  2146. margin-bottom: 0;
  2147. height: 8px;
  2148. width: 3px;
  2149. }
  2150. .circle_4 {
  2151. transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px);
  2152. animation: rotate_4 0.5s infinite;
  2153. animation-timing-function: linear;
  2154. height: 100px;
  2155. width: 100px;
  2156. top: 50px;
  2157. left: 50px;
  2158. }
  2159. .circle_4:before {
  2160. top: 50%;
  2161. left: 0;
  2162. margin-left: -3px;
  2163. margin-top: 0;
  2164. height: 8px;
  2165. width: 3px;
  2166. }
  2167. .circle_5 {
  2168. transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px);
  2169. animation: rotate_5 0.5s infinite;
  2170. animation-timing-function: linear;
  2171. height: 100px;
  2172. width: 100px;
  2173. top: 50px;
  2174. left: 50px;
  2175. }
  2176. .circle_5:before {
  2177. top: 50%;
  2178. right: 0;
  2179. margin-right: -2px;
  2180. margin-top: 0px;
  2181. width: 3px;
  2182. height: 8px;
  2183. }
  2184. .circle_6 {
  2185. transform: rotateX(50deg) rotateY(90deg) translateZ(0px) translateY(0px);
  2186. animation: rotate_5 0.5s infinite;
  2187. animation-timing-function: linear;
  2188. height: 100px;
  2189. width: 100px;
  2190. top: 50px;
  2191. left: 50px;
  2192. }
  2193. .circle_6:before {
  2194. top: 50%;
  2195. right: 0;
  2196. margin-right: -2px;
  2197. margin-top: 0px;
  2198. width: 3px;
  2199. height: 8px;
  2200. }
  2201. @keyframes turn {
  2202. 0% {
  2203. transform: rotateX(0deg) rotateZ(0deg);
  2204. }
  2205. 100% {
  2206. transform: rotateX(360deg) rotateZ(360deg);
  2207. }
  2208. }
  2209. @keyframes electrons {
  2210. 0% {
  2211. transform: rotateY(0deg);
  2212. opacity: 1;
  2213. }
  2214. 50% {
  2215. transform: rotateY(180deg);
  2216. opacity: 0.2;
  2217. }
  2218. 100% {
  2219. transform: rotateY(360deg);
  2220. opacity: 1;
  2221. }
  2222. }
  2223. @keyframes rotate_0 {
  2224. 0% {
  2225. transform: translateZ(0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
  2226. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2227. }
  2228. 50% {
  2229. transform: translateZ(0px) rotateY(0deg) rotateX(0deg) rotateZ(180deg);
  2230. border: dashed 1.5px rgba(16, 244, 255, 1);
  2231. }
  2232. 100% {
  2233. transform: translateZ(0px) rotateY(0deg) rotateX(0deg) rotateZ(360deg);
  2234. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2235. }
  2236. }
  2237. @keyframes rotate_1 {
  2238. 0% {
  2239. transform: translateZ(0px) rotateY(90deg) rotateX(0deg) rotateZ(0deg);
  2240. border: dashed 3px rgba(0, 255, 255, 0.1);
  2241. }
  2242. 50% {
  2243. transform: translateZ(0px) rotateY(90deg) rotateX(0deg) rotateZ(-180deg);
  2244. border: dashed 1.5px rgba(0, 255, 29, 1);
  2245. }
  2246. 100% {
  2247. transform: translateZ(0px) rotateY(90deg) rotateX(0deg) rotateZ(-360deg);
  2248. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2249. }
  2250. }
  2251. @keyframes rotate_2 {
  2252. 0% {
  2253. transform: translateZ(0px) rotateY(0deg) rotateX(135deg) rotateZ(0deg);
  2254. border: dashed 6px rgba(0, 255, 255, 0.1);
  2255. }
  2256. 50% {
  2257. transform: translateZ(0px) rotateY(0deg) rotateX(135deg) rotateZ(180deg);
  2258. border: dashed 1.5px rgba(0, 255, 255, 1);
  2259. }
  2260. 100% {
  2261. transform: translateZ(0px) rotateY(0deg) rotateX(135deg) rotateZ(360deg);
  2262. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2263. }
  2264. }
  2265. @keyframes rotate_3 {
  2266. 0% {
  2267. transform: translateZ(0px) rotateY(0deg) rotateX(45deg) rotateZ(0deg);
  2268. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2269. }
  2270. 50% {
  2271. transform: translateZ(0px) rotateY(0deg) rotateX(45deg) rotateZ(-180deg);
  2272. border: dashed 6px rgba(130, 255, 209, 1);
  2273. }
  2274. 100% {
  2275. transform: translateZ(0px) rotateY(0deg) rotateX(45deg) rotateZ(-360deg);
  2276. border: dashed 5px rgba(0, 255, 255, 0.1);
  2277. }
  2278. }
  2279. @keyframes rotate_4 {
  2280. 0% {
  2281. transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px)
  2282. rotateZ(0deg);
  2283. border: dashed 1.5px rgba(255, 255, 255, 1);
  2284. }
  2285. 50% {
  2286. transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px)
  2287. rotateZ(180deg);
  2288. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2289. }
  2290. 100% {
  2291. transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px)
  2292. rotateZ(360deg);
  2293. border: dashed 1.5px rgba(255, 255, 255, 1);
  2294. }
  2295. }
  2296. @keyframes rotate_5 {
  2297. 0% {
  2298. transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
  2299. rotateZ(0deg);
  2300. border: dashed 1.5px rgba(245, 255, 39, 1);
  2301. }
  2302. 50% {
  2303. transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
  2304. rotateZ(-180deg);
  2305. border: dashed 1.5px rgba(0, 255, 255, 0.1);
  2306. }
  2307. 100% {
  2308. transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
  2309. rotateZ(-360deg);
  2310. border: dashed 1.5px rgba(255, 255, 255, 1);
  2311. }
  2312. }
  2313. @keyframes rotate_6 {
  2314. 0% {
  2315. transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
  2316. rotateZ(0deg);
  2317. border: dashed 1.5px rgba(255, 193, 164, 1);
  2318. }
  2319. 50% {
  2320. transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
  2321. rotateZ(-180deg);
  2322. border: dashed 1.5px rgba(43, 32, 27, 0.1);
  2323. }
  2324. 100% {
  2325. transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
  2326. rotateZ(-360deg);
  2327. border: dashed 1.5px rgba(255, 81, 23, 1);
  2328. }
  2329. }
  2330. .c {
  2331. position: absolute;
  2332. top: 50%;
  2333. left: 50%;
  2334. transform: translate(-50%, -50%) rotateX(45deg);
  2335. /* Native CSS properties don't support the customization of border-style. Therefore, we use a trick with an SVG image inside background-image property.
  2336. https://kovart.github.io/dashed-border-generator/
  2337. */
  2338. /* background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='100' ry='100' stroke='aqua' stroke-width='1' stroke-dasharray='1' stroke-dashoffset='1' stroke-linecap='butt'/%3e%3c/svg%3e"); */
  2339. border-radius: 50%;
  2340. border: 1px dotted aqua;
  2341. animation: dripBounce 5s infinite;
  2342. }
  2343. @keyframes dripBounce {
  2344. /* 0%{top:50%} */
  2345. 10% {
  2346. top: calc(50% + 5px);
  2347. }
  2348. 20% {
  2349. top: calc(50% - 5px);
  2350. }
  2351. 35% {
  2352. top: 50%;
  2353. }
  2354. }
  2355. .c13 {
  2356. height: 130px;
  2357. width: 260px;
  2358. animation-delay: -7.6s;
  2359. top: calc(50% + 12px);
  2360. }
  2361. .c14 {
  2362. height: 140px;
  2363. width: 280px;
  2364. animation-delay: -7.4s;
  2365. top: calc(50% + 13px);
  2366. }
  2367. .c15 {
  2368. height: 150px;
  2369. width: 300px;
  2370. animation-delay: -7.2s;
  2371. top: calc(50% + 14px);
  2372. }
  2373. .c16 {
  2374. height: 160px;
  2375. width: 320px;
  2376. animation-delay: -7s;
  2377. top: calc(50% + 15px);
  2378. }
  2379. .c17 {
  2380. height: 170px;
  2381. width: 340px;
  2382. animation-delay: -6.8s;
  2383. top: calc(50% + 16px);
  2384. }
  2385. .c18 {
  2386. height: 180px;
  2387. width: 360px;
  2388. animation-delay: -6.6s;
  2389. top: calc(50% + 17px);
  2390. }
  2391. .c19 {
  2392. height: 190px;
  2393. width: 380px;
  2394. animation-delay: -6.4s;
  2395. top: calc(50% + 18px);
  2396. }
  2397. .c20 {
  2398. height: 200px;
  2399. width: 400px;
  2400. animation-delay: -6.2s;
  2401. top: calc(50% + 19px);
  2402. }
  2403. .c21 {
  2404. height: 210px;
  2405. width: 420px;
  2406. animation-delay: -6s;
  2407. top: calc(50% + 20px);
  2408. }
  2409. .c22 {
  2410. height: 220px;
  2411. width: 440px;
  2412. animation-delay: -5.8s;
  2413. top: calc(50% + 21px);
  2414. }
  2415. .c23 {
  2416. height: 230px;
  2417. width: 460px;
  2418. animation-delay: -5.6s;
  2419. top: calc(50% + 22px);
  2420. }
  2421. .c24 {
  2422. height: 240px;
  2423. width: 480px;
  2424. animation-delay: -5.4s;
  2425. top: calc(50% + 23px);
  2426. }
  2427. .c25 {
  2428. height: 250px;
  2429. width: 500px;
  2430. animation-delay: -5.2s;
  2431. top: calc(50% + 24px);
  2432. }
  2433. .c26 {
  2434. height: 260px;
  2435. width: 520px;
  2436. animation-delay: -5s;
  2437. top: calc(50% + 25px);
  2438. }
  2439. .c27 {
  2440. height: 270px;
  2441. width: 540px;
  2442. animation-delay: -4.8s;
  2443. top: calc(50% + 26px);
  2444. }
  2445. .c28 {
  2446. height: 280px;
  2447. width: 560px;
  2448. animation-delay: -4.6s;
  2449. top: calc(50% + 27px);
  2450. }
  2451. .c29 {
  2452. height: 290px;
  2453. width: 580px;
  2454. animation-delay: -4.4s;
  2455. top: calc(50% + 28px);
  2456. }
  2457. .c30 {
  2458. height: 300px;
  2459. width: 600px;
  2460. animation-delay: -4.2s;
  2461. top: calc(50% + 29px);
  2462. }
  2463. .l {
  2464. height: 20px;
  2465. width: 1px;
  2466. position: absolute;
  2467. top: 0%;
  2468. left: 50%;
  2469. transform: translate(-50%, -70%);
  2470. background: aqua;
  2471. animation: drip 5s infinite;
  2472. animation-delay: -10.3s;
  2473. }
  2474. @keyframes drip {
  2475. 0% {
  2476. opacity: 1;
  2477. top: 0%;
  2478. }
  2479. 10% {
  2480. opacity: 0.1;
  2481. top: calc(50% + 10px);
  2482. }
  2483. 100% {
  2484. opacity: 0;
  2485. }
  2486. }
  2487. .bg-bottom {
  2488. position: absolute;
  2489. bottom: 0;
  2490. width: 100%;
  2491. height: 100%;
  2492. // background: url('../assets/yyzx2/b-bg.png') no-repeat center;
  2493. background-size: cover;
  2494. z-index: 1;
  2495. }
  2496. </style>