123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772 |
- <template>
- <div class="yying-bg">
- <!-- 头部 -->
- <div class="yy-header">
- <div class="head-left">
- <div class="head-time">
- <!-- 风向 -->
- <span><i class="head-fx"></i>东南西北风</span>
- <span
- ><i class="head-fs"></i>{{ weatherinformationPower
- }}<u>m/s</u></span
- >
- <span
- ><i class="head-jsl"></i>{{ weatherinformationTemperature
- }}<u>%</u></span
- >
- <span
- ><i class="head-wd"></i>{{ weatherinformationLow }}<u>℃</u></span
- >
- </div>
- <!-- <el-select
- v-model="place"
- size="small"
- placeholder="请选择"
- class="select-newpage"
- :popper-append-to-body="false"
- >
- <el-option
- v-for="item in deptList"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- >
- </el-option>
- </el-select> -->
- </div>
- <div class="yy-header-tit">
- <div class="yy-header-tit-text">{{ headerTitle }}</div>
- </div>
- <!-- <div class="head-right">-->
- <!-- <div-->
- <!-- style="-->
- <!-- color: #eee;-->
- <!-- height: 2rem;-->
- <!-- line-height: 2rem;-->
- <!-- border: 0px;-->
- <!-- padding: 0 10px;-->
- <!-- background-size: 100% 100%;-->
- <!-- background: url(/static/img/leader-topk.d4e183b5.png) no-repeat-->
- <!-- center;-->
- <!-- "-->
- <!-- >-->
- <!-- <span-->
- <!-- ><i class="el-icon-box"></i>-->
- <!-- <a-->
- <!-- style="font-size: 14px; margin-left: 0.5rem"-->
- <!-- href="./General_DSS-LightWeight-Client_x64_V2.6.0.2205.R.20220621.exe"-->
- <!-- >下载插件</a-->
- <!-- ></span-->
- <!-- >-->
- <!-- </div>-->
- <!-- </div>-->
- <!---demo-管辖区导航 开始--->
- <div class="new-header-nav-list">
- <div class="new-header-nav-list-btn" v-for="(item ,index) in deptList" :key="index">
- {{ item.label }}
- </div>
- </div>
- <rightClock></rightClock>
- </div>
- <div style="width: 100%; height: 100%; position: absolute; z-index: 1">
- <div class="starfield">
- <div class="static"></div>
- <div class="moving-1"></div>
- <div class="moving-2"></div>
- <div class="moving-3"></div>
- </div>
- </div>
- <div class="go-center-top" ref="centerHeight">
- <div class="c-left" ref="sideWidth">
- <div
- class="icon-list-con"
- v-for="(item, index) in iList.slice(0, 4)"
- ref="conWid"
- @click="goCenter(item.to)"
- >
- <div class="icon-list-img" style="margin-top: 2rem;">
- <el-image
- :src="item.imgSrc"
- :class="{ l1: item.limits === 1, l2: item.limits === 2 }"
- fit="scale-down"
- id="lineHeight222"
- @load="imgLoad2"
- style="transform: rotateY(180deg)"
- >
- </el-image>
- <div
- class="icon-list-tit"
- style="margin-top: 1rem;"
- :class="{
- 'tit-gray': item.limits === 1,
- 'tit-red': item.limits === 2,
- }"
- >
- {{ item.name }}
- </div>
- </div>
- <div
- class="icon-line"
- :class="{
- 'icon-line1': item.limits === 1,
- 'icon-line2': item.limits === 2,
- }"
- style="transform: rotateY(180deg)"
- >
- <dv-border-box-8
- class="i-x-line"
- style="width: 70px; height: 3px"
- :dur="2.5"
- v-if="item.limits === 0"
- ></dv-border-box-8>
- <dv-border-box-7
- class="i-x-line"
- style="width: 70px; height: 3px"
- :dur="2.5"
- v-if="item.limits === 1"
- ></dv-border-box-7>
- <dv-border-box-7
- class="i-x-line"
- style="width: 70px; height: 3px"
- :dur="2.5"
- v-if="item.limits === 2"
- :color="['red', 'red']"
- ></dv-border-box-7>
- </div>
- <div class="i-origin0 to-right-31" v-if="item.limits === 0"></div>
- <div
- class="i-origin1 to-right-31"
- v-else-if="item.limits === 1"
- ></div>
- <div class="i-origin2 to-right-31" v-else-if="item.limits === 2">
- <i class="el-icon-warning-outline"></i>
- </div>
- </div>
- </div>
- <div
- class="center-ring-click"
- @click="ringClick(ldUrl)"
- v-if="ldUrl != ''"
- ></div>
- <div class="container-c">
- <div class="circle1"></div>
- <!-- <div class="circle2"></div> -->
- <!-- <div class="circle3"></div> -->
- </div>
- <div class="c-right">
- <div
- class="icon-list-con"
- v-for="(item, index) in iList.slice(4, 8)"
- ref="conWid2"
- @click="goCenter(item.to)"
- >
- <div class="i-origin0 to-left-31" v-if="item.limits === 0"></div>
- <div class="i-origin1 to-left-31" v-else-if="item.limits === 1"></div>
- <div class="i-origin2 to-left-31" v-else-if="item.limits === 2">
- <i class="el-icon-warning-outline"></i>
- </div>
- <div
- class="icon-line"
- :class="{
- 'icon-line1': item.limits === 1,
- 'icon-line2': item.limits === 2,
- }"
- >
- <dv-border-box-8
- class="i-x-line"
- style="width: 70px; height: 3px"
- :dur="2.5"
- v-if="item.limits === 0"
- ></dv-border-box-8>
- <dv-border-box-7
- class="i-x-line"
- style="width: 70px; height: 3px"
- :dur="2.5"
- v-if="item.limits === 1"
- ></dv-border-box-7>
- <dv-border-box-7
- class="i-x-line"
- style="width: 70px; height: 3px"
- :dur="2.5"
- v-if="item.limits === 2"
- :color="['red', 'red']"
- ></dv-border-box-7>
- </div>
- <div class="icon-list-img" style="margin-top: 2rem;">
- <el-image
- :src="item.imgSrc"
- :class="{ l1: item.limits === 1, l2: item.limits === 2 }"
- fit="scale-down"
- >
- </el-image>
- <div
- class="icon-list-tit"
- style="margin-top: 1rem;"
- :class="{
- 'tit-gray': item.limits === 1,
- 'tit-red': item.limits === 2,
- }"
- >
- {{ item.name }}
- </div>
- </div>
- </div>
- </div>
- <!-- <div
- class="icon-list-con team-last"
- @click="
- $router.push({
- path: centerList[8].to,
- })
- "
- >
- <div
- class="icon-list-img"
- style="
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- "
- >
- <el-image
- :src="centerList[8].imgSrc"
- :class="{
- l1: centerList[8].limits === 1,
- l2: centerList[8].limits === 2,
- }"
- fit="scale-down"
- :style="'width:' + bottomH + 'px'"
- >
- </el-image>
- <div
- class="icon-list-tit"
- :class="{
- 'tit-gray': centerList[8].limits === 1,
- 'tit-red': centerList[8].limits === 2,
- }"
- >
- {{ centerList[8].name }}
- </div>
- </div>
- </div> -->
- </div>
- <!-- 上一体化入口 -->
- <div class="go-integration-button" ref="lineHeight1">
- <!-- 入口容器 -->
- <div class="img-con">
- <!-- 入口单元格 -->
- <div
- class="img-l-con"
- v-for="(item, index) in centerList"
- ref="lineHeight222"
- @click="goCenter(item.to)"
- >
- <el-image
- :src="item.imgSrc"
- :class="{ l1: item.limits === 1, l2: item.limits === 2 }"
- style="width:110px"
- ></el-image>
- <div class="i-name-con" ref="lineHeight4">
- <div class="name-item">
- <div
- class="i-name"
- :class="{
- 'name-gray': item.limits === 1,
- 'name-red': item.limits === 2,
- }"
- >
- {{ item.name }}
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- <!-- 中间动画 -->
- <div class="yyzx-center-container">
- <!-- 圆环 -->
- <!-- <div class="ring-outside">
- <div class="c c13"></div>
- <div class="c c14"></div>
- <div class="c c15"></div>
- <div class="c c16"></div>
- <div class="c c17"></div>
- <div class="c c18"></div>
- <div class="c c19"></div>
- <div class="c c20"></div>
- <div class="c c21"></div>
- <div class="c c22"></div>
- <div class="c c23"></div>
- <div class="c c24"></div>
- <div class="c c25"></div>
- <div class="c c26"></div>
- <div class="c c27"></div>
- <div class="c c28"></div>
- <div class="c c29"></div>
- <div class="c c30"></div>
- <div class="l"></div>
- </div> -->
- <div class="center-demon-container">
- <div class="center-demon" style="">
- <img src="../assets/yyzx2/logo-bg.png" />
- </div>
- <div class="center-demon1" style="">
- <img src="../assets/yyzx2/ring-in.png" />
- </div>
- <div class="center-demon2" style="">
- <img src="../assets/yyzx2/ring-kd.png" />
- </div>
- <div class="center-demon3" style="">
- <img src="../assets/yyzx2/ring-out.png" />
- </div>
- <div class="center-demon4" style="">
- <img src="../assets/yyzx2/ring-t.png" />
- </div>
- <div class="center-demon5" style="">
- <img src="../assets/yyzx2/ring-t-out.png" />
- </div>
- <div id="atome">
- <div class="atome-wrap">
- <div class="circle circle_0"></div>
- <div class="circle circle_1"></div>
- <div class="circle circle_2"></div>
- <div class="circle circle_3"></div>
- <div class="circle circle_4"></div>
- <div class="circle circle_5"></div>
- <div class="circle circle_6"></div>
- </div>
- </div>
- </div>
- <div class="bg-bt"><img src="../assets/yyzx2/center1.png" /></div>
- <!-- <img class="center-building" src="../assets/yyzx2/yy-bg.png" ref="centerFlash" /> -->
- <div class="ring">
- <div class="particle" v-for="(item, index) in 58"></div>
- </div>
- </div>
- <!-- 弹层 -->
- <el-dialog
- title="简介"
- :visible.sync="infoDialogVisible"
- width="80%"
- :before-close="handleClose"
- class="info-d"
- >
- <div class="info-con">
- <div class="img-con">
- <el-image
- :src="img"
- fit="scale-down"
- class="dia-img"
- v-for="(img, index) in infoDialogData.imgList"
- key="index"
- >
- </el-image>
- </div>
- <span class="info-text">{{ infoDialogData.info }}</span>
- </div>
- <span
- slot="footer"
- class="dialog-footer"
- style="display: flex; justify-content: center"
- >
- <el-button @click="infoDialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="goIntegratime(infoDialogData.to)"
- >进入</el-button
- >
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import { selectRoleMenuVisuTreest } from "@/api/system/user";
- import { fontConfig } from "@/api/login";
- import rightClock from "@/components/clock";
- import { getWeather } from "@/api/system/commandCenter";
- import { selectConfigKey, getConfigKey } from "@/api/system/config";
- import Cookies from "js-cookie";
- export default {
- components: {
- rightClock,
- },
- data() {
- return {
- //天气信息
- weatherinformationLow: 0,
- weatherinformationTemperature: 0,
- weatherinformationPower: 0,
- headerTitle: "全域视联平台",
- bottomW: 0, // 中心入口 下方按钮宽
- bottomH: 0, // 中心入口 下方按钮高
- // 可视化入口
- // name: 入口名称
- // imgSrc: 图片路径
- // limits: 权限状态 0 === 默认 正常
- // 权限状态 1 === 无权限 置灰
- // 权限状态 2 === 断开连接 置红
- // to: 入口路径
- ldUrl: "",
- deptList: [
- {
- value: "365",
- label: "四平市",
- }, // 365_四平市
- {
- value: "369",
- label: "双辽市",
- }, // 369_双辽市
- {
- value: "371",
- label: "梨树县",
- }, // 371_梨树县
- {
- value: "373",
- label: "铁西区",
- }, // 373_铁西区
- {
- value: "372",
- label: "铁东区",
- }, // 372_铁东区
- {
- value: "370",
- label: "伊通县",
- }, // 370_伊通县
- ],
- place: "365",
- dept: "365",
- iList: [
- {
- name: "数字林业",
- imgSrc: require("@/assets/yyzx2/icon-szly.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- {
- name: "数字农业",
- imgSrc: require("@/assets/yyzx2/icon-szny.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- {
- name: "数字水利",
- imgSrc: require("@/assets/yyzx2/icon-szsl.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- {
- name: "数字环保",
- imgSrc: require("@/assets/yyzx2/icon-szhb.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- {
- name: "数字应急",
- imgSrc: require("@/assets/yyzx2/icon-szyj.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- {
- name: "数字交通",
- imgSrc: require("@/assets/yyzx2/icon-szjt.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- {
- name: "数字资源",
- imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- {
- name: "数字消防",
- imgSrc: require("@/assets/yyzx2/icon-szxf.png"),
- limits: 0,
- to: "",
- info: "",
- imgList: "",
- },
- // {
- // name: "数字城管",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "数字食药",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "数字文旅",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "数字教育",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "数字计生",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "数字医保",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "数字社保",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "城乡治理",
- // imgSrc: require("@/assets/yyzx2/icon-szzy.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- // {
- // name: "基层党建",
- // imgSrc: require("@/assets/yyzx2/icon-szxf.png"),
- // limits: 0,
- // to: "",
- // info: "",
- // imgList: "",
- // },
- ],
- //中心入口
- centerList: [
- {
- name: "任务中心",
- imgSrc: require("@/assets/yyzx2/icon-rwzx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "消息中心",
- imgSrc: require("@/assets/yyzx2/icon-xxzx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "测评中心",
- imgSrc: require("@/assets/yyzx2/icon-pczx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "档案中心",
- imgSrc: require("@/assets/yyzx2/icon-dazx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "数据中心",
- imgSrc: require("@/assets/yyzx2/icon-sjzx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "事件中心",
- imgSrc: require("@/assets/yyzx2/icon-sjianzx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "监控中心",
- imgSrc: require("@/assets/yyzx2/icon-jkzx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "维护中心",
- imgSrc: require("@/assets/yyzx2/icon-ygzx.png"),
- limits: 0,
- to: "",
- },
- {
- name: "运营中心",
- imgSrc: require("@/assets/yyzx2/icon-yyzx.png"),
- limits: 0,
- to: "",
- },
- ],
- roleMenuVisuList: [],
- //弹层
- infoDialogVisible: false,
- infoDialogData: {
- info: "第十六课积分啊拉萨款到即发阿里斯顿抗击非典拉克丝大姐夫拉屎订单交付拉萨款到即发拉松了萨顶顶啦蛇口街道法老师叫发的卢卡斯积分卢萨卡积分阿斯利康放假阿斯利康大姐夫拉屎抗击非典",
- imgList: [
- require("@/assets/yyzx2/icon-dazx.png"),
- require("@/assets/yyzx2/icon-dazx.png"),
- require("@/assets/yyzx2/icon-dazx.png"),
- ],
- to: "",
- },
- };
- },
- created() {
- this.selectRoleMenuVisuTreest();
- // 获取天气
- this.getWeather();
- //进入主页时就获取超图地址并存入cookie
- this.getConfigKey("superMap.iServer").then((response) => {
- console.log("///////////" + response.msg);
- Cookies.set("superMap.iServer", response.msg, {
- expires: 300,
- });
- });
- this.getheaderTitle();
- },
- mounted() {
- window.onresize = () => {
- this.imgLoad2();
- };
- },
- methods: {
- //获取标题
- getheaderTitle() {
- const that = this;
- selectConfigKey("titlename").then((res) => {
- that.headerTitle = res.data;
- });
- },
- // 获取天气数据
- getWeather() {
- let that = this;
- let date = new Date();
- let y = date.getFullYear();
- let m = date.getMonth() + 1;
- m = m < 10 ? "0" + m : m;
- let d = date.getDate();
- d = d < 10 ? "0" + d : d;
- let str = y + "-" + m + "-" + d;
- getWeather({
- day: str,
- }).then((res) => {
- if (res.data.length > 0) {
- that.weatherinformationLow = res.data[0].weatherinformationLow;
- that.weatherinformationPower = res.data[0].weatherinformationPower;
- that.weatherinformationTemperature =
- res.data[0].weatherinformationTemperature;
- }
- console.log("获取天气数据=", res.data[0]);
- });
- },
- // 获取用户权限
- selectRoleMenuVisuTreest() {
- let _that = this;
- selectRoleMenuVisuTreest().then((response) => {
- // debugger
- for (let i in response.list) {
- if (response.list[i].menuType == "ZC") {
- for (let j in _that.iList) {
- if (response.list[i].menuName == _that.iList[j].name) {
- _that.iList[j].name = response.list[i].menuName;
- _that.iList[j].limits = response.list[i].roleMenuVisuIsShow
- ? 0
- : 1;
- _that.iList[j].to = response.list[i].roleMenuVisuIsShow
- ? response.list[i].pageRouterUrl
- : "";
- _that.iList[j].info = response.list[i].remark;
- _that.iList[j].imgList = response.list[i].imageUrl;
- _that.iList[j].imgSrc = response.list[i].imageId;
- } else if (response.list[i].perms == "index:lingdaoshouye") {
- _that.ldUrl = response.list[i].roleMenuVisuIsShow
- ? response.list[i].pageRouterUrl
- : "";
- }
- }
- } else if (response.list[i].menuType == "FC") {
- for (let j in _that.centerList) {
- if (response.list[i].menuName == _that.centerList[j].name) {
- _that.centerList[j].name = response.list[i].menuName;
- _that.centerList[j].limits = response.list[i].roleMenuVisuIsShow
- ? 0
- : 1;
- _that.centerList[j].to = response.list[i].roleMenuVisuIsShow
- ? response.list[i].pageRouterUrl
- : "";
- }
- }
- }
- }
- });
- },
- //获取一体化入口宽高
- getHeight() {
- this.$nextTick(() => {
- var h1 = this.$refs.lineHeight1.offsetHeight;
- var h4 = this.$refs.lineHeight4[0].offsetHeight;
- var w1 = this.$refs.lineHeight1.offsetWidth;
- var w2 = this.$refs.lineHeight222[0].offsetWidth;
- var h5 = this.$refs.centerHeight.offsetHeight;
- var w3 = this.$refs.sideWidth.offsetWidth;
- var w4 = this.$refs.conWid[0].offsetWidth;
- var w444 = this.$refs.conWid2[0].offsetWidth;
- var h6 = this.$refs.conWid[0].offsetHeight;
- this.conHeight1 = h1;
- this.conHeight4 = h4;
- this.conWidth1 = w1 - w2;
- this.conWidth2 = w2;
- this.conHeight5 = h5 / 6;
- this.conWidth3 = w3 - w4;
- this.position1 = w4;
- this.conHeight6 = h6 * 3;
- });
- },
- //获取一体化入口宽高
- imgLoad() {
- var imgH = document.getElementById("lineHeight2");
- this.$nextTick(() => {
- this.conHeight3 = this.conHeight1 - imgH.offsetHeight - this.conHeight4;
- this.lineTop = imgH.offsetHeight + this.conHeight3;
- this.conHeight2 = imgH.offsetHeight;
- });
- },
- imgLoad2() {
- var imgH2 = document.getElementById("lineHeight222");
- this.$nextTick(() => {
- this.bottomW = imgH2.offsetWidth; // 中心入口 下方按钮宽
- this.bottomH = imgH2.offsetHeight;
- // console.log(this.bottomW ,this.bottomH ,'这是啥')
- });
- },
- // 中间logo点击事件
- ringClick(to) {
- window.location.href = to;
- },
- //一体化入口点击跳转
- goIntegratime(to) {
- window.location.href = to;
- },
- //中心入口点击跳转
- goCenter(to) {
- if (to != "") {
- window.location.href = to;
- }
- },
- //点击弹出简介pop
- showInfoPop(item) {
- this.infoDialogData.info = item.info;
- this.infoDialogData.imgList =
- item.imgList != null ? item.imgList.split(",") : [];
- this.infoDialogData.to = item.to;
- this.infoDialogVisible = true;
- },
- //弹层关闭
- handleClose(done) {
- this.infoDialogVisible = false;
- },
- },
- };
- </script>
- <style lang="scss">
- @import "@/assets/styles/base.scss";
- @keyframes shineB {
- 0% {
- box-shadow: 0 0 0px #097bde;
- }
- 50% {
- box-shadow: 0 0 15px #01dcde;
- }
- 100% {
- box-shadow: 0 0 0px #097bde;
- }
- }
- @-webkit-keyframes spin {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(360deg);
- }
- }
- @-webkit-keyframes spin2 {
- from {
- -webkit-transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(-360deg);
- }
- }
- @keyframes spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- @keyframes shineimg2 {
- 0% {
- box-shadow: 0 0 0px #1aa7ff;
- }
- 50% {
- box-shadow: 0 0 25px #90d3ff;
- }
- 100% {
- box-shadow: 0 0 0px #1aa7ff;
- }
- }
- @keyframes shinetext2 {
- 0% {
- text-shadow: 0 0 0px #1aa7ff;
- }
- 50% {
- text-shadow: 0 0 10px #90d3ff;
- }
- 100% {
- text-shadow: 0 0 0px #1aa7ff;
- }
- }
- @keyframes shineheader {
- 0% {
- text-shadow: 0 0 2px #1aa7ff;
- }
- 50% {
- text-shadow: 0 0 18px #90d3ff;
- }
- 100% {
- text-shadow: 0 0 2px #1aa7ff;
- }
- }
- @keyframes shinetextred {
- 0% {
- text-shadow: 0 0 0px #ffb403;
- }
- 50% {
- text-shadow: 0 0 10px #ff7300;
- }
- 100% {
- text-shadow: 0 0 0px #ffb403;
- }
- }
- //弹层
- .info-d {
- .el-dialog {
- background: #04080c !important;
- border: 1px $barBorder !important;
- height: 70%;
- }
- .el-dialog__header {
- padding: 15px 20px !important;
- background-image: -moz-linear-gradient($GradualGreen) !important;
- background-image: -webkit-linear-gradient($GradualGreen) !important;
- background-image: linear-gradient($GradualGreen) !important;
- box-shadow: $shadowTitle !important;
- .el-dialog__title {
- font-weight: bolder !important;
- color: #3cd7ef;
- }
- }
- .el-dialog__body {
- height: 80%;
- overflow-y: scroll;
- .info-con {
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 2rem;
- .info-text {
- color: $white;
- }
- .img-con {
- width: 100%;
- display: flex;
- margin-bottom: 2rem;
- justify-content: space-between;
- .dia-img {
- width: 31%;
- }
- }
- }
- }
- }
- .select-newpage {
- width: 8rem;
- height: 2.4rem;
- z-index: 1000;
- display: flex;
- align-items: center;
- border-radius: 30px;
- margin-left: 1rem !important;
- .el-select-dropdown {
- border: none;
- background-color: rgba(1, 28, 82, 0.8);
- }
- .el-input {
- position: relative;
- }
- .el-input:after {
- content: " ";
- display: block;
- position: absolute;
- left: 0.5rem;
- top: 0.25rem;
- width: 1rem;
- height: 1.3rem;
- z-index: 11;
- background: url("../assets/images/leader-icon1.png") no-repeat center;
- }
- //聚焦时的样式
- .el-select .el-input.is-focus .el-input__inner {
- border-color: #0b61aa;
- background-color: rgba(1, 28, 82, 0.8);
- color: #00d3e9;
- }
- //下拉框选中
- .el-select-dropdown__item {
- color: #eee;
- padding: 0 20px;
- }
- //鼠标经过下拉框
- .el-select-dropdown__item.hover,
- .el-select-dropdown__item:hover {
- color: #00d3e9;
- background-color: #0f3360;
- }
- //输入框
- .el-input__inner {
- color: #eee;
- border: 0px;
- padding-left: 2rem;
- background-size: 100% 100%;
- background: url("../assets/images/leader-topk.png") no-repeat center;
- }
- }
- </style>
- <style lang="scss" scoped>
- @import url("../assets/yyzx2/yyzx.css");
- @import url("../assets/yyzx2/starflash.css");
- @import "@/assets/styles/base.scss";
- .center-ring-click {
- width: 500px;
- height: 500px;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background: none;
- // background: #615426;
- z-index: 100;
- cursor: pointer;
- }
- .team-last {
- position: absolute !important;
- z-index: 200 !important;
- left: 50% !important;
- transform: translateX(-50%) !important;
- bottom: -5rem !important;
- }
- .to-right-31 {
- position: absolute;
- right: -33px;
- z-index: 100;
- }
- .to-left-31 {
- position: absolute;
- left: -33px;
- z-index: 100;
- }
- .container-c {
- width: 60%;
- height: 59vh;
- text-align: center;
- position: absolute;
- overflow: hidden;
- position: absolute;
- left: 50%;
- top: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- z-index: -1;
- }
- .circle1 {
- width: 90%;
- height: 110vh;
- border: 2px solid #295587;
- border-radius: 100%;
- left: 50%;
- top: 50%;
- -webkit-transform-origin: center center;
- transform-origin: center center;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- position: absolute;
- }
- //头部
- .yy-header {
- width: 100%;
- height: 7rem;
- position: absolute;
- top: 0;
- background: url("../assets/yyzx2/yy-header-bg.png") no-repeat;
- background-size: 100%;
- z-index: 999999999999999;
- .new-header-nav-list {
- position: absolute;
- bottom: -40px;
- left: 50%;
- transform: translateX(-50%);
- display: flex;
- .new-header-nav-list-btn {
- font-size: 1rem;
- text-align: center;
- width: 176px;
- height: 55px;
- line-height: 55px;
- background: url("../assets/images/new-nav-btn-bg.png") no-repeat;
- cursor: pointer;
- }
- .new-header-nav-list-btn:hover {
- background: url("../assets/images/new-nav-btn-bg-hover.png") no-repeat;
- }
- }
- .head-left {
- position: absolute;
- left: 0;
- height: 5vh;
- display: flex;
- align-items: center;
- .head-time {
- display: flex;
- flex-direction: row;
- justify-content: flex-end;
- i {
- display: inline-block;
- width: 2rem;
- height: 2rem;
- }
- .head-fx {
- background: url("../assets/images/leader-icon-fengxiang.png") no-repeat
- 5px 5px;
- }
- .head-fs {
- background: url("../assets/images/leader-icon2.png") no-repeat 5px 5px;
- }
- .head-jsl {
- background: url("../assets/images/leader-icon3.png") no-repeat 4px 5px;
- }
- .head-wd {
- background: url("../assets/images/leader-icon4.png") no-repeat 5px 6px;
- }
- }
- span {
- margin-right: 1rem;
- color: #fff;
- font-size: 1rem;
- display: flex;
- flex-direction: row;
- align-items: center;
- u {
- text-decoration: none;
- }
- }
- .timer {
- padding-right: 1rem;
- font-weight: bold;
- font-style: oblique;
- }
- }
- .head-right {
- height: 5vh;
- position: absolute;
- right: 340px;
- display: flex;
- font-size: 1rem;
- align-items: center;
- color: $white;
- }
- .yy-header-tit {
- width: 35%;
- height: 5rem;
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- // background: url('../assets/yyzx2/yy-header-tit.png') no-repeat;
- display: flex;
- justify-content: center;
- background-size: 100%;
- align-items: flex-start;
- .yy-header-tit-text {
- display: flex;
- align-items: center;
- text-align: center;
- color: #d5f2ff;
- // background-image:linear-gradient(180deg, #0cfbff,#ffffff);
- // background-clip: text;
- // -webkit-background-clip: text;
- font-size: 2rem;
- line-height: 3.5rem;
- letter-spacing: 0.5rem;
- font-family: $fontHk;
- // text-shadow:0 0 0px #fff;
- animation: shineheader 2s infinite;
- }
- }
- }
- //中心入口
- .go-center-top {
- width: 100%;
- position: absolute;
- height: 62%;
- top: 15%;
- left: 0;
- z-index: 12;
- display: flex;
- justify-content: space-between;
- .i-line-x {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- background: #003d2b;
- height: 3px;
- width: 50%;
- }
- .i-line-y {
- height: 75%;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- background: #003d2b;
- width: 3px;
- }
- // .icon-list-con:last-child,.icon-list-con:first-child{
- // left:-14% !important
- // }
- // .icon-list-con:last-child,.icon-list-con:first-child{
- // left:14% !important
- // }
- .icon-list-con {
- height: 25%;
- display: flex;
- align-items: center;
- cursor: pointer;
- position: relative;
- justify-content: center;
- .icon-list-img {
- -webkit-transition: all 0.5s;
- transition: all 0.5s;
- .el-image {
- }
- .l1 {
- filter: grayscale(100%) !important;
- }
- .l2 {
- filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg) !important;
- }
- .icon-list-tit {
- // position: relative;
- transform: translateY(-1.3rem);
- font-size: 1.1rem;
- text-align: center;
- color: #fff;
- font-family: zk;
- -webkit-transition: all 0.5s;
- transition: all 0.5s;
- white-space: nowrap;
- }
- .tit-gray {
- color: #999999 !important;
- }
- .tit-red {
- color: #ff8e01;
- }
- }
- .icon-line {
- width: 70px;
- height: 3px;
- z-index: 9;
- background-color: #1a6a8c !important;
- }
- .icon-line1 {
- width: 70px;
- background-color: #495051 !important;
- height: 3px;
- z-index: 9;
- }
- .icon-line2 {
- width: 70px;
- background-color: #f67300 !important;
- height: 3px;
- z-index: 9;
- }
- .i-origin0 {
- width: 30px;
- height: 30px;
- z-index: 13;
- box-shadow: 0 0 15px #159fd4;
- transform: rotate(45deg);
- animation: shineB 2s infinite;
- // padding: 10em;
- border: 1px solid #159fd4;
- }
- .i-origin0:after {
- width: 8px;
- height: 8px;
- background: none;
- content: "";
- display: block;
- position: absolute;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #0085f6, $alpha: 1),
- rgba($color: #0ff, $alpha: 1)
- );
- border: 2px solid #01dcde;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- pointer-events: none;
- // width: 20px;
- // height: 20px;
- // padding: 5px;
- // background: none;
- // border: 1px solid #fff;
- // content:"";
- // display: block;
- // position: absolute;
- // top: 10px;
- // left: 10px;
- // right: 10px;
- // bottom: 10px;
- // pointer-events: none;
- // z-index: 100;
- // width: 1.5rem;
- // height: 1.5rem;
- // position: absolute;
- // right: 0;
- // background:none;
- // border: 1px solid #01dcde;
- // z-index: 13;
- // transform: rotate(45deg);
- // animation: shineB 2s infinite;
- // z-index: 1000
- }
- .i-origin1 {
- width: 30px;
- height: 30px;
- z-index: 13;
- transform: rotate(45deg);
- // padding: 10em;
- border: 1px solid #acbbbf;
- }
- .i-origin1:after {
- width: 8px;
- height: 8px;
- background: none;
- content: "";
- display: block;
- position: absolute;
- background: #acbbbf;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #acbbbf, $alpha: 1),
- rgba($color: #acbbbf, $alpha: 1)
- );
- border: 2px solid #acbbbf;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- pointer-events: none;
- }
- .i-origin2 {
- width: 32px;
- height: 32px;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #f60000, $alpha: 1),
- rgba($color: #ff8e0c, $alpha: 1)
- );
- border-radius: 100%;
- border: 1px solid #ff6e06;
- z-index: 13;
- animation: shineRed22 2s infinite;
- display: flex;
- justify-content: center;
- align-items: center;
- i {
- color: #fed507;
- font-size: 1.5rem;
- }
- }
- @keyframes shineRed22 {
- 0% {
- box-shadow: 0 0 3px #ffef07;
- }
- 50% {
- scale: 1;
- box-shadow: 0 0 20px #ff6702;
- }
- 100% {
- box-shadow: 0 0 3px #ffef07;
- }
- }
- }
- .icon-list-con:hover {
- .icon-list-img {
- transform: scale(1.2, 1.2);
- .el-image {
- animation: cccbt 2s infinite;
- }
- .l1 {
- filter: grayscale(100%) !important;
- }
- .l2 {
- filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg) !important;
- }
- .icon-list-tit {
- // position: relative;
- transform: translateY(-1rem);
- text-align: center;
- color: #ffffff;
- font-family: zk;
- animation: shinetext2 1s infinite;
- }
- .tit-gray {
- color: #999999 !important;
- animation: none !important;
- }
- .tit-red {
- color: #ff8e01;
- animation: shinetextred 1s infinite;
- }
- }
- }
- .c-left {
- width: 10.8%;
- display: flex;
- flex-direction: column;
- position: relative;
- left: 11.6%;
- justify-content: center;
- align-items: center;
- .icon-list-con:last-child,
- .icon-list-con:first-child {
- left: 20% !important;
- }
- }
- .c-right {
- width: 10.8%;
- display: flex;
- flex-direction: column;
- justify-content: center;
- position: relative;
- right: 11.6%;
- align-items: center;
- .icon-list-con:last-child,
- .icon-list-con:first-child {
- left: -20% !important;
- }
- }
- }
- //一体化入口
- .go-integration-button {
- width: 100%;
- height: 150px;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- bottom: 0;
- z-index: 6;
- display: flex;
- flex-direction: column;
- background: url("../assets/yyzx2/btm-menu-bg.png") no-repeat bottom;
- align-items: center;
- background-size: contain;
- .i-line-y {
- position: absolute;
- top: 0;
- left: 50%;
- transform: translateX(-50%);
- width: 3px;
- background: #003d2b;
- height: 50%;
- }
- //图片
- .img-con {
- width: 85%;
- z-index: 7;
- display: flex;
- justify-content: space-evenly;
- position: absolute;
- bottom: 0.2rem;
- .i-x-line {
- }
- .img-l-con {
- // width: 11%;
- // height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- position: relative;
- cursor: pointer;
- transform: scale(1, 1) translateY(0px);
- transition: all 1s;
- .el-image {
- // box-shadow: 0 0 5px #00ffb7;
- // border: 1px solid #01458e;
- z-index: 10;
- transition: all 0.5s;
- img {
- width: 100%;
- }
- }
- .show-button {
- width: 100%;
- height: 50px;
- position: absolute;
- top: 0%;
- left: 50%;
- transform: translateX(-50%);
- background: rgba(0, 0, 0, 0);
- z-index: 11;
- // transition: all 0.5s;
- opacity: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- .button-item {
- width: 100%;
- position: relative;
- z-index: 14;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- padding: 5%;
- transition: all 0.5s;
- transform: translateY(-50px);
- button {
- width: 40%;
- height: 2rem;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #215de8, $alpha: 0.8),
- rgba($color: #3d7bdd, $alpha: 1)
- );
- color: #fff;
- border: 1px solid #33467f;
- display: flex;
- padding: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- button:hover {
- width: 40%;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #215de8, $alpha: 0.8),
- rgba($color: #4edda6, $alpha: 1)
- );
- color: #fff;
- border: 1px solid #8de9fe;
- box-shadow: 0 0 6px #00ffb7;
- animation: shineimg2 2s infinite;
- padding: 0;
- align-items: center;
- justify-content: center;
- }
- }
- }
- .l1 {
- filter: grayscale(100%) !important;
- }
- .l2 {
- filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg);
- animation: shineimg 1s infinite;
- }
- @keyframes shineimg {
- 0% {
- box-shadow: 0 0 0px #00ffb7;
- }
- 50% {
- box-shadow: 0 0 15px #00ffb7;
- }
- 100% {
- box-shadow: 0 0 0px #44ff00;
- }
- }
- .img-line0 {
- width: 1px;
- top: -8px;
- position: relative;
- z-index: 9;
- background-color: #1a6a8c !important;
- }
- .img-line1 {
- background-color: #495051 !important;
- }
- .img-line2 {
- background-color: #f67300 !important;
- }
- //名称
- .i-name-con {
- width: 100%;
- height: 25%;
- display: flex;
- justify-content: space-between;
- z-index: 10;
- .name-item {
- width: 100%;
- height: 100%;
- // background: red;
- display: flex;
- flex-direction: column;
- position: relative;
- justify-content: center;
- .i-origin0 {
- width: 0.5rem;
- height: 0.5rem;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #0085f6, $alpha: 1),
- rgba($color: #0ff, $alpha: 1)
- );
- position: absolute;
- border: 1px solid #01dcde;
- top: -0.4rem;
- z-index: 8;
- left: 50%;
- transform: translateX(-50%) rotate(45deg);
- box-shadow: 0 0 15px #00ffb7;
- animation: shineB 2s infinite;
- }
- .i-origin1 {
- width: 0.3rem;
- height: 0.3rem;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #676767, $alpha: 1),
- rgba($color: #cccccc, $alpha: 1)
- );
- border-radius: 100%;
- position: absolute;
- border: 1px solid #ebebeb;
- top: -0.4rem;
- z-index: 8;
- left: 50%;
- transform: translateX(-50%);
- }
- .i-origin2 {
- width: 0.3rem;
- height: 0.3rem;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #f60000, $alpha: 1),
- rgba($color: #ff8e0c, $alpha: 1)
- );
- border-radius: 100%;
- position: absolute;
- border: 1px solid #ff6e06;
- top: -0.4rem;
- z-index: 8;
- left: 50%;
- transform: translateX(-50%) scale(1, 1);
- box-shadow: 0 0 15px #ffef07;
- display: flex;
- justify-content: center;
- align-items: center;
- transition: all 1s;
- animation: shineRed 1s infinite;
- i {
- color: #fed507;
- }
- }
- @keyframes shineRed {
- 0% {
- box-shadow: 0 0 3px #ffef07;
- }
- 50% {
- transform: translateX(-50%) scale(1.5, 1.5);
- box-shadow: 0 0 15px #ff6702;
- }
- 100% {
- box-shadow: 0 0 3px #ffef07;
- }
- }
- .i-name {
- font-size: 1.1rem;
- text-align: center;
- color: #ffffff;
- font-family: $fontFk;
- transition: all 0.5s;
- }
- .name-gray {
- color: #999999 !important;
- }
- .name-red {
- color: #ff8e01;
- }
- }
- }
- }
- //一体化窗口滑过
- .img-l-con:hover {
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- cursor: pointer;
- transform: scale(1.1, 1.1) translateY(-10px);
- transition: all 0.5s;
- .el-image {
- // box-shadow: 0 0 10px #00ffb7;
- // border: 2px solid #95ecff;
- // animation: shineimg2 2s infinite;
- // img {
- // width: 100%;
- // }
- animation: cccbt 2s infinite;
- }
- .show-button {
- transform: translateX(-50%) translateY(-8px);
- opacity: 1;
- z-index: 11;
- transition: all 0.5s;
- background: rgba(0, 0, 0, 0.5);
- .button-item {
- width: 100%;
- position: relative;
- z-index: 14;
- display: flex;
- justify-content: space-evenly;
- align-items: center;
- padding: 5%;
- transform: translateY(0);
- }
- }
- .l1 {
- filter: grayscale(100%) !important;
- animation: none !important;
- }
- .l2 {
- filter: sepia(100%) saturate(500%) brightness(54%) hue-rotate(308deg);
- animation: shineimg 1s infinite;
- }
- .img-line0 {
- width: 1px;
- background-color: #69cbff !important;
- animation: shineimg2 1s infinite;
- }
- .img-line1 {
- background-color: #495051 !important;
- }
- .img-line2 {
- background-color: #f67300 !important;
- }
- //名称
- .i-name-con {
- width: 100%;
- height: 25%;
- display: flex;
- justify-content: space-between;
- z-index: 10;
- .name-item {
- width: 100%;
- height: 100%;
- // background: red;
- display: flex;
- flex-direction: column;
- position: relative;
- justify-content: center;
- .i-origin0 {
- width: 10px;
- height: 10px;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #0077f6, $alpha: 1),
- rgba($color: #d3ff0c, $alpha: 1)
- );
- border-radius: 100%;
- position: absolute;
- border: 1px solid #01dcde;
- top: -0.4rem;
- z-index: 8;
- left: 50%;
- transform: translateX(-50%) rotate(45deg);
- box-shadow: 0 0 15px #00ffb7;
- animation: shineB 2s infinite;
- }
- .i-origin1 {
- width: 10px;
- height: 10px;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #676767, $alpha: 1),
- rgba($color: #cccccc, $alpha: 1)
- );
- border-radius: 100%;
- position: absolute;
- border: 1px solid #ebebeb;
- top: -0.4rem;
- z-index: 8;
- left: 50%;
- transform: translateX(-50%);
- animation: none !important;
- }
- .i-origin2 {
- width: 10px;
- height: 10px;
- background: #0ff;
- background-image: linear-gradient(
- 180deg,
- rgba($color: #f60000, $alpha: 1),
- rgba($color: #ff8e0c, $alpha: 1)
- );
- border-radius: 100%;
- position: absolute;
- border: 1px solid #ff6e06;
- top: -0.4rem;
- z-index: 8;
- left: 50%;
- transform: translateX(-50%);
- box-shadow: 0 0 15px #ffef07;
- display: flex;
- justify-content: center;
- align-items: center;
- i {
- color: #fed507;
- }
- animation: shineRed 1s infinite;
- }
- .i-name {
- text-align: center;
- font-family: $fontFk;
- animation: shinetext2 1s infinite;
- }
- .name-gray {
- color: #999999 !important;
- animation: none !important;
- }
- .name-red {
- color: #ff8e01;
- animation: shinetextred 1s infinite;
- }
- }
- }
- }
- }
- }
- .ring-outside {
- width: 445px;
- height: 510px;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translateX(-50%);
- }
- .center-demon-container {
- position: absolute;
- width: 300px;
- height: 300px;
- top: 23%;
- left: 50%;
- z-index: 5;
- transform: translateX(-50%);
- display: flex;
- align-items: center;
- justify-content: center;
- .center-demon {
- animation: ccc 3s infinite;
- -webkit-filter: hue-rotate(20deg);
- position: absolute;
- z-index: 3;
- }
- .center-demon1 {
- animation: spin 5s infinite;
- position: absolute;
- z-index: 3;
- }
- .center-demon2 {
- animation: spin2 5s infinite;
- position: absolute;
- z-index: 3;
- }
- .center-demon3 {
- animation: spin 10s infinite;
- position: absolute;
- z-index: 3;
- }
- .center-demon4 {
- animation: spin2 8s infinite;
- position: absolute;
- z-index: 3;
- }
- .center-demon5 {
- position: absolute;
- z-index: 3;
- }
- }
- .bg-bt {
- position: absolute;
- top: 45%;
- left: 50%;
- transform: translateX(-50%);
- // -webkit-filter: hue-rotate(20deg);
- animation: cccbt 3.5s infinite;
- }
- @keyframes ccc {
- 0% {
- -webkit-filter: hue-rotate(0deg) brightness(1);
- }
- 50% {
- -webkit-filter: hue-rotate(0deg) brightness(1.5);
- }
- 100% {
- -webkit-filter: hue-rotate(0deg) brightness(1);
- }
- }
- @keyframes cccbt {
- 0% {
- -webkit-filter: hue-rotate(0deg) brightness(1);
- }
- 25% {
- -webkit-filter: hue-rotate(0deg) brightness(1.1);
- }
- 50% {
- -webkit-filter: hue-rotate(0deg) brightness(1);
- }
- 75% {
- -webkit-filter: hue-rotate(0deg) brightness(1.3);
- }
- 100% {
- -webkit-filter: hue-rotate(0deg) brightness(1);
- }
- }
- @keyframes cc {
- 0% {
- -webkit-filter: hue-rotate(0deg);
- top: 35%;
- }
- 20% {
- -webkit-filter: hue-rotate(343deg);
- top: 36%;
- }
- 50% {
- -webkit-filter: hue-rotate(0deg);
- top: 35%;
- }
- 70% {
- -webkit-filter: hue-rotate(216deg);
- top: 36%;
- }
- 100% {
- -webkit-filter: hue-rotate(0deg);
- top: 35%;
- }
- }
- @media screen and (min-width: 1600px) and (max-width: 1920px) {
- // 容器
- .yyzx-center-container {
- // transform:scale(2,2);
- width: 50%;
- height: 45rem;
- position: absolute;
- top: 5%;
- left: 50%;
- transform: translateX(-50%);
- }
- .team-last {
- position: absolute !important;
- z-index: 200 !important;
- left: 50% !important;
- transform: translateX(-50%) !important;
- bottom: -5rem !important;
- }
- }
- @media screen and (min-width: 1930px) and (max-width: 2660px) {
- .go-integration-button .img-con .img-l-con .i-name-con .name-item .i-name,
- .go-center-top .icon-list-con .icon-list-img .icon-list-tit {
- font-size: 1.6rem;
- }
- .yy-header .yy-header-tit .yy-header-tit-text {
- font-size: 3rem;
- line-height: 5rem;
- }
- // 容器
- .yyzx-center-container {
- width: 50%;
- height: 45rem;
- position: absolute;
- top: 20%;
- left: 50%;
- transform: translateX(-50%) scale(1.3, 1.3);
- }
- .team-last {
- position: absolute !important;
- z-index: 200 !important;
- left: 50% !important;
- transform: translateX(-50%) !important;
- bottom: -10rem !important;
- }
- }
- @media screen and (min-width: 2670px) and (max-width: 3850px) {
- // 容器
- .go-integration-button .img-con .img-l-con .i-name-con .name-item .i-name,
- .go-center-top .icon-list-con .icon-list-img .icon-list-tit {
- font-size: 2rem;
- }
- .yy-header .yy-header-tit .yy-header-tit-text {
- font-size: 3rem;
- line-height: 5rem;
- }
- .yyzx-center-container {
- width: 50%;
- height: 45rem;
- position: absolute;
- top: 25%;
- left: 50%;
- transform: translateX(-50%) scale(1.8, 1.8);
- }
- .team-last {
- position: absolute !important;
- z-index: 200 !important;
- left: 50% !important;
- transform: translateX(-50%) !important;
- bottom: -15rem !important;
- }
- .starfield {
- display: none !important;
- }
- }
- .center-building {
- height: 50%;
- position: absolute;
- top: 62%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 2;
- height: 510px;
- animation: abc 15s infinite;
- -webkit-filter: hue-rotate(0deg);
- }
- @keyframes abc {
- 0% {
- -webkit-filter: hue-rotate(0deg);
- }
- 20% {
- -webkit-filter: hue-rotate(343deg);
- }
- 50% {
- -webkit-filter: hue-rotate(30deg);
- }
- 70% {
- -webkit-filter: hue-rotate(216deg);
- }
- 100% {
- -webkit-filter: hue-rotate(0deg);
- }
- }
- .yying-bg {
- width: 100%;
- height: 100%;
- // background-color: #010739;
- background: url("../assets/yyzx2/bg.jpg") no-repeat center;
- background-size: cover;
- overflow: hidden;
- position: absolute;
- font-size: 16px;
- }
- #atome {
- width: 100%;
- height: 100%;
- position: absolute;
- z-index: 1;
- }
- .atome-wrap {
- height: 200px;
- width: 200px;
- margin: auto;
- position: absolute;
- transform-style: preserve-3d;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- animation: turn 8s infinite;
- animation-timing-function: linear;
- }
- .atome-wrap:after,
- .atome-wrap:before {
- content: "";
- position: absolute;
- height: 8px;
- width: 8px;
- border-radius: 100%;
- background-color: #fff;
- box-shadow: 0 0 10px #000, 0 0 15px #4fff34, 0 0 30px #31ff42;
- top: 50%;
- left: 50%;
- margin-top: -4px;
- margin-left: -4px;
- }
- .atome-wrap:before {
- transform: rotateX(90deg);
- }
- .circle {
- height: 200px;
- width: 200px;
- position: absolute;
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
- border-radius: 100%;
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- animation-timing-function: linear;
- }
- .circle:before {
- content: "";
- position: absolute;
- height: 4px;
- width: 8px;
- border-radius: 100%;
- background-color: #fff;
- box-shadow: 0 0 10px #c1fffd, 0 0 15px #3bff1d, 0 0 30px #f9ff74,
- 0 0 40px #69cbff;
- animation: electrons 3s infinite;
- animation-timing-function: linear;
- }
- .circle:after {
- content: "";
- position: absolute;
- height: 8px;
- width: 8px;
- border-radius: 100%;
- background-color: #fff;
- top: 50%;
- left: 50%;
- margin-top: -4px;
- margin-left: -4px;
- box-shadow: 0 0 10px #000, 0 0 15px #64fff9, 0 0 30px #0ff;
- }
- .circle_0 {
- transform: translateZ(0px) rotateY(0deg) rotateX(0deg);
- animation: rotate_0 1.8s infinite;
- animation-timing-function: linear;
- height: 300px;
- width: 300px;
- top: -50px;
- left: -50px;
- }
- .circle_0:before {
- top: 50%;
- left: 0;
- margin-left: -3px;
- margin-top: 0;
- height: 8px;
- width: 3px;
- }
- .circle_1 {
- transform: translateZ(0px) rotateY(90deg) rotateX(0deg);
- animation: rotate_1 1.8s infinite;
- animation-timing-function: linear;
- height: 300px;
- width: 300px;
- top: -50px;
- left: -50px;
- }
- .circle_1:before {
- top: 50%;
- right: 0;
- margin-right: -2px;
- margin-top: 0px;
- width: 3px;
- height: 8px;
- }
- .circle_2 {
- transform: translateZ(0px) rotateY(45deg) rotateX(0deg);
- animation: rotate_2 1.2s infinite;
- animation-timing-function: linear;
- }
- .circle_2:before {
- top: 50%;
- right: 0;
- margin-right: -3px;
- margin-top: 0;
- height: 8px;
- width: 3px;
- }
- .circle_3 {
- transform: translateZ(0px) rotateY(135deg) rotateX(0deg);
- animation: rotate_3 1.2s infinite;
- animation-timing-function: linear;
- }
- .circle_3:before {
- bottom: 50%;
- right: 0;
- margin-right: -3px;
- margin-bottom: 0;
- height: 8px;
- width: 3px;
- }
- .circle_4 {
- transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px);
- animation: rotate_4 0.5s infinite;
- animation-timing-function: linear;
- height: 100px;
- width: 100px;
- top: 50px;
- left: 50px;
- }
- .circle_4:before {
- top: 50%;
- left: 0;
- margin-left: -3px;
- margin-top: 0;
- height: 8px;
- width: 3px;
- }
- .circle_5 {
- transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px);
- animation: rotate_5 0.5s infinite;
- animation-timing-function: linear;
- height: 100px;
- width: 100px;
- top: 50px;
- left: 50px;
- }
- .circle_5:before {
- top: 50%;
- right: 0;
- margin-right: -2px;
- margin-top: 0px;
- width: 3px;
- height: 8px;
- }
- .circle_6 {
- transform: rotateX(50deg) rotateY(90deg) translateZ(0px) translateY(0px);
- animation: rotate_5 0.5s infinite;
- animation-timing-function: linear;
- height: 100px;
- width: 100px;
- top: 50px;
- left: 50px;
- }
- .circle_6:before {
- top: 50%;
- right: 0;
- margin-right: -2px;
- margin-top: 0px;
- width: 3px;
- height: 8px;
- }
- @keyframes turn {
- 0% {
- transform: rotateX(0deg) rotateZ(0deg);
- }
- 100% {
- transform: rotateX(360deg) rotateZ(360deg);
- }
- }
- @keyframes electrons {
- 0% {
- transform: rotateY(0deg);
- opacity: 1;
- }
- 50% {
- transform: rotateY(180deg);
- opacity: 0.2;
- }
- 100% {
- transform: rotateY(360deg);
- opacity: 1;
- }
- }
- @keyframes rotate_0 {
- 0% {
- transform: translateZ(0px) rotateY(0deg) rotateX(0deg) rotateZ(0deg);
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- }
- 50% {
- transform: translateZ(0px) rotateY(0deg) rotateX(0deg) rotateZ(180deg);
- border: dashed 1.5px rgba(16, 244, 255, 1);
- }
- 100% {
- transform: translateZ(0px) rotateY(0deg) rotateX(0deg) rotateZ(360deg);
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- }
- }
- @keyframes rotate_1 {
- 0% {
- transform: translateZ(0px) rotateY(90deg) rotateX(0deg) rotateZ(0deg);
- border: dashed 3px rgba(0, 255, 255, 0.1);
- }
- 50% {
- transform: translateZ(0px) rotateY(90deg) rotateX(0deg) rotateZ(-180deg);
- border: dashed 1.5px rgba(0, 255, 29, 1);
- }
- 100% {
- transform: translateZ(0px) rotateY(90deg) rotateX(0deg) rotateZ(-360deg);
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- }
- }
- @keyframes rotate_2 {
- 0% {
- transform: translateZ(0px) rotateY(0deg) rotateX(135deg) rotateZ(0deg);
- border: dashed 6px rgba(0, 255, 255, 0.1);
- }
- 50% {
- transform: translateZ(0px) rotateY(0deg) rotateX(135deg) rotateZ(180deg);
- border: dashed 1.5px rgba(0, 255, 255, 1);
- }
- 100% {
- transform: translateZ(0px) rotateY(0deg) rotateX(135deg) rotateZ(360deg);
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- }
- }
- @keyframes rotate_3 {
- 0% {
- transform: translateZ(0px) rotateY(0deg) rotateX(45deg) rotateZ(0deg);
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- }
- 50% {
- transform: translateZ(0px) rotateY(0deg) rotateX(45deg) rotateZ(-180deg);
- border: dashed 6px rgba(130, 255, 209, 1);
- }
- 100% {
- transform: translateZ(0px) rotateY(0deg) rotateX(45deg) rotateZ(-360deg);
- border: dashed 5px rgba(0, 255, 255, 0.1);
- }
- }
- @keyframes rotate_4 {
- 0% {
- transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px)
- rotateZ(0deg);
- border: dashed 1.5px rgba(255, 255, 255, 1);
- }
- 50% {
- transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px)
- rotateZ(180deg);
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- }
- 100% {
- transform: rotateX(90deg) rotateY(-30deg) translateZ(0px) translateY(0px)
- rotateZ(360deg);
- border: dashed 1.5px rgba(255, 255, 255, 1);
- }
- }
- @keyframes rotate_5 {
- 0% {
- transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
- rotateZ(0deg);
- border: dashed 1.5px rgba(245, 255, 39, 1);
- }
- 50% {
- transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
- rotateZ(-180deg);
- border: dashed 1.5px rgba(0, 255, 255, 0.1);
- }
- 100% {
- transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
- rotateZ(-360deg);
- border: dashed 1.5px rgba(255, 255, 255, 1);
- }
- }
- @keyframes rotate_6 {
- 0% {
- transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
- rotateZ(0deg);
- border: dashed 1.5px rgba(255, 193, 164, 1);
- }
- 50% {
- transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
- rotateZ(-180deg);
- border: dashed 1.5px rgba(43, 32, 27, 0.1);
- }
- 100% {
- transform: rotateX(90deg) rotateY(45deg) translateZ(0px) translateY(0px)
- rotateZ(-360deg);
- border: dashed 1.5px rgba(255, 81, 23, 1);
- }
- }
- .c {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%) rotateX(45deg);
- /* Native CSS properties don't support the customization of border-style. Therefore, we use a trick with an SVG image inside background-image property.
- https://kovart.github.io/dashed-border-generator/
- */
- /* 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"); */
- border-radius: 50%;
- border: 1px dotted aqua;
- animation: dripBounce 5s infinite;
- }
- @keyframes dripBounce {
- /* 0%{top:50%} */
- 10% {
- top: calc(50% + 5px);
- }
- 20% {
- top: calc(50% - 5px);
- }
- 35% {
- top: 50%;
- }
- }
- .c13 {
- height: 130px;
- width: 260px;
- animation-delay: -7.6s;
- top: calc(50% + 12px);
- }
- .c14 {
- height: 140px;
- width: 280px;
- animation-delay: -7.4s;
- top: calc(50% + 13px);
- }
- .c15 {
- height: 150px;
- width: 300px;
- animation-delay: -7.2s;
- top: calc(50% + 14px);
- }
- .c16 {
- height: 160px;
- width: 320px;
- animation-delay: -7s;
- top: calc(50% + 15px);
- }
- .c17 {
- height: 170px;
- width: 340px;
- animation-delay: -6.8s;
- top: calc(50% + 16px);
- }
- .c18 {
- height: 180px;
- width: 360px;
- animation-delay: -6.6s;
- top: calc(50% + 17px);
- }
- .c19 {
- height: 190px;
- width: 380px;
- animation-delay: -6.4s;
- top: calc(50% + 18px);
- }
- .c20 {
- height: 200px;
- width: 400px;
- animation-delay: -6.2s;
- top: calc(50% + 19px);
- }
- .c21 {
- height: 210px;
- width: 420px;
- animation-delay: -6s;
- top: calc(50% + 20px);
- }
- .c22 {
- height: 220px;
- width: 440px;
- animation-delay: -5.8s;
- top: calc(50% + 21px);
- }
- .c23 {
- height: 230px;
- width: 460px;
- animation-delay: -5.6s;
- top: calc(50% + 22px);
- }
- .c24 {
- height: 240px;
- width: 480px;
- animation-delay: -5.4s;
- top: calc(50% + 23px);
- }
- .c25 {
- height: 250px;
- width: 500px;
- animation-delay: -5.2s;
- top: calc(50% + 24px);
- }
- .c26 {
- height: 260px;
- width: 520px;
- animation-delay: -5s;
- top: calc(50% + 25px);
- }
- .c27 {
- height: 270px;
- width: 540px;
- animation-delay: -4.8s;
- top: calc(50% + 26px);
- }
- .c28 {
- height: 280px;
- width: 560px;
- animation-delay: -4.6s;
- top: calc(50% + 27px);
- }
- .c29 {
- height: 290px;
- width: 580px;
- animation-delay: -4.4s;
- top: calc(50% + 28px);
- }
- .c30 {
- height: 300px;
- width: 600px;
- animation-delay: -4.2s;
- top: calc(50% + 29px);
- }
- .l {
- height: 20px;
- width: 1px;
- position: absolute;
- top: 0%;
- left: 50%;
- transform: translate(-50%, -70%);
- background: aqua;
- animation: drip 5s infinite;
- animation-delay: -10.3s;
- }
- @keyframes drip {
- 0% {
- opacity: 1;
- top: 0%;
- }
- 10% {
- opacity: 0.1;
- top: calc(50% + 10px);
- }
- 100% {
- opacity: 0;
- }
- }
- .bg-bottom {
- position: absolute;
- bottom: 0;
- width: 100%;
- height: 100%;
- // background: url('../assets/yyzx2/b-bg.png') no-repeat center;
- background-size: cover;
- z-index: 1;
- }
- </style>
|