sub_bureau.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025
  1. html {
  2. -webkit-text-size-adjust: none;
  3. font-size: 10px;
  4. }
  5. body {
  6. padding: 0;
  7. margin: 0;
  8. cursor: default;
  9. background-color: #F3F5FA;
  10. width: 100%;
  11. height: 1080px;
  12. overflow: hidden;
  13. }
  14. table>thead>tr{font-weight: bold;background-color: #F3F5FA;color: #43526B;}
  15. table>tbody>tr:nth-child(odd){background-color: #F6FAFF;}
  16. table>tbody>tr.active{border-bottom: 1px solid #85a0ec;}
  17. .dialog_public{
  18. height: 64rem;width: 48rem;display: none;top:50%;left:50%;background-color: #fff !important;border-radius: 5px;padding: 2rem;padding-top: 0;
  19. }
  20. .dialog_public .caption{
  21. position: relative;color: #09162C;height: 5.2rem;line-height: 5.2rem;text-align: center;padding-left: 1rem;width: 97.7%;font-size: 1.5rem;
  22. }
  23. .dialog_public .dlg_close{float: right;margin-right: 1rem;cursor: pointer;margin-top: -0.5rem;}
  24. .dialog_public .dataitemlist{
  25. padding:0;height:85%;width: 100%; text-align: center;overflow: hidden;position: relative;padding-top: 2rem !important;
  26. }
  27. .dialog_public .process_msg_hint{
  28. line-height: 2rem;
  29. text-align: left;
  30. width: 98%;
  31. padding-left: 1%;
  32. }
  33. .BMap_bubble_pop {
  34. padding: 0 !important;
  35. background: rgba(110, 142, 230, 0.43) !important;
  36. border: #699dc4 solid 1px !important;
  37. }
  38. .BMap_bubble_pop>img{
  39. }
  40. .BMap_bubble_title {
  41. color: white !important;
  42. font-size: 1.4rem; font-weight: bold; text-align: left;
  43. border-top-left-radius: 1rem;
  44. border-top-right-radius: 1rem;
  45. background: transparent;
  46. }
  47. .BMap_bubble_buttons>div:last-child{
  48. color: rgb(253, 253, 253) !important;
  49. }
  50. .BMap_bubble_content { text-align: center !important;font-size:1.8rem !important;color: rgb(235, 238, 238) !important;}
  51. .input2span{width: 100%; background-color: transparent !important;color: #516380 !important;border: 0 !important;border-bottom: 1px solid #cccccc6e !important;}
  52. .layui-layout-admin .layui-side{top:7rem !important;}
  53. .layui-layout-admin .layui-body{top:7rem !important;padding-bottom:4.4rem !important;}
  54. .layui-nav .layui-nav-item{line-height: 6rem !important;}
  55. .layui-icon{font-size: 1.6rem !important;}
  56. .layui-layout-admin .layui-footer{padding: 0 1.5rem;height: 4.4rem;line-height: 4.4rem;}
  57. .layui-card-body{padding: 0;line-height: 2.4rem;}
  58. .layui-form-switch em{font-size: 1.2rem !important;color: #fff !important;}
  59. .layui-form-onswitch{background-color: #233C7F !important;}
  60. .layui-form-switch{margin-top: 0 !important;background-color:#43B96C !important;border:0 !important;height: 2.2rem !important;line-height: 2.2rem !important;min-width: 3.5rem !important;padding: 0 0.5rem !important;border-radius: 2rem !important;}
  61. .layui-form-switch i{top: 0.3rem !important;width: 1.6rem !important;height: 1.6rem !important;border-radius: 2rem !important;}
  62. .layui-form-onswitch i{margin-left: -2.1rem !important;}
  63. .layui-btn{height: 3rem !important;line-height: 3rem !important;font-size: 1.4rem !important;}
  64. .layui-btn-disable{background-color: #009688 !important;color: #04796e !important;}
  65. .layui-table td, .layui-table th{font-size: 1.2rem !important;}
  66. .layui-tab{float: left;margin: 1rem 0 !important;font-size: 1.2rem !important;width: 100%;}
  67. .layui-tab-title{
  68. border: 1px solid #134BEA !important;
  69. border-radius: 2rem !important;
  70. padding: 0 !important;
  71. height: 3rem !important;
  72. line-height: 3rem !important;
  73. width: 60% !important;
  74. margin-left: 20% !important;
  75. margin-top: 1.6rem;
  76. }
  77. .layui-tab-title li{line-height: 2rem !important;font-size: 1.1rem !important;min-width: 6.5rem !important;padding: 0 1.5rem !important;}
  78. .layui-tab-title li:hover{font-weight: bold;}
  79. .layui-tab-title .layui-this::after{height:3rem !important;}
  80. .layui-tab-content{padding: 1rem 0 0 0 !important;}
  81. .hidden {
  82. display: none !important;
  83. }
  84. .children-content {
  85. padding: 1rem 2rem !important;
  86. }
  87. .nodata {
  88. color: #999;
  89. line-height: 4rem;
  90. font-size: 1.4rem;
  91. width: 100%;
  92. text-align: center;
  93. }
  94. .header {
  95. height: 5rem;
  96. width: 100%;
  97. float: left;
  98. background-size: 100% 5rem;
  99. background-repeat: no-repeat;
  100. position: relative;
  101. margin-bottom: 0;
  102. background-color: #FFF;
  103. /*background-image: url(../images/top.png);*/
  104. }
  105. .header_background {
  106. height: 5rem;
  107. width: 100%;
  108. float: left;
  109. position: absolute;
  110. z-index: 0;
  111. }
  112. .header_background > div {
  113. float: right;
  114. height: 5rem;
  115. margin-right: 0;
  116. line-height: 4.7rem;
  117. }
  118. .app_default {
  119. float: left;
  120. font-size: 1.33rem;
  121. cursor: pointer;
  122. margin-right: 2rem;
  123. border-bottom: 4px solid transparent;
  124. }
  125. .app_default > i {
  126. background-color: transparent !important;
  127. border: 1px solid transparent;
  128. color: #516380;
  129. font-size: 1.5rem;
  130. }
  131. .app_default > span {
  132. color: #516380;
  133. }
  134. .app_default > a {
  135. color: #516380 !important;
  136. cursor: pointer;
  137. }
  138. .app_active {
  139. color: #134BEA;
  140. border-bottom: 4px solid #134BEA;
  141. }
  142. .app_active > span {
  143. color: #134BEA !important;
  144. }
  145. .app_active > i {
  146. color: #134BEA !important;
  147. }
  148. .app_icon {
  149. height: 1.2rem;
  150. width: 1.2rem;
  151. float: left;
  152. background-color: #E2E2E2;
  153. background-size: 100% 100%;
  154. background-repeat: no-repeat;
  155. position: relative;
  156. margin-top: 1.6rem;
  157. margin-right: 0.4rem;
  158. }
  159. .header_bar {
  160. width: 100%;
  161. height: 1.4rem;
  162. font-size: 1.4rem;
  163. font-family: Microsoft YaHei;
  164. font-weight: 400;
  165. color: #D9EFFF;
  166. line-height: 1.4rem;
  167. position: absolute;
  168. top: 5.8rem;
  169. bottom: 3.6rem;
  170. }
  171. .header_bar > span {
  172. cursor: pointer;
  173. margin-left: 2rem;
  174. margin-right: 2rem;
  175. }
  176. .header_bar > span > a {
  177. border-bottom: 2px solid;
  178. }
  179. .body_content{background: #F3F5FA;}
  180. .control_active {
  181. color: #2AAEF2;
  182. }
  183. .main_title {
  184. width: 31rem;
  185. height: 7rem;
  186. font-size: 3.2rem;
  187. font-weight: 600;
  188. color: #FFFFFF;
  189. line-height: 7rem;
  190. text-shadow: 2px 2px 0px #02004d;
  191. margin: 0 auto;
  192. text-align: center;
  193. }
  194. .layout_dialog {
  195. background: #ffffff;;
  196. overflow: hidden;
  197. outline: 0;
  198. border-radius: 2px;
  199. position: fixed !important;
  200. z-index: 10000;
  201. border: 1px solid #88ABDA;
  202. display: none;
  203. left: 50%;
  204. top: 50%;
  205. }
  206. .layout_caption {
  207. float: left;
  208. width: 100%;
  209. height: 4.5rem;
  210. border-radius: 0.5rem 0.5rem 0 0;
  211. line-height: 4rem;
  212. background: linear-gradient(109deg, #052c60 0%, #2e68b7 100%);
  213. }
  214. .layout_title {
  215. float: left;
  216. font-size: 2rem;
  217. font-weight: 400;
  218. color: #B9E3FF;
  219. padding-left: 1.8rem;
  220. opacity: 0.9;
  221. }
  222. .layout_content {
  223. float: left;
  224. width: 100%;
  225. padding-top: 2rem;
  226. }
  227. .layout_close {
  228. background-image: url(../images/btn_close.png);
  229. width: 1.4rem;
  230. height: 1.4rem;
  231. float: right;
  232. background-repeat: no-repeat;
  233. margin: 1.8rem 1.5rem 0 0;
  234. cursor: pointer;
  235. background-size: cover;
  236. }
  237. .clearn {
  238. background: #000000;
  239. opacity: 0.5;
  240. width: 100%;
  241. height: 100%;
  242. z-index: 102;
  243. position: absolute;
  244. left: 0;
  245. top: 0;
  246. line-height: 0;
  247. font-size: 0;
  248. overflow: hidden;
  249. display: none;
  250. }
  251. .monitor_content {
  252. float: left;
  253. width: 100%;
  254. }
  255. .body_content {
  256. float: left;
  257. width: 100%;
  258. }
  259. .body_side {
  260. margin-left: 1.2rem;
  261. width: 22%;
  262. height: 100%;
  263. float: left;
  264. }
  265. .body_side > div {
  266. float: left;
  267. width: 100%;
  268. }
  269. .body_center {
  270. width: 100%;
  271. height: 100%;
  272. position: relative;
  273. z-index: 0;
  274. margin-left: 0;
  275. margin-right: 0;
  276. left: 0;
  277. top:2rem;
  278. display:block;
  279. /*background-image: url('/static/images/background.png');*/
  280. background-size: contain;
  281. }
  282. .side_right {
  283. width: 19.5%;
  284. height: 100%;
  285. float: right;
  286. margin-right: 1.5rem;
  287. }
  288. .container_data_show,.container_elevator_show {
  289. background-color: #F3F5FA;
  290. }
  291. .container_data_show> div,.container_elevator_show > div {
  292. float: left;
  293. width: 100%;
  294. background-color: #ffffff;
  295. }
  296. .flag_value {
  297. float: right;
  298. width: 50%;
  299. height: 1.8rem;
  300. line-height: 1.8rem;
  301. margin-top: 2.2rem;
  302. }
  303. .down_icon {
  304. background-image: url(../images/img_reduce.png);
  305. width: 0.9rem;
  306. height: 1.3rem;
  307. background-size: 100% 100%;
  308. background-repeat: no-repeat;
  309. float: left;
  310. margin: 0.2rem 0.5rem 0 1rem;
  311. }
  312. .down_text {
  313. float: left;
  314. color: green;
  315. }
  316. .search_box {
  317. float: left;
  318. width: 100%;
  319. height: 100%;
  320. background: #fff;
  321. border: 1px solid #C8D4E2;
  322. }
  323. .search_key {
  324. float: left;
  325. width: 16%;
  326. height: 100%;
  327. font-size: 1.8rem;
  328. font-family: Microsoft YaHei;
  329. font-weight: 400;
  330. color: #233C7F;
  331. border-right: 1px solid #aebde3;
  332. line-height: 4.5rem;
  333. text-align: center;
  334. position: relative;
  335. cursor: pointer;
  336. }
  337. .search_key > span {
  338. float: left;
  339. width: 100%;
  340. text-align: center;
  341. }
  342. .search_key > i {
  343. position: absolute;
  344. right: 1.5rem;
  345. top: 2px;
  346. }
  347. .search_text_area {
  348. float: right;
  349. width: 83%;
  350. height: 100%;
  351. }
  352. .search_input {
  353. float: left;
  354. height: 3.33rem;
  355. resize: none;
  356. line-height: 3.33rem;
  357. outline: none;
  358. font-size: 1.8rem;
  359. padding: 0 1rem;
  360. background-color: transparent;
  361. color: #233C7F;
  362. border: none;
  363. letter-spacing: 1px;
  364. width: 82%;
  365. }
  366. .search_botton {
  367. float: right;
  368. width: 8.5rem;
  369. height: 3.5rem;
  370. line-height: 3.5rem;
  371. margin-top: 0.5rem;
  372. margin-right: 0.5rem;
  373. text-align: center;
  374. color: #C8D4E2;;
  375. cursor: pointer;
  376. font-size: 1.8rem;
  377. font-weight: 400;
  378. letter-spacing: 2px;
  379. }
  380. #search_result ul {
  381. padding: 0.5rem !important;
  382. text-align: left;
  383. }
  384. #search_result li {
  385. line-height: 2rem;
  386. height: 2rem;
  387. font-size: 1.2rem;
  388. color: #51637F;
  389. }
  390. #search_result ul:hover {
  391. background-color: #FFF;
  392. }
  393. .person_info_title {
  394. float: left;
  395. width: 100%;
  396. height: 5rem;
  397. line-height: 5rem;
  398. text-align: center;
  399. background-color: #88ABDA;
  400. color: #233C7F;
  401. font-weight: bold;
  402. letter-spacing: 1px;
  403. font-size: 2.4rem;
  404. }
  405. #fulltext_search_datatype .datatypeitem {
  406. cursor: pointer;
  407. color: #202020;
  408. margin-right: 3rem;
  409. height: 3rem;
  410. display: inline-block;
  411. line-height: 4rem;
  412. font-size: 1.4rem;
  413. letter-spacing: 1px;
  414. }
  415. #fulltext_search_datatype .datatypeitem.active {
  416. color: #233C7F;
  417. border-bottom: 2px solid #2aaef2;
  418. background-color: transparent !important;
  419. font-weight: bold;
  420. font-size: 1.6rem;
  421. }
  422. #fulltext_search_condition {
  423. font-size: 1.6rem;
  424. margin-top: 1rem;
  425. color: #ccc;
  426. margin-left: 27.5rem;
  427. position: relative;
  428. }
  429. #fulltext_search_condition .datelist {
  430. position: absolute;
  431. left: 0;
  432. top: 3rem;
  433. background-color: #1b2342;
  434. border: 1px solid #999;
  435. border-radius: 3px;
  436. padding: 0.5rem;
  437. }
  438. #fulltext_search_condition .datelist > div {
  439. cursor: pointer;
  440. line-height: 3rem;
  441. }
  442. #fulltext_search_condition .datelist > div:hover {
  443. background-color: #535c91
  444. }
  445. .map_search {
  446. position: absolute;
  447. background-color: rgb(255, 255, 255);
  448. border: 1px solid rgb(141, 136, 170);
  449. z-index: 1000000;
  450. top: 15rem;
  451. left: 76.8rem;
  452. width: 49.8rem;
  453. }
  454. .header_logo {
  455. width: 13rem;
  456. height: 5rem;
  457. z-index: 10;
  458. float: left;
  459. position: relative;
  460. background-repeat: no-repeat;
  461. background-size: cover;
  462. text-align: left;
  463. }
  464. .header_logo img{
  465. height: 2.5rem;
  466. margin-top: 1.25rem;
  467. margin-left: 1.67rem;
  468. }
  469. .system_big_title {
  470. width: 100%;
  471. font-size: 1.6rem;
  472. font-weight: 600;
  473. color: #09162C;
  474. line-height: 2.2rem;
  475. margin: 0.8rem 0 0 1rem !important;
  476. float: left;
  477. letter-spacing: 0.1rem;
  478. }
  479. .system_middle_title {
  480. font-size: 1.4rem;
  481. left: 12rem;
  482. font-weight: 500;
  483. color: #09162C;
  484. position: absolute;
  485. line-height: 5rem;
  486. height: 5rem;
  487. width: 21%;
  488. top: 0;
  489. z-index: 10;
  490. }
  491. .system_small_title {
  492. float: left;
  493. height: 2.5rem;
  494. line-height: 2.5rem;
  495. font-size: 1rem;
  496. width: 100%;
  497. font-weight: 700;
  498. color: #09162C;
  499. }
  500. .current_user {
  501. font-size: 1.6rem !important;
  502. font-weight: 700;
  503. color: #09162C !important;
  504. }
  505. .user_role {
  506. position: absolute;
  507. top: 4rem;
  508. right: 4rem;
  509. color: #ABAEB7;
  510. font-size: 1.2rem;
  511. }
  512. .navigation_bar::before {
  513. content: '';
  514. position: absolute;
  515. top: 0;
  516. right: 0;
  517. bottom: 0;
  518. left: 0px;
  519. z-index: -1;
  520. background-color: #fff;
  521. transform: skewX(-18deg);
  522. border-radius: 0.6rem;
  523. }
  524. .navigation_bar_area {
  525. float: left;
  526. width: 100%;
  527. height: 3.5rem;
  528. }
  529. .navigation_bar {
  530. width: 11.5rem;
  531. height: 3.2rem;
  532. position: relative;
  533. display: flex;
  534. align-items: center;
  535. color: #233C7F;
  536. text-decoration: none;
  537. font-weight: bold;
  538. margin-left: 0.6rem;
  539. line-height: 3.2rem;
  540. letter-spacing: 1px;
  541. font-size: 1.8rem;
  542. padding: 0px;
  543. margin-bottom: 0.4rem;
  544. float: left;
  545. padding-left: 1.5rem;
  546. }
  547. .navigation_mark {
  548. float: left;
  549. width: 0.5rem;
  550. height: 1.5rem;
  551. display: flex;
  552. background-color: #233C7F;
  553. transform: skewX(-18deg);
  554. position: absolute;
  555. top: 0.8rem;
  556. left: 0px;
  557. border-radius: 0.5rem;
  558. }
  559. .table_list {
  560. width: 100%;
  561. border-spacing: 0px !important;
  562. border-collapse: collapse !important;
  563. font-size: 1.6rem;
  564. }
  565. .table_list th, .table_list td {
  566. text-align: center;
  567. }
  568. .table_list thead {
  569. color: #233C7F;
  570. background-color: #EEF3FF;
  571. }
  572. .table_list tbody {
  573. display: block;
  574. width: 100%;
  575. overflow: hidden;
  576. color: #233C7F;
  577. }
  578. .table_list thead tr, .table_list tbody tr, .table_list tfoot tr {
  579. box-sizing: border-box;
  580. table-layout: fixed;
  581. display: table;
  582. width: 100%;
  583. height: 3.5rem;
  584. line-height: 3.5rem;
  585. }
  586. .table_list tbody tr:nth-of-type(odd) {
  587. background: #ffffff;
  588. }
  589. .table_list tbody tr:nth-of-type(even) {
  590. background: #EEF3FF;
  591. }
  592. .timer_box {
  593. z-index: 100000;
  594. position: absolute;
  595. left: 0;
  596. width: 100%;
  597. background-color: #ffffff;
  598. top: 4.8rem;
  599. border-radius: 0.5rem;
  600. box-shadow: 1px 1px 1rem 0px rgb(125 154 227) !important;
  601. display: none;
  602. }
  603. .timer_area {
  604. float: left;
  605. width: 100%;
  606. text-align: center;
  607. padding: 0.8rem 0;
  608. }
  609. .timer_area > span {
  610. float: left;
  611. width: 100%;
  612. height: 3rem !important;
  613. line-height: 3rem;
  614. cursor: pointer;
  615. }
  616. .timer_area > span:hover {
  617. background-color: #9FCBFC !important;
  618. cursor: pointer;
  619. }
  620. .site_device_list {
  621. position: absolute;
  622. background-color: #EEF3FFB8;
  623. z-index: 1000000;
  624. box-shadow: 1px 1px 3px 2px #299BFF !important;
  625. }
  626. .site_device_list > span {
  627. display: block;
  628. width: 100%;
  629. height: 2.4rem;
  630. line-height: 2.4rem;
  631. color: #233C7F;
  632. text-align: center;
  633. border-bottom: 1px solid #134BEA;
  634. }
  635. .site_device_list > span > i {
  636. float: right;
  637. font-size: 1rem;
  638. padding: 0.6rem;
  639. cursor: pointer;
  640. position: absolute;
  641. right: 0;
  642. top: 0;
  643. }
  644. .site_device_list .dataitemlist {
  645. color: #51637F;
  646. font-size: 1.2rem;
  647. padding: 0;
  648. line-height: 4rem;
  649. }
  650. .text_overflow {
  651. overflow: hidden;
  652. text-overflow: ellipsis;
  653. white-space: nowrap;
  654. display: block;
  655. float: left;
  656. }
  657. .scd_info{
  658. padding: 0 3rem;
  659. cursor: pointer;
  660. display: inline-block;
  661. padding: 0;
  662. margin: 0;
  663. line-height: 1.5rem;
  664. width: 70%;
  665. }
  666. .scd_info .scd_name{
  667. float: left;
  668. max-width: 25rem;
  669. font-size: 1.2rem;
  670. max-width: 86%;
  671. }
  672. .scd_list{
  673. position: absolute;
  674. line-height: 2rem;
  675. z-index: 1000000;
  676. color: #fff;
  677. background-color: #f3f5fa;
  678. padding: 1rem;
  679. box-shadow: 0px 0px 2px 1px rgba(58, 5, 238, 0.56);
  680. font-size: 1.2rem;
  681. width: 80rem;
  682. max-height: 50rem;
  683. overflow-y: auto;
  684. }
  685. .scd_list>div:hover{
  686. background: #FFF;
  687. }
  688. .scd_node_tree_btn{
  689. width: 2.6rem;
  690. height: 4.4rem;
  691. background: #3A206D;
  692. left: 0;
  693. top:13rem;
  694. line-height: 4.4rem;
  695. text-align: center;
  696. font-size: 2rem;
  697. cursor: pointer;
  698. }
  699. .scd_node_tree .title{
  700. height: 5rem;
  701. width: 100%;
  702. border-bottom: 1px solid #C8D4E2;
  703. color: #1E293B;
  704. }
  705. .scd_node_tree .title i{
  706. width: 3rem;
  707. text-align: center;
  708. line-height: 4rem;
  709. vertical-align: middle;
  710. cursor: pointer;
  711. }
  712. .scd_node_tree .title span{
  713. width: 10rem;
  714. text-align: center;
  715. line-height: 2rem;
  716. font-size: 1.5rem;
  717. border-left: 3px solid #134BEA;
  718. margin-top: 1rem;
  719. }
  720. .scd_node_tree .list{
  721. height: 81rem;
  722. width: 100%;
  723. }
  724. .scd_node_tree{
  725. width: 14%;
  726. background: #FFF;
  727. left: 2.5rem;
  728. top: 7rem;
  729. z-index: 1;
  730. padding: 0 2rem;
  731. }
  732. .scd_tools{
  733. height: 10%;
  734. width: 100%;
  735. position: relative;
  736. background-size: auto;
  737. background: linear-gradient(107deg, #649DF1 0%, #87CBFD 22%, #96B9FD 38%, #9FDBFD 58%, #A2C6FD 83%, #A4C8FD 100%);
  738. }
  739. .scd_tools .left_line{
  740. position: absolute;
  741. width: 1.8rem;
  742. height: 0.8rem;
  743. border-top: 2px solid #7A13E1;
  744. transform:rotate(54deg);
  745. }
  746. .scd_tools .right_line{
  747. position: absolute;
  748. width: 1.8rem;
  749. height: 0.8rem;
  750. border-top: 2px solid #7A13E1;
  751. transform:rotate(-54deg);
  752. }
  753. .scd_tools .bottom_line{
  754. position: absolute;
  755. width: 95%;
  756. height: 3rem;
  757. border-bottom: 1px solid #7A13E1;
  758. }
  759. .scd_tools .tools_btns{
  760. position: relative;
  761. top: 0%;
  762. width: 100%;
  763. height: 100%;
  764. line-height: 7rem;
  765. color: #134BEA;
  766. font-size: 1.2rem;
  767. text-align: center;
  768. background-image: url('/static/images/tools_bg.png');
  769. background-repeat: no-repeat;
  770. }
  771. .scd_tools .tools_btns span{
  772. margin: 0 0.8rem;
  773. cursor:pointer;
  774. display: inline-block;
  775. height: 4rem;
  776. width: 17.5rem;
  777. line-height: 4rem;
  778. background-image: url('/static/images/tools_btn_default.png');
  779. background-repeat: no-repeat;
  780. background-size: contain;
  781. color: #09162C;
  782. font-weight: bold;
  783. }
  784. .scd_tools .tools_btns .small{
  785. width: 13.5rem !important;
  786. line-height: 3.2rem !important;
  787. }
  788. .scd_tools .tools_btns .active{
  789. background-image: url('/static/images/tools_btn_selected.png');
  790. background-repeat: no-repeat;
  791. color: #fff;
  792. }
  793. .scd_main{
  794. margin-top: 2rem;
  795. height: 80%;
  796. width: 100%;
  797. position: relative;
  798. background-color: #fff;
  799. }
  800. .scd_filter{
  801. width: 92%;
  802. text-align: center;
  803. color: #43526B;
  804. margin-top: 2.4rem;
  805. margin-left: 7%;
  806. height: 6rem;
  807. background-color: #fff;
  808. }
  809. .scd_filter .iedNumber b{
  810. color: greenyellow;font-size: 2.4rem;font-family: electronicFont;
  811. }
  812. .scd_filter .filter_cond{
  813. width: 18rem;
  814. background: #fff;
  815. height: 3.3rem;
  816. line-height: 3.3rem;
  817. position: relative;
  818. cursor: pointer;
  819. margin: 0 2rem;
  820. color: #94A3B8;
  821. border: 1px solid #C8D4E2;
  822. }
  823. .scd_filter .filter_cond i{
  824. float: right;
  825. line-height: 3.6rem;
  826. margin-right: 1rem;
  827. }
  828. .rect_left_top{
  829. position: absolute;
  830. width: 0.5rem;
  831. height: 0.5rem;
  832. left: 0;
  833. top: 0;
  834. border-left: 2px solid #7A13E1;
  835. border-top: 2px solid #7A13E1;
  836. }
  837. .rect_left_bottom{
  838. position: absolute;
  839. width: 0.5rem;
  840. height: 0.5rem;
  841. left: 0;
  842. bottom: 0;
  843. border-left: 2px solid #7A13E1;
  844. border-bottom: 2px solid #7A13E1;
  845. }
  846. .rect_right_top{
  847. position: absolute;
  848. width: 0.5rem;
  849. height: 0.5rem;
  850. right: 0;
  851. top: 0;
  852. border-right: 2px solid #7A13E1;
  853. border-top: 2px solid #7A13E1;
  854. }
  855. .rect_right_bottom{
  856. position: absolute;
  857. width: 0.5rem;
  858. height: 0.5rem;
  859. right: 0;
  860. bottom: 0;
  861. border-right: 2px solid #7A13E1;
  862. border-bottom: 2px solid #7A13E1;
  863. }
  864. .scd_area{
  865. height: 75%;
  866. width: 100%;
  867. color: #43526B;
  868. }
  869. .scd_area .voltage_level_item {
  870. margin-bottom: 2rem;
  871. min-height: 12.8rem;
  872. background-color: #F6FAFF;
  873. box-shadow: inset 0px 0px 11px 1px rgba(188,207,255,0.78);
  874. border-radius: 1.25rem;
  875. opacity: 1;
  876. border: 0px solid;
  877. border-image: linear-gradient(180deg, rgba(0, 26, 255, 1), rgba(173, 181, 255, 1)) 1 1;
  878. margin-left: 7%;
  879. width: 86%;
  880. }
  881. .scd_area .voltage_level_item .voltage_level_name{
  882. width: 16rem;
  883. min-height: 12.8rem;
  884. line-height: 12.8rem;
  885. text-align: center;
  886. font-size: 2rem;
  887. float: left;
  888. background-image: url('/static/images/scd_area_bg.png');
  889. background-repeat: no-repeat;
  890. background-size: 75% 50%;
  891. background-position: center;
  892. font-weight: bold;
  893. color: #000;
  894. }
  895. .scd_area .voltage_level_item .voltage_level_area{
  896. float: left;
  897. width: 82%;
  898. min-height: 12.8rem;
  899. padding-left: 1rem;
  900. }
  901. .voltage_level_area_item{
  902. width: 10rem;
  903. height: 8rem;
  904. opacity: 1;
  905. float: left;
  906. margin: 1rem;
  907. text-align: center;
  908. line-height: 4rem;
  909. cursor: pointer;
  910. background-image: url('../images/area.png');
  911. background-repeat: no-repeat;
  912. background-position: bottom;
  913. background-size: 70% 85%;
  914. }
  915. .voltage_level_area_item:hover{
  916. width: 10.2rem;
  917. height: 8rem;
  918. color: #134BEA;
  919. font-weight: bold;
  920. background-size: 70% 85%;
  921. }
  922. .ied_list_item{
  923. width: 13.6rem;
  924. height: 10rem;
  925. margin: 3rem 4rem;
  926. cursor: pointer;
  927. }
  928. .ied_list_item img{
  929. width: 13.6rem;
  930. height: 8rem;
  931. }
  932. .ied_list_item>span{
  933. line-height: 1.8rem;
  934. width: 100%;
  935. }
  936. .ied_show_item{
  937. position: relative;
  938. height: 5rem;
  939. width: 5rem;
  940. background-image: url('../images/ied.png');
  941. background-size: contain;
  942. background-repeat: no-repeat;
  943. background-position: center;
  944. background-color: transparent !important;
  945. }
  946. .ied_show_block{
  947. position: absolute;
  948. left:0;
  949. top:5rem;
  950. width: 22rem;
  951. min-height: 7rem;
  952. line-height: 2rem;
  953. font-size: 1.17rem;
  954. z-index: 1;
  955. border: 2px dotted #C8D4E2;
  956. border-radius: 1rem;
  957. }
  958. .ied_show_block.self_ied{
  959. background-color:#F6FAFF;
  960. left: 50%;
  961. margin-left: -12.5rem;
  962. color: #134BEA;
  963. font-weight: bold;
  964. }
  965. .ied_show_block.self_ied .block{
  966. background-color: #F6FAFF;
  967. min-height: 4.5rem;
  968. line-height: 2rem;
  969. color: #09162C;
  970. border: 1px solid #516380;
  971. margin-top: 2rem;
  972. float: left;
  973. width: 70%;
  974. margin-left: 15%;
  975. border-radius: 4px;
  976. }
  977. .ied_show_block.salve_ied{
  978. background-color:#F3F5FA;
  979. }
  980. .ied_show_block.salve_ied .block{
  981. background-color: #F6FAFF;
  982. line-height: 2rem;
  983. color: #43526B;
  984. border: 1px solid #516380;
  985. float: left;
  986. min-height: 4rem;
  987. text-align: center;
  988. width: 65%;
  989. margin-left: 25%;
  990. margin-top: 1rem;
  991. margin-bottom: 1rem;
  992. border-radius: 4px;
  993. }
  994. .ied_show_block.salve_ied .ld{
  995. width: 96%;
  996. margin: 2%;
  997. background-color: transparent;
  998. color: #299BFF;
  999. border-top: 1px solid #C8D4E2;
  1000. }
  1001. .block_line{
  1002. line-height: 23px;
  1003. color: #5bbb19;
  1004. font-size: 1.4rem;
  1005. font-weight: bold;
  1006. cursor: pointer;
  1007. }
  1008. .block_line.line_white{
  1009. background-color:#fff;
  1010. }
  1011. .block_line.line_red{
  1012. background-color:red;
  1013. }
  1014. .block_line .arrow.right{
  1015. position: absolute;
  1016. top: -0.7rem;
  1017. right: -1rem;
  1018. border-width: 0.8rem;
  1019. border-style: solid;
  1020. border-color: transparent #cac6d9 transparent transparent;
  1021. transform: rotate(180deg);
  1022. }
  1023. .block_line .arrow.arrow_white{
  1024. border-color: transparent #cac6d9 transparent transparent !important;
  1025. }
  1026. .block_line .arrow.arrow_red{
  1027. border-color: transparent red transparent transparent !important;
  1028. }
  1029. .block_line .arrow.left{
  1030. position: absolute;
  1031. top: -0.7rem;
  1032. left: -1rem;
  1033. border-width: 0.8rem;
  1034. border-style: solid;
  1035. border-color: transparent #cac6d9 transparent transparent;
  1036. transform: rotate(0deg);
  1037. }
  1038. .inputs_num{
  1039. border: 1px solid #8a8fa2;
  1040. border-radius: 2rem;
  1041. display: inline-block;
  1042. width: 2.2rem;
  1043. height: 2.2rem;
  1044. line-height: 2.2rem;
  1045. text-align: center;
  1046. cursor: pointer;
  1047. background: #1c64c1;
  1048. color: #ededed;
  1049. pointer-events: auto;
  1050. z-index: 10;
  1051. }
  1052. .inputs_ied_box{
  1053. width: 35%;
  1054. height: 90%;
  1055. top: 5%;
  1056. border: 2px dotted #C8D4E2;
  1057. border-radius: 4px;
  1058. background-color: #F3F5FA;
  1059. }
  1060. .ied{
  1061. position: absolute;width: 27rem;border: 2px dotted #C8D4E2;left: 50%;top: 5%;margin-left: -14rem;
  1062. background-color: #F3F5FA;border-radius: 1rem;
  1063. }
  1064. .ied>span{float: left;width: 100%;height: 3rem;line-height: 3rem;}
  1065. .ied img{height: 5rem;width: 7rem;float: left;margin: 1rem;}
  1066. .ied .ied_header_name{float: left;
  1067. width: 61%;
  1068. text-align: left;
  1069. line-height: 2.5rem;
  1070. color: #43526B;
  1071. font-size: 1.17rem;
  1072. font-weight: 700;
  1073. }
  1074. .ied .ied_header_desc{color: #134BEA;max-height: 4rem;overflow: hidden;line-height: 1.5rem;font-size: 1.17rem;float: left;width: 61%;font-weight: bold;padding-top: 1rem;text-align: left;font-weight: 700;}
  1075. .ied .ied_header{height: 7rem;background-color: transparent;border-radius: 1rem 1rem 0 0;}
  1076. .ied_slave{position: absolute;width: 20rem;border: 1px solid #495d8c;left: 25%;top: 5%;margin-left: -14rem;background-color: #495d8c;border-radius: 1rem 1rem 0 0;}
  1077. .ied_slave>span{float: left;width: 100%;height: 2rem;line-height: 2rem;}
  1078. .ied_slave img{height: 5rem;width: 5rem;float: left;margin: 1rem;}
  1079. .master_ied{height: auto !important;}
  1080. .extref{
  1081. position: relative;float: left;width: 100%;
  1082. border-top: 1px solid #C8D4E2;
  1083. font-size: 1.2rem;
  1084. line-height: 1.4rem;
  1085. }
  1086. .extref_no{
  1087. text-align: left;
  1088. position: absolute;
  1089. left: 0;
  1090. top: 0;
  1091. font-size: 1.2rem;
  1092. font-weight: bold;
  1093. margin-left: 0.5rem;
  1094. }
  1095. .extref_opt_d{
  1096. color: #ff0000;
  1097. }
  1098. .extref_opt_u{
  1099. color: #134BEA;
  1100. }
  1101. .extref_icon_opt_d{
  1102. background-image: url('/static/images/comp_scd/CircleWavy_del.png');
  1103. position: absolute;
  1104. right: 0.5rem;
  1105. top: 0;
  1106. width: 2rem;
  1107. height: 2rem;
  1108. background-position: center;
  1109. background-repeat: no-repeat;
  1110. }
  1111. .extref_icon_opt_i{
  1112. background-image: url('/static/images/comp_scd/CircleWavy_add.png');
  1113. position: absolute;
  1114. right: 0.5rem;
  1115. top: 0;
  1116. width: 2rem;
  1117. height: 2rem;
  1118. background-position: center;
  1119. background-repeat: no-repeat;
  1120. }
  1121. .extref .linkpoint_left{
  1122. position: absolute;
  1123. top: 0.8rem;
  1124. left: -0.5rem;
  1125. width: 0 !important;
  1126. height: 0 !important;
  1127. }
  1128. .extref .linkpoint_right{position: absolute;
  1129. height: 1rem;
  1130. width: 1rem;
  1131. top: 0.8rem;
  1132. right: -0.5rem;
  1133. border-radius: 1rem;
  1134. background-color: #A6B1BF;
  1135. }
  1136. .extref .error{background-color: #f9dd00;}
  1137. .triangle-right {
  1138. width: 0 !important;
  1139. height: 0 !important;
  1140. border-top: 5px solid transparent;
  1141. border-left: 10px solid red;
  1142. border-bottom: 5px solid transparent;
  1143. background-color: transparent !important;
  1144. }
  1145. .network{
  1146. position: absolute;
  1147. left: 0;
  1148. top:15rem;
  1149. width: 100%;
  1150. height: auto;
  1151. font-size: 1.4rem;
  1152. border: 0px dotted #cccccc59;
  1153. color: #516380;
  1154. border-radius: 0.5rem;
  1155. background-color: #fff;
  1156. }
  1157. .network .S1{
  1158. background-color: #D1FB59 !important;
  1159. color: #5969bb !important;
  1160. }
  1161. .network .S2{
  1162. background-color: #FDC42F !important;
  1163. color: #5969bb !important;
  1164. }
  1165. .network .S3{
  1166. background-color: #FF8531 !important;
  1167. color: #5969bb !important;
  1168. }
  1169. .network .G1{
  1170. background-color: #3259E0 !important;
  1171. color: #fff !important;
  1172. }
  1173. .network .G2{
  1174. background-color: #38FFFF !important;
  1175. color: #fff !important;
  1176. }
  1177. .network .G3{
  1178. background-color: #3FA3FF !important;
  1179. color: #706e7d !important;
  1180. }
  1181. .network .G4{
  1182. background-color: #7368F1 !important;
  1183. color: #fff !important;
  1184. }
  1185. .network .G5{
  1186. background-color: #84D7FF !important;
  1187. color: #fff !important;
  1188. }
  1189. .network .M1{
  1190. background-color: #FB3E3E !important;
  1191. color: #fff !important;
  1192. }
  1193. .network .M2{
  1194. background-color: #FF039A !important;
  1195. color: #fff !important;
  1196. }
  1197. .network .M3{
  1198. background-color: #FF1BE8 !important;
  1199. color: #706e7d !important;
  1200. }
  1201. .network .M4{
  1202. background-color: #FF929D !important;
  1203. color: #fff !important;
  1204. }
  1205. .network .M5{
  1206. background-color: #FF9AF5 !important;
  1207. color: #fff !important;
  1208. }
  1209. .network-line{
  1210. position: absolute;
  1211. background-color: #8f7fc8;
  1212. width: 3px;
  1213. }
  1214. .network-iedlist{
  1215. position: absolute;
  1216. width: 100%;
  1217. }
  1218. .network-iedlist .ied_item{
  1219. position: relative;
  1220. width: 10rem;
  1221. height: 10rem;
  1222. float: left;
  1223. margin: 1rem;
  1224. text-align: center;
  1225. font-size: 1.16rem;
  1226. cursor: pointer;
  1227. line-height: 1.5rem;
  1228. }
  1229. .network-iedlist .ied_item:hover{
  1230. opacity: 1 !important;
  1231. }
  1232. .network-iedlist .ied_item img{
  1233. width: 5rem;
  1234. }
  1235. .network-ied-line{
  1236. position:absolute;
  1237. width: 2px;
  1238. height: 10rem;
  1239. background-color: #8f7fc8;
  1240. }
  1241. .network-ied-line2{
  1242. position:absolute;
  1243. width: 2px;
  1244. height: 2px;
  1245. background-color: #8f7fc8;
  1246. }
  1247. .network_item{
  1248. position: relative;
  1249. float: left;
  1250. width: 30%;
  1251. margin-top: 2rem;
  1252. text-align: center;
  1253. cursor: pointer;
  1254. opacity: 0.6;
  1255. }
  1256. .network_item:hover{
  1257. opacity: 1;
  1258. }
  1259. .network_item.active{
  1260. opacity: 1;
  1261. }
  1262. .network .active img{
  1263. border-bottom: 2px solid #134BEA;
  1264. background: linear-gradient(to top,#4f50b95c,#fff9f900);
  1265. }
  1266. .network .active .network_name{
  1267. color: #134BEA !important;
  1268. }
  1269. .network_item .network_desc{
  1270. position: absolute;
  1271. top: 0;
  1272. text-align: center;
  1273. width: 100%;
  1274. color: #814fe6;
  1275. font-weight: bold;
  1276. letter-spacing: 0.5rem;
  1277. line-height: 1.5rem;
  1278. }
  1279. .network_item .network_name{
  1280. position: absolute;
  1281. top: 3.2rem;
  1282. text-align: center;
  1283. width: 100%;
  1284. color: #0b111a;
  1285. font-weight: bold;
  1286. letter-spacing: 0.1rem;
  1287. }
  1288. .network_ap{
  1289. position: absolute;
  1290. width: 100%;
  1291. top: 10rem;
  1292. height: 0rem;
  1293. }
  1294. .network_ap .ap_name{
  1295. position: absolute;
  1296. width: 2%;
  1297. left: 0;
  1298. top: 0;
  1299. color: #fff;
  1300. }
  1301. .network_ap .sub_line{
  1302. position: absolute;
  1303. width: 95%;
  1304. height: 5px;
  1305. left: 3%;
  1306. background-color: #8f7fc8;
  1307. border-radius: 5px;
  1308. cursor: pointer;
  1309. }
  1310. .network_ap .sub_line:hover{
  1311. opacity: 1 !important;
  1312. }
  1313. .network_ap .sub_line .line-apname{
  1314. float: left;
  1315. margin-left: -2.5rem;
  1316. margin-top: -0.6rem;
  1317. font-weight: bold;
  1318. background: #62389f;
  1319. padding: 0 3px;
  1320. width: 2rem;
  1321. color: #aa5;
  1322. }
  1323. .apname{
  1324. background-color: #1e0937;
  1325. line-height: 1rem;
  1326. margin: 1rem 0.5rem;
  1327. padding: 1rem;
  1328. border-radius: 0.5rem;
  1329. border: 1px solid #362757;
  1330. cursor: pointer;
  1331. }
  1332. .ied_linkpoint{
  1333. position: absolute;
  1334. height: 0.5rem;
  1335. width: 0.5rem;
  1336. top: 0.8rem;
  1337. left: 0.5rem;
  1338. border-radius: 1rem;
  1339. background-color: #134BEA;
  1340. }
  1341. .ied_strcut_desc{
  1342. line-height: 2rem;
  1343. position: absolute;
  1344. transform: rotate(31deg);
  1345. top: 2.5rem;
  1346. left: 5.5rem;
  1347. width: 59%;
  1348. word-break: break-word;
  1349. color: #6e4ccc;
  1350. font-weight: bold;
  1351. font-style: italic;
  1352. text-align: center;
  1353. }
  1354. .ied_strcut_type{
  1355. position: absolute;
  1356. transform: rotate(31deg);
  1357. top: 26%;
  1358. left: 17%;
  1359. color: #15010152;
  1360. font-size: 1rem;
  1361. font-style: italic;
  1362. width: 60%;
  1363. line-height: 1.5rem;
  1364. text-align: center;
  1365. }
  1366. .ied_strcut_manufacturer{
  1367. line-height: 2rem;
  1368. transform: rotate(-33deg);
  1369. top: 65%;
  1370. position: absolute;
  1371. left: 62%;
  1372. color: 624cd0;
  1373. border: 0px solid #cccccc1c;
  1374. font-style: italic;
  1375. font-size: 1rem;
  1376. width: 6rem;
  1377. text-align: center;
  1378. }
  1379. .accessPoint{
  1380. position: absolute;
  1381. background-size: contain;
  1382. background-repeat: no-repeat;
  1383. width: 40rem;
  1384. height: auto;
  1385. min-height: 5rem;
  1386. border: 2px dotted #C8D4E2;
  1387. background-color: #F3F5FA;
  1388. border-radius: 1rem;
  1389. /*filter: drop-shadow(0px 20px 10px rgba(15, 15, 15, 0.5));*/
  1390. }
  1391. .accessPoint_name{
  1392. font-weight: bold;
  1393. font-size: 1.6rem;
  1394. /*border-bottom: 1px solid #2f2055;
  1395. background-color: #24164d;*/
  1396. }
  1397. .accessPoint_desc{
  1398. font-size: 1.2rem;
  1399. color: #ccc;
  1400. }
  1401. .ldevice_list{
  1402. background-color: #fff;
  1403. margin: 2rem 1rem;
  1404. position: relative;
  1405. padding: 0.5rem;
  1406. float: left;
  1407. width: 92%;
  1408. border:2px solid #C8D4E2;
  1409. }
  1410. .ldevice_item{
  1411. color: #134BEA;
  1412. margin: 2rem;
  1413. float: left;
  1414. width: 6rem;
  1415. height: 6rem;
  1416. line-height: 1.2rem;
  1417. text-align: center;
  1418. cursor: pointer;
  1419. text-align: center;
  1420. word-break: break-all;
  1421. }
  1422. .ldevice_item>img{
  1423. width: 4rem;
  1424. height: 4rem;
  1425. }
  1426. .ldevice_item>div{
  1427. }
  1428. #showLnList{
  1429. position: absolute;
  1430. background-size: contain;
  1431. background-repeat: no-repeat;
  1432. width: 64rem;
  1433. height: auto;
  1434. filter: drop-shadow(1px 2px 1px #299BFF);
  1435. z-index: 10;
  1436. background: #fff;
  1437. border: 1px solid #299BFF;
  1438. border-radius: 3px;
  1439. left: 0;
  1440. top: 0;
  1441. }
  1442. #showLnList .allow{
  1443. position: absolute;
  1444. top: -1.8rem;
  1445. left: 50%;
  1446. border-width: 1rem;
  1447. border-style: solid;
  1448. border-color: transparent #332564 transparent transparent;
  1449. transform: rotate(90deg); /*顺时针旋转90°*/
  1450. border-radius: 3px;
  1451. }
  1452. #showLnList .caption{
  1453. height: 3rem;
  1454. line-height: 3rem;
  1455. display: block;
  1456. width: 100%;
  1457. font-size: 1.6rem;
  1458. padding-left: 1rem;
  1459. color: #09162C;
  1460. border-bottom: 1px solid #C8D4E2;
  1461. }
  1462. #showLnList .ln_list{
  1463. display: block;
  1464. width: 100%;
  1465. border-radius: 0 0 3px 3px;
  1466. min-height: 5rem;
  1467. max-height: 30rem;
  1468. overflow: auto;
  1469. line-height: 2.4rem;
  1470. }
  1471. #dataset_list{
  1472. position: absolute;
  1473. color: #516380;
  1474. border: 2px dotted #C8D4E2;
  1475. background-color: #F3F5FA;
  1476. border-radius: 5px;
  1477. right: 1rem;
  1478. padding: 0.5rem;
  1479. max-height: 11rem;
  1480. overflow-y: auto;
  1481. }
  1482. #dataset_list>span{
  1483. float: left;
  1484. padding: 0.5rem;
  1485. line-height: 1.4rem;
  1486. font-size: 1.2rem;
  1487. width: 13rem;
  1488. }
  1489. #dataset_list i{
  1490. font-size: 1.5rem;
  1491. color: #a38bf3;
  1492. }
  1493. .flow_node{
  1494. position: absolute;
  1495. width: 10rem;
  1496. height: 7rem;
  1497. line-height: 7rem;
  1498. font-size: 2rem;
  1499. top:10%;
  1500. font-weight: bold;
  1501. text-align: center;
  1502. border: 0px solid #ccc;
  1503. border-radius: 5rem;
  1504. }
  1505. /*当前节点*/
  1506. .flow_node.active .number{
  1507. background-color: #D6B718 !important;
  1508. color: #fff;
  1509. padding: 0.3rem 0.8rem;
  1510. border-radius: 2rem;
  1511. text-align: center;
  1512. font-size: 1.6rem;
  1513. border: 2px solid #fff;
  1514. }
  1515. .flow_node.active .nodetext{
  1516. color: #D6B718;
  1517. font-size: 2rem;
  1518. vertical-align: middle;
  1519. margin-left: 0.5rem;
  1520. }
  1521. /*已处理节点*/
  1522. .flow_node.deal .number{
  1523. background-color: #00C968 !important;
  1524. color: #fff;
  1525. padding: 0.3rem 0.8rem;
  1526. border-radius: 2rem;
  1527. text-align: center;
  1528. font-size: 1.6rem;
  1529. border: 2px solid #fff;
  1530. }
  1531. .flow_node.deal .nodetext{
  1532. color: #00C968;
  1533. font-size: 2rem;
  1534. vertical-align: middle;
  1535. margin-left: 0.5rem;
  1536. }
  1537. /*不能处理节点*/
  1538. .flow_node.disable .number{
  1539. background-color: #624CAA !important;
  1540. color: #342B58;
  1541. padding: 0.3rem 0.8rem;
  1542. border-radius: 2rem;
  1543. text-align: center;
  1544. font-size: 1.6rem;
  1545. border: 2px solid transparent;
  1546. }
  1547. .flow_node.disable .nodetext{
  1548. color: #624CAA;
  1549. font-size: 2rem;
  1550. vertical-align: middle;
  1551. margin-left: 0.5rem;
  1552. }
  1553. .flow_node_line{
  1554. position: absolute;
  1555. background-color: #ccc;
  1556. height: 1px;
  1557. }
  1558. .flow_node_line_point{
  1559. position: absolute;
  1560. background-color: #ccc;
  1561. height: 1rem;
  1562. width: 1rem;
  1563. border-radius: 1rem;
  1564. }
  1565. .flow_node_person{
  1566. position: absolute;
  1567. background-color: #f9f7f7;
  1568. width: 10rem;
  1569. height: 4rem;
  1570. text-align: center;
  1571. border: 1px solid #ccc;
  1572. border-radius: 0.5rem;
  1573. z-index: 100;
  1574. cursor: pointer;
  1575. }
  1576. .flow_node_person_line{
  1577. position: absolute;
  1578. width: 1px;
  1579. border-left: 2px dashed #7378ce;
  1580. border-right: 0px;
  1581. background: transparent;
  1582. z-index: 0;
  1583. }
  1584. .flow_node_person .name{
  1585. padding: 1rem;display: block;font-size: 3rem;color: #aca9a9;
  1586. }
  1587. .flow_node_person .name.bind{
  1588. padding: 1rem;display: block;color: #686464;font-size: 1.4rem;
  1589. }
  1590. .flow_node_person .fa-user{
  1591. font-size: 3.5rem;float: left;margin: 0.5rem;color: #d9cfcf;
  1592. }
  1593. .flow_node_person .fa-user.bind{
  1594. font-size: 3.5rem;float: left;margin: 0.5rem;color: #686464;
  1595. }
  1596. .flow_node_person .fa-times{
  1597. position: absolute;
  1598. top: 0;
  1599. right: 0;
  1600. background-color: #ccc;
  1601. font-size: 1.2rem;
  1602. color: #c66262;
  1603. padding: 1px;
  1604. }
  1605. .checktools_scl_numberhint{
  1606. border-radius: 1rem;
  1607. float: right;
  1608. line-height: 1rem;
  1609. width: 1rem;
  1610. text-align: center;
  1611. margin-right: 1rem;
  1612. margin-top: 1rem;
  1613. cursor: pointer;
  1614. }
  1615. .alert_level_active{
  1616. }
  1617. .alert_level_error{
  1618. color:red;
  1619. }
  1620. .alert_level_waring{
  1621. color:#b5b51f;
  1622. }
  1623. .alert_level_hint{
  1624. color:#558655;
  1625. }
  1626. .accessPoint .networkinfo{
  1627. height: 8rem;
  1628. overflow: hidden;
  1629. }
  1630. .accessPoint .networkinfo>div{
  1631. line-height: 2rem;
  1632. text-align: left;
  1633. padding-left: 1rem;
  1634. font-size: 1.2rem;
  1635. }
  1636. .accessPoint .v_label{
  1637. width: 12rem;
  1638. color: #94A3B8;
  1639. }
  1640. .accessPoint .v_value{
  1641. width: 17rem;
  1642. color: #516380;
  1643. font-weight: bold;
  1644. }
  1645. .accessPoint .networkinfo_nmuber{
  1646. height: 2rem;
  1647. color: #9da0ca;
  1648. text-align: center;
  1649. line-height: 2rem;
  1650. }
  1651. .accessPoint .networkinfo_nmuber .active{
  1652. color: #134BEA;
  1653. font-weight: bold;
  1654. border: 1px solid #134BEA;
  1655. background-color: #fff;
  1656. }
  1657. .accessPoint .networkinfo_nmuber>span{
  1658. color: #7c58a8;
  1659. padding: 0rem 0.4rem;
  1660. border: 1px solid #606c93;
  1661. border-radius: 1rem;
  1662. margin-left: 0.5rem;
  1663. cursor: pointer;
  1664. }
  1665. #ied_list_tree .station_list_item.active>span{
  1666. color: #134BEA !important;
  1667. }
  1668. .fast_find_list{
  1669. background: #fff !important;
  1670. color: #000 !important;
  1671. border-color: #ccc !important;
  1672. height: 3rem;
  1673. margin-top: 0.5rem;
  1674. border-radius: 0rem !important;
  1675. }
  1676. .ied_show_block .abs{
  1677. bottom: -3rem !important;
  1678. font-size: 1.16rem;
  1679. }
  1680. .ip{
  1681. color: #999;
  1682. cursor: pointer;
  1683. font-size: 1rem;
  1684. }
  1685. .ip:hover{
  1686. color: #5c9cee;
  1687. font-size: 1.2rem;
  1688. }
  1689. .comp_scd{
  1690. top:3.4rem;left:45%;
  1691. line-height:2rem;
  1692. }
  1693. .comp_scd img{
  1694. width: 6rem;
  1695. }
  1696. .comp_scd .scd_font{
  1697. width: 8rem;color: #516380;font-size: 1.34rem;font-weight: bold;line-height: 2rem;
  1698. }
  1699. #ied_change_stat .change_btn{
  1700. width: 11rem;
  1701. border: 2px dotted #97AAC0;
  1702. font-weight: bold;
  1703. font-size: 1.4rem;
  1704. margin: 0 1.5rem;
  1705. border-radius: 5px;
  1706. cursor: pointer;
  1707. position: relative;
  1708. }
  1709. #ied_change_stat .change_btn:hover{
  1710. border: 3px dashed #97AAC0;
  1711. }
  1712. #ied_change_stat .change_btn img{
  1713. width: 2rem;
  1714. }
  1715. #ied_change_stat .linkpointer{
  1716. background-color: #97AAC0;
  1717. width: 8px;
  1718. height: 8px;
  1719. border-radius: 5px;
  1720. left: 50%;
  1721. margin-left: -4px;
  1722. top: -10px;
  1723. z-index:1000;
  1724. }
  1725. .pointer_line{
  1726. width: 1px;
  1727. background-color: #C8D4E2;
  1728. height: 1px;
  1729. position: absolute;
  1730. z-index:0;
  1731. }
  1732. .color_i{
  1733. color: #134BEA;
  1734. }
  1735. .color_u{
  1736. color: #FFA011;
  1737. }
  1738. .color_d{
  1739. color: #FF0000;
  1740. }
  1741. .bgcolor_i{
  1742. background-color: #134BEA;
  1743. }
  1744. .bgcolor_u{
  1745. background-color: #FFA011;
  1746. }
  1747. .bgcolor_d{
  1748. background-color: #FF0000;
  1749. }
  1750. .bgcolor_0{
  1751. background-color: #C8D4E2;
  1752. }
  1753. .bordercolor_i{
  1754. border: 2px dashed #134BEA;
  1755. }
  1756. .bordercolor_u{
  1757. border: 2px dashed #FFA011;
  1758. }
  1759. .bordercolor_d{
  1760. border: 2px dashed #FF0000;
  1761. }
  1762. .comp_ied_list{
  1763. width: 20%;
  1764. height: 97%;
  1765. margin:0.5%;
  1766. background-color: #F3F5FA;
  1767. border-radius: 4px;
  1768. border: 1px solid #C8D4E2;
  1769. }
  1770. .comp_ied_list .ied_data_list{
  1771. border-bottom: 1px solid #ccc;
  1772. height: 40%;
  1773. margin: 2%;
  1774. width: 96%;
  1775. text-align: left;
  1776. line-height: 3rem;
  1777. }
  1778. .comp_ied_list .ied_data_list .ied_item{
  1779. width: 100%;
  1780. cursor: pointer;
  1781. }
  1782. .comp_ied_list .ied_data_list .ied_item.active{
  1783. color: #134BEA;
  1784. font-weight: bold;
  1785. }
  1786. .comp_ied_list .ied_data_list .ied_item:hover{
  1787. color: #134BEA;
  1788. font-weight: bold;
  1789. }
  1790. .comp_ied_list .ied_comp_items{
  1791. height: 53%;
  1792. padding: 2%;
  1793. width: 96%;
  1794. border-top: 1px solid #ccc;
  1795. line-height: 2.2rem;
  1796. font-size: 1.2rem;
  1797. }
  1798. .comp_ied_list .ied_comp_items>div{
  1799. width: 100%;
  1800. }
  1801. .comp_ied_list .ied_comp_items>div.active{
  1802. background: linear-gradient(85deg, #CFE4FF 0%, rgba(166,207,255,0) 100%);;
  1803. border-left: 2px solid #134BEA;
  1804. color: #134BEA;
  1805. }
  1806. .comp_ied_list .ied_comp_items>div:hover{
  1807. background: #eaeaea;
  1808. }
  1809. .comp_ied_list .ied_comp_items .fa{
  1810. line-height: 2.2rem;
  1811. margin-left: 1rem;
  1812. }
  1813. .comp_ied_list .ied_comp_items .node>span{
  1814. line-height: 2.2rem;
  1815. margin-left: 1rem;
  1816. }
  1817. .comp_ied_list .ied_comp_items .children>span{
  1818. line-height: 2.2rem;
  1819. margin-left: 4rem;
  1820. }
  1821. .comp_ied_result_show{
  1822. width: 77%;
  1823. height: 97%;
  1824. margin:0.5%;
  1825. background-color: #F3F5FA;
  1826. border-radius: 4px;
  1827. border: 1px solid #C8D4E2;
  1828. line-height: 2.2rem;
  1829. position: relative;
  1830. }
  1831. .comp_show_area{
  1832. width: 100%;
  1833. height: 90.5%;
  1834. margin: 1%;
  1835. position: relative;
  1836. top: 0;
  1837. }
  1838. .comp_show_area .comp_ied_result_split_line{
  1839. position: absolute;
  1840. top: 0;
  1841. left: 50%;
  1842. z-index: 0;
  1843. width: 2px;
  1844. height: 98%;
  1845. background-image: repeating-linear-gradient(180deg, #cec4c4, #cec4c4 6px, #fff 0, #fff 1rem);
  1846. }
  1847. .comp_show_area .iedele{
  1848. position: absolute;
  1849. top:45%;
  1850. margin-top: -4rem;
  1851. height: 8rem;
  1852. line-height: 2rem;
  1853. }
  1854. .comp_show_area .iedele>img{
  1855. width: 6rem;
  1856. }
  1857. .comp_show_area .typeele{
  1858. position: absolute;
  1859. cursor: pointer;
  1860. margin-top: 1rem;
  1861. margin-bottom: 0rem;
  1862. }
  1863. .comp_show_area .typeele.active{
  1864. border: 1px solid #89a5f9;
  1865. border-radius: 3px;
  1866. }
  1867. .comp_show_area .typeele .type_name{
  1868. width: 8rem;
  1869. /*
  1870. overflow: hidden;
  1871. text-overflow: ellipsis;
  1872. white-space: nowrap;
  1873. */
  1874. display: block;
  1875. float: none;
  1876. word-break: break-all;
  1877. line-height: 1rem;
  1878. font-size: 0.9rem;
  1879. }
  1880. .comp_show_area .typeele .state_icon{
  1881. position: absolute;
  1882. background-repeat: no-repeat;
  1883. background-size: 100%;
  1884. width: 1.5rem;
  1885. height: 1.5rem;
  1886. top: 0;
  1887. right: 0;
  1888. }
  1889. .comp_show_area .typeele .state_icon_i{
  1890. background-image: url('/static/images/comp_scd/state_add.png');
  1891. }
  1892. .comp_show_area .typeele .state_icon_u{
  1893. background-image: url('/static/images/comp_scd/state_edit.png');
  1894. }
  1895. .comp_show_area .typeele .state_icon_d{
  1896. background-image: url('/static/images/comp_scd/state_del.png');
  1897. }
  1898. .comp_show_area .typeele .type_icon{
  1899. height: 5rem;
  1900. }
  1901. .comp_scd_detail_item{
  1902. position: absolute;
  1903. width: 26rem;
  1904. height: auto;
  1905. border-radius: 3px;
  1906. padding: 1rem 0.5rem;
  1907. line-height: 1.5rem;
  1908. }
  1909. .comp_scd_detail_item .allow_img{
  1910. width: 4rem;
  1911. }
  1912. .comp_scd_detail_item>div{
  1913. width: 33.3%;
  1914. height: auto;
  1915. float: left;
  1916. word-break: break-all;
  1917. }
  1918. .comp_scd_detail_item_attrtag{
  1919. word-break: break-all;font-size: 0.9rem;height:2rem;line-height: 2rem;width:5rem;background-color:#fff;border-style:solid !important;border-radius: 3px;z-index: 100;
  1920. }