123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198 |
- // 字体
- $fontFk: zk;
- $fontLED: led;
- //颜色
- $white: #fff;
- $inBlue: #2bacf7;
- $subtitle: #638395;
- $inBlueHover: #07ffc1;
- $inYellow: #ffd014;
- $deepBlue: #0b293a;
- $listText: #1a7988;
- $textGray: #ccc;
- $grayBlue: #5685a0;
- $tipHover: #2082ba;
- $eventBG: #0b284e;
- //渐变
- $GradualGreen: 180deg, rgba($color: #124799, $alpha: .8),
- rgba($color: #04151e, $alpha: .8);
- $conBg: 180deg, rgba($color: #0f162c, $alpha: 1),
- rgba($color: #040b1f, $alpha: 1);
- $btmMemu: 180deg, rgba($color: #0d1620, $alpha: 1),
- rgba($color: #020f2a, $alpha: 1);
- $boxBG: 180deg, rgba($color: #0d2760, $alpha: 1),
- rgba($color: #081a41, $alpha: 1);
- //内阴影
- $shadowList: 0 0 1rem 0 rgba($color: #0b1b25, $alpha: .8);
- $shadowTitle: 0 -0.2rem .5rem 0.3rem rgba($color: #0dc0db, $alpha: .09) inset;
- $shadowListHover: rgba($color: #0567c2, $alpha: .7) 0px 0px 50px inset;
- $shadowListHoverI: 0 0 3px rgba($color: #41ff84, $alpha: .5), -0 -0 10px rgba($color: #41fff8, $alpha: .9);
- $shadowTip: 0 0 1rem 0 rgba($color: #387ee7, $alpha: .8) inset;
- $shadowCount: 0 0 .5rem 0 rgba($color: #00c8ff, $alpha: 1) inset;
- //可视化 数字林业
- $fBlue: #03c6e2;
- $fBlueHover: #07ffc1;
- $fBlueG: #0bf3f7;
- $fListTitle: #2bacf7;
- $barBgc: rgba($color: #051520, $alpha: .9);
- $barShadow: rgba($color: #078ad1, $alpha: .8) 0px 0px 18px inset;
- $barBorder: solid rgba($color: #33467f, $alpha: .7);
- $tableBorder: solid rgba($color: #33467f, $alpha: .7);
- $countBorder: solid rgba($color: #00aeff, $alpha: .9);
- $searchBorder: solid rgba($color: #33467f, $alpha: 1);
- $searchBG: #101527;
- $deepBG: #09192f;
- //icon
- $iconBg: #f5ad1b, #58b35d, #0FA2FF, #da8ec5, #78bfc2, #a28e52, #ff6063, #96bd5b, #f5ad1b, #da8ec5, #5f89ce, #78bfc2, #bec278, #f07779;
- $iconColor: #32e583, #f5ad1b, #da8ec5, #5f89ce, #78bfc2, #bec278, #f07779;
- //状态
- $state-wcl: #ff9c00;
- $state-wyc: #1cef84;
- $eventStateColor-sb: #11b57e;
- $eventStateColor-qs: #f18425;
- $eventStateColor-wb: #c2bc43;
- $eventStateColor-cf: #a23737;
- $eventStateColor-bj: #6ae08f;
- $eventStateColor-gd: #0369ef;
- $eventStateColor-qr: #20EF56;
- $eventStateColor-xsb: #11b57e;
- $eventStateColor-cb: #e63b4a;
- $eventStateColor-yqs: #f18425;
- $eventStateColor-ld: #a23737;
- $eventStateColor-tb: #0369ef;
- //日历状态
- $date-state1: #2abc65;
- $date-state2: #e68d3f;
- $date-state3: #d6333b;
- //视频摄像头预览弹层样式
- .videoCustomWidth {
- width: 1070px !important;
- height: 700px !important;
- }
- //电视墙视频摄像头预览弹层样式
- .TVWallCustomWidth {
- width: 1200px !important;
- height: 750px !important;
- }
- //公共
- body {
- height: 100%;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- text-rendering: optimizeLegibility;
- font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
- }
- label {
- font-weight: 700;
- }
- html {
- height: 100%;
- box-sizing: border-box;
- }
- #app {
- height: 100%;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- .no-padding {
- padding: 0px !important;
- }
- .padding-content {
- padding: 4px 0;
- }
- a:focus,
- a:active {
- outline: none;
- }
- a,
- a:focus,
- a:hover {
- cursor: pointer;
- color: inherit;
- text-decoration: none;
- }
- div:focus {
- outline: none;
- }
- .fr {
- float: right;
- }
- .fl {
- float: left;
- }
- .pr-5 {
- padding-right: 5px;
- }
- .pl-5 {
- padding-left: 5px;
- }
- .block {
- display: block;
- }
- .pointer {
- cursor: pointer;
- }
- .inlineBlock {
- display: block;
- }
- .clearfix {
- &:after {
- visibility: hidden;
- display: block;
- font-size: 0;
- content: " ";
- clear: both;
- height: 0;
- }
- }
- aside {
- background: #eef1f6;
- padding: 8px 24px;
- margin-bottom: 20px;
- border-radius: 2px;
- display: block;
- line-height: 32px;
- font-size: 16px;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- color: #2c3e50;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- a {
- color: #337ab7;
- cursor: pointer;
- &:hover {
- color: rgb(32, 160, 255);
- }
- }
- }
- iframe {
- border: 0;
- }
- * {
- padding: 0;
- margin: 0;
- }
- a {
- padding: 0;
- margin: 0;
- }
- ul {
- list-style: none;
- }
- .sj-container {
- width: 100%;
- height: 100vh;
- }
- div::-webkit-scrollbar {
- display: none;
- }
- //#toolbar::-webkit-scrollbar {
- // width: 20px !important;
- // display: block !important;
- //}
- //
- //#toolbar::-webkit-scrollbar-track {
- // background: linear-gradient(0deg, rgba(10, 19, 47, 1.0) 0%, rgba(36, 46, 104, 1.0) 100%) !important;
- //}
- //
- //#toolbar::-webkit-scrollbar-thumb {
- // background: transparent !important;
- // box-shadow: 0px 0px 0px 100vh black !important;
- //}
- #icon {
- margin-bottom: 5rem;
- padding: .5rem;
- }
- .ztree {
- padding: .5rem;
- }
- #toolbar {
- color: $inBlue;
- }
- .w-5 {
- width: 5.5rem;
- }
- .h-9 {
- height: 9vh;
- }
- .h-10 {
- height: 10vh;
- }
- .h-13 {
- height: 13vh;
- }
- .h-14 {
- height: 14vh;
- }
- .h-15 {
- height: 15vh;
- }
- .h-16 {
- height: 16vh;
- }
- .h-18 {
- height: 18vh;
- }
- .h-19 {
- height: 19vh !important;
- }
- .h-20 {
- height: 20vh !important;
- }
- .h-21 {
- height: 21vh;
- }
- .h-22 {
- height: 22vh;
- }
- .h-23 {
- height: 23vh !important;
- }
- .h-25 {
- height: 25vh !important;
- }
- .h-26 {
- height: 26vh !important;
- }
- .h-27 {
- height: 27vh;
- }
- .h-28 {
- height: 28vh !important;
- }
- .h-29 {
- height: 29vh;
- }
- .h-29-5 {
- height: 29.5vh;
- }
- .h-30 {
- height: 30vh;
- }
- .h-31 {
- height: 31vh;
- }
- .h-35 {
- height: 34vh;
- }
- .h-32 {
- height: 31.6vh;
- }
- .h-39 {
- height: 39vh !important;
- }
- .h-40 {
- height: 40vh !important;
- }
- .h-43 {
- height: 42vh !important;
- }
- .h-45 {
- height: 45vh !important;
- }
- .h-50 {
- height: 50vh !important;
- }
- .h-51 {
- height: 51vh;
- }
- .h-55 {
- height: 55vh;
- }
- .h-60 {
- height: 59vh;
- }
- .h-63 {
- height: 62vh;
- }
- .h-67 {
- height: 66.5vh;
- }
- .h-73 {
- height: 74vh;
- }
- .h-78 {
- height: 78vh;
- }
- .h-80 {
- height: 80vh;
- }
- .line-h-1 {
- line-height: 1rem;
- }
- .w-100p {
- width: 100% !important;
- max-width: 100% !important;
- }
- .w-25 {
- width: 25rem !important;
- }
- .w-50 {
- width: 50% !important;
- }
- .w-33 {
- width: 33% !important;
- }
- .w-10 {
- width: 10rem !important;
- }
- .top-2 {
- top: 5vh !important;
- position: relative !important;
- }
- .flex-d {
- flex-direction: column !important;
- }
- .a-item {
- align-items: center;
- }
- .icon-bigger {
- font-size: 2.4rem !important;
- }
- .no-padding {
- padding: 0;
- }
- .m-t-no {
- margin-top: 0 !important;
- }
- .m-btm-no {
- margin-bottom: 0 !important;
- }
- .overflow-y {
- overflow-y: scroll;
- }
- .el-radio {
- margin-right: 1rem;
- }
- .justify-content-bt {
- justify-content: space-between
- }
- .justify-content-end {
- justify-content: end
- }
- .text-right {
- text-align: right;
- }
- .flex-c {
- flex-direction: column !important;
- }
- .flex-r {
- flex-direction: row !important;
- }
- .padding-box {
- padding-top: .3rem !important;
- padding-bottom: .3rem !important;
- }
- // 不换行
- .nowrap {
- flex-wrap: nowrap !important;
- }
- .d-tit {
- display: flex;
- align-items: center;
- flex: 1;
- padding: 1rem 0.5rem;
- h4 {
- font-size: 14px !important;
- margin: 0;
- color: $fListTitle;
- font-weight: normal;
- display: block;
- max-width: 90%;
- line-height: 1rem;
- padding-bottom: .2rem;
- border-bottom: 1px solid $fBlueHover;
- }
- }
- .t-a-center {
- text-align: center;
- }
- .m-r-none {
- margin-right: 0 !important;
- }
- .icon-text-col {
- margin-top: .5rem;
- }
- // 弹层按钮组
- .info-button-group {
- position: absolute;
- top: 0;
- right: 0;
- z-index: 1000;
- button {
- color: #3cd7ef;
- background: 180deg, rgba(9, 30, 54, 0.8), rgba(6, 27, 39, 0.8);
- margin: 5px;
- color: #3cd7ef;
- background: -webkit-gradient(linear, right top, left top, from(#051d2b), color-stop(#00335c), to(#051d2b));
- background: linear-gradient(to left, #051d2b, #00335c, #051d2b);
- margin: 5px;
- padding: 0.5rem 1rem;
- border: 0;
- cursor: pointer;
- }
- button:hover {
- color: #fff;
- font-weight: bolder;
- background: -webkit-gradient(linear, right top, left top, from(#051d2b), color-stop(#006ec8), to(#051d2b));
- background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
- -webkit-box-shadow: rgb(5 103 194 / 80%) 0px 0px 15px inset;
- box-shadow: rgb(5 103 194 / 80%) 0px 0px 15px inset;
- padding: 0.5rem 1rem;
- cursor: pointer;
- }
- }
- //弹层样式
- .customWidth {
- width: 1822px !important;
- height: 866px !important;
- }
- .dia-event-info {
- .el-row {
- height: 780px;
- }
- .dia-left {
- height: 780px !important;
- position: absolute;
- z-index: 999;
- button {
- padding: 0 .3rem;
- height: 1.5rem;
- background-color: #112543;
- color: $inBlue;
- border: 1px $searchBorder;
- }
- button:hover {
- text-shadow: 0 0 15px rgba($color: $inBlueHover, $alpha: 1.0);
- }
- .fire-m{
- position: absolute;
- right: 1rem;
- bottom: 1rem;
- z-index:100000;
- }
- //超图绘制截屏
- .leaflet-pane .leaflet-overlay-pane {
- height: 780px !important;
- width: 1340px !important;
- }
- .leaflet-pane .leaflet-overlay-pane svg {
- height: 780px !important;
- width: 1340px !important;
- transform: translate3d(0px, 0px, 0px) !important;
- }
- .dia-left-top {
- width: 16.3rem;
- display: flex;
- color: $inBlue;
- align-items: center;
- border: 1px $barBorder;
- padding: 0.5 1rem;
- position: absolute;
- background: linear-gradient(180deg, #0d2760, #081a41);
- z-index: 999;
- left: 1rem;
- top: 1rem;
- .dia-left-top-tit {
- width: 6.3rem;
- padding: .5rem;
- background: linear-gradient($boxBG);
- }
- .dia-left-top-carousel {
- width: 10rem;
- padding-left: 1rem;
- overflow: hidden;
- .el-carousel__indicator {
- display: none;
- }
- .el-carousel__item {
- display: flex;
- align-items: center;
- }
- }
- }
- .dia-left-btm-tool {
- position: absolute;
- bottom: 0;
- left: 0;
- border: 1px $barBorder;
- width: 90%;
- border-radius: 1rem;
- height: 4rem;
- }
- }
- .dia-right {
- height: 780px !important;
- position: absolute;
- right: 0;
- color: $inBlue;
- .e-right {
- height: 780px !important;
- .forthis1{
- height: 530px;
- margin-bottom: .5vh;
- .map-con {
- height: 100% !important;
- position: relative !important;
- }
- .this-title {
- width: 100%;
- font-size: .7rem;
- height: 2vh;
- line-height: 2vh;
- padding: 0rem 0 0 1rem;
- display: flex;
- justify-content: space-between;
- // background-image: -moz-linear-gradient($GradualGreen);
- // background-image: -webkit-linear-gradient($GradualGreen);
- // background-image: linear-gradient($GradualGreen);
- // box-shadow: $shadowTitle;
- .el-date-editor {
- width: 100%;
- }
- .el-input__inner {
- background: $barBgc;
- box-shadow: $shadowTitle;
- height: 1.5rem;
- color: $inBlue;
- border: 1px $barBorder;
- }
- .el-input__inner:hover {
- background: #00335c;
- }
- .el-input__icon {
- line-height: .5rem;
- height: auto;
- }
- i {
- font-size: 1rem;
- }
- span {
- font-family: $fontLED;
- color: $white;
- text-shadow: 0 0 15px rgba($color: #1eeb74, $alpha: 1);
- display: flex;
- align-items: center;
- img {
- width: 21px;
- height: 21px;
- margin-right: 5px;
- }
- }
- span:nth-child(2) {
- font-size: 1.5rem;
- }
- }
- .i-list-con {
- width: 100%;
- overflow-y: scroll;
- padding: .3rem;
- // margin-bottom:0.8rem;
- //天气
- .weather-img {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: $inBlue;
- padding: .2rem 0 0 .8rem;
- text-align: center;
- }
- .weather-info {
- color: $inBlue;
- ul {
- li {
- float: left;
- margin-right: 1rem;
- height: 1.5rem;
- line-height: 1.5rem;
- }
- }
- }
- .firestate {
- width: 85%;
- margin: 1rem auto;
- display: flex;
- align-items: center;
- .state-block1, .state-block2, .state-block3, .state-block4, .state-block5 {
- width: 20%;
- height: .2rem;
- }
- .state-block1 {
- background-color: #4784ff;
- }
- .state-block2 {
- background-color: #25dbcd;
- }
- .state-block3 {
- background-color: #dad028;
- }
- .state-block4 {
- background-color: #fb7d2a;
- }
- .state-block5 {
- background-color: #f04143;
- }
- .state-on {
- height: .6rem;
- }
- }
- //事件列表
- .event-list-search {
- padding: 0 .5rem;
- margin-bottom: 1rem;
- }
- // 清除el折叠样式
- .el-collapse {
- border: none;
- margin: 0;
- }
- .el-collapse-item__header {
- background: none;
- padding: 0;
- height: fit-content !important;
- border-bottom: none;
- line-height: normal !important;
- }
- .el-collapse-item__arrow {
- color: $inBlue;
- position: absolute;
- left: 1rem;
- margin: 0;
- }
- .el-collapse-item__wrap {
- background: none;
- border-bottom: none;
- }
- .el-collapse-item__content {
- padding-bottom: 0;
- }
- .this-child {
- width: 100% !important;
- .d-l-l-text {
- padding-left: 1.1rem !important;
- width: auto !important;
- }
- }
- .this-con {
- width: 100%;
- padding: 1rem;
- height: 515px;
- overflow-y: scroll;
- overflow-x: hidden;
- display: flex;
- flex-direction: column;
- .this-con-list-info {
- padding-bottom: .5rem;
- float: left;
- color: #6da0c3;
- }
- .this-con-list {
- padding: 2rem 0;
- height: auto;
- float: left;
- border-bottom: 1px solid #094268;
- }
- .this-con-list:first-child {
- padding-top: 0;
- }
- .this-con-list:last-child {
- border-bottom: 0;
- }
- .z-begin {
- text-align: center;
- padding: 5px 10px;
- color: #fff;
- background: #3c84b5;
- border-radius: 5px;
- margin-bottom: 10px;
- margin: 0 auto;
- }
- .z-info-list {
- width: 100%;
- margin-top: 2rem;
- display: flex;
- img {
- border-radius: .3rem;
- }
- .z-info-list-con {
- display: flex;
- flex-direction: column;
- .z-info {
- width: 100%;
- // background: $eventBG;
- margin-top: .5rem;
- border-radius: .3rem;
- display: flex;
- flex-direction: column;
- }
- }
- }
- .el-timeline {
- .el-timeline-item__tail {
- border-left: 2px solid #28567f;
- }
- .el-timeline-item__timestamp {
- color: $inBlue;
- }
- .el-card {
- background: $eventBG;
- border: 1px $barBorder;
- .el-card__body {
- padding: 1rem;
- }
- }
- }
- }
- .mg-t-8 {
- margin-top: 8px;
- }
- .user-and-time {
- display: flex;
- flex-direction: column;
- span:first-child {
- font-size: .8rem;
- color: #01d1eb;
- font-weight: bolder;
- display: inline-block;
- }
- span:last-child {
- font-size: .8rem;
- color: #6da0c3;
- display: inline-block;
- padding-top: .2rem;
- }
- h6 {
- margin: 0;
- }
- }
- }
- .small-bottom-margin {
- margin-bottom: .2rem !important;
- }
- }
- .forthis1-1{
- height: 776px;
- margin-bottom: .5vh;
- .map-con {
- height: 100% !important;
- position: relative !important;
- }
- .this-title {
- width: 100%;
- font-size: .7rem;
- height: 2vh;
- line-height: 2vh;
- padding: 0rem 0 0 1rem;
- display: flex;
- justify-content: space-between;
- // background-image: -moz-linear-gradient($GradualGreen);
- // background-image: -webkit-linear-gradient($GradualGreen);
- // background-image: linear-gradient($GradualGreen);
- // box-shadow: $shadowTitle;
- .el-date-editor {
- width: 100%;
- }
- .el-input__inner {
- background: $barBgc;
- box-shadow: $shadowTitle;
- height: 1.5rem;
- color: $inBlue;
- border: 1px $barBorder;
- }
- .el-input__inner:hover {
- background: #00335c;
- }
- .el-input__icon {
- line-height: .5rem;
- height: auto;
- }
- i {
- font-size: 1rem;
- }
- span {
- font-family: $fontLED;
- color: $white;
- text-shadow: 0 0 15px rgba($color: #1eeb74, $alpha: 1);
- display: flex;
- align-items: center;
- img {
- width: 21px;
- height: 21px;
- margin-right: 5px;
- }
- }
- span:nth-child(2) {
- font-size: 1.5rem;
- }
- }
- .i-list-con {
- width: 100%;
- overflow-y: scroll;
- padding: .3rem;
- // margin-bottom:0.8rem;
- //天气
- .weather-img {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: $inBlue;
- padding: .2rem 0 0 .8rem;
- text-align: center;
- }
- .weather-info {
- color: $inBlue;
- ul {
- li {
- float: left;
- margin-right: 1rem;
- height: 1.5rem;
- line-height: 1.5rem;
- }
- }
- }
- .firestate {
- width: 85%;
- margin: 1rem auto;
- display: flex;
- align-items: center;
- .state-block1, .state-block2, .state-block3, .state-block4, .state-block5 {
- width: 20%;
- height: .2rem;
- }
- .state-block1 {
- background-color: #4784ff;
- }
- .state-block2 {
- background-color: #25dbcd;
- }
- .state-block3 {
- background-color: #dad028;
- }
- .state-block4 {
- background-color: #fb7d2a;
- }
- .state-block5 {
- background-color: #f04143;
- }
- .state-on {
- height: .6rem;
- }
- }
- //事件列表
- .event-list-search {
- padding: 0 .5rem;
- margin-bottom: 1rem;
- }
- // 清除el折叠样式
- .el-collapse {
- border: none;
- margin: 0;
- }
- .el-collapse-item__header {
- background: none;
- padding: 0;
- height: fit-content !important;
- border-bottom: none;
- line-height: normal !important;
- }
- .el-collapse-item__arrow {
- color: $inBlue;
- position: absolute;
- left: 1rem;
- margin: 0;
- }
- .el-collapse-item__wrap {
- background: none;
- border-bottom: none;
- }
- .el-collapse-item__content {
- padding-bottom: 0;
- }
- .this-child {
- width: 100% !important;
- .d-l-l-text {
- padding-left: 1.1rem !important;
- width: auto !important;
- }
- }
- .this-con {
- width: 100%;
- padding: 1rem;
- height: 755px;
- overflow-y: scroll;
- overflow-x: hidden;
- display: flex;
- flex-direction: column;
- .this-con-list-info {
- padding-bottom: .5rem;
- float: left;
- color: #6da0c3;
- }
- .this-con-list {
- padding: 2rem 0;
- height: auto;
- float: left;
- border-bottom: 1px solid #094268;
- }
- .this-con-list:first-child {
- padding-top: 0;
- }
- .this-con-list:last-child {
- border-bottom: 0;
- }
- .z-begin {
- text-align: center;
- padding: 5px 10px;
- color: #fff;
- background: #3c84b5;
- border-radius: 5px;
- margin-bottom: 10px;
- margin: 0 auto;
- }
- .z-info-list {
- width: 100%;
- margin-top: 2rem;
- display: flex;
- img {
- border-radius: .3rem;
- }
- .z-info-list-con {
- display: flex;
- flex-direction: column;
- .z-info {
- width: 100%;
- // background: $eventBG;
- margin-top: .5rem;
- border-radius: .3rem;
- display: flex;
- flex-direction: column;
- }
- }
- }
- .el-timeline {
- .el-timeline-item__tail {
- border-left: 2px solid #28567f;
- }
- .el-timeline-item__timestamp {
- color: $inBlue;
- }
- .el-card {
- background: $eventBG;
- border: 1px $barBorder;
- .el-card__body {
- padding: 1rem;
- }
- }
- }
- }
- .mg-t-8 {
- margin-top: 8px;
- }
- .user-and-time {
- display: flex;
- flex-direction: column;
- span:first-child {
- font-size: .8rem;
- color: #01d1eb;
- font-weight: bolder;
- display: inline-block;
- }
- span:last-child {
- font-size: .8rem;
- color: #6da0c3;
- display: inline-block;
- padding-top: .2rem;
- }
- h6 {
- margin: 0;
- }
- }
- }
- .small-bottom-margin {
- margin-bottom: .2rem !important;
- }
- }
- .forthis2{
- height: 240px;
- margin-bottom: .5vh;
- }
- }
- button {
- padding: 0 .3rem;
- height: 1.5rem;
- background-color: #112543;
- color: $inBlue;
- border: 1px $searchBorder;
- }
- button:hover {
- text-shadow: 0 0 15px rgba($color: $inBlueHover, $alpha: 1.0);
- }
- .z-info-btm-grp {
- width: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .z-info-btm-grp-top {
- display: flex;
- justify-content: space-between;
- padding: .5rem 0;
- .z-info-btm-grp-left {
- }
- .z-info-btm-grp-right {
- }
- }
- .z-info-btm-input {
- width: 100%;
- display: flex;
- flex-direction: column;
- .z-info-btm-input-btn {
- padding: .5rem 0;
- display: flex;
- justify-content: space-between;
- }
- .el-textarea__inner {
- background: $eventBG;
- border: 1px $searchBorder;
- color: $inBlue;
- }
- }
- }
- }
- }
- // 一体化可视化模板
- .visual-con {
- width: 100%;
- height: 100%;
- margin: 0 auto;
- overflow: hidden;
- background: linear-gradient($conBg);
- position: absolute;
- .el-input__inner {
- border: 1px $searchBorder;
- background-color: $searchBG;
- color: $inBlue;
- }
- .map-tip {
- .d-l-con {
- width: 100%;
- box-shadow: none;
- .d-l-l-text {
- width: 100%;
- //white-space: nowrap;
- h4 {
- display: flex;
- color: #04080c;
- }
- }
- }
- }
- //收起展开
- .mascot {
- position: fixed;
- bottom: 4rem;
- right: 20rem;
- z-index: 999;
- cursor: pointer;
- -webkit-transform: translateX(0);
- transform: translateX(0);
- transition: all 0.5s ease-in-out;
- }
- .indent-style {
- -webkit-transform: translateX(19rem) !important;
- transform: translateX(19rem) !important;
- transition: all 0.5s ease-in-out !important;
- }
- .indent-left {
- -webkit-transform: translateX(-23rem) !important;
- transform: translateX(-23rem) !important;
- transition: all 0.5s ease-in-out !important;
- }
- .indent-right {
- -webkit-transform: translateX(20rem) !important;
- transform: translateX(20rem) !important;
- transition: all 0.5s ease-in-out !important;
- }
- .bottom-btn {
- position: absolute;
- right: 100px;
- bottom: 50px;
- width: 10rem;
- height: 7rem;
- // background: url(/static/img/btn-six.695dcd53.png) no-repeat left;
- background-size: 100%;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-transform: translateX(0px);
- transform: translateX(0px);
- -webkit-transition: all 0.5s ease-in-out;
- transition: all 0.5s ease-in-out;
- cursor: pointer;
- font-size: 1rem;
- color: $fBlueG;
- }
- .bottom-btn:hover {
- filter: brightness(2.3);
- -webkit-transform: translateX(-20px);
- transform: translateX(-20px);
- transition: all 0.5s ease-in-out;
- }
- .el-dropdown {
- span {
- color: $white;
- width: 100%;
- display: block;
- height: 40px;
- line-height: 40px;
- font-size: 12px;
- }
- }
- .el-form-item {
- margin-bottom: 1rem;
- }
- .visual-body {
- width: 100%;
- display: flex;
- align-items: top;
- .leftbar, .rightbar {
- position: absolute;
- font-size: 14px;
- top: 11vh;
- height: auto;
- display: flex;
- z-index: 1000;
- flex-direction: column;
- overflow-y: scroll;
- }
- .leftbar {
- width: 23rem;
- left: 0;
- -webkit-transform: translateX(0);
- transform: translateX(0);
- transition: all 0.5s ease-in-out;
- }
- .rightbar {
- width: 19rem;
- right: 0;
- -webkit-transform: translateX(0);
- transform: translateX(0);
- transition: all 0.5s ease-in-out;
- .right-item1 {
- width: 18rem;
- }
- .right-item2 {
- width: 18rem;
- }
- }
- .rightbar-index {
- width: 36rem !important;
- display: flex;
- flex-direction: row;
- overflow-x: hidden;
- }
- }
- }
- .event-l-con {
- width: 100%;
- .this-content {
- width: 100%;
- font-size: 1rem;
- line-height: 2rem;
- padding-left: 15px;
- display: flex;
- padding: 1rem 1rem;
- background-image: -moz-linear-gradient($GradualGreen);
- background-image: -webkit-linear-gradient($GradualGreen);
- background-image: linear-gradient($GradualGreen);
- box-shadow: $shadowTitle;
- margin-bottom: 2vh;
- .icon {
- width: 3.2rem;
- display: flex;
- justify-content: center;
- align-items: center;
- height: 3.2rem;
- font-size: 1.8rem;
- border-radius: 100rem;
- text-align: center;
- color: $white;
- border: .2rem $barBorder;
- background: $deepBlue;
- }
- .text-con {
- width: 65%;
- padding-left: 1rem;
- display: flex;
- flex-direction: column;
- justify-content: center;
- h3 {
- font-weight: bolder;
- align-items: center;
- display: flex;
- justify-content: space-between;
- h4 {
- margin-left: 1rem;
- font-family: $fontLED;
- font-size: 1.5rem;
- }
- }
- .text-con-r {
- display: flex;
- justify-content: space-between;
- .icon-text {
- display: flex;
- font-size: .7;
- color: $fListTitle;
- align-items: center;
- padding: .5rem 0 0 0;
- h5 {
- font-size: .8rem;
- line-height: 1rem;
- margin-right: .3rem;
- }
- h6 {
- font-size: 1rem;
- line-height: 1rem;
- font-family: $fontLED;
- color: $fBlue;
- }
- }
- span {
- font-family: $fontLED;
- color: $fBlueG;
- display: flex;
- align-items: center;
- img {
- width: 21px;
- height: 21px;
- margin-right: 5px;
- }
- }
- span:nth-child(2) {
- font-size: 1.5rem;
- }
- }
- }
- }
- @each $c in $iconColor {
- $i: index($iconColor, $c); // 获取 $c 在数组中的索引,并赋值给 $i 赋值用冒号,不是等号~!
- .this-content:nth-child(#{$i}) .icon {
- // 经典的地方来了,SCSS 循环是从 1 开始,不是 0 哦~
- color: $c; // 背景色
- &:hover {
- color: lighten($c, 10%); // hover 后的颜色
- }
- }
- }
- @each $f in $iconColor {
- $i: index($iconColor, $f); // 获取 $c 在数组中的索引,并赋值给 $i 赋值用冒号,不是等号~!
- .this-content:nth-child(#{$i}) .text-con h3 {
- // 经典的地方来了,SCSS 循环是从 1 开始,不是 0 哦~
- color: $f; // 背景色
- &:hover {
- color: lighten($f, 10%); // hover 后的颜色
- }
- }
- }
- }
- .forthis {
- margin-bottom: .5vh;
- // -moz-border-radius-topleft: 0;
- // -moz-border-radius-bottomright: 0;
- // background-color: $barBgc;
- // box-shadow: $barShadow;
- // border: 1px $barBorder;
- .map-con {
- height: 100% !important;
- position: relative !important;
- }
- .this-title {
- width: 100%;
- font-size: .7rem;
- height: 2vh;
- line-height: 2vh;
- padding: 0rem 0 0 1rem;
- display: flex;
- justify-content: space-between;
- // background-image: -moz-linear-gradient($GradualGreen);
- // background-image: -webkit-linear-gradient($GradualGreen);
- // background-image: linear-gradient($GradualGreen);
- // box-shadow: $shadowTitle;
- .el-date-editor {
- width: 100%;
- }
- .el-input__inner {
- background: $barBgc;
- box-shadow: $shadowTitle;
- height: 1.5rem;
- color: $inBlue;
- border: 1px $barBorder;
- }
- .el-input__inner:hover {
- background: #00335c;
- }
- .el-input__icon {
- line-height: .5rem;
- height: auto;
- }
- i {
- font-size: 1rem;
- }
- span {
- font-family: $fontLED;
- color: $white;
- text-shadow: 0 0 15px rgba($color: #1eeb74, $alpha: 1);
- display: flex;
- align-items: center;
- img {
- width: 21px;
- height: 21px;
- margin-right: 5px;
- }
- }
- span:nth-child(2) {
- font-size: 1.5rem;
- }
- }
- .i-list-con {
- width: 100%;
- overflow-y: scroll;
- padding: .3rem;
- // margin-bottom:0.8rem;
- //天气
- .weather-img {
- display: flex;
- flex-direction: column;
- align-items: center;
- color: $inBlue;
- padding: .2rem 0 0 .8rem;
- text-align: center;
- }
- .weather-info {
- color: $inBlue;
- ul {
- li {
- float: left;
- margin-right: 1rem;
- height: 1.5rem;
- line-height: 1.5rem;
- }
- }
- }
- .firestate {
- width: 85%;
- margin: 1rem auto;
- display: flex;
- align-items: center;
- .state-block1, .state-block2, .state-block3, .state-block4, .state-block5 {
- width: 20%;
- height: .2rem;
- }
- .state-block1 {
- background-color: #4784ff;
- }
- .state-block2 {
- background-color: #25dbcd;
- }
- .state-block3 {
- background-color: #dad028;
- }
- .state-block4 {
- background-color: #fb7d2a;
- }
- .state-block5 {
- background-color: #f04143;
- }
- .state-on {
- height: .6rem;
- }
- }
- //事件列表
- .event-list-search {
- padding: 0 .5rem;
- margin-bottom: 1rem;
- }
- // 清除el折叠样式
- .el-collapse {
- border: none;
- margin: 0;
- }
- .el-collapse-item__header {
- background: none;
- padding: 0;
- height: fit-content !important;
- border-bottom: none;
- line-height: normal !important;
- }
- .el-collapse-item__arrow {
- color: $inBlue;
- position: absolute;
- left: 1rem;
- margin: 0;
- }
- .el-collapse-item__wrap {
- background: none;
- border-bottom: none;
- }
- .el-collapse-item__content {
- padding-bottom: 0;
- }
- .this-child {
- width: 100% !important;
- .d-l-l-text {
- padding-left: 1.1rem !important;
- width: auto !important;
- }
- }
- .this-con {
- width: 100%;
- padding: 1rem;
- height: 62vh;
- overflow-y: scroll;
- overflow-x: hidden;
- display: flex;
- flex-direction: column;
- .this-con-list-info {
- padding-bottom: .5rem;
- float: left;
- color: #6da0c3;
- }
- .this-con-list {
- padding: 2rem 0;
- height: auto;
- float: left;
- border-bottom: 1px solid #094268;
- }
- .this-con-list:first-child {
- padding-top: 0;
- }
- .this-con-list:last-child {
- border-bottom: 0;
- }
- .z-begin {
- text-align: center;
- padding: 5px 10px;
- color: #fff;
- background: #3c84b5;
- border-radius: 5px;
- margin-bottom: 10px;
- margin: 0 auto;
- }
- .z-info-list {
- width: 100%;
- margin-top: 2rem;
- display: flex;
- img {
- border-radius: .3rem;
- }
- .z-info-list-con {
- display: flex;
- flex-direction: column;
- .z-info {
- width: 100%;
- // background: $eventBG;
- margin-top: .5rem;
- border-radius: .3rem;
- display: flex;
- flex-direction: column;
- }
- }
- }
- .el-timeline {
- .el-timeline-item__tail {
- border-left: 2px solid #28567f;
- }
- .el-timeline-item__timestamp {
- color: $inBlue;
- }
- .el-card {
- background: $eventBG;
- border: 1px $barBorder;
- .el-card__body {
- padding: 1rem;
- }
- }
- }
- }
- .mg-t-8 {
- margin-top: 8px;
- }
- .user-and-time {
- display: flex;
- flex-direction: column;
- span:first-child {
- font-size: .8rem;
- color: #01d1eb;
- font-weight: bolder;
- display: inline-block;
- }
- span:last-child {
- font-size: .8rem;
- color: #6da0c3;
- display: inline-block;
- padding-top: .2rem;
- }
- h6 {
- margin: 0;
- }
- }
- }
- .small-bottom-margin {
- margin-bottom: .2rem !important;
- }
- }
- .d-evnet-list-con {
- padding: .5rem .5rem !important;
- align-items: flex-start !important;
- }
- .sj-collapse {
- width: 100% !important;
- padding-top: .3rem !important;
- padding-bottom: .3rem !important;
- padding-left: 1rem;
- }
- .d-l-con {
- font-size: .7rem;
- cursor: pointer;
- display: flex;
- align-items: center;
- padding: 0 .5rem;
- box-shadow: $shadowList;
- flex-wrap: wrap;
- //数字林业
- .event-count {
- width: 100%;
- display: flex;
- justify-content: space-evenly;
- padding: .3rem 0;
- margin-bottom: .5rem;
- .count-number {
- padding: .3rem .5rem;
- border: 2px $countBorder;
- box-shadow: $shadowCount;
- border-radius: .3rem;
- font-weight: bolder;
- font-size: 1.5rem;
- z-index: 1000;
- background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(188, 229, 255, 1)), to(rgba(59, 77, 255, 1)));
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- }
- @for $i from 1 through length($iconBg) {
- .icon-con:nth-child(#{length($iconBg)}n+#{$i}) .icon {
- background: nth($iconBg, $i);
- }
- }
- .el-table--border, .el-table--border::after {
- border: 1px $tableBorder;
- background-color: $searchBG
- }
- .el-table--border {
- .el-table--group {
- border: 1px $tableBorder;
- }
- .el-table__cell {
- border-right: 1px $tableBorder;;
- }
- }
- .el-table::before {
- background: $searchBG;
- }
- .el-table {
- background: $searchBG;
- color: $inBlue;
- thead {
- }
- tr {
- background: $searchBG;
- }
- td {
- text-align: center;
- }
- .el-table__header-wrapper {
- th {
- color: $inBlue;
- font-size: .8rem;
- }
- }
- thead.is-group {
- .el-table__cell {
- text-align: center;
- background: $searchBG;
- border-bottom: 1px $tableBorder;
- border-right: 1px $tableBorder;
- padding: 0;
- font-weight: normal;
- }
- }
- }
- .el-table__empty-block {
- min-height: auto;
- }
- .el-table__empty-text {
- line-height: 30px;
- }
- .el-table__header {
- width: auto !important
- }
- .el-table__empty-block {
- width: auto !important
- }
- .el-table__body-wrapper {
- .el-table__body {
- width: auto !important
- }
- }
- .el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell {
- background-color: #0f3655;
- }
- .icon-con {
- display: flex;
- margin-bottom: 1rem;
- align-items: center;
- .icon-dot {
- width: 1rem;
- height: 1rem;
- }
- .icon-small {
- width: 1.5rem;
- height: 1.5rem;
- font-size: 1rem;
- }
- .icon-mid {
- width: 2.5rem;
- height: 2.5rem;
- font-size: 1.5rem;
- }
- .icon-large {
- width: 3rem;
- height: 3rem;
- font-size: 2rem;
- }
- .icon {
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: .4rem;
- text-align: center;
- color: $white !important;
- border: .2rem $barBorder;
- }
- h3 {
- font-size: .8rem;
- line-height: 1rem;
- color: $fListTitle;
- margin-top: .5rem;
- }
- .personnel-name {
- h6 {
- font-size: 1rem !important;
- }
- }
- .icon-text {
- display: flex;
- flex-direction: column;
- justify-content: center;
- font-size: .7;
- color: $fListTitle;
- padding: 0 1.5rem 0 .5rem;
- h5 {
- font-size: .8rem;
- line-height: 1rem;
- margin-right: .3rem;
- }
- h6 {
- font-size: 1.2rem;
- font-family: $fontLED;
- color: $fBlue;
- }
- }
- }
- .el-tag--dark {
- border: 0
- }
- .list-tit {
- color: $fListTitle !important;
- font-size: 0.5rem !important;
- font-weight: normal;
- display: block;
- max-width: 90%;
- }
- .d-l-l-text {
- display: flex;
- align-items: center;
- flex: 1;
- color: $fListTitle;
- padding: .2rem;
- .el-tooltip__popper{
- width: 100px;
- }
- h4 {
- font-size: .7rem;
- margin: 0;
- font-weight: normal;
- display: block;
- max-width: 90%;
- line-height: 1rem;
- }
- h3 {
- padding: .3rem;
- }
- h2 {
- padding-top: .5rem;
- }
- .text-gray {
- color: $textGray;
- }
- .collapse-title {
- padding-left: 1.2rem;
- }
- i {
- margin-right: .6rem;
- }
- .i-small {
- width: .5rem;
- height: .5rem;
- display: inline-block;
- background: #2ee0fb;
- }
- .icon-sxt {
- color: $inBlueHover;
- font-size: 1rem;
- display: inline-block;
- background: none;
- }
- }
- .event-list-img {
- width: 3rem;
- height: 2rem;
- margin-right: .5rem;
- }
- .event-list-text {
- width: 77% !important;
- display: flex;
- align-items: left;
- flex-direction: column !important;
- h3 {
- font-size: .8rem;
- font-weight: bolder;
- margin: 0;
- color: $fListTitle;
- display: block;
- line-height: 1rem;
- padding-bottom: .2rem;
- }
- h4 {
- font-size: .7rem;
- margin: 0;
- display: flex;
- color: $listText;
- font-weight: normal;
- line-height: 1rem;
- padding-bottom: .1rem;
- justify-content: space-between;
- span {
- margin-right: .5rem;
- }
- }
- i {
- margin-right: .6rem;
- }
- .i-small {
- width: .5rem;
- height: .5rem;
- display: inline-block;
- background: #2ee0fb;
- }
- .icon-sxt {
- color: $inBlueHover;
- font-size: 1rem;
- display: inline-block;
- background: none;
- }
- }
- .state-wcl, .state-wyc {
- font-size: 0.7rem !important;
- margin: 0;
- font-weight: normal;
- max-width: 90%;
- }
- .state-wcl {
- color: $state-wcl !important;
- }
- .state-wyc {
- color: $state-wyc !important;
- }
- .d-l-l-count {
- width: 25%;
- font-size: 1.2rem;
- text-align: right;
- font-family: $fontLED;
- color: $fBlueG;
- line-height: 1.2rem;
- }
- //曝光台
- .bgt-state {
- // width: 35%;
- width:38%;
- padding: 0.3rem 0.5rem;
- border: 2px solid rgba(0, 174, 255, 0.9);
- -webkit-box-shadow: 0 0 0.5rem 0 #00c8ff inset;
- box-shadow: 0 0 0.5rem 0 #00c8ff inset;
- border-radius: 0.3rem;
- font-size: .7rem;
- z-index: 1000;
- display: flex;
- margin-right: .5rem;
- align-content: center;
- justify-content: space-between;
- color: $white;
- .bgt-state-frequency {
- width: 1.1rem;
- height: 1.1rem;
- font-size: 0.8rem;
- background-color: #1294a0;
- text-align: center;
- line-height: 1.2rem;
- }
- .bgt-state-minute {
- }
- }
- .bgt-info {
- width: 60%;
- display: flex;
- flex-direction: column;
- //事件状态
- //新上报
- .event-state-sb {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-sb;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-sb {
- width: fit-content;
- background-color: $eventStateColor-sb;
- color: $white;
- // padding: .4rem;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- //催办
- .event-state-cb {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-cb;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-cb {
- width: fit-content;
- background-color: $eventStateColor-cb;
- color: $white;
- // padding: .4rem;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- //签收
- .event-state-qs {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-qs;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-qs {
- width: fit-content;
- background-color: $eventStateColor-qs;
- color: $white;
- // padding: .4rem;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- //误报
- .event-state-wb {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-wb;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-wb {
- width: fit-content;
- background-color: $eventStateColor-wb;
- color: $white;
- // padding: .4rem;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- //重复
- .event-state-cf {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-cf;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-cf {
- width: fit-content;
- background-color: $eventStateColor-cf;
- color: $white;
- // padding: .4rem;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- //办结
- .event-state-bj {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-bj;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-bj {
- width: fit-content;
- background-color: $eventStateColor-bj;
- color: $white;
- // padding: .4rem;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- //归档
- .event-state-gd {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-gd;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-gd {
- width: fit-content;
- background-color: $eventStateColor-gd;
- color: $white;
- // padding: .4rem;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- //确认
- .event-state-qr {
- display: flex;
- align-items: center;
- i {
- color: $eventStateColor-qr;
- font-size: 1rem;
- margin-left: -.5rem;
- }
- .event-list-state-qr {
- width: fit-content;
- background-color: $eventStateColor-qr;
- color: $white;
- padding:0.25rem 0.4rem;
- margin-left: -.5rem;
- margin-bottom: .2rem;
- border-radius: .2rem;
- }
- }
- .bgt-info-name {
- color: $inBlue;
- font-weight: bolder;
- }
- .bgt-info-place {
- color: $subtitle;
- ul {
- li {
- float: left;
- padding-right: .3rem;
- }
- }
- }
- }
- .bgt-img {
- img {
- margin-right: .5rem;
- }
- }
- }
- .d-l-con:hover,
- .on {
- // background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
- box-shadow: $shadowListHover;
- h4, h3 {
- color: $white;
- span {
- color: $white !important;
- }
- }
- .i-small {
- box-shadow: $shadowListHoverI;
- }
- .icon-sxt {
- color: #fbff0b;
- }
- span {
- color: $white;
- }
- }
- .d-l-con-icon {
- font-size: .7rem;
- cursor: pointer;
- display: flex;
- align-items: center;
- // padding: .25rem .5rem;
- flex-wrap: wrap;
- @for $i from 1 through length($iconBg) {
- .icon-con:nth-child(#{length($iconBg)}n+#{$i}) .icon {
- background: nth($iconBg, $i);
- }
- }
- .icon-animal-con-count {
- padding: .5rem 0 !important;
- border: 1px $barBorder;
- }
- .animal-title {
- padding: .1rem !important;
- }
- .icon-con {
- width: 100%;
- display: flex;
- padding: 0.5rem;
- align-items: center;
- .icon-dot {
- width: 1rem;
- height: 1rem;
- }
- .icon-small {
- width: 1.5rem;
- height: 1.5rem;
- font-size: 1rem;
- }
- .icon-normal {
- width: 2.2rem;
- height: 2.2rem;
- font-size: 1.4rem;
- }
- .icon-mid {
- width: 2.5rem;
- height: 2.5rem;
- font-size: 1.5rem;
- }
- .icon-large {
- width: 3rem;
- height: 3rem;
- font-size: 2rem;
- }
- .icon-animal {
- img {
- width: 2.5rem;
- height: 2.5rem;
- }
- }
- .icon {
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: .4rem;
- text-align: center;
- color: $white !important;
- border: .2rem $barBorder;
- }
- h3 {
- font-size: .8rem;
- line-height: 1rem;
- color: $fListTitle;
- margin-top: .5rem;
- }
- .personnel-name {
- h6 {
- font-size: 1rem !important;
- }
- }
- .animal-text {
- padding: 0 !important;
- h5 {
- margin-right: 0 !important;
- margin-top: .2rem !important;
- }
- }
- .icon-animal-text {
- h5 {
- margin-right: 0 !important;
- margin-top: .2rem;
- }
- }
- .icon-text {
- display: flex;
- flex-direction: column;
- justify-content: center;
- font-size: .7;
- color: $fListTitle;
- padding: 0 .5rem;
- h5 {
- font-size: .6rem;
- line-height: 1rem;
- margin-right: .3rem;
- }
- h6 {
- font-size: 1.2rem;
- font-family: $fontLED;
- color: $fBlue;
- }
- }
- .e-state {
- width: 100%;
- height: 2rem;
- line-height: 2rem;
- display: flex;
- color: $inBlue;
- background: no-repeat center center;
- background-size: cover;
- margin-top: .5rem;
- justify-content: space-around;
- }
- }
- .icon-con:hover, .on {
- box-shadow: $shadowListHover;
- .icon-text {
- h5 {
- color: $white;
- }
- h6 {
- color: $white;
- }
- }
- }
- .el-tag--dark {
- border: 0
- }
- .list-tit {
- color: $fListTitle !important;
- font-size: 0.5rem !important;
- font-weight: normal;
- display: block;
- max-width: 90%;
- }
- .d-l-l-text {
- display: flex;
- align-items: center;
- flex: 1;
- h4 {
- font-size: .7rem;
- margin: 0;
- color: $fListTitle;
- font-weight: normal;
- display: block;
- max-width: 90%;
- line-height: 1rem;
- }
- i {
- margin-right: .6rem;
- }
- .i-small {
- width: .5rem;
- height: .5rem;
- display: inline-block;
- background: #2ee0fb;
- }
- .icon-sxt {
- color: $inBlueHover;
- font-size: 1rem;
- display: inline-block;
- background: none;
- }
- }
- .state-wcl, .state-wyc {
- font-size: 0.7rem !important;
- margin: 0;
- font-weight: normal;
- display: block;
- max-width: 90%;
- }
- .state-wcl {
- color: $state-wcl;
- }
- .state-wyc {
- color: $state-wyc;
- }
- .d-l-l-count {
- width: 25%;
- font-size: 1.2rem;
- text-align: right;
- font-family: $fontLED;
- color: $fBlueG;
- line-height: 1.2rem;
- }
- }
- //一体化弹层
- //覆盖elementUI
- .el-popper[x-placement^=bottom] {
- .popper__arrow::after {
- border-bottom-color: #1cefff
- }
- }
- .el-textarea__inner {
- background: $eventBG;
- border: 1px $searchBorder;
- color: $inBlue;
- }
- .el-date-picker { //时间选择器
- width: 17.5rem;
- .el-year-table {
- td {
- padding: 3px 3px;
- .cell {
- color: #1c8b8b;
- }
- .cell:hover {
- color: #1aff5a;
- font-weight: bolder;
- }
- }
- td.current:not(.disabled) {
- .cell {
- color: #1aff5a;
- font-weight: bolder;
- }
- }
- td.today {
- .cell {
- color: #2ce3ff;
- font-weight: normal;
- }
- }
- }
- .el-picker-panel__content {
- width: 100%;
- margin: 0;
- padding-bottom: 1rem;
- }
- .el-picker-panel__icon-btn {
- color: #01d1eb;
- }
- .el-date-picker__header-label {
- color: $inBlue;
- }
- .el-date-picker__header--bordered {
- border-bottom: 1px $barBorder
- }
- }
- .el-picker-panel {
- background: #143650;
- border: 1px solid #2a3a60;
- color: #1a9696;
- }
- .el-steps--horizontal {
- margin-top: .5rem;
- }
- .el-step__title.is-process {
- color: #10c0ff !important;
- }
- .el-dialog:not(.is-fullscreen) {
- // margin-top: 10vh !important;
- margin-top: 2vh !important;
- z-index: 9999;
- }
- .el-select-dropdown__item {
- span {
- padding-left: 1rem;
- }
- }
- .el-form-item {
- margin-bottom: 1rem;
- }
- .e-btm-btn {
- width: 100%;
- height: 3rem;
- display: flex;
- justify-content: flex-end;
- .el-select {
- margin-left: 1rem !important;
- }
- .el-select-dropdown {
- margin-left: 1rem;
- padding-left: 1rem;
- }
- .el-input__inner {
- background: $searchBG;
- border: 1px solid #2a3a60;
- color: #1fb0b0;
- }
- .el-button {
- padding: .8rem 2rem;
- margin-left: 1rem;
- }
- }
- //切换
- .el-tabs__nav-wrap::after {
- background: none !important;
- }
- .el-tabs__active-bar {
- background: none;
- }
- .el-tabs--top .el-tabs__item.is-top:nth-child(2) {
- padding-left: 20px;
- margin-left: 0;
- }
- .el-tabs--top .el-tabs__item.is-top:last-child {
- padding-right: 20px;
- margin-right: 0;
- }
- .el-loading-mask {
- background: none;
- }
- .el-tabs__item {
- color: #3cd7ef;
- background: $GradualGreen;
- margin-right: 5px;
- color: #3cd7ef;
- background: -webkit-gradient(linear, right top, left top, from(#051d2b), color-stop(#00335c), to(#051d2b));
- background: linear-gradient(to left, #051d2b, #00335c, #051d2b);
- }
- .el-tabs__item:hover {
- color: #fff;
- background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
- box-shadow: rgba($color: #0567c2, $alpha: .8) 0px 0px 15px inset;
- }
- .el-tabs__item.is-active {
- color: #fff;
- font-size: 15px;
- font-weight: bolder;
- background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
- box-shadow: rgba($color: #0567c2, $alpha: .8) 0px 0px 15px inset;
- }
- .dialog-con::-webkit-scrollbar {
- display: none;
- }
- .el-dialog {
- background: #04080c;
- box-shadow: $barShadow;
- border: 1px $barBorder;
- }
- .el-dialog__header {
- padding: 15px 20px !important;
- background-image: -moz-linear-gradient($GradualGreen);
- background-image: -webkit-linear-gradient($GradualGreen);
- background-image: linear-gradient($GradualGreen);
- box-shadow: $shadowTitle;
- .el-dialog__title {
- font-weight: bolder;
- color: #3cd7ef;
- }
- }
- .el-main {
- background-color: #E9EEF3;
- color: #333;
- height: 100vh;
- padding: 0;
- .ol-attribution ul {
- display: none
- }
- .ol-rotate,
- .ol-attribution,
- .ol-zoom {
- width: -webkit-fit-content;
- }
- }
- .el-dialog__body {
- padding: 1rem;
- }
- .el-tree {
- background: none;
- }
- //下拉菜单
- .el-dropdown-menu--medium {
- .el-dropdown-menu__item {
- font-size: 12px !important;
- }
- }
- //树
- .el-tree__empty-text {
- color: #3cd7ef;
- }
- .el-tree-node__label {
- color: $white;
- }
- .el-tree-node__content:hover {
- background-color: $inBlue;
- }
- .el-tree-node:focus > .el-tree-node__content {
- background-color: $inBlue;
- }
- //外层嵌套
- .event-info {
- .event-info-top {
- width: 100%;
- .event-info-top-grp {
- width: 100%;
- display: flex;
- margin-bottom: 1rem;
- .el-input:nth-child(2) {
- margin-left: 1rem;
- }
- .el-button {
- padding: .8rem 2rem;
- margin-left: 1rem;
- }
- }
- }
- .event-info-con {
- width: 100%;
- display: flex;
- .e-left {
- width: 32%;
- }
- .e-center {
- width: 30%;
- margin-left: 1%;
- .img-company {
- width: 100%;
- height: 18.3vh;
- img {
- }
- }
- }
- .e-right {
- margin-left: 1%;
- width: 45%;
- }
- .e-location-left {
- width: 28%;
- // margin-top: 1rem;
- }
- .e-location-right {
- width: 71%;
- margin-left: 1rem;
- }
- }
- .e-btm-btn {
- width: 100%;
- height: 3rem;
- display: flex;
- justify-content: flex-end;
- }
- .el-dialog:not(.is-fullscreen) {
- margin-top: 5.5vh !important;
- }
- }
- .bignav {
- white-space: nowrap !important;
- }
- //超图工具栏
- .indexSupermapClass{//首页class
- .leaflet-control {
- display: flex !important;
- }
- .leaflet-draw-toolbar {
- margin-top: 0 !important;
- display: flex !important;
- }
- .leaflet-touch .leaflet-draw-actions {
- left: 0 !important;
- top: -33px !important;
- }
- .leaflet-top {
- top: 89vh !important;
- left: 50% !important;
- transform: translateX(-50%) !important;
- }
- .leftflet-toleft {
- -webkit-transform: translateX(-20rem) !important;
- transform: translateX(-20rem) !important;
- transition: all 0.5s ease-in-out !important;
- }
- }
- // 20220927 林业修改
- .no_hover:hover{
- background: none!important;
- box-shadow: initial;
- }
- .no_hover:hover h4{
- color:#2bacf7!important;
- }
- .no_hover:hover .event-count .count-number{
- border: 2px solid rgb(59 193 255 / 90%);
- -webkit-box-shadow: 0 0 0.5rem 0 #2700ff inset;
- box-shadow: 0 0 0.5rem 0 #2700ff inset;
- background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(#55b8f7), to(#8f3bff));
- }
- .tree_scroll::-webkit-scrollbar{
- width: 1px;
- height: 4px;
- background: #00335c;
- }
- .tz_tk .el-dialog{
- width: 20% !important;
- }
- .tz_tk .el-form-item__label{
- color: #d2d2d2;
- }
- // .d-l-l-text h4{
- // color:#fff!important;
- // }
- .no_hover .no-weight h4{
- color:#2bacf7!important;
- }
|