base.scss 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198
  1. // 字体
  2. $fontFk: zk;
  3. $fontLED: led;
  4. //颜色
  5. $white: #fff;
  6. $inBlue: #2bacf7;
  7. $subtitle: #638395;
  8. $inBlueHover: #07ffc1;
  9. $inYellow: #ffd014;
  10. $deepBlue: #0b293a;
  11. $listText: #1a7988;
  12. $textGray: #ccc;
  13. $grayBlue: #5685a0;
  14. $tipHover: #2082ba;
  15. $eventBG: #0b284e;
  16. //渐变
  17. $GradualGreen: 180deg, rgba($color: #124799, $alpha: .8),
  18. rgba($color: #04151e, $alpha: .8);
  19. $conBg: 180deg, rgba($color: #0f162c, $alpha: 1),
  20. rgba($color: #040b1f, $alpha: 1);
  21. $btmMemu: 180deg, rgba($color: #0d1620, $alpha: 1),
  22. rgba($color: #020f2a, $alpha: 1);
  23. $boxBG: 180deg, rgba($color: #0d2760, $alpha: 1),
  24. rgba($color: #081a41, $alpha: 1);
  25. //内阴影
  26. $shadowList: 0 0 1rem 0 rgba($color: #0b1b25, $alpha: .8);
  27. $shadowTitle: 0 -0.2rem .5rem 0.3rem rgba($color: #0dc0db, $alpha: .09) inset;
  28. $shadowListHover: rgba($color: #0567c2, $alpha: .7) 0px 0px 50px inset;
  29. $shadowListHoverI: 0 0 3px rgba($color: #41ff84, $alpha: .5), -0 -0 10px rgba($color: #41fff8, $alpha: .9);
  30. $shadowTip: 0 0 1rem 0 rgba($color: #387ee7, $alpha: .8) inset;
  31. $shadowCount: 0 0 .5rem 0 rgba($color: #00c8ff, $alpha: 1) inset;
  32. //可视化 数字林业
  33. $fBlue: #03c6e2;
  34. $fBlueHover: #07ffc1;
  35. $fBlueG: #0bf3f7;
  36. $fListTitle: #2bacf7;
  37. $barBgc: rgba($color: #051520, $alpha: .9);
  38. $barShadow: rgba($color: #078ad1, $alpha: .8) 0px 0px 18px inset;
  39. $barBorder: solid rgba($color: #33467f, $alpha: .7);
  40. $tableBorder: solid rgba($color: #33467f, $alpha: .7);
  41. $countBorder: solid rgba($color: #00aeff, $alpha: .9);
  42. $searchBorder: solid rgba($color: #33467f, $alpha: 1);
  43. $searchBG: #101527;
  44. $deepBG: #09192f;
  45. //icon
  46. $iconBg: #f5ad1b, #58b35d, #0FA2FF, #da8ec5, #78bfc2, #a28e52, #ff6063, #96bd5b, #f5ad1b, #da8ec5, #5f89ce, #78bfc2, #bec278, #f07779;
  47. $iconColor: #32e583, #f5ad1b, #da8ec5, #5f89ce, #78bfc2, #bec278, #f07779;
  48. //状态
  49. $state-wcl: #ff9c00;
  50. $state-wyc: #1cef84;
  51. $eventStateColor-sb: #11b57e;
  52. $eventStateColor-qs: #f18425;
  53. $eventStateColor-wb: #c2bc43;
  54. $eventStateColor-cf: #a23737;
  55. $eventStateColor-bj: #6ae08f;
  56. $eventStateColor-gd: #0369ef;
  57. $eventStateColor-qr: #20EF56;
  58. $eventStateColor-xsb: #11b57e;
  59. $eventStateColor-cb: #e63b4a;
  60. $eventStateColor-yqs: #f18425;
  61. $eventStateColor-ld: #a23737;
  62. $eventStateColor-tb: #0369ef;
  63. //日历状态
  64. $date-state1: #2abc65;
  65. $date-state2: #e68d3f;
  66. $date-state3: #d6333b;
  67. //视频摄像头预览弹层样式
  68. .videoCustomWidth {
  69. width: 1070px !important;
  70. height: 700px !important;
  71. }
  72. //电视墙视频摄像头预览弹层样式
  73. .TVWallCustomWidth {
  74. width: 1200px !important;
  75. height: 750px !important;
  76. }
  77. //公共
  78. body {
  79. height: 100%;
  80. -moz-osx-font-smoothing: grayscale;
  81. -webkit-font-smoothing: antialiased;
  82. text-rendering: optimizeLegibility;
  83. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  84. }
  85. label {
  86. font-weight: 700;
  87. }
  88. html {
  89. height: 100%;
  90. box-sizing: border-box;
  91. }
  92. #app {
  93. height: 100%;
  94. }
  95. *,
  96. *:before,
  97. *:after {
  98. box-sizing: inherit;
  99. }
  100. .no-padding {
  101. padding: 0px !important;
  102. }
  103. .padding-content {
  104. padding: 4px 0;
  105. }
  106. a:focus,
  107. a:active {
  108. outline: none;
  109. }
  110. a,
  111. a:focus,
  112. a:hover {
  113. cursor: pointer;
  114. color: inherit;
  115. text-decoration: none;
  116. }
  117. div:focus {
  118. outline: none;
  119. }
  120. .fr {
  121. float: right;
  122. }
  123. .fl {
  124. float: left;
  125. }
  126. .pr-5 {
  127. padding-right: 5px;
  128. }
  129. .pl-5 {
  130. padding-left: 5px;
  131. }
  132. .block {
  133. display: block;
  134. }
  135. .pointer {
  136. cursor: pointer;
  137. }
  138. .inlineBlock {
  139. display: block;
  140. }
  141. .clearfix {
  142. &:after {
  143. visibility: hidden;
  144. display: block;
  145. font-size: 0;
  146. content: " ";
  147. clear: both;
  148. height: 0;
  149. }
  150. }
  151. aside {
  152. background: #eef1f6;
  153. padding: 8px 24px;
  154. margin-bottom: 20px;
  155. border-radius: 2px;
  156. display: block;
  157. line-height: 32px;
  158. font-size: 16px;
  159. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  160. color: #2c3e50;
  161. -webkit-font-smoothing: antialiased;
  162. -moz-osx-font-smoothing: grayscale;
  163. a {
  164. color: #337ab7;
  165. cursor: pointer;
  166. &:hover {
  167. color: rgb(32, 160, 255);
  168. }
  169. }
  170. }
  171. iframe {
  172. border: 0;
  173. }
  174. * {
  175. padding: 0;
  176. margin: 0;
  177. }
  178. a {
  179. padding: 0;
  180. margin: 0;
  181. }
  182. ul {
  183. list-style: none;
  184. }
  185. .sj-container {
  186. width: 100%;
  187. height: 100vh;
  188. }
  189. div::-webkit-scrollbar {
  190. display: none;
  191. }
  192. //#toolbar::-webkit-scrollbar {
  193. // width: 20px !important;
  194. // display: block !important;
  195. //}
  196. //
  197. //#toolbar::-webkit-scrollbar-track {
  198. // background: linear-gradient(0deg, rgba(10, 19, 47, 1.0) 0%, rgba(36, 46, 104, 1.0) 100%) !important;
  199. //}
  200. //
  201. //#toolbar::-webkit-scrollbar-thumb {
  202. // background: transparent !important;
  203. // box-shadow: 0px 0px 0px 100vh black !important;
  204. //}
  205. #icon {
  206. margin-bottom: 5rem;
  207. padding: .5rem;
  208. }
  209. .ztree {
  210. padding: .5rem;
  211. }
  212. #toolbar {
  213. color: $inBlue;
  214. }
  215. .w-5 {
  216. width: 5.5rem;
  217. }
  218. .h-9 {
  219. height: 9vh;
  220. }
  221. .h-10 {
  222. height: 10vh;
  223. }
  224. .h-13 {
  225. height: 13vh;
  226. }
  227. .h-14 {
  228. height: 14vh;
  229. }
  230. .h-15 {
  231. height: 15vh;
  232. }
  233. .h-16 {
  234. height: 16vh;
  235. }
  236. .h-18 {
  237. height: 18vh;
  238. }
  239. .h-19 {
  240. height: 19vh !important;
  241. }
  242. .h-20 {
  243. height: 20vh !important;
  244. }
  245. .h-21 {
  246. height: 21vh;
  247. }
  248. .h-22 {
  249. height: 22vh;
  250. }
  251. .h-23 {
  252. height: 23vh !important;
  253. }
  254. .h-25 {
  255. height: 25vh !important;
  256. }
  257. .h-26 {
  258. height: 26vh !important;
  259. }
  260. .h-27 {
  261. height: 27vh;
  262. }
  263. .h-28 {
  264. height: 28vh !important;
  265. }
  266. .h-29 {
  267. height: 29vh;
  268. }
  269. .h-29-5 {
  270. height: 29.5vh;
  271. }
  272. .h-30 {
  273. height: 30vh;
  274. }
  275. .h-31 {
  276. height: 31vh;
  277. }
  278. .h-35 {
  279. height: 34vh;
  280. }
  281. .h-32 {
  282. height: 31.6vh;
  283. }
  284. .h-39 {
  285. height: 39vh !important;
  286. }
  287. .h-40 {
  288. height: 40vh !important;
  289. }
  290. .h-43 {
  291. height: 42vh !important;
  292. }
  293. .h-45 {
  294. height: 45vh !important;
  295. }
  296. .h-50 {
  297. height: 50vh !important;
  298. }
  299. .h-51 {
  300. height: 51vh;
  301. }
  302. .h-55 {
  303. height: 55vh;
  304. }
  305. .h-60 {
  306. height: 59vh;
  307. }
  308. .h-63 {
  309. height: 62vh;
  310. }
  311. .h-67 {
  312. height: 66.5vh;
  313. }
  314. .h-73 {
  315. height: 74vh;
  316. }
  317. .h-78 {
  318. height: 78vh;
  319. }
  320. .h-80 {
  321. height: 80vh;
  322. }
  323. .line-h-1 {
  324. line-height: 1rem;
  325. }
  326. .w-100p {
  327. width: 100% !important;
  328. max-width: 100% !important;
  329. }
  330. .w-25 {
  331. width: 25rem !important;
  332. }
  333. .w-50 {
  334. width: 50% !important;
  335. }
  336. .w-33 {
  337. width: 33% !important;
  338. }
  339. .w-10 {
  340. width: 10rem !important;
  341. }
  342. .top-2 {
  343. top: 5vh !important;
  344. position: relative !important;
  345. }
  346. .flex-d {
  347. flex-direction: column !important;
  348. }
  349. .a-item {
  350. align-items: center;
  351. }
  352. .icon-bigger {
  353. font-size: 2.4rem !important;
  354. }
  355. .no-padding {
  356. padding: 0;
  357. }
  358. .m-t-no {
  359. margin-top: 0 !important;
  360. }
  361. .m-btm-no {
  362. margin-bottom: 0 !important;
  363. }
  364. .overflow-y {
  365. overflow-y: scroll;
  366. }
  367. .el-radio {
  368. margin-right: 1rem;
  369. }
  370. .justify-content-bt {
  371. justify-content: space-between
  372. }
  373. .justify-content-end {
  374. justify-content: end
  375. }
  376. .text-right {
  377. text-align: right;
  378. }
  379. .flex-c {
  380. flex-direction: column !important;
  381. }
  382. .flex-r {
  383. flex-direction: row !important;
  384. }
  385. .padding-box {
  386. padding-top: .3rem !important;
  387. padding-bottom: .3rem !important;
  388. }
  389. // 不换行
  390. .nowrap {
  391. flex-wrap: nowrap !important;
  392. }
  393. .d-tit {
  394. display: flex;
  395. align-items: center;
  396. flex: 1;
  397. padding: 1rem 0.5rem;
  398. h4 {
  399. font-size: 14px !important;
  400. margin: 0;
  401. color: $fListTitle;
  402. font-weight: normal;
  403. display: block;
  404. max-width: 90%;
  405. line-height: 1rem;
  406. padding-bottom: .2rem;
  407. border-bottom: 1px solid $fBlueHover;
  408. }
  409. }
  410. .t-a-center {
  411. text-align: center;
  412. }
  413. .m-r-none {
  414. margin-right: 0 !important;
  415. }
  416. .icon-text-col {
  417. margin-top: .5rem;
  418. }
  419. // 弹层按钮组
  420. .info-button-group {
  421. position: absolute;
  422. top: 0;
  423. right: 0;
  424. z-index: 1000;
  425. button {
  426. color: #3cd7ef;
  427. background: 180deg, rgba(9, 30, 54, 0.8), rgba(6, 27, 39, 0.8);
  428. margin: 5px;
  429. color: #3cd7ef;
  430. background: -webkit-gradient(linear, right top, left top, from(#051d2b), color-stop(#00335c), to(#051d2b));
  431. background: linear-gradient(to left, #051d2b, #00335c, #051d2b);
  432. margin: 5px;
  433. padding: 0.5rem 1rem;
  434. border: 0;
  435. cursor: pointer;
  436. }
  437. button:hover {
  438. color: #fff;
  439. font-weight: bolder;
  440. background: -webkit-gradient(linear, right top, left top, from(#051d2b), color-stop(#006ec8), to(#051d2b));
  441. background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
  442. -webkit-box-shadow: rgb(5 103 194 / 80%) 0px 0px 15px inset;
  443. box-shadow: rgb(5 103 194 / 80%) 0px 0px 15px inset;
  444. padding: 0.5rem 1rem;
  445. cursor: pointer;
  446. }
  447. }
  448. //弹层样式
  449. .customWidth {
  450. width: 1822px !important;
  451. height: 866px !important;
  452. }
  453. .dia-event-info {
  454. .el-row {
  455. height: 780px;
  456. }
  457. .dia-left {
  458. height: 780px !important;
  459. position: absolute;
  460. z-index: 999;
  461. button {
  462. padding: 0 .3rem;
  463. height: 1.5rem;
  464. background-color: #112543;
  465. color: $inBlue;
  466. border: 1px $searchBorder;
  467. }
  468. button:hover {
  469. text-shadow: 0 0 15px rgba($color: $inBlueHover, $alpha: 1.0);
  470. }
  471. .fire-m{
  472. position: absolute;
  473. right: 1rem;
  474. bottom: 1rem;
  475. z-index:100000;
  476. }
  477. //超图绘制截屏
  478. .leaflet-pane .leaflet-overlay-pane {
  479. height: 780px !important;
  480. width: 1340px !important;
  481. }
  482. .leaflet-pane .leaflet-overlay-pane svg {
  483. height: 780px !important;
  484. width: 1340px !important;
  485. transform: translate3d(0px, 0px, 0px) !important;
  486. }
  487. .dia-left-top {
  488. width: 16.3rem;
  489. display: flex;
  490. color: $inBlue;
  491. align-items: center;
  492. border: 1px $barBorder;
  493. padding: 0.5 1rem;
  494. position: absolute;
  495. background: linear-gradient(180deg, #0d2760, #081a41);
  496. z-index: 999;
  497. left: 1rem;
  498. top: 1rem;
  499. .dia-left-top-tit {
  500. width: 6.3rem;
  501. padding: .5rem;
  502. background: linear-gradient($boxBG);
  503. }
  504. .dia-left-top-carousel {
  505. width: 10rem;
  506. padding-left: 1rem;
  507. overflow: hidden;
  508. .el-carousel__indicator {
  509. display: none;
  510. }
  511. .el-carousel__item {
  512. display: flex;
  513. align-items: center;
  514. }
  515. }
  516. }
  517. .dia-left-btm-tool {
  518. position: absolute;
  519. bottom: 0;
  520. left: 0;
  521. border: 1px $barBorder;
  522. width: 90%;
  523. border-radius: 1rem;
  524. height: 4rem;
  525. }
  526. }
  527. .dia-right {
  528. height: 780px !important;
  529. position: absolute;
  530. right: 0;
  531. color: $inBlue;
  532. .e-right {
  533. height: 780px !important;
  534. .forthis1{
  535. height: 530px;
  536. margin-bottom: .5vh;
  537. .map-con {
  538. height: 100% !important;
  539. position: relative !important;
  540. }
  541. .this-title {
  542. width: 100%;
  543. font-size: .7rem;
  544. height: 2vh;
  545. line-height: 2vh;
  546. padding: 0rem 0 0 1rem;
  547. display: flex;
  548. justify-content: space-between;
  549. // background-image: -moz-linear-gradient($GradualGreen);
  550. // background-image: -webkit-linear-gradient($GradualGreen);
  551. // background-image: linear-gradient($GradualGreen);
  552. // box-shadow: $shadowTitle;
  553. .el-date-editor {
  554. width: 100%;
  555. }
  556. .el-input__inner {
  557. background: $barBgc;
  558. box-shadow: $shadowTitle;
  559. height: 1.5rem;
  560. color: $inBlue;
  561. border: 1px $barBorder;
  562. }
  563. .el-input__inner:hover {
  564. background: #00335c;
  565. }
  566. .el-input__icon {
  567. line-height: .5rem;
  568. height: auto;
  569. }
  570. i {
  571. font-size: 1rem;
  572. }
  573. span {
  574. font-family: $fontLED;
  575. color: $white;
  576. text-shadow: 0 0 15px rgba($color: #1eeb74, $alpha: 1);
  577. display: flex;
  578. align-items: center;
  579. img {
  580. width: 21px;
  581. height: 21px;
  582. margin-right: 5px;
  583. }
  584. }
  585. span:nth-child(2) {
  586. font-size: 1.5rem;
  587. }
  588. }
  589. .i-list-con {
  590. width: 100%;
  591. overflow-y: scroll;
  592. padding: .3rem;
  593. // margin-bottom:0.8rem;
  594. //天气
  595. .weather-img {
  596. display: flex;
  597. flex-direction: column;
  598. align-items: center;
  599. color: $inBlue;
  600. padding: .2rem 0 0 .8rem;
  601. text-align: center;
  602. }
  603. .weather-info {
  604. color: $inBlue;
  605. ul {
  606. li {
  607. float: left;
  608. margin-right: 1rem;
  609. height: 1.5rem;
  610. line-height: 1.5rem;
  611. }
  612. }
  613. }
  614. .firestate {
  615. width: 85%;
  616. margin: 1rem auto;
  617. display: flex;
  618. align-items: center;
  619. .state-block1, .state-block2, .state-block3, .state-block4, .state-block5 {
  620. width: 20%;
  621. height: .2rem;
  622. }
  623. .state-block1 {
  624. background-color: #4784ff;
  625. }
  626. .state-block2 {
  627. background-color: #25dbcd;
  628. }
  629. .state-block3 {
  630. background-color: #dad028;
  631. }
  632. .state-block4 {
  633. background-color: #fb7d2a;
  634. }
  635. .state-block5 {
  636. background-color: #f04143;
  637. }
  638. .state-on {
  639. height: .6rem;
  640. }
  641. }
  642. //事件列表
  643. .event-list-search {
  644. padding: 0 .5rem;
  645. margin-bottom: 1rem;
  646. }
  647. // 清除el折叠样式
  648. .el-collapse {
  649. border: none;
  650. margin: 0;
  651. }
  652. .el-collapse-item__header {
  653. background: none;
  654. padding: 0;
  655. height: fit-content !important;
  656. border-bottom: none;
  657. line-height: normal !important;
  658. }
  659. .el-collapse-item__arrow {
  660. color: $inBlue;
  661. position: absolute;
  662. left: 1rem;
  663. margin: 0;
  664. }
  665. .el-collapse-item__wrap {
  666. background: none;
  667. border-bottom: none;
  668. }
  669. .el-collapse-item__content {
  670. padding-bottom: 0;
  671. }
  672. .this-child {
  673. width: 100% !important;
  674. .d-l-l-text {
  675. padding-left: 1.1rem !important;
  676. width: auto !important;
  677. }
  678. }
  679. .this-con {
  680. width: 100%;
  681. padding: 1rem;
  682. height: 515px;
  683. overflow-y: scroll;
  684. overflow-x: hidden;
  685. display: flex;
  686. flex-direction: column;
  687. .this-con-list-info {
  688. padding-bottom: .5rem;
  689. float: left;
  690. color: #6da0c3;
  691. }
  692. .this-con-list {
  693. padding: 2rem 0;
  694. height: auto;
  695. float: left;
  696. border-bottom: 1px solid #094268;
  697. }
  698. .this-con-list:first-child {
  699. padding-top: 0;
  700. }
  701. .this-con-list:last-child {
  702. border-bottom: 0;
  703. }
  704. .z-begin {
  705. text-align: center;
  706. padding: 5px 10px;
  707. color: #fff;
  708. background: #3c84b5;
  709. border-radius: 5px;
  710. margin-bottom: 10px;
  711. margin: 0 auto;
  712. }
  713. .z-info-list {
  714. width: 100%;
  715. margin-top: 2rem;
  716. display: flex;
  717. img {
  718. border-radius: .3rem;
  719. }
  720. .z-info-list-con {
  721. display: flex;
  722. flex-direction: column;
  723. .z-info {
  724. width: 100%;
  725. // background: $eventBG;
  726. margin-top: .5rem;
  727. border-radius: .3rem;
  728. display: flex;
  729. flex-direction: column;
  730. }
  731. }
  732. }
  733. .el-timeline {
  734. .el-timeline-item__tail {
  735. border-left: 2px solid #28567f;
  736. }
  737. .el-timeline-item__timestamp {
  738. color: $inBlue;
  739. }
  740. .el-card {
  741. background: $eventBG;
  742. border: 1px $barBorder;
  743. .el-card__body {
  744. padding: 1rem;
  745. }
  746. }
  747. }
  748. }
  749. .mg-t-8 {
  750. margin-top: 8px;
  751. }
  752. .user-and-time {
  753. display: flex;
  754. flex-direction: column;
  755. span:first-child {
  756. font-size: .8rem;
  757. color: #01d1eb;
  758. font-weight: bolder;
  759. display: inline-block;
  760. }
  761. span:last-child {
  762. font-size: .8rem;
  763. color: #6da0c3;
  764. display: inline-block;
  765. padding-top: .2rem;
  766. }
  767. h6 {
  768. margin: 0;
  769. }
  770. }
  771. }
  772. .small-bottom-margin {
  773. margin-bottom: .2rem !important;
  774. }
  775. }
  776. .forthis1-1{
  777. height: 776px;
  778. margin-bottom: .5vh;
  779. .map-con {
  780. height: 100% !important;
  781. position: relative !important;
  782. }
  783. .this-title {
  784. width: 100%;
  785. font-size: .7rem;
  786. height: 2vh;
  787. line-height: 2vh;
  788. padding: 0rem 0 0 1rem;
  789. display: flex;
  790. justify-content: space-between;
  791. // background-image: -moz-linear-gradient($GradualGreen);
  792. // background-image: -webkit-linear-gradient($GradualGreen);
  793. // background-image: linear-gradient($GradualGreen);
  794. // box-shadow: $shadowTitle;
  795. .el-date-editor {
  796. width: 100%;
  797. }
  798. .el-input__inner {
  799. background: $barBgc;
  800. box-shadow: $shadowTitle;
  801. height: 1.5rem;
  802. color: $inBlue;
  803. border: 1px $barBorder;
  804. }
  805. .el-input__inner:hover {
  806. background: #00335c;
  807. }
  808. .el-input__icon {
  809. line-height: .5rem;
  810. height: auto;
  811. }
  812. i {
  813. font-size: 1rem;
  814. }
  815. span {
  816. font-family: $fontLED;
  817. color: $white;
  818. text-shadow: 0 0 15px rgba($color: #1eeb74, $alpha: 1);
  819. display: flex;
  820. align-items: center;
  821. img {
  822. width: 21px;
  823. height: 21px;
  824. margin-right: 5px;
  825. }
  826. }
  827. span:nth-child(2) {
  828. font-size: 1.5rem;
  829. }
  830. }
  831. .i-list-con {
  832. width: 100%;
  833. overflow-y: scroll;
  834. padding: .3rem;
  835. // margin-bottom:0.8rem;
  836. //天气
  837. .weather-img {
  838. display: flex;
  839. flex-direction: column;
  840. align-items: center;
  841. color: $inBlue;
  842. padding: .2rem 0 0 .8rem;
  843. text-align: center;
  844. }
  845. .weather-info {
  846. color: $inBlue;
  847. ul {
  848. li {
  849. float: left;
  850. margin-right: 1rem;
  851. height: 1.5rem;
  852. line-height: 1.5rem;
  853. }
  854. }
  855. }
  856. .firestate {
  857. width: 85%;
  858. margin: 1rem auto;
  859. display: flex;
  860. align-items: center;
  861. .state-block1, .state-block2, .state-block3, .state-block4, .state-block5 {
  862. width: 20%;
  863. height: .2rem;
  864. }
  865. .state-block1 {
  866. background-color: #4784ff;
  867. }
  868. .state-block2 {
  869. background-color: #25dbcd;
  870. }
  871. .state-block3 {
  872. background-color: #dad028;
  873. }
  874. .state-block4 {
  875. background-color: #fb7d2a;
  876. }
  877. .state-block5 {
  878. background-color: #f04143;
  879. }
  880. .state-on {
  881. height: .6rem;
  882. }
  883. }
  884. //事件列表
  885. .event-list-search {
  886. padding: 0 .5rem;
  887. margin-bottom: 1rem;
  888. }
  889. // 清除el折叠样式
  890. .el-collapse {
  891. border: none;
  892. margin: 0;
  893. }
  894. .el-collapse-item__header {
  895. background: none;
  896. padding: 0;
  897. height: fit-content !important;
  898. border-bottom: none;
  899. line-height: normal !important;
  900. }
  901. .el-collapse-item__arrow {
  902. color: $inBlue;
  903. position: absolute;
  904. left: 1rem;
  905. margin: 0;
  906. }
  907. .el-collapse-item__wrap {
  908. background: none;
  909. border-bottom: none;
  910. }
  911. .el-collapse-item__content {
  912. padding-bottom: 0;
  913. }
  914. .this-child {
  915. width: 100% !important;
  916. .d-l-l-text {
  917. padding-left: 1.1rem !important;
  918. width: auto !important;
  919. }
  920. }
  921. .this-con {
  922. width: 100%;
  923. padding: 1rem;
  924. height: 755px;
  925. overflow-y: scroll;
  926. overflow-x: hidden;
  927. display: flex;
  928. flex-direction: column;
  929. .this-con-list-info {
  930. padding-bottom: .5rem;
  931. float: left;
  932. color: #6da0c3;
  933. }
  934. .this-con-list {
  935. padding: 2rem 0;
  936. height: auto;
  937. float: left;
  938. border-bottom: 1px solid #094268;
  939. }
  940. .this-con-list:first-child {
  941. padding-top: 0;
  942. }
  943. .this-con-list:last-child {
  944. border-bottom: 0;
  945. }
  946. .z-begin {
  947. text-align: center;
  948. padding: 5px 10px;
  949. color: #fff;
  950. background: #3c84b5;
  951. border-radius: 5px;
  952. margin-bottom: 10px;
  953. margin: 0 auto;
  954. }
  955. .z-info-list {
  956. width: 100%;
  957. margin-top: 2rem;
  958. display: flex;
  959. img {
  960. border-radius: .3rem;
  961. }
  962. .z-info-list-con {
  963. display: flex;
  964. flex-direction: column;
  965. .z-info {
  966. width: 100%;
  967. // background: $eventBG;
  968. margin-top: .5rem;
  969. border-radius: .3rem;
  970. display: flex;
  971. flex-direction: column;
  972. }
  973. }
  974. }
  975. .el-timeline {
  976. .el-timeline-item__tail {
  977. border-left: 2px solid #28567f;
  978. }
  979. .el-timeline-item__timestamp {
  980. color: $inBlue;
  981. }
  982. .el-card {
  983. background: $eventBG;
  984. border: 1px $barBorder;
  985. .el-card__body {
  986. padding: 1rem;
  987. }
  988. }
  989. }
  990. }
  991. .mg-t-8 {
  992. margin-top: 8px;
  993. }
  994. .user-and-time {
  995. display: flex;
  996. flex-direction: column;
  997. span:first-child {
  998. font-size: .8rem;
  999. color: #01d1eb;
  1000. font-weight: bolder;
  1001. display: inline-block;
  1002. }
  1003. span:last-child {
  1004. font-size: .8rem;
  1005. color: #6da0c3;
  1006. display: inline-block;
  1007. padding-top: .2rem;
  1008. }
  1009. h6 {
  1010. margin: 0;
  1011. }
  1012. }
  1013. }
  1014. .small-bottom-margin {
  1015. margin-bottom: .2rem !important;
  1016. }
  1017. }
  1018. .forthis2{
  1019. height: 240px;
  1020. margin-bottom: .5vh;
  1021. }
  1022. }
  1023. button {
  1024. padding: 0 .3rem;
  1025. height: 1.5rem;
  1026. background-color: #112543;
  1027. color: $inBlue;
  1028. border: 1px $searchBorder;
  1029. }
  1030. button:hover {
  1031. text-shadow: 0 0 15px rgba($color: $inBlueHover, $alpha: 1.0);
  1032. }
  1033. .z-info-btm-grp {
  1034. width: 100%;
  1035. display: flex;
  1036. flex-direction: column;
  1037. justify-content: space-between;
  1038. .z-info-btm-grp-top {
  1039. display: flex;
  1040. justify-content: space-between;
  1041. padding: .5rem 0;
  1042. .z-info-btm-grp-left {
  1043. }
  1044. .z-info-btm-grp-right {
  1045. }
  1046. }
  1047. .z-info-btm-input {
  1048. width: 100%;
  1049. display: flex;
  1050. flex-direction: column;
  1051. .z-info-btm-input-btn {
  1052. padding: .5rem 0;
  1053. display: flex;
  1054. justify-content: space-between;
  1055. }
  1056. .el-textarea__inner {
  1057. background: $eventBG;
  1058. border: 1px $searchBorder;
  1059. color: $inBlue;
  1060. }
  1061. }
  1062. }
  1063. }
  1064. }
  1065. // 一体化可视化模板
  1066. .visual-con {
  1067. width: 100%;
  1068. height: 100%;
  1069. margin: 0 auto;
  1070. overflow: hidden;
  1071. background: linear-gradient($conBg);
  1072. position: absolute;
  1073. .el-input__inner {
  1074. border: 1px $searchBorder;
  1075. background-color: $searchBG;
  1076. color: $inBlue;
  1077. }
  1078. .map-tip {
  1079. .d-l-con {
  1080. width: 100%;
  1081. box-shadow: none;
  1082. .d-l-l-text {
  1083. width: 100%;
  1084. //white-space: nowrap;
  1085. h4 {
  1086. display: flex;
  1087. color: #04080c;
  1088. }
  1089. }
  1090. }
  1091. }
  1092. //收起展开
  1093. .mascot {
  1094. position: fixed;
  1095. bottom: 4rem;
  1096. right: 20rem;
  1097. z-index: 999;
  1098. cursor: pointer;
  1099. -webkit-transform: translateX(0);
  1100. transform: translateX(0);
  1101. transition: all 0.5s ease-in-out;
  1102. }
  1103. .indent-style {
  1104. -webkit-transform: translateX(19rem) !important;
  1105. transform: translateX(19rem) !important;
  1106. transition: all 0.5s ease-in-out !important;
  1107. }
  1108. .indent-left {
  1109. -webkit-transform: translateX(-23rem) !important;
  1110. transform: translateX(-23rem) !important;
  1111. transition: all 0.5s ease-in-out !important;
  1112. }
  1113. .indent-right {
  1114. -webkit-transform: translateX(20rem) !important;
  1115. transform: translateX(20rem) !important;
  1116. transition: all 0.5s ease-in-out !important;
  1117. }
  1118. .bottom-btn {
  1119. position: absolute;
  1120. right: 100px;
  1121. bottom: 50px;
  1122. width: 10rem;
  1123. height: 7rem;
  1124. // background: url(/static/img/btn-six.695dcd53.png) no-repeat left;
  1125. background-size: 100%;
  1126. display: -webkit-box;
  1127. display: -ms-flexbox;
  1128. display: flex;
  1129. -webkit-box-pack: center;
  1130. -ms-flex-pack: center;
  1131. justify-content: center;
  1132. -webkit-box-align: center;
  1133. -ms-flex-align: center;
  1134. align-items: center;
  1135. -webkit-transform: translateX(0px);
  1136. transform: translateX(0px);
  1137. -webkit-transition: all 0.5s ease-in-out;
  1138. transition: all 0.5s ease-in-out;
  1139. cursor: pointer;
  1140. font-size: 1rem;
  1141. color: $fBlueG;
  1142. }
  1143. .bottom-btn:hover {
  1144. filter: brightness(2.3);
  1145. -webkit-transform: translateX(-20px);
  1146. transform: translateX(-20px);
  1147. transition: all 0.5s ease-in-out;
  1148. }
  1149. .el-dropdown {
  1150. span {
  1151. color: $white;
  1152. width: 100%;
  1153. display: block;
  1154. height: 40px;
  1155. line-height: 40px;
  1156. font-size: 12px;
  1157. }
  1158. }
  1159. .el-form-item {
  1160. margin-bottom: 1rem;
  1161. }
  1162. .visual-body {
  1163. width: 100%;
  1164. display: flex;
  1165. align-items: top;
  1166. .leftbar, .rightbar {
  1167. position: absolute;
  1168. font-size: 14px;
  1169. top: 11vh;
  1170. height: auto;
  1171. display: flex;
  1172. z-index: 1000;
  1173. flex-direction: column;
  1174. overflow-y: scroll;
  1175. }
  1176. .leftbar {
  1177. width: 23rem;
  1178. left: 0;
  1179. -webkit-transform: translateX(0);
  1180. transform: translateX(0);
  1181. transition: all 0.5s ease-in-out;
  1182. }
  1183. .rightbar {
  1184. width: 19rem;
  1185. right: 0;
  1186. -webkit-transform: translateX(0);
  1187. transform: translateX(0);
  1188. transition: all 0.5s ease-in-out;
  1189. .right-item1 {
  1190. width: 18rem;
  1191. }
  1192. .right-item2 {
  1193. width: 18rem;
  1194. }
  1195. }
  1196. .rightbar-index {
  1197. width: 36rem !important;
  1198. display: flex;
  1199. flex-direction: row;
  1200. overflow-x: hidden;
  1201. }
  1202. }
  1203. }
  1204. .event-l-con {
  1205. width: 100%;
  1206. .this-content {
  1207. width: 100%;
  1208. font-size: 1rem;
  1209. line-height: 2rem;
  1210. padding-left: 15px;
  1211. display: flex;
  1212. padding: 1rem 1rem;
  1213. background-image: -moz-linear-gradient($GradualGreen);
  1214. background-image: -webkit-linear-gradient($GradualGreen);
  1215. background-image: linear-gradient($GradualGreen);
  1216. box-shadow: $shadowTitle;
  1217. margin-bottom: 2vh;
  1218. .icon {
  1219. width: 3.2rem;
  1220. display: flex;
  1221. justify-content: center;
  1222. align-items: center;
  1223. height: 3.2rem;
  1224. font-size: 1.8rem;
  1225. border-radius: 100rem;
  1226. text-align: center;
  1227. color: $white;
  1228. border: .2rem $barBorder;
  1229. background: $deepBlue;
  1230. }
  1231. .text-con {
  1232. width: 65%;
  1233. padding-left: 1rem;
  1234. display: flex;
  1235. flex-direction: column;
  1236. justify-content: center;
  1237. h3 {
  1238. font-weight: bolder;
  1239. align-items: center;
  1240. display: flex;
  1241. justify-content: space-between;
  1242. h4 {
  1243. margin-left: 1rem;
  1244. font-family: $fontLED;
  1245. font-size: 1.5rem;
  1246. }
  1247. }
  1248. .text-con-r {
  1249. display: flex;
  1250. justify-content: space-between;
  1251. .icon-text {
  1252. display: flex;
  1253. font-size: .7;
  1254. color: $fListTitle;
  1255. align-items: center;
  1256. padding: .5rem 0 0 0;
  1257. h5 {
  1258. font-size: .8rem;
  1259. line-height: 1rem;
  1260. margin-right: .3rem;
  1261. }
  1262. h6 {
  1263. font-size: 1rem;
  1264. line-height: 1rem;
  1265. font-family: $fontLED;
  1266. color: $fBlue;
  1267. }
  1268. }
  1269. span {
  1270. font-family: $fontLED;
  1271. color: $fBlueG;
  1272. display: flex;
  1273. align-items: center;
  1274. img {
  1275. width: 21px;
  1276. height: 21px;
  1277. margin-right: 5px;
  1278. }
  1279. }
  1280. span:nth-child(2) {
  1281. font-size: 1.5rem;
  1282. }
  1283. }
  1284. }
  1285. }
  1286. @each $c in $iconColor {
  1287. $i: index($iconColor, $c); // 获取 $c 在数组中的索引,并赋值给 $i 赋值用冒号,不是等号~!
  1288. .this-content:nth-child(#{$i}) .icon {
  1289. // 经典的地方来了,SCSS 循环是从 1 开始,不是 0 哦~
  1290. color: $c; // 背景色
  1291. &:hover {
  1292. color: lighten($c, 10%); // hover 后的颜色
  1293. }
  1294. }
  1295. }
  1296. @each $f in $iconColor {
  1297. $i: index($iconColor, $f); // 获取 $c 在数组中的索引,并赋值给 $i 赋值用冒号,不是等号~!
  1298. .this-content:nth-child(#{$i}) .text-con h3 {
  1299. // 经典的地方来了,SCSS 循环是从 1 开始,不是 0 哦~
  1300. color: $f; // 背景色
  1301. &:hover {
  1302. color: lighten($f, 10%); // hover 后的颜色
  1303. }
  1304. }
  1305. }
  1306. }
  1307. .forthis {
  1308. margin-bottom: .5vh;
  1309. // -moz-border-radius-topleft: 0;
  1310. // -moz-border-radius-bottomright: 0;
  1311. // background-color: $barBgc;
  1312. // box-shadow: $barShadow;
  1313. // border: 1px $barBorder;
  1314. .map-con {
  1315. height: 100% !important;
  1316. position: relative !important;
  1317. }
  1318. .this-title {
  1319. width: 100%;
  1320. font-size: .7rem;
  1321. height: 2vh;
  1322. line-height: 2vh;
  1323. padding: 0rem 0 0 1rem;
  1324. display: flex;
  1325. justify-content: space-between;
  1326. // background-image: -moz-linear-gradient($GradualGreen);
  1327. // background-image: -webkit-linear-gradient($GradualGreen);
  1328. // background-image: linear-gradient($GradualGreen);
  1329. // box-shadow: $shadowTitle;
  1330. .el-date-editor {
  1331. width: 100%;
  1332. }
  1333. .el-input__inner {
  1334. background: $barBgc;
  1335. box-shadow: $shadowTitle;
  1336. height: 1.5rem;
  1337. color: $inBlue;
  1338. border: 1px $barBorder;
  1339. }
  1340. .el-input__inner:hover {
  1341. background: #00335c;
  1342. }
  1343. .el-input__icon {
  1344. line-height: .5rem;
  1345. height: auto;
  1346. }
  1347. i {
  1348. font-size: 1rem;
  1349. }
  1350. span {
  1351. font-family: $fontLED;
  1352. color: $white;
  1353. text-shadow: 0 0 15px rgba($color: #1eeb74, $alpha: 1);
  1354. display: flex;
  1355. align-items: center;
  1356. img {
  1357. width: 21px;
  1358. height: 21px;
  1359. margin-right: 5px;
  1360. }
  1361. }
  1362. span:nth-child(2) {
  1363. font-size: 1.5rem;
  1364. }
  1365. }
  1366. .i-list-con {
  1367. width: 100%;
  1368. overflow-y: scroll;
  1369. padding: .3rem;
  1370. // margin-bottom:0.8rem;
  1371. //天气
  1372. .weather-img {
  1373. display: flex;
  1374. flex-direction: column;
  1375. align-items: center;
  1376. color: $inBlue;
  1377. padding: .2rem 0 0 .8rem;
  1378. text-align: center;
  1379. }
  1380. .weather-info {
  1381. color: $inBlue;
  1382. ul {
  1383. li {
  1384. float: left;
  1385. margin-right: 1rem;
  1386. height: 1.5rem;
  1387. line-height: 1.5rem;
  1388. }
  1389. }
  1390. }
  1391. .firestate {
  1392. width: 85%;
  1393. margin: 1rem auto;
  1394. display: flex;
  1395. align-items: center;
  1396. .state-block1, .state-block2, .state-block3, .state-block4, .state-block5 {
  1397. width: 20%;
  1398. height: .2rem;
  1399. }
  1400. .state-block1 {
  1401. background-color: #4784ff;
  1402. }
  1403. .state-block2 {
  1404. background-color: #25dbcd;
  1405. }
  1406. .state-block3 {
  1407. background-color: #dad028;
  1408. }
  1409. .state-block4 {
  1410. background-color: #fb7d2a;
  1411. }
  1412. .state-block5 {
  1413. background-color: #f04143;
  1414. }
  1415. .state-on {
  1416. height: .6rem;
  1417. }
  1418. }
  1419. //事件列表
  1420. .event-list-search {
  1421. padding: 0 .5rem;
  1422. margin-bottom: 1rem;
  1423. }
  1424. // 清除el折叠样式
  1425. .el-collapse {
  1426. border: none;
  1427. margin: 0;
  1428. }
  1429. .el-collapse-item__header {
  1430. background: none;
  1431. padding: 0;
  1432. height: fit-content !important;
  1433. border-bottom: none;
  1434. line-height: normal !important;
  1435. }
  1436. .el-collapse-item__arrow {
  1437. color: $inBlue;
  1438. position: absolute;
  1439. left: 1rem;
  1440. margin: 0;
  1441. }
  1442. .el-collapse-item__wrap {
  1443. background: none;
  1444. border-bottom: none;
  1445. }
  1446. .el-collapse-item__content {
  1447. padding-bottom: 0;
  1448. }
  1449. .this-child {
  1450. width: 100% !important;
  1451. .d-l-l-text {
  1452. padding-left: 1.1rem !important;
  1453. width: auto !important;
  1454. }
  1455. }
  1456. .this-con {
  1457. width: 100%;
  1458. padding: 1rem;
  1459. height: 62vh;
  1460. overflow-y: scroll;
  1461. overflow-x: hidden;
  1462. display: flex;
  1463. flex-direction: column;
  1464. .this-con-list-info {
  1465. padding-bottom: .5rem;
  1466. float: left;
  1467. color: #6da0c3;
  1468. }
  1469. .this-con-list {
  1470. padding: 2rem 0;
  1471. height: auto;
  1472. float: left;
  1473. border-bottom: 1px solid #094268;
  1474. }
  1475. .this-con-list:first-child {
  1476. padding-top: 0;
  1477. }
  1478. .this-con-list:last-child {
  1479. border-bottom: 0;
  1480. }
  1481. .z-begin {
  1482. text-align: center;
  1483. padding: 5px 10px;
  1484. color: #fff;
  1485. background: #3c84b5;
  1486. border-radius: 5px;
  1487. margin-bottom: 10px;
  1488. margin: 0 auto;
  1489. }
  1490. .z-info-list {
  1491. width: 100%;
  1492. margin-top: 2rem;
  1493. display: flex;
  1494. img {
  1495. border-radius: .3rem;
  1496. }
  1497. .z-info-list-con {
  1498. display: flex;
  1499. flex-direction: column;
  1500. .z-info {
  1501. width: 100%;
  1502. // background: $eventBG;
  1503. margin-top: .5rem;
  1504. border-radius: .3rem;
  1505. display: flex;
  1506. flex-direction: column;
  1507. }
  1508. }
  1509. }
  1510. .el-timeline {
  1511. .el-timeline-item__tail {
  1512. border-left: 2px solid #28567f;
  1513. }
  1514. .el-timeline-item__timestamp {
  1515. color: $inBlue;
  1516. }
  1517. .el-card {
  1518. background: $eventBG;
  1519. border: 1px $barBorder;
  1520. .el-card__body {
  1521. padding: 1rem;
  1522. }
  1523. }
  1524. }
  1525. }
  1526. .mg-t-8 {
  1527. margin-top: 8px;
  1528. }
  1529. .user-and-time {
  1530. display: flex;
  1531. flex-direction: column;
  1532. span:first-child {
  1533. font-size: .8rem;
  1534. color: #01d1eb;
  1535. font-weight: bolder;
  1536. display: inline-block;
  1537. }
  1538. span:last-child {
  1539. font-size: .8rem;
  1540. color: #6da0c3;
  1541. display: inline-block;
  1542. padding-top: .2rem;
  1543. }
  1544. h6 {
  1545. margin: 0;
  1546. }
  1547. }
  1548. }
  1549. .small-bottom-margin {
  1550. margin-bottom: .2rem !important;
  1551. }
  1552. }
  1553. .d-evnet-list-con {
  1554. padding: .5rem .5rem !important;
  1555. align-items: flex-start !important;
  1556. }
  1557. .sj-collapse {
  1558. width: 100% !important;
  1559. padding-top: .3rem !important;
  1560. padding-bottom: .3rem !important;
  1561. padding-left: 1rem;
  1562. }
  1563. .d-l-con {
  1564. font-size: .7rem;
  1565. cursor: pointer;
  1566. display: flex;
  1567. align-items: center;
  1568. padding: 0 .5rem;
  1569. box-shadow: $shadowList;
  1570. flex-wrap: wrap;
  1571. //数字林业
  1572. .event-count {
  1573. width: 100%;
  1574. display: flex;
  1575. justify-content: space-evenly;
  1576. padding: .3rem 0;
  1577. margin-bottom: .5rem;
  1578. .count-number {
  1579. padding: .3rem .5rem;
  1580. border: 2px $countBorder;
  1581. box-shadow: $shadowCount;
  1582. border-radius: .3rem;
  1583. font-weight: bolder;
  1584. font-size: 1.5rem;
  1585. z-index: 1000;
  1586. background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(rgba(188, 229, 255, 1)), to(rgba(59, 77, 255, 1)));
  1587. -webkit-background-clip: text;
  1588. -webkit-text-fill-color: transparent;
  1589. }
  1590. }
  1591. @for $i from 1 through length($iconBg) {
  1592. .icon-con:nth-child(#{length($iconBg)}n+#{$i}) .icon {
  1593. background: nth($iconBg, $i);
  1594. }
  1595. }
  1596. .el-table--border, .el-table--border::after {
  1597. border: 1px $tableBorder;
  1598. background-color: $searchBG
  1599. }
  1600. .el-table--border {
  1601. .el-table--group {
  1602. border: 1px $tableBorder;
  1603. }
  1604. .el-table__cell {
  1605. border-right: 1px $tableBorder;;
  1606. }
  1607. }
  1608. .el-table::before {
  1609. background: $searchBG;
  1610. }
  1611. .el-table {
  1612. background: $searchBG;
  1613. color: $inBlue;
  1614. thead {
  1615. }
  1616. tr {
  1617. background: $searchBG;
  1618. }
  1619. td {
  1620. text-align: center;
  1621. }
  1622. .el-table__header-wrapper {
  1623. th {
  1624. color: $inBlue;
  1625. font-size: .8rem;
  1626. }
  1627. }
  1628. thead.is-group {
  1629. .el-table__cell {
  1630. text-align: center;
  1631. background: $searchBG;
  1632. border-bottom: 1px $tableBorder;
  1633. border-right: 1px $tableBorder;
  1634. padding: 0;
  1635. font-weight: normal;
  1636. }
  1637. }
  1638. }
  1639. .el-table__empty-block {
  1640. min-height: auto;
  1641. }
  1642. .el-table__empty-text {
  1643. line-height: 30px;
  1644. }
  1645. .el-table__header {
  1646. width: auto !important
  1647. }
  1648. .el-table__empty-block {
  1649. width: auto !important
  1650. }
  1651. .el-table__body-wrapper {
  1652. .el-table__body {
  1653. width: auto !important
  1654. }
  1655. }
  1656. .el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell {
  1657. background-color: #0f3655;
  1658. }
  1659. .icon-con {
  1660. display: flex;
  1661. margin-bottom: 1rem;
  1662. align-items: center;
  1663. .icon-dot {
  1664. width: 1rem;
  1665. height: 1rem;
  1666. }
  1667. .icon-small {
  1668. width: 1.5rem;
  1669. height: 1.5rem;
  1670. font-size: 1rem;
  1671. }
  1672. .icon-mid {
  1673. width: 2.5rem;
  1674. height: 2.5rem;
  1675. font-size: 1.5rem;
  1676. }
  1677. .icon-large {
  1678. width: 3rem;
  1679. height: 3rem;
  1680. font-size: 2rem;
  1681. }
  1682. .icon {
  1683. display: flex;
  1684. justify-content: center;
  1685. align-items: center;
  1686. border-radius: .4rem;
  1687. text-align: center;
  1688. color: $white !important;
  1689. border: .2rem $barBorder;
  1690. }
  1691. h3 {
  1692. font-size: .8rem;
  1693. line-height: 1rem;
  1694. color: $fListTitle;
  1695. margin-top: .5rem;
  1696. }
  1697. .personnel-name {
  1698. h6 {
  1699. font-size: 1rem !important;
  1700. }
  1701. }
  1702. .icon-text {
  1703. display: flex;
  1704. flex-direction: column;
  1705. justify-content: center;
  1706. font-size: .7;
  1707. color: $fListTitle;
  1708. padding: 0 1.5rem 0 .5rem;
  1709. h5 {
  1710. font-size: .8rem;
  1711. line-height: 1rem;
  1712. margin-right: .3rem;
  1713. }
  1714. h6 {
  1715. font-size: 1.2rem;
  1716. font-family: $fontLED;
  1717. color: $fBlue;
  1718. }
  1719. }
  1720. }
  1721. .el-tag--dark {
  1722. border: 0
  1723. }
  1724. .list-tit {
  1725. color: $fListTitle !important;
  1726. font-size: 0.5rem !important;
  1727. font-weight: normal;
  1728. display: block;
  1729. max-width: 90%;
  1730. }
  1731. .d-l-l-text {
  1732. display: flex;
  1733. align-items: center;
  1734. flex: 1;
  1735. color: $fListTitle;
  1736. padding: .2rem;
  1737. .el-tooltip__popper{
  1738. width: 100px;
  1739. }
  1740. h4 {
  1741. font-size: .7rem;
  1742. margin: 0;
  1743. font-weight: normal;
  1744. display: block;
  1745. max-width: 90%;
  1746. line-height: 1rem;
  1747. }
  1748. h3 {
  1749. padding: .3rem;
  1750. }
  1751. h2 {
  1752. padding-top: .5rem;
  1753. }
  1754. .text-gray {
  1755. color: $textGray;
  1756. }
  1757. .collapse-title {
  1758. padding-left: 1.2rem;
  1759. }
  1760. i {
  1761. margin-right: .6rem;
  1762. }
  1763. .i-small {
  1764. width: .5rem;
  1765. height: .5rem;
  1766. display: inline-block;
  1767. background: #2ee0fb;
  1768. }
  1769. .icon-sxt {
  1770. color: $inBlueHover;
  1771. font-size: 1rem;
  1772. display: inline-block;
  1773. background: none;
  1774. }
  1775. }
  1776. .event-list-img {
  1777. width: 3rem;
  1778. height: 2rem;
  1779. margin-right: .5rem;
  1780. }
  1781. .event-list-text {
  1782. width: 77% !important;
  1783. display: flex;
  1784. align-items: left;
  1785. flex-direction: column !important;
  1786. h3 {
  1787. font-size: .8rem;
  1788. font-weight: bolder;
  1789. margin: 0;
  1790. color: $fListTitle;
  1791. display: block;
  1792. line-height: 1rem;
  1793. padding-bottom: .2rem;
  1794. }
  1795. h4 {
  1796. font-size: .7rem;
  1797. margin: 0;
  1798. display: flex;
  1799. color: $listText;
  1800. font-weight: normal;
  1801. line-height: 1rem;
  1802. padding-bottom: .1rem;
  1803. justify-content: space-between;
  1804. span {
  1805. margin-right: .5rem;
  1806. }
  1807. }
  1808. i {
  1809. margin-right: .6rem;
  1810. }
  1811. .i-small {
  1812. width: .5rem;
  1813. height: .5rem;
  1814. display: inline-block;
  1815. background: #2ee0fb;
  1816. }
  1817. .icon-sxt {
  1818. color: $inBlueHover;
  1819. font-size: 1rem;
  1820. display: inline-block;
  1821. background: none;
  1822. }
  1823. }
  1824. .state-wcl, .state-wyc {
  1825. font-size: 0.7rem !important;
  1826. margin: 0;
  1827. font-weight: normal;
  1828. max-width: 90%;
  1829. }
  1830. .state-wcl {
  1831. color: $state-wcl !important;
  1832. }
  1833. .state-wyc {
  1834. color: $state-wyc !important;
  1835. }
  1836. .d-l-l-count {
  1837. width: 25%;
  1838. font-size: 1.2rem;
  1839. text-align: right;
  1840. font-family: $fontLED;
  1841. color: $fBlueG;
  1842. line-height: 1.2rem;
  1843. }
  1844. //曝光台
  1845. .bgt-state {
  1846. // width: 35%;
  1847. width:38%;
  1848. padding: 0.3rem 0.5rem;
  1849. border: 2px solid rgba(0, 174, 255, 0.9);
  1850. -webkit-box-shadow: 0 0 0.5rem 0 #00c8ff inset;
  1851. box-shadow: 0 0 0.5rem 0 #00c8ff inset;
  1852. border-radius: 0.3rem;
  1853. font-size: .7rem;
  1854. z-index: 1000;
  1855. display: flex;
  1856. margin-right: .5rem;
  1857. align-content: center;
  1858. justify-content: space-between;
  1859. color: $white;
  1860. .bgt-state-frequency {
  1861. width: 1.1rem;
  1862. height: 1.1rem;
  1863. font-size: 0.8rem;
  1864. background-color: #1294a0;
  1865. text-align: center;
  1866. line-height: 1.2rem;
  1867. }
  1868. .bgt-state-minute {
  1869. }
  1870. }
  1871. .bgt-info {
  1872. width: 60%;
  1873. display: flex;
  1874. flex-direction: column;
  1875. //事件状态
  1876. //新上报
  1877. .event-state-sb {
  1878. display: flex;
  1879. align-items: center;
  1880. i {
  1881. color: $eventStateColor-sb;
  1882. font-size: 1rem;
  1883. margin-left: -.5rem;
  1884. }
  1885. .event-list-state-sb {
  1886. width: fit-content;
  1887. background-color: $eventStateColor-sb;
  1888. color: $white;
  1889. // padding: .4rem;
  1890. padding:0.25rem 0.4rem;
  1891. margin-left: -.5rem;
  1892. margin-bottom: .2rem;
  1893. border-radius: .2rem;
  1894. }
  1895. }
  1896. //催办
  1897. .event-state-cb {
  1898. display: flex;
  1899. align-items: center;
  1900. i {
  1901. color: $eventStateColor-cb;
  1902. font-size: 1rem;
  1903. margin-left: -.5rem;
  1904. }
  1905. .event-list-state-cb {
  1906. width: fit-content;
  1907. background-color: $eventStateColor-cb;
  1908. color: $white;
  1909. // padding: .4rem;
  1910. padding:0.25rem 0.4rem;
  1911. margin-left: -.5rem;
  1912. margin-bottom: .2rem;
  1913. border-radius: .2rem;
  1914. }
  1915. }
  1916. //签收
  1917. .event-state-qs {
  1918. display: flex;
  1919. align-items: center;
  1920. i {
  1921. color: $eventStateColor-qs;
  1922. font-size: 1rem;
  1923. margin-left: -.5rem;
  1924. }
  1925. .event-list-state-qs {
  1926. width: fit-content;
  1927. background-color: $eventStateColor-qs;
  1928. color: $white;
  1929. // padding: .4rem;
  1930. padding:0.25rem 0.4rem;
  1931. margin-left: -.5rem;
  1932. margin-bottom: .2rem;
  1933. border-radius: .2rem;
  1934. }
  1935. }
  1936. //误报
  1937. .event-state-wb {
  1938. display: flex;
  1939. align-items: center;
  1940. i {
  1941. color: $eventStateColor-wb;
  1942. font-size: 1rem;
  1943. margin-left: -.5rem;
  1944. }
  1945. .event-list-state-wb {
  1946. width: fit-content;
  1947. background-color: $eventStateColor-wb;
  1948. color: $white;
  1949. // padding: .4rem;
  1950. padding:0.25rem 0.4rem;
  1951. margin-left: -.5rem;
  1952. margin-bottom: .2rem;
  1953. border-radius: .2rem;
  1954. }
  1955. }
  1956. //重复
  1957. .event-state-cf {
  1958. display: flex;
  1959. align-items: center;
  1960. i {
  1961. color: $eventStateColor-cf;
  1962. font-size: 1rem;
  1963. margin-left: -.5rem;
  1964. }
  1965. .event-list-state-cf {
  1966. width: fit-content;
  1967. background-color: $eventStateColor-cf;
  1968. color: $white;
  1969. // padding: .4rem;
  1970. padding:0.25rem 0.4rem;
  1971. margin-left: -.5rem;
  1972. margin-bottom: .2rem;
  1973. border-radius: .2rem;
  1974. }
  1975. }
  1976. //办结
  1977. .event-state-bj {
  1978. display: flex;
  1979. align-items: center;
  1980. i {
  1981. color: $eventStateColor-bj;
  1982. font-size: 1rem;
  1983. margin-left: -.5rem;
  1984. }
  1985. .event-list-state-bj {
  1986. width: fit-content;
  1987. background-color: $eventStateColor-bj;
  1988. color: $white;
  1989. // padding: .4rem;
  1990. padding:0.25rem 0.4rem;
  1991. margin-left: -.5rem;
  1992. margin-bottom: .2rem;
  1993. border-radius: .2rem;
  1994. }
  1995. }
  1996. //归档
  1997. .event-state-gd {
  1998. display: flex;
  1999. align-items: center;
  2000. i {
  2001. color: $eventStateColor-gd;
  2002. font-size: 1rem;
  2003. margin-left: -.5rem;
  2004. }
  2005. .event-list-state-gd {
  2006. width: fit-content;
  2007. background-color: $eventStateColor-gd;
  2008. color: $white;
  2009. // padding: .4rem;
  2010. padding:0.25rem 0.4rem;
  2011. margin-left: -.5rem;
  2012. margin-bottom: .2rem;
  2013. border-radius: .2rem;
  2014. }
  2015. }
  2016. //确认
  2017. .event-state-qr {
  2018. display: flex;
  2019. align-items: center;
  2020. i {
  2021. color: $eventStateColor-qr;
  2022. font-size: 1rem;
  2023. margin-left: -.5rem;
  2024. }
  2025. .event-list-state-qr {
  2026. width: fit-content;
  2027. background-color: $eventStateColor-qr;
  2028. color: $white;
  2029. padding:0.25rem 0.4rem;
  2030. margin-left: -.5rem;
  2031. margin-bottom: .2rem;
  2032. border-radius: .2rem;
  2033. }
  2034. }
  2035. .bgt-info-name {
  2036. color: $inBlue;
  2037. font-weight: bolder;
  2038. }
  2039. .bgt-info-place {
  2040. color: $subtitle;
  2041. ul {
  2042. li {
  2043. float: left;
  2044. padding-right: .3rem;
  2045. }
  2046. }
  2047. }
  2048. }
  2049. .bgt-img {
  2050. img {
  2051. margin-right: .5rem;
  2052. }
  2053. }
  2054. }
  2055. .d-l-con:hover,
  2056. .on {
  2057. // background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
  2058. box-shadow: $shadowListHover;
  2059. h4, h3 {
  2060. color: $white;
  2061. span {
  2062. color: $white !important;
  2063. }
  2064. }
  2065. .i-small {
  2066. box-shadow: $shadowListHoverI;
  2067. }
  2068. .icon-sxt {
  2069. color: #fbff0b;
  2070. }
  2071. span {
  2072. color: $white;
  2073. }
  2074. }
  2075. .d-l-con-icon {
  2076. font-size: .7rem;
  2077. cursor: pointer;
  2078. display: flex;
  2079. align-items: center;
  2080. // padding: .25rem .5rem;
  2081. flex-wrap: wrap;
  2082. @for $i from 1 through length($iconBg) {
  2083. .icon-con:nth-child(#{length($iconBg)}n+#{$i}) .icon {
  2084. background: nth($iconBg, $i);
  2085. }
  2086. }
  2087. .icon-animal-con-count {
  2088. padding: .5rem 0 !important;
  2089. border: 1px $barBorder;
  2090. }
  2091. .animal-title {
  2092. padding: .1rem !important;
  2093. }
  2094. .icon-con {
  2095. width: 100%;
  2096. display: flex;
  2097. padding: 0.5rem;
  2098. align-items: center;
  2099. .icon-dot {
  2100. width: 1rem;
  2101. height: 1rem;
  2102. }
  2103. .icon-small {
  2104. width: 1.5rem;
  2105. height: 1.5rem;
  2106. font-size: 1rem;
  2107. }
  2108. .icon-normal {
  2109. width: 2.2rem;
  2110. height: 2.2rem;
  2111. font-size: 1.4rem;
  2112. }
  2113. .icon-mid {
  2114. width: 2.5rem;
  2115. height: 2.5rem;
  2116. font-size: 1.5rem;
  2117. }
  2118. .icon-large {
  2119. width: 3rem;
  2120. height: 3rem;
  2121. font-size: 2rem;
  2122. }
  2123. .icon-animal {
  2124. img {
  2125. width: 2.5rem;
  2126. height: 2.5rem;
  2127. }
  2128. }
  2129. .icon {
  2130. display: flex;
  2131. justify-content: center;
  2132. align-items: center;
  2133. border-radius: .4rem;
  2134. text-align: center;
  2135. color: $white !important;
  2136. border: .2rem $barBorder;
  2137. }
  2138. h3 {
  2139. font-size: .8rem;
  2140. line-height: 1rem;
  2141. color: $fListTitle;
  2142. margin-top: .5rem;
  2143. }
  2144. .personnel-name {
  2145. h6 {
  2146. font-size: 1rem !important;
  2147. }
  2148. }
  2149. .animal-text {
  2150. padding: 0 !important;
  2151. h5 {
  2152. margin-right: 0 !important;
  2153. margin-top: .2rem !important;
  2154. }
  2155. }
  2156. .icon-animal-text {
  2157. h5 {
  2158. margin-right: 0 !important;
  2159. margin-top: .2rem;
  2160. }
  2161. }
  2162. .icon-text {
  2163. display: flex;
  2164. flex-direction: column;
  2165. justify-content: center;
  2166. font-size: .7;
  2167. color: $fListTitle;
  2168. padding: 0 .5rem;
  2169. h5 {
  2170. font-size: .6rem;
  2171. line-height: 1rem;
  2172. margin-right: .3rem;
  2173. }
  2174. h6 {
  2175. font-size: 1.2rem;
  2176. font-family: $fontLED;
  2177. color: $fBlue;
  2178. }
  2179. }
  2180. .e-state {
  2181. width: 100%;
  2182. height: 2rem;
  2183. line-height: 2rem;
  2184. display: flex;
  2185. color: $inBlue;
  2186. background: no-repeat center center;
  2187. background-size: cover;
  2188. margin-top: .5rem;
  2189. justify-content: space-around;
  2190. }
  2191. }
  2192. .icon-con:hover, .on {
  2193. box-shadow: $shadowListHover;
  2194. .icon-text {
  2195. h5 {
  2196. color: $white;
  2197. }
  2198. h6 {
  2199. color: $white;
  2200. }
  2201. }
  2202. }
  2203. .el-tag--dark {
  2204. border: 0
  2205. }
  2206. .list-tit {
  2207. color: $fListTitle !important;
  2208. font-size: 0.5rem !important;
  2209. font-weight: normal;
  2210. display: block;
  2211. max-width: 90%;
  2212. }
  2213. .d-l-l-text {
  2214. display: flex;
  2215. align-items: center;
  2216. flex: 1;
  2217. h4 {
  2218. font-size: .7rem;
  2219. margin: 0;
  2220. color: $fListTitle;
  2221. font-weight: normal;
  2222. display: block;
  2223. max-width: 90%;
  2224. line-height: 1rem;
  2225. }
  2226. i {
  2227. margin-right: .6rem;
  2228. }
  2229. .i-small {
  2230. width: .5rem;
  2231. height: .5rem;
  2232. display: inline-block;
  2233. background: #2ee0fb;
  2234. }
  2235. .icon-sxt {
  2236. color: $inBlueHover;
  2237. font-size: 1rem;
  2238. display: inline-block;
  2239. background: none;
  2240. }
  2241. }
  2242. .state-wcl, .state-wyc {
  2243. font-size: 0.7rem !important;
  2244. margin: 0;
  2245. font-weight: normal;
  2246. display: block;
  2247. max-width: 90%;
  2248. }
  2249. .state-wcl {
  2250. color: $state-wcl;
  2251. }
  2252. .state-wyc {
  2253. color: $state-wyc;
  2254. }
  2255. .d-l-l-count {
  2256. width: 25%;
  2257. font-size: 1.2rem;
  2258. text-align: right;
  2259. font-family: $fontLED;
  2260. color: $fBlueG;
  2261. line-height: 1.2rem;
  2262. }
  2263. }
  2264. //一体化弹层
  2265. //覆盖elementUI
  2266. .el-popper[x-placement^=bottom] {
  2267. .popper__arrow::after {
  2268. border-bottom-color: #1cefff
  2269. }
  2270. }
  2271. .el-textarea__inner {
  2272. background: $eventBG;
  2273. border: 1px $searchBorder;
  2274. color: $inBlue;
  2275. }
  2276. .el-date-picker { //时间选择器
  2277. width: 17.5rem;
  2278. .el-year-table {
  2279. td {
  2280. padding: 3px 3px;
  2281. .cell {
  2282. color: #1c8b8b;
  2283. }
  2284. .cell:hover {
  2285. color: #1aff5a;
  2286. font-weight: bolder;
  2287. }
  2288. }
  2289. td.current:not(.disabled) {
  2290. .cell {
  2291. color: #1aff5a;
  2292. font-weight: bolder;
  2293. }
  2294. }
  2295. td.today {
  2296. .cell {
  2297. color: #2ce3ff;
  2298. font-weight: normal;
  2299. }
  2300. }
  2301. }
  2302. .el-picker-panel__content {
  2303. width: 100%;
  2304. margin: 0;
  2305. padding-bottom: 1rem;
  2306. }
  2307. .el-picker-panel__icon-btn {
  2308. color: #01d1eb;
  2309. }
  2310. .el-date-picker__header-label {
  2311. color: $inBlue;
  2312. }
  2313. .el-date-picker__header--bordered {
  2314. border-bottom: 1px $barBorder
  2315. }
  2316. }
  2317. .el-picker-panel {
  2318. background: #143650;
  2319. border: 1px solid #2a3a60;
  2320. color: #1a9696;
  2321. }
  2322. .el-steps--horizontal {
  2323. margin-top: .5rem;
  2324. }
  2325. .el-step__title.is-process {
  2326. color: #10c0ff !important;
  2327. }
  2328. .el-dialog:not(.is-fullscreen) {
  2329. // margin-top: 10vh !important;
  2330. margin-top: 2vh !important;
  2331. z-index: 9999;
  2332. }
  2333. .el-select-dropdown__item {
  2334. span {
  2335. padding-left: 1rem;
  2336. }
  2337. }
  2338. .el-form-item {
  2339. margin-bottom: 1rem;
  2340. }
  2341. .e-btm-btn {
  2342. width: 100%;
  2343. height: 3rem;
  2344. display: flex;
  2345. justify-content: flex-end;
  2346. .el-select {
  2347. margin-left: 1rem !important;
  2348. }
  2349. .el-select-dropdown {
  2350. margin-left: 1rem;
  2351. padding-left: 1rem;
  2352. }
  2353. .el-input__inner {
  2354. background: $searchBG;
  2355. border: 1px solid #2a3a60;
  2356. color: #1fb0b0;
  2357. }
  2358. .el-button {
  2359. padding: .8rem 2rem;
  2360. margin-left: 1rem;
  2361. }
  2362. }
  2363. //切换
  2364. .el-tabs__nav-wrap::after {
  2365. background: none !important;
  2366. }
  2367. .el-tabs__active-bar {
  2368. background: none;
  2369. }
  2370. .el-tabs--top .el-tabs__item.is-top:nth-child(2) {
  2371. padding-left: 20px;
  2372. margin-left: 0;
  2373. }
  2374. .el-tabs--top .el-tabs__item.is-top:last-child {
  2375. padding-right: 20px;
  2376. margin-right: 0;
  2377. }
  2378. .el-loading-mask {
  2379. background: none;
  2380. }
  2381. .el-tabs__item {
  2382. color: #3cd7ef;
  2383. background: $GradualGreen;
  2384. margin-right: 5px;
  2385. color: #3cd7ef;
  2386. background: -webkit-gradient(linear, right top, left top, from(#051d2b), color-stop(#00335c), to(#051d2b));
  2387. background: linear-gradient(to left, #051d2b, #00335c, #051d2b);
  2388. }
  2389. .el-tabs__item:hover {
  2390. color: #fff;
  2391. background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
  2392. box-shadow: rgba($color: #0567c2, $alpha: .8) 0px 0px 15px inset;
  2393. }
  2394. .el-tabs__item.is-active {
  2395. color: #fff;
  2396. font-size: 15px;
  2397. font-weight: bolder;
  2398. background: linear-gradient(to left, #051d2b, #006ec8, #051d2b);
  2399. box-shadow: rgba($color: #0567c2, $alpha: .8) 0px 0px 15px inset;
  2400. }
  2401. .dialog-con::-webkit-scrollbar {
  2402. display: none;
  2403. }
  2404. .el-dialog {
  2405. background: #04080c;
  2406. box-shadow: $barShadow;
  2407. border: 1px $barBorder;
  2408. }
  2409. .el-dialog__header {
  2410. padding: 15px 20px !important;
  2411. background-image: -moz-linear-gradient($GradualGreen);
  2412. background-image: -webkit-linear-gradient($GradualGreen);
  2413. background-image: linear-gradient($GradualGreen);
  2414. box-shadow: $shadowTitle;
  2415. .el-dialog__title {
  2416. font-weight: bolder;
  2417. color: #3cd7ef;
  2418. }
  2419. }
  2420. .el-main {
  2421. background-color: #E9EEF3;
  2422. color: #333;
  2423. height: 100vh;
  2424. padding: 0;
  2425. .ol-attribution ul {
  2426. display: none
  2427. }
  2428. .ol-rotate,
  2429. .ol-attribution,
  2430. .ol-zoom {
  2431. width: -webkit-fit-content;
  2432. }
  2433. }
  2434. .el-dialog__body {
  2435. padding: 1rem;
  2436. }
  2437. .el-tree {
  2438. background: none;
  2439. }
  2440. //下拉菜单
  2441. .el-dropdown-menu--medium {
  2442. .el-dropdown-menu__item {
  2443. font-size: 12px !important;
  2444. }
  2445. }
  2446. //树
  2447. .el-tree__empty-text {
  2448. color: #3cd7ef;
  2449. }
  2450. .el-tree-node__label {
  2451. color: $white;
  2452. }
  2453. .el-tree-node__content:hover {
  2454. background-color: $inBlue;
  2455. }
  2456. .el-tree-node:focus > .el-tree-node__content {
  2457. background-color: $inBlue;
  2458. }
  2459. //外层嵌套
  2460. .event-info {
  2461. .event-info-top {
  2462. width: 100%;
  2463. .event-info-top-grp {
  2464. width: 100%;
  2465. display: flex;
  2466. margin-bottom: 1rem;
  2467. .el-input:nth-child(2) {
  2468. margin-left: 1rem;
  2469. }
  2470. .el-button {
  2471. padding: .8rem 2rem;
  2472. margin-left: 1rem;
  2473. }
  2474. }
  2475. }
  2476. .event-info-con {
  2477. width: 100%;
  2478. display: flex;
  2479. .e-left {
  2480. width: 32%;
  2481. }
  2482. .e-center {
  2483. width: 30%;
  2484. margin-left: 1%;
  2485. .img-company {
  2486. width: 100%;
  2487. height: 18.3vh;
  2488. img {
  2489. }
  2490. }
  2491. }
  2492. .e-right {
  2493. margin-left: 1%;
  2494. width: 45%;
  2495. }
  2496. .e-location-left {
  2497. width: 28%;
  2498. // margin-top: 1rem;
  2499. }
  2500. .e-location-right {
  2501. width: 71%;
  2502. margin-left: 1rem;
  2503. }
  2504. }
  2505. .e-btm-btn {
  2506. width: 100%;
  2507. height: 3rem;
  2508. display: flex;
  2509. justify-content: flex-end;
  2510. }
  2511. .el-dialog:not(.is-fullscreen) {
  2512. margin-top: 5.5vh !important;
  2513. }
  2514. }
  2515. .bignav {
  2516. white-space: nowrap !important;
  2517. }
  2518. //超图工具栏
  2519. .indexSupermapClass{//首页class
  2520. .leaflet-control {
  2521. display: flex !important;
  2522. }
  2523. .leaflet-draw-toolbar {
  2524. margin-top: 0 !important;
  2525. display: flex !important;
  2526. }
  2527. .leaflet-touch .leaflet-draw-actions {
  2528. left: 0 !important;
  2529. top: -33px !important;
  2530. }
  2531. .leaflet-top {
  2532. top: 89vh !important;
  2533. left: 50% !important;
  2534. transform: translateX(-50%) !important;
  2535. }
  2536. .leftflet-toleft {
  2537. -webkit-transform: translateX(-20rem) !important;
  2538. transform: translateX(-20rem) !important;
  2539. transition: all 0.5s ease-in-out !important;
  2540. }
  2541. }
  2542. // 20220927 林业修改
  2543. .no_hover:hover{
  2544. background: none!important;
  2545. box-shadow: initial;
  2546. }
  2547. .no_hover:hover h4{
  2548. color:#2bacf7!important;
  2549. }
  2550. .no_hover:hover .event-count .count-number{
  2551. border: 2px solid rgb(59 193 255 / 90%);
  2552. -webkit-box-shadow: 0 0 0.5rem 0 #2700ff inset;
  2553. box-shadow: 0 0 0.5rem 0 #2700ff inset;
  2554. background-image: -webkit-gradient(linear, 0 0, 0 bottom, from(#55b8f7), to(#8f3bff));
  2555. }
  2556. .tree_scroll::-webkit-scrollbar{
  2557. width: 1px;
  2558. height: 4px;
  2559. background: #00335c;
  2560. }
  2561. .tz_tk .el-dialog{
  2562. width: 20% !important;
  2563. }
  2564. .tz_tk .el-form-item__label{
  2565. color: #d2d2d2;
  2566. }
  2567. // .d-l-l-text h4{
  2568. // color:#fff!important;
  2569. // }
  2570. .no_hover .no-weight h4{
  2571. color:#2bacf7!important;
  2572. }