myImages.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754
  1. .usky_menu .x-btn-inner {
  2. font-size: 16px; padding:0 10 0 10;font-family:微软雅黑, Microsoft YaHei;
  3. }
  4. .x-btn-inner{
  5. heigh:24px; inner-height:24px;
  6. }
  7. .usky_menu .x-menu-item-text {
  8. font-size: 16px; padding:0 10 0 10;font-family:微软雅黑, Microsoft YaHei;
  9. }
  10. @font-face {
  11.     font-family: 'UnidreamLED';
  12.     src:url(UnidreamLED/UnidreamLED.eot); /***兼容ie9***/
  13.     src:url(UnidreamLED/UnidreamLED.eot?#iefix)format('embedded-opentype'), /***兼容ie6-ie8***/
  14.     url('UnidreamLED/UnidreamLED.woff') format('woff'), 
  15.     local('UnidreamLED'), url("UnidreamLED/UnidreamLED.woff");/***默认使用本地的***/
  16. }
  17. .x-btn-default-small-menu-active .x-btn-inner {
  18. color: #ffffff;
  19. background-color: #0e70cb;
  20. border-color:#0e70cb;
  21. background-image: -webkit-linear-gradient(top,#0e70cb,#0e70cb);
  22. }
  23. .x-menu-item-active .x-menu-item-link {
  24. color: #ffffff;
  25. background-color: #0e70cb;
  26. border-color:#0e70cb;
  27. background-image: -webkit-linear-gradient(top,#0e70cb,#0e70cb);
  28. }
  29. .amap-marker .amap-marker-content div{
  30. font-family: DS-Digital-Italic;
  31. color: #ffffff!important;
  32. font-size: 12px!important;
  33. }
  34. .x-btn-arrow {
  35. color: #47ccfd; font-size: 20px;
  36. }
  37. .usky_btn {
  38. background:url(usky/usky.png) left top no-repeat !important;
  39. }
  40. .usky_logo {
  41. background:url(usky/logo.png) left top no-repeat !important
  42. }
  43. .ok_btn {
  44. background:url(common/famicons/accept.png) left top no-repeat !important;
  45. }
  46. .cancel_btn {
  47. background:url(common/famicons/cancel.png) left top no-repeat !important;
  48. }
  49. .filter_btn {
  50. background:url(common/filter-x.gif) left top no-repeat !important;
  51. }
  52. .back_btn {
  53. background:url(common/back.gif) left top no-repeat !important;
  54. }
  55. .append_btn {
  56. background:url(common/famicons/add.png) left top no-repeat !important;
  57. }
  58. .modify_btn {
  59. background:url(common/famicons/application_edit.png) left top no-repeat !important;
  60. }
  61. .delete_btn {
  62. background:url(common/famicons/application_form_delete.png) left top no-repeat !important;
  63. }
  64. .export_btn {
  65. background:url(common/save.gif) left top no-repeat !important;
  66. }
  67. .menu_access_btn {
  68. background:url(usky/menu_access_btn.png) left top no-repeat !important;
  69. }
  70. .menu_alarm_btn {
  71. background:url(usky/menu_alarm_btn.png) left top no-repeat !important;
  72. }
  73. .menu_around_btn {
  74. background:url(usky/menu_around_btn.png) left top no-repeat !important;
  75. }
  76. .main_device_btn {
  77. background:url(common/device_main.png) left top no-repeat !important;
  78. }
  79. .menu_data_btn {
  80. background:url(usky/menu_data_btn.png) left top no-repeat !important;
  81. }
  82. .menu_device_btn {
  83. background:url(usky/menu_device_btn.png) left top no-repeat !important;
  84. }
  85. .menu_efire_btn {
  86. background:url(usky/menu_efire_btn.png) left top no-repeat !important;
  87. }
  88. .menu_fire_btn {
  89. background:url(usky/menu_fire_btn.png) left top no-repeat !important;
  90. }
  91. .menu_frontpage_btn {
  92. background:url(usky/menu_frontpage_btn.png) left top no-repeat !important;
  93. }
  94. .menu_map_btn {
  95. background:url(usky/menu_map_btn.png) left top no-repeat !important;
  96. }
  97. .menu_power_btn {
  98. background:url(usky/menu_power_btn.png) left top no-repeat !important;
  99. }
  100. .menu_statistics_btn {
  101. background:url(usky/menu_statistics_btn.png) left top no-repeat !important;
  102. }
  103. .menu_sysinfo_btn {
  104. background:url(usky/menu_sysinfo_btn.png) left top no-repeat !important;
  105. }
  106. .menu_theme_btn {
  107. background:url(usky/menu_theme_btn.png) left top no-repeat !important;
  108. }
  109. .menu_view_btn {
  110. background:url(usky/menu_view_btn.png) left top no-repeat !important;
  111. }
  112. .menu_water_btn {
  113. background:url(usky/menu_water_btn.png) left top no-repeat !important;
  114. }
  115. .menu_work_btn {
  116. background:url(usky/menu_work_btn.png) left top no-repeat !important;
  117. }
  118. .setup_building_btn {
  119. background:url(usky/setup_building_btn.png) left top no-repeat !important;
  120. }
  121. .setup_company_btn {
  122. background:url(usky/setup_company_btn.png) left top no-repeat !important;
  123. }
  124. .setup_interface_btn {
  125. background:url(usky/setup_interface_btn.png) left top no-repeat !important;
  126. }
  127. .setup_iotcard_btn {
  128. background:url(usky/setup_iotcard_btn.png) left top no-repeat !important;
  129. }
  130. .setup_permission_btn {
  131. background:url(usky/setup_permission_btn.png) left top no-repeat !important;
  132. }
  133. .setup_permissiongroup_btn {
  134. background:url(usky/setup_permissiongroup_btn.png) left top no-repeat !important;
  135. }
  136. .setup_pno_btn {
  137. background:url(usky/setup_pno_btn.png) left top no-repeat !important;
  138. }
  139. .setup_unit_btn {
  140. background:url(usky/setup_unit_btn.png) left top no-repeat !important;
  141. }
  142. .setup_user_btn {
  143. background:url(usky/setup_user_btn.png) left top no-repeat !important;
  144. }
  145. .sysinfo_point_btn {
  146. background:url(usky/sysinfo_point_btn.png) left top no-repeat !important;
  147. }
  148. .sysinfo_runtime_btn {
  149. background:url(usky/sysinfo_runtime_btn.png) left top no-repeat !important;
  150. }
  151. .sysinfo_server_btn {
  152. background:url(usky/sysinfo_server_btn.png) left top no-repeat !important;
  153. }
  154. .user_change_btn {
  155. background:url(usky/user_change_btn.png) left top no-repeat !important;
  156. }
  157. .user_logout_btn {
  158. background:url(usky/user_logout_btn.png) left top no-repeat !important;
  159. }
  160. .user_password_btn {
  161. background:url(usky/user_password_btn.png) left top no-repeat !important;
  162. }
  163. .view_level_btn {
  164. background:url(usky/view_level_btn.png) left top no-repeat !important;
  165. }
  166. .view_scope_btn {
  167. background:url(usky/view_scope_btn.png) left top no-repeat !important;
  168. }
  169. .view_sound_btn {
  170. background:url(usky/view_sound_btn.png) left top no-repeat !important;
  171. }
  172. .back_btn {
  173. background:url(common/famicons/arrow_left.png) left top no-repeat !important;
  174. }
  175. .alarm_pie_var {
  176. margin: 0px; overflow: hidden; z-index: 1000; position: absolute; top: 100px; left:20px; border: 0px solid #000;
  177. }
  178. .device_pie_bar {
  179. margin: 0px; overflow: hidden; z-index: 1000; position: absolute; top: 100px; right:20px; border: 0px solid #000;
  180. }
  181. .pie_total {
  182. color:#DDDF0D;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
  183. }
  184. .pie_normal {
  185. color:#31e9ff;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
  186. }
  187. .pie_abnormal {
  188. color:#f66167;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
  189. }
  190. .shadow_black_bak {
  191. text-shadow: 1px 1px 2px #888, 0 0 0 #000;
  192. }
  193. .shadow_white_bak {
  194. text-shadow: 1px 1px 2px #FFF, 0 0 0 #000;
  195. }
  196. .alarm_wrapper {
  197. font-family:微软雅黑, Microsoft YaHei;
  198. margin-top:5px;
  199. position:absolute; top:10px; left:70px; width:660px; z-index:1000; border: 0px solid #000; font-size:20px; font-weight:bold;
  200. }
  201. .alarm_warpper_table {
  202. border:none; width:800px; height:58px; z-index: 1000; position:absolute; top:22px; left:560px; overflow: hidden;border-collapse: collapse;
  203. }
  204. .sub_wrapper_table {
  205. border:none; width:730px; height:58px; z-index: 999; position:absolute; top:0px; left:35px; overflow: hidden; margin:0px; padding:0px; overflow: hidden;border-collapse: collapse;
  206. }
  207. .toplevel {
  208. z-index:20000;
  209. }
  210. .x-item-disabled-new {
  211. background: rgba(0,0,0,0);
  212. color:#ffffff;
  213. }
  214. .active_company {
  215. border: 1px solid rgba(64,85,98,0.7); background: rgba(64,85,98,0.3);
  216. }
  217. .saerch_company_list {
  218. width:300px;
  219. z-index:1001;
  220. font-size: 14px;
  221. font-family:微软雅黑, Microsoft YaHei;
  222. position:absolute;top:80px; right:200px;
  223. }
  224. .bar5 {background: rgba(0,0,0,0.0);z-index:1001;position:absolute; top:50px;right:200px;color: rgba(255,255,255,0.3);}
  225. .bar5 input, .bar5 button {
  226. background: transparent;
  227. }
  228. .bar5 input {
  229. border: 2px solid #27c5ff;
  230. border-radius:10px;
  231. font-size: 14px;
  232. width: 300px;
  233. color: rgba(255,255,255,0.5);
  234. height: 30px;
  235. font-family:微软雅黑, Microsoft YaHei;
  236. }
  237. .bar input::-webkit-input-placeholder{
  238. color:rgba(255,255,255,0.3);
  239. }
  240. .bar input::-moz-placeholder{
  241. color:rgba(255,255,255,0.3);
  242. }
  243. .bar input:-moz-placeholder{
  244. color:rgba(255,255,255,0.3);
  245. }
  246. .bar input:-ms-input-placeholder{
  247. color:rgba(255,255,255,0.3);
  248. }
  249. .bar5 input:focus {
  250. color: rgba(255,255,255,1);
  251. }
  252. .bar5_clear {
  253. background:url(common/close-tmp.gif) no-repeat 50% 50%; -webkit-filter: grayscale(100%);
  254. -moz-filter: grayscale(100%);
  255. -ms-filter: grayscale(100%);
  256. -o-filter: grayscale(100%);
  257. filter: grayscale(100%);
  258. filter: gray;
  259. width:28px; height:28px; z-index: 1001; position:absolute; top:1px; right:2px;cursor:"pointer";
  260. }
  261. .x-panel-header-new {
  262. background-image: none;
  263. background-color: rgba(0,0,0,0.0);
  264. height: 0px;
  265. overflow:hidden;
  266. }
  267. .operation_body {
  268. height:498px;
  269. background: url(operation_bg.png) repeat-x;
  270. overflow:hidden;
  271. }
  272. .operation_dock_l {
  273. position: absolute;
  274. top: 20px;
  275. left: 20px;
  276. width: 118px;
  277. height: 462px;
  278. background: url(operation_docker_l.png) no-repeat;
  279. }
  280. .operation_dock_r {
  281. position: absolute;
  282. top: 20px;
  283. right: 20px;
  284. width: 118px;
  285. height: 462px;
  286. background: url(operation_docker_r.png) no-repeat;
  287. }
  288. .operation_title_icon{
  289. position:absolute;
  290. top: 86px;
  291. left: 91px;
  292. }
  293. .operation_title_text {
  294. position:absolute;
  295. top: 100px;
  296. left: 146px;
  297. width: 300px;
  298. height: 30px;
  299. font-size: 24px;
  300. color: #6dcffc;
  301. z-index锛�1000锛�
  302. font-family:微软雅黑, Microsoft YaHei;
  303. }
  304. .operation_label_1 {
  305. position:absolute;
  306. top:185px;
  307. left:90px;
  308. color:#dcdcdc;
  309. font-size:16px;
  310. font-family:微软雅黑, Microsoft YaHei;
  311. }
  312. .operation_label_2 {
  313. position:absolute;
  314. top:255px;
  315. left:90px;
  316. color:#dcdcdc;
  317. font-size:16px;
  318. font-family:微软雅黑, Microsoft YaHei;
  319. }
  320. .operation_label_3 {
  321. position:absolute;
  322. top:325px;
  323. left:90px;
  324. color:#dcdcdc;
  325. font-size:16px;
  326. font-family:微软雅黑, Microsoft YaHei;
  327. }
  328. .operation_label_4 {
  329. position:absolute;
  330. top:395px;
  331. left:90px;
  332. color:#dcdcdc;
  333. font-size:16px;
  334. font-family:微软雅黑, Microsoft YaHei;
  335. }
  336. .operation_num_1 {
  337. position:absolute;
  338. top:166px;
  339. left:146px;
  340. color:#ffffff;
  341. font-size:34px;
  342. font-family:微软雅黑, Microsoft YaHei;
  343. width:212px;
  344. height:47px;
  345. background:url(operation_item.png) no-repeat;
  346. padding:2px 0px 0px 9px;
  347. }
  348. .operation_num_2 {
  349. position:absolute;
  350. top:236px;
  351. left:146px;
  352. color:#31e9ff;
  353. font-size:34px;
  354. font-family:微软雅黑, Microsoft YaHei;
  355. width:212px;
  356. height:47px;
  357. background:url(operation_item.png) no-repeat;
  358. padding:2px 0px 0px 9px;
  359. }
  360. .operation_num_3 {
  361. position:absolute;
  362. top:306px;
  363. left:146px;
  364. color:#f66167;
  365. font-size:34px;
  366. font-family:微软雅黑, Microsoft YaHei;
  367. width:212px;
  368. height:47px;
  369. background:url(operation_item.png) no-repeat;
  370. padding:2px 0px 0px 9px;
  371. }
  372. .operation_num_4 {
  373. position:absolute;
  374. top:376px;
  375. left:146px;
  376. color:#f6ff67;
  377. font-size:34px;
  378. font-family:微软雅黑, Microsoft YaHei;
  379. width:212px;
  380. height:47px;
  381. background:url(operation_item.png) no-repeat;
  382. padding:2px 0px 0px 9px;
  383. }
  384. .operation_label_11 {
  385. position:absolute;
  386. top:185px;
  387. left:90px;
  388. color:#dcdcdc;
  389. font-size:16px;
  390. font-family:微软雅黑, Microsoft YaHei;
  391. }
  392. .operation_label_12 {
  393. position:absolute;
  394. top:255px;
  395. left:90px;
  396. color:#dcdcdc;
  397. font-size:16px;
  398. font-family:微软雅黑, Microsoft YaHei;
  399. }
  400. .operation_label_13 {
  401. position:absolute;
  402. top:325px;
  403. left:90px;
  404. color:#dcdcdc;
  405. font-size:16px;
  406. font-family:微软雅黑, Microsoft YaHei;
  407. }
  408. .operation_label_14 {
  409. position:absolute;
  410. top:185px;
  411. left:444px;
  412. color:#dcdcdc;
  413. font-size:16px;
  414. font-family:微软雅黑, Microsoft YaHei;
  415. }
  416. .operation_label_15 {
  417. position:absolute;
  418. top:255px;
  419. left:444px;
  420. color:#dcdcdc;
  421. font-size:16px;
  422. font-family:微软雅黑, Microsoft YaHei;
  423. }
  424. .operation_label_16 {
  425. position:absolute;
  426. top:325px;
  427. left:444px;
  428. color:#dcdcdc;
  429. font-size:16px;
  430. font-family:微软雅黑, Microsoft YaHei;
  431. }
  432. .operation_num_11 {
  433. position:absolute;
  434. top:166px;
  435. left:186px;
  436. color:#ffffff;
  437. font-size:34px;
  438. font-family:微软雅黑, Microsoft YaHei;
  439. width:212px;
  440. height:47px;
  441. background:url(operation_item.png) no-repeat;
  442. padding:2px 0px 0px 9px;
  443. }
  444. .operation_num_12 {
  445. position:absolute;
  446. top:166px;
  447. left:500px;
  448. color:#31e9ff;
  449. display: flex;
  450. justify-content:left;
  451. align-items:Center;
  452. font-size:20px;
  453. font-family:微软雅黑, Microsoft YaHei;
  454. width:212px;
  455. height:47px;
  456. background:url(operation_item.png) no-repeat;
  457. padding:2px 0px 0px 9px;
  458. }
  459. .operation_num_13 {
  460. position:absolute;
  461. top:236px;
  462. left:186px;
  463. color:#f66167;
  464. font-size:34px;
  465. font-family:微软雅黑, Microsoft YaHei;
  466. width:212px;
  467. height:47px;
  468. background:url(operation_item.png) no-repeat;
  469. padding:2px 0px 0px 9px;
  470. }
  471. .operation_num_14 {
  472. position:absolute;
  473. top:236px;
  474. left:500px;
  475. color:#31e9ff;
  476. display: flex;
  477. justify-content:left;
  478. align-items:Center;
  479. font-size:20px;
  480. font-family:微软雅黑, Microsoft YaHei;
  481. width:212px;
  482. height:47px;
  483. background:url(operation_item.png) no-repeat;
  484. padding:2px 0px 0px 9px;
  485. }
  486. .operation_num_15 {
  487. position:absolute;
  488. top:306px;
  489. left:186px;
  490. color:#f6ff67;
  491. font-size:34px;
  492. font-family:微软雅黑, Microsoft YaHei;
  493. width:212px;
  494. height:47px;
  495. background:url(operation_item.png) no-repeat;
  496. padding:2px 0px 0px 9px;
  497. }
  498. .operation_num_16 {
  499. position:absolute;
  500. top:306px;
  501. left:500px;
  502. color:#31e9ff;
  503. display: flex;
  504. justify-content:left;
  505. align-items:Center;
  506. font-size:20px;
  507. font-family:微软雅黑, Microsoft YaHei;
  508. width:212px;
  509. height:47px;
  510. background:url(operation_item.png) no-repeat;
  511. padding:2px 0px 0px 9px;
  512. }
  513. .operation_pie_bg {
  514. position:absolute;
  515. top:116px;
  516. left:410px;
  517. width:280px;
  518. height:280px;
  519. background:url(operation_pie_bg.gif) no-repeat;
  520. }
  521. .operation_pie {
  522. position:absolute;
  523. top:158px;
  524. left:452px;
  525. width:196px;
  526. height:196px;
  527. z-index:100;
  528. }
  529. .operation_pie_title {
  530. position:absolute;
  531. top:365px;
  532. left:526px;
  533. width:70px;
  534. height:20px;
  535. z-index:200;
  536. color:#dcdcdc;
  537. font-size:16px;
  538. font-family:微软雅黑, Microsoft YaHei;
  539. }
  540. .operation_area_bg {
  541. position:absolute;
  542. top:57px;
  543. left:750px;
  544. width:1100px;
  545. height:384px;
  546. background: url(operation_area_bg.gif) no-repeat;
  547. }
  548. .operation_area {
  549. position:absolute;
  550. top:116px;
  551. left:800px;
  552. width:1011px;
  553. height:300px;
  554. z-index:200;
  555. }
  556. .fp_backbtn {
  557. position:absolute;
  558. top:90px;
  559. left:100px;
  560. z-index: 500;
  561. width:133px;
  562. height:46px;
  563. background: url(back.png) no-repeat;
  564. display:none;
  565. cursor:pointer;
  566. }
  567. .mask_left {
  568. position:absolute;
  569. top:0px;
  570. left:0px;
  571. width:630px;
  572. z-index: 200;
  573. background: url(mask_l.png) repeat-y;
  574. }
  575. .mask_right {
  576. position:absolute;
  577. top:0px;
  578. right:0px;
  579. width:630px;
  580. z-index: 200;
  581. background: url(mask_r.png) repeat-y;
  582. }
  583. .mask_top {
  584. position:absolute;
  585. top:0px;
  586. left:0px;
  587. height:100px;
  588. z-index: 200;
  589. background: url(mask_t.png) repeat-x;
  590. }
  591. .mask_bottom {
  592. position:absolute;
  593. left:0px;
  594. height:100px;
  595. z-index: 200;
  596. background: url(mask_b.png) repeat-x;
  597. }
  598. .map_header {
  599. position:absolute;
  600. top:0px;
  601. width:740px;
  602. height:0px;
  603. z-index: 1000;
  604. background: url(icons/map_header2.png) no-repeat center top;
  605. /*background: url(03index/map_header_frame.png) no-repeat center top;*/
  606. }
  607. .amap-marker-label{
  608. border: 0;
  609. background-color: rgba(0,0,0,0.0);
  610. }
  611. .info{
  612. position: relative;
  613. top: 0;
  614. right: 0;
  615. min-width: 0;
  616. color:#31e9ff;
  617. border-left: 2px solid #50f7ed;
  618. border-bottom: 2px solid #50f7ed;
  619. font-size:16px;
  620. font-weight:bold;
  621. font-family:微软雅黑, Microsoft YaHei;
  622. border-image: -webkit-linear-gradient(70deg,#50f7ed ,transparent) 0 0 2 2;
  623. border-image: -moz-linear-gradient(70deg,#50f7ed,transparent) 0 0 2 2;
  624. border-image: linear-gradient(70deg,#50f7ed,transparent) 0 0 2 2;
  625. background-color: rgba(16,56,110,0.6);
  626. }
  627. .info_label{
  628. margin:0px;
  629. padding:0px;
  630. font-size:16px;
  631. font-weight:bold;
  632. font-family:微软雅黑, Microsoft YaHei;
  633. border-image: -webkit-linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
  634. border-image: -moz-linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
  635. border-image: linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
  636. background-color: transparent;
  637. }
  638. .info_title{
  639. position: relative;
  640. top:4px;
  641. left:96px;
  642. width:179px;
  643. height:44px;
  644. font-size:12px;
  645. font-weight:bold;
  646. font-family:微软雅黑, Microsoft YaHei;
  647. color:#31e9ff;
  648. overflow:hidden;
  649. white-space:nowrap;
  650. text-overflow:ellipsis;
  651. }
  652. .info_body0{
  653. position: absolute;
  654. top:44px;
  655. left:80px;
  656. width:179px;
  657. height:20px;
  658. color:#ffffff;
  659. font-size:14px;
  660. font-family:微软雅黑, Microsoft YaHei;
  661. overflow:hidden;
  662. display:flex;
  663. }
  664. .info_body1{
  665. position: absolute;
  666. top:70px;
  667. left:80px;
  668. width:179px;
  669. height:20px;
  670. color:#ffffff;
  671. font-size:14px;
  672. font-family:微软雅黑, Microsoft YaHei;
  673. overflow:hidden;
  674. display:flex;
  675. }
  676. .info_body2{
  677. position: absolute;
  678. top:96px;
  679. left:80px;
  680. width:179px;
  681. height:20px;
  682. color:#ffffff;
  683. font-size:14px;
  684. font-family:微软雅黑, Microsoft YaHei;
  685. overflow:hidden;
  686. display:flex;
  687. }
  688. .info_body3{
  689. position: absolute;
  690. top:122px;
  691. left:80px;
  692. width:179px;
  693. height:20px;
  694. color:#ffffff;
  695. font-size:14px;
  696. font-family:微软雅黑, Microsoft YaHei;
  697. overflow:hidden;
  698. white-space: nowrap;
  699. text-overflow: ellipsis;
  700. }
  701. .info_btn{
  702. position: absolute;
  703. top: 156px;
  704. left:66px;
  705. width:66px;
  706. height:24px;
  707. cursor:pointer;
  708. background-color:#7FEEFF;
  709. text-align:center;
  710. color:#0f386e;
  711. font-size:12px;
  712. font-weight:bold;
  713. font-family:微软雅黑, Microsoft YaHei;
  714. padding-top:2px;
  715. border-radius:4px;
  716. }
  717. .alarm_btn{
  718. position: absolute;
  719. top: 156px;
  720. left:138px;
  721. width:66px;
  722. height:24px;
  723. cursor:pointer;
  724. background-color:#7FEEFF;
  725. text-align:center;
  726. color:#0f386e;
  727. font-size:12px;
  728. font-weight:bold;
  729. font-family:微软雅黑, Microsoft YaHei;
  730. padding-top:2px;
  731. border-radius:4px;
  732. }
  733. .company_building_return{
  734. position: absolute;
  735. top: 56px;
  736. right:66px;
  737. width:66px;
  738. height:24px;
  739. cursor:pointer;
  740. background-color:#7FEEFF;
  741. text-align:center;
  742. color:#0f386e;
  743. font-size:12px;
  744. font-weight:bold;
  745. font-family:微软雅黑, Microsoft YaHei;
  746. padding-top:2px;
  747. border-radius:4px;
  748. }
  749. .today_team_btn{
  750. position: absolute;
  751. top: 156px;
  752. left:210px;
  753. width:66px;
  754. height:24px;
  755. cursor:pointer;
  756. background-color:#7FEEFF;
  757. text-align:center;
  758. color:#0f386e;
  759. font-size:12px;
  760. font-weight:bold;
  761. font-family:微软雅黑, Microsoft YaHei;
  762. padding-top:2px;
  763. border-radius:4px;
  764. }
  765. .alarm_div{
  766. width:179px;
  767. height:200px;
  768. background-color:yellow;
  769. }
  770. .data_bar_title {
  771. font-size:16px;
  772. font-weight:bold;
  773. font-family:微软雅黑, Microsoft YaHei;
  774. color:#ffffff;
  775. height:32px;
  776. cursor:pointer;
  777. }
  778. .data_bar_total_label {
  779. font-size:12px;
  780. font-family:微软雅黑, Microsoft YaHei;
  781. color:#ffffff;
  782. height:32px;
  783. cursor:pointer;
  784. }
  785. .data_bar_total_number {
  786. font-size:18px;
  787. font-family:微软雅黑, Microsoft YaHei;
  788. color:#31e9ff;
  789. height:32px;
  790. cursor:pointer;
  791. }
  792. .data_bar_alarm_label {
  793. font-size:12px;
  794. font-family:微软雅黑, Microsoft YaHei;
  795. color:#ffffff;
  796. height:42px;
  797. cursor:pointer;
  798. }
  799. .data_bar_alarm_number {
  800. font-size:18px;
  801. font-family:微软雅黑, Microsoft YaHei;
  802. color:#f66167;
  803. height:42px;
  804. cursor:pointer;
  805. }
  806. .align_right {
  807. text-align:right;
  808. }
  809. .device_info_title {
  810. margin-top:15px;
  811. font-size:16px;
  812. font-weight:bold;
  813. font-family:微软雅黑, Microsoft YaHei;
  814. color:#ffffff;
  815. cursor:pointer;
  816. }
  817. .device_info {
  818. font-size:10px;
  819. font-family:微软雅黑, Microsoft YaHei;
  820. color:#ffffff;
  821. cursor:pointer;
  822. }
  823. .device_confirm_num0 {
  824. color:#ffffff;
  825. font-size:16px;
  826. cursor:pointer;
  827. }
  828. .device_confirm_num1 {
  829. color:#5ee7b8;
  830. font-size:16px;
  831. cursor:pointer;
  832. }
  833. .device_confirm_num2 {
  834. color:#ea924a;
  835. font-size:16px;
  836. cursor:pointer;
  837. }
  838. .device_confirm_num3 {
  839. color:#ffffff;
  840. font-size:14px;
  841. cursor:pointer;
  842. }
  843. .red_color{
  844. color:#f66167
  845. }
  846. .default_color{
  847. color:#000000
  848. }
  849. .data_bar_area{
  850. top:70px;
  851. left:34px;
  852. position: absolute;
  853. z-index:800;
  854. overflow-x:none;
  855. overflow-y:auto;
  856. width:386px;
  857. height:891px;
  858. cursor:pointer;
  859. }
  860. .data_bar_area::-webkit-scrollbar{
  861. width:6px;
  862. height:100%;
  863. }
  864. .data_bar_area::-webkit-scrollbar-thumb{
  865. width:6px;
  866. height:60px;
  867. background-color:rgba(0,130,255,0.6);
  868. border-radius:5px;
  869. }
  870. .data_bar_area::-webkit-scrollbar-track
  871. {
  872. border-radius: 10px;
  873. background-color: rgba(0,0,0,.3);
  874. }
  875. .alarm_tab_area {
  876. position: absolute;
  877. right:60px;
  878. top:100px;
  879. width:476px;
  880. z-index:500;
  881. overflow-x:none;
  882. overflow-y:auto;
  883. }
  884. .alarm_tab_area::-webkit-scrollbar{
  885. width:6px;
  886. height:100%;
  887. }
  888. .alarm_tab_area::-webkit-scrollbar-thumb{
  889. width:6px;
  890. height:60px;
  891. background-color:rgba(0,130,255,0.6);
  892. border-radius:5px;
  893. }
  894. .alarm_tab_area::-webkit-scrollbar-track
  895. {
  896. border-radius: 10px;
  897. background-color: rgba(0,0,0,.3);
  898. }
  899. .alarm_tab {
  900. position: absolute;
  901. left:0px;
  902. top:0px;
  903. width:456px;
  904. height:132px;
  905. background:url(icons/alarm_tab.png) no-repeat;
  906. z-index:500;
  907. cursor:pointer;
  908. }
  909. .alarm_tab_title {
  910. position:absolute;
  911. top:24px;
  912. left:38px;
  913. font-family:微软雅黑, Microsoft YaHei;
  914. font-size:16px;
  915. font-weight:bold;
  916. color:#31e9ff;
  917. width:320px;
  918. }
  919. .alarm_tab_time {
  920. position:absolute;
  921. top:50px;
  922. left:38px;
  923. font-family:微软雅黑, Microsoft YaHei;
  924. font-size:12px;
  925. color:#dcdcdc;
  926. width:270px;
  927. }
  928. .alarm_tab_data {
  929. position:absolute;
  930. top:70px;
  931. left:38px;
  932. font-family:微软雅黑, Microsoft YaHei;
  933. font-size:12px;
  934. color:#dcdcdc;
  935. width:270px;
  936. height:30px;
  937. }
  938. .alarm_tab_icon {
  939. position:absolute;
  940. top:33px;
  941. right:56px;
  942. }
  943. .alarm_icon_01 {
  944. background:url(icons/alarm_tab_01.gif) no-repeat;
  945. }
  946. .alarm_icon_02 {
  947. background:url(icons/alarm_tab_02.gif) no-repeat;
  948. }
  949. .alarm_icon_03 {
  950. background:url(icons/alarm_tab_03.gif) no-repeat;
  951. }
  952. .alarm_icon_04 {
  953. background:url(icons/alarm_tab_04.gif) no-repeat;
  954. }
  955. .map_btn {
  956. cursor:pointer;
  957. z-index:500;
  958. }
  959. /*左边按钮样式
  960. .map_btn_bigger_off {
  961. position:absolute;
  962. bottom:66px;
  963. left:60px;
  964. width:21px;
  965. height:21px;
  966. background:url(icons/bigger_off.png) no-repeat;
  967. }
  968. .map_btn_bigger_on {
  969. position:absolute;
  970. bottom:66px;
  971. left:60px;
  972. width:21px;
  973. height:21px;
  974. background:url(icons/bigger_on.png) no-repeat;
  975. }
  976. .map_btn_smaller_off {
  977. position:absolute;
  978. bottom:66px;
  979. left:90px;
  980. width:21px;
  981. height:21px;
  982. background:url(icons/smaller_off.png) no-repeat;
  983. }
  984. .map_btn_smaller_on {
  985. position:absolute;
  986. bottom:66px;
  987. left:90px;
  988. width:21px;
  989. height:21px;
  990. background:url(icons/smaller_on.png) no-repeat;
  991. }
  992. .map_btn_showlaebl_off {
  993. position:absolute;
  994. bottom:61px;
  995. left:130px;
  996. width:101px;
  997. height:31px;
  998. background:url(icons/show_label_off.png) no-repeat;
  999. }
  1000. .map_btn_showlaebl_on {
  1001. position:absolute;
  1002. bottom:61px;
  1003. left:130px;
  1004. width:101px;
  1005. height:31px;
  1006. background:url(icons/show_label_on.png) no-repeat;
  1007. }
  1008. .map_btn_hidelabel {
  1009. position:absolute;
  1010. bottom:61px;
  1011. left:130px;
  1012. width:101px;
  1013. height:31px;
  1014. background:url(icons/hide_label.png) no-repeat;
  1015. }
  1016. .map_btn_left_off {
  1017. position:absolute;
  1018. bottom:61px;
  1019. left:241px;
  1020. width:80px;
  1021. height:31px;
  1022. background:url(icons/map_left_off.png) no-repeat;
  1023. }
  1024. .map_btn_left_on {
  1025. position:absolute;
  1026. bottom:61px;
  1027. left:241px;
  1028. width:80px;
  1029. height:31px;
  1030. background:url(icons/map_left_on.png) no-repeat;
  1031. }
  1032. .map_btn_right_off {
  1033. position:absolute;
  1034. bottom:61px;
  1035. left:331px;
  1036. width:80px;
  1037. height:31px;
  1038. background:url(icons/map_right_off.png) no-repeat;
  1039. }
  1040. .map_btn_right_on {
  1041. position:absolute;
  1042. bottom:61px;
  1043. left:331px;
  1044. width:80px;
  1045. height:31px;
  1046. background:url(icons/map_right_on.png) no-repeat;
  1047. }
  1048. .map_btn_high_off {
  1049. position:absolute;
  1050. bottom:61px;
  1051. left:421px;
  1052. width:80px;
  1053. height:31px;
  1054. background:url(icons/view_high_off.png) no-repeat;
  1055. }
  1056. .map_btn_high_on {
  1057. position:absolute;
  1058. bottom:61px;
  1059. left:421px;
  1060. width:80px;
  1061. height:31px;
  1062. background:url(icons/view_high_on.png) no-repeat;
  1063. }
  1064. .map_btn_low_off {
  1065. position:absolute;
  1066. bottom:61px;
  1067. left:511px;
  1068. width:80px;
  1069. height:31px;
  1070. background:url(icons/view_low_off.png) no-repeat;
  1071. }
  1072. .map_btn_low_on {
  1073. position:absolute;
  1074. bottom:61px;
  1075. left:511px;
  1076. width:80px;
  1077. height:31px;
  1078. background:url(icons/view_low_on.png) no-repeat;
  1079. }
  1080. */
  1081. .map_btn_bigger_off {
  1082. position:absolute;
  1083. bottom:66px;
  1084. right:605px;
  1085. width:21px;
  1086. height:21px;
  1087. background:url(icons/bigger_off.png) no-repeat;
  1088. }
  1089. .map_btn_bigger_on {
  1090. position:absolute;
  1091. bottom:66px;
  1092. right:605px;
  1093. width:21px;
  1094. height:21px;
  1095. background:url(icons/bigger_on.png) no-repeat;
  1096. }
  1097. .map_btn_smaller_off {
  1098. position:absolute;
  1099. bottom:66px;
  1100. right:575px;
  1101. width:21px;
  1102. height:21px;
  1103. background:url(icons/smaller_off.png) no-repeat;
  1104. }
  1105. .map_btn_smaller_on {
  1106. position:absolute;
  1107. bottom:66px;
  1108. right:575px;
  1109. width:21px;
  1110. height:21px;
  1111. background:url(icons/smaller_on.png) no-repeat;
  1112. }
  1113. .map_btn_showlaebl_off {
  1114. position:absolute;
  1115. bottom:61px;
  1116. right:455px;
  1117. width:101px;
  1118. height:31px;
  1119. background:url(icons/show_label_off.png) no-repeat;
  1120. }
  1121. .map_btn_showlaebl_on {
  1122. position:absolute;
  1123. bottom:61px;
  1124. right:455px;
  1125. width:101px;
  1126. height:31px;
  1127. background:url(icons/show_label_on.png) no-repeat;
  1128. }
  1129. .map_btn_hidelabel {
  1130. position:absolute;
  1131. bottom:61px;
  1132. right:455px;
  1133. width:101px;
  1134. height:31px;
  1135. background:url(icons/hide_label.png) no-repeat;
  1136. }
  1137. .map_btn_left_off {
  1138. position:absolute;
  1139. bottom:61px;
  1140. right:365px;
  1141. width:80px;
  1142. height:31px;
  1143. background:url(icons/map_left_off.png) no-repeat;
  1144. }
  1145. .map_btn_left_on {
  1146. position:absolute;
  1147. bottom:61px;
  1148. right:365px;
  1149. width:80px;
  1150. height:31px;
  1151. background:url(icons/map_left_on.png) no-repeat;
  1152. }
  1153. .map_btn_right_off {
  1154. position:absolute;
  1155. bottom:61px;
  1156. right:275px;
  1157. width:80px;
  1158. height:31px;
  1159. background:url(icons/map_right_off.png) no-repeat;
  1160. }
  1161. .map_btn_right_on {
  1162. position:absolute;
  1163. bottom:61px;
  1164. right:275px;
  1165. width:80px;
  1166. height:31px;
  1167. background:url(icons/map_right_on.png) no-repeat;
  1168. }
  1169. .map_btn_high_off {
  1170. position:absolute;
  1171. bottom:61px;
  1172. right:185px;
  1173. width:80px;
  1174. height:31px;
  1175. background:url(icons/view_high_off.png) no-repeat;
  1176. }
  1177. .map_btn_high_on {
  1178. position:absolute;
  1179. bottom:61px;
  1180. right:185px;
  1181. width:80px;
  1182. height:31px;
  1183. background:url(icons/view_high_on.png) no-repeat;
  1184. }
  1185. .map_btn_low_off {
  1186. position:absolute;
  1187. bottom:61px;
  1188. right:95px;
  1189. width:80px;
  1190. height:31px;
  1191. background:url(icons/view_low_off.png) no-repeat;
  1192. }
  1193. .map_btn_low_on {
  1194. position:absolute;
  1195. bottom:61px;
  1196. right:95px;
  1197. width:80px;
  1198. height:31px;
  1199. background:url(icons/view_low_on.png) no-repeat;
  1200. }
  1201. .alarm_tab_pingfen {
  1202. position:absolute;
  1203. top:620px;
  1204. left:50px;
  1205. width:420px;
  1206. height:220px;
  1207. background:url(mange-item-new-new.png) no-repeat;
  1208. }
  1209. .alarm_tab_pingfenChart {
  1210. position:absolute;
  1211. top:20px;
  1212. left:0px;
  1213. width:170px;
  1214. height:160px;
  1215. }
  1216. .alarm_tab_pingfenTitle {
  1217. position:absolute;
  1218. top:24px;
  1219. left:216px;
  1220. font-Size:18px;
  1221. font-weight:bold;
  1222. color:#7AFFFF;
  1223. }
  1224. .alarm_tab_pingfenContent {
  1225. position:absolute;
  1226. width:230px;
  1227. height:80px;
  1228. top:60px;
  1229. left:160px;
  1230. font-Size:14px;
  1231. color:#7AFFFF;
  1232. }
  1233. .operating_mode{
  1234. width: 321px;
  1235. height: 80px;
  1236. position: fixed;
  1237. bottom:100px;
  1238. left:50px;
  1239. border: 1px solid #25bfff;
  1240. box-shadow: inset 0px 0px 10px #25bfff;
  1241. background-color: rgba(23,21,57,0.2);
  1242. background: rgba(13, 22, 41, .9);
  1243. border-radius:10px;
  1244. font-size: 16px;
  1245. }
  1246. .operating_mode_ul{
  1247. list-style-type: disc;
  1248. display: flex;
  1249. margin-block-start: 1em;
  1250. margin-inline-start: 0px;
  1251. margin-inline-end: 0px;
  1252. flex-direction: row;
  1253. justify-content: center;
  1254. }
  1255. .operating_mode_li{
  1256. width: 105px;
  1257. height: 40px;
  1258. display: inline-block;
  1259. text-align: center;
  1260. padding: 0;
  1261. margin: 0px;
  1262. font-family: "微软雅黑";
  1263. }
  1264. .operating_mode_p1{
  1265. position: fixed;
  1266. bottom:140px;
  1267. left:90px;
  1268. color: #25bfff;
  1269. }
  1270. .operating_mode_p2{
  1271. color: #fff;
  1272. position: fixed;
  1273. bottom:120px;
  1274. left:72px;
  1275. }
  1276. .operating_mode_li1{
  1277. width: 105px;
  1278. height: 40px;
  1279. display: inline-block;
  1280. text-align: center;
  1281. margin-top: 20px;
  1282. padding: 0;
  1283. margin: 0px;
  1284. font-family: "微软雅黑";
  1285. border-left: 1px solid #25bfff;
  1286. }
  1287. .operating_mode_p3{
  1288. position: fixed;
  1289. bottom:140px;
  1290. left:200px;
  1291. color: #25bfff;
  1292. }
  1293. .operating_mode_p4{
  1294. color: #fff;
  1295. position: fixed;
  1296. bottom:120px;
  1297. left:182px;
  1298. }
  1299. .operating_mode_li2{
  1300. width: 105px;
  1301. height: 40px;
  1302. display: inline-block;
  1303. text-align: center;
  1304. margin-top: 20px;
  1305. padding: 0;
  1306. margin: 0px;
  1307. font-family: "微软雅黑";
  1308. border-left: 1px solid #25bfff;
  1309. }
  1310. .operating_mode_p5{
  1311. color: #25bfff;
  1312. position: fixed;
  1313. bottom:140px;
  1314. left:300px;
  1315. }
  1316. .operating_mode_p6{
  1317. color: #fff;
  1318. position: fixed;
  1319. bottom:120px;
  1320. left:272px;
  1321. }
  1322. .bar_chart{
  1323. posttion:absolute;
  1324. float:left;
  1325. height:300px!important;
  1326. width:200px!important;
  1327. bottom:120px;
  1328. left:600px;
  1329. }
  1330. .bar_chart_canvas{
  1331. height:300px;
  1332. width:200px;
  1333. }
  1334. .hiden {
  1335. display:none;
  1336. }
  1337. .shown {
  1338. display:block;
  1339. }
  1340. .proform2_bg_tl{
  1341. position:absolute;
  1342. width:928px;
  1343. height:752px;
  1344. top:0px;
  1345. left:0px;
  1346. background:url(icons/proform2_tl.png) no-repeat;
  1347. }
  1348. .proform_bg_tl{
  1349. position:absolute;
  1350. width:928px;
  1351. height:752px;
  1352. top:0px;
  1353. left:0px;
  1354. background:url(icons/proform_tl.png) no-repeat;
  1355. }
  1356. .proform_bg_tm{
  1357. position:absolute;
  1358. top:0px;
  1359. left:928px;
  1360. height:752px;
  1361. background:url(icons/proform_tm.png) repeat-x;
  1362. }
  1363. .proform_bg_tr {
  1364. position:absolute;
  1365. top:0px;
  1366. right:0px;
  1367. width:442px;
  1368. height:752px;
  1369. background:url(icons/proform_tr.png) no-repeat;
  1370. }
  1371. .proform_bg_ml {
  1372. position:absolute;
  1373. top:752px;
  1374. left:0px;
  1375. width:928px;
  1376. background:url(icons/proform_ml.png) repeat-y;
  1377. }
  1378. .proform_bg_mm {
  1379. position:absolute;
  1380. top:752px;
  1381. left:928px;
  1382. background:url(icons/proform_mm.png) repeat;
  1383. }
  1384. .proform_bg_mr {
  1385. position:absolute;
  1386. top:752px;
  1387. right:0px;
  1388. width:442px;
  1389. background:url(icons/proform_mr.png) repeat-y;
  1390. }
  1391. .proform_bg_bl {
  1392. position:absolute;
  1393. bottom:0px;
  1394. left:0px;
  1395. width:928px;
  1396. height:170px;
  1397. background:url(icons/proform_bl.png) no-repeat;
  1398. }
  1399. .proform_bg_bm {
  1400. position:absolute;
  1401. bottom:0px;
  1402. left:928px;
  1403. height:170px;
  1404. background:url(icons/proform_bm.png) repeat-x;
  1405. }
  1406. .proform_bg_br {
  1407. position:absolute;
  1408. bottom:0px;
  1409. right:0px;
  1410. width:442px;
  1411. height:170px;
  1412. background:url(icons/proform_br.png) no-repeat;
  1413. }
  1414. .proform_menu_1 {
  1415. width:234px;
  1416. height:82px;
  1417. background:url(icons/proform_m3.png) no-repeat;
  1418. cursor:pointer;
  1419. position:absolute;
  1420. top:167px;
  1421. left:96px;
  1422. }
  1423. .proform_menu_1_on {
  1424. width:234px;
  1425. height:82px;
  1426. background:url(icons/proform_m3_on.png) no-repeat;
  1427. cursor:pointer;
  1428. position:absolute;
  1429. top:167px;
  1430. left:96px;
  1431. }
  1432. .proform_menu_2 {
  1433. width:234px;
  1434. height:82px;
  1435. background:url(icons/proform_m1.png) no-repeat;
  1436. cursor:pointer;
  1437. position:absolute;
  1438. top:239px;
  1439. left:96px;
  1440. }
  1441. .proform_menu_2_on {
  1442. width:234px;
  1443. height:82px;
  1444. background:url(icons/proform_m1_on.png) no-repeat;
  1445. cursor:pointer;
  1446. position:absolute;
  1447. top:239px;
  1448. left:96px;
  1449. }
  1450. .proform_menu_3 {
  1451. width:234px;
  1452. height:82px;
  1453. background:url(icons/proform_m5.png) no-repeat;
  1454. cursor:pointer;
  1455. position:absolute;
  1456. top:326px;
  1457. left:110px;
  1458. }
  1459. .proform_menu_3_on {
  1460. width:234px;
  1461. height:82px;
  1462. background:url(icons/proform_m5_on.png) no-repeat;
  1463. cursor:pointer;
  1464. position:absolute;
  1465. top:326px;
  1466. left:110px;
  1467. }
  1468. .proform_menu_4 {
  1469. width:234px;
  1470. height:82px;
  1471. background:url(icons/proform_m6.png) no-repeat;
  1472. cursor:pointer;
  1473. position:absolute;
  1474. top:383px;
  1475. left:96px;
  1476. }
  1477. .proform_menu_4_on {
  1478. width:234px;
  1479. height:82px;
  1480. background:url(icons/proform_m6_on.png) no-repeat;
  1481. cursor:pointer;
  1482. position:absolute;
  1483. top:383px;
  1484. left:96px;
  1485. }
  1486. .proform_menu_5 {
  1487. width:234px;
  1488. height:82px;
  1489. background:url(icons/proform_m2.png) no-repeat;
  1490. cursor:pointer;
  1491. position:absolute;
  1492. top:472px;
  1493. left:110px;
  1494. }
  1495. .proform_menu_5_on {
  1496. width:234px;
  1497. height:82px;
  1498. background:url(icons/proform_m2_on.png) no-repeat;
  1499. cursor:pointer;
  1500. position:absolute;
  1501. top:472px;
  1502. left:110px;
  1503. }
  1504. .proform_menu_6 {
  1505. width:234px;
  1506. height:82px;
  1507. background:url(icons/proform_m4.png) no-repeat;
  1508. cursor:pointer;
  1509. position:absolute;
  1510. top:527px;
  1511. left:96px;
  1512. }
  1513. .proform_menu_6_on {
  1514. width:234px;
  1515. height:82px;
  1516. background:url(icons/proform_m4_on.png) no-repeat;
  1517. cursor:pointer;
  1518. position:absolute;
  1519. top:527px;
  1520. left:96px;
  1521. }
  1522. .proform_menu_7 {
  1523. width:234px;
  1524. height:82px;
  1525. background:url(icons/proform_m7.png) no-repeat;
  1526. cursor:pointer;
  1527. position:absolute;
  1528. top:599px;
  1529. left:96px;
  1530. }
  1531. .proform_menu_7_on {
  1532. width:234px;
  1533. height:82px;
  1534. background:url(icons/proform_m7_on.png) no-repeat;
  1535. cursor:pointer;
  1536. position:absolute;
  1537. top:599px;
  1538. left:96px;
  1539. }
  1540. .proform2_menu_1 {
  1541. width:234px;
  1542. height:82px;
  1543. background:url(icons/proform2_m3.png) no-repeat;
  1544. cursor:pointer;
  1545. position:absolute;
  1546. top:167px;
  1547. left:96px;
  1548. }
  1549. .proform2_menu_1_on {
  1550. width:234px;
  1551. height:82px;
  1552. background:url(icons/proform2_m3_on.png) no-repeat;
  1553. cursor:pointer;
  1554. position:absolute;
  1555. top:167px;
  1556. left:96px;
  1557. }
  1558. .proform2_menu_2 {
  1559. width:234px;
  1560. height:82px;
  1561. background:url(icons/proform2_m1.png) no-repeat;
  1562. cursor:pointer;
  1563. position:absolute;
  1564. top:239px;
  1565. left:96px;
  1566. }
  1567. .proform2_menu_2_on {
  1568. width:234px;
  1569. height:82px;
  1570. background:url(icons/proform2_m1_on.png) no-repeat;
  1571. cursor:pointer;
  1572. position:absolute;
  1573. top:239px;
  1574. left:96px;
  1575. }
  1576. .proform2_menu_3 {
  1577. width:234px;
  1578. height:82px;
  1579. background:url(icons/proform_m5.png) no-repeat;
  1580. cursor:pointer;
  1581. position:absolute;
  1582. top:311px;
  1583. left:96px;
  1584. }
  1585. .proform2_menu_3_on {
  1586. width:234px;
  1587. height:82px;
  1588. background:url(icons/proform_m5_on.png) no-repeat;
  1589. cursor:pointer;
  1590. position:absolute;
  1591. top:311px;
  1592. left:96px;
  1593. }
  1594. .proform2_menu_4 {
  1595. width:234px;
  1596. height:82px;
  1597. background:url(icons/proform2_m6.png) no-repeat;
  1598. cursor:pointer;
  1599. position:absolute;
  1600. top:383px;
  1601. left:96px;
  1602. }
  1603. .proform2_menu_4_on {
  1604. width:234px;
  1605. height:82px;
  1606. background:url(icons/proform2_m6_on.png) no-repeat;
  1607. cursor:pointer;
  1608. position:absolute;
  1609. top:383px;
  1610. left:96px;
  1611. }
  1612. .proform2_menu_5 {
  1613. width:234px;
  1614. height:82px;
  1615. background:url(icons/proform2_m2.png) no-repeat;
  1616. cursor:pointer;
  1617. position:absolute;
  1618. top:455px;
  1619. left:96px;
  1620. }
  1621. .proform2_menu_5_on {
  1622. width:234px;
  1623. height:82px;
  1624. background:url(icons/proform2_m2_on.png) no-repeat;
  1625. cursor:pointer;
  1626. position:absolute;
  1627. top:455px;
  1628. left:96px;
  1629. }
  1630. .proform2_menu_6 {
  1631. width:234px;
  1632. height:82px;
  1633. background:url(icons/proform2_m4.png) no-repeat;
  1634. cursor:pointer;
  1635. position:absolute;
  1636. top:527px;
  1637. left:96px;
  1638. }
  1639. .proform2_menu_6_on {
  1640. width:234px;
  1641. height:82px;
  1642. background:url(icons/proform2_m4_on.png) no-repeat;
  1643. cursor:pointer;
  1644. position:absolute;
  1645. top:527px;
  1646. left:96px;
  1647. }
  1648. .proform2_menu_7 {
  1649. width:234px;
  1650. height:82px;
  1651. background:url(icons/proform2_m7.png) no-repeat;
  1652. cursor:pointer;
  1653. position:absolute;
  1654. top:599px;
  1655. left:96px;
  1656. }
  1657. .proform2_menu_7_on {
  1658. width:234px;
  1659. height:82px;
  1660. background:url(icons/proform2_m7_on.png) no-repeat;
  1661. cursor:pointer;
  1662. position:absolute;
  1663. top:599px;
  1664. left:96px;
  1665. }
  1666. .proform_fliter_btn {
  1667. position:absolute;
  1668. width:120px;
  1669. height:26px;
  1670. background:url(icons/proform_fliter_btn.png) no-repeat;
  1671. cursor:pointer;
  1672. top:162px;
  1673. right:440px;
  1674. }
  1675. .proform_fliter_btn_on {
  1676. position:absolute;
  1677. width:120px;
  1678. height:26px;
  1679. background:url(icons/proform_fliter_btn_on.png) no-repeat;
  1680. cursor:pointer;
  1681. top:162px;
  1682. right:440px;
  1683. }
  1684. .proform_modify_btn {
  1685. position:absolute;
  1686. width:84px;
  1687. height:26px;
  1688. background:url(icons/proform_modify_btn.png) no-repeat;
  1689. cursor:pointer;
  1690. top:162px;
  1691. right:336px;
  1692. }
  1693. .proform_modify_btn_on {
  1694. position:absolute;
  1695. width:84px;
  1696. height:26px;
  1697. background:url(icons/proform_modify_btn_on.png) no-repeat;
  1698. cursor:pointer;
  1699. top:162px;
  1700. right:336px;
  1701. }
  1702. .proform_append_btn {
  1703. position:absolute;
  1704. width:84px;
  1705. height:26px;
  1706. background:url(icons/proform_append_btn.png) no-repeat;
  1707. cursor:pointer;
  1708. top:162px;
  1709. right:232px;
  1710. }
  1711. .proform_append_btn_on {
  1712. position:absolute;
  1713. width:84px;
  1714. height:26px;
  1715. background:url(icons/proform_append_btn_on.png) no-repeat;
  1716. cursor:pointer;
  1717. top:162px;
  1718. right:232px;
  1719. }
  1720. .proform_delete_btn {
  1721. position:absolute;
  1722. width:84px;
  1723. height:26px;
  1724. background:url(icons/proform_delete_btn.png) no-repeat;
  1725. cursor:pointer;
  1726. top:162px;
  1727. right:128px;
  1728. }
  1729. .proform_delete_btn_on {
  1730. position:absolute;
  1731. width:84px;
  1732. height:26px;
  1733. background:url(icons/proform_delete_btn_on.png) no-repeat;
  1734. cursor:pointer;
  1735. top:162px;
  1736. right:128px;
  1737. }
  1738. .proform6_menu_1 {
  1739. width:234px;
  1740. height:82px;
  1741. background:url(icons/proform_m1.png) no-repeat;
  1742. cursor:pointer;
  1743. position:absolute;
  1744. top:167px;
  1745. left:96px;
  1746. }
  1747. .proform6_menu_1_on {
  1748. width:234px;
  1749. height:82px;
  1750. background:url(icons/proform_m1_on.png) no-repeat;
  1751. cursor:pointer;
  1752. position:absolute;
  1753. top:167px;
  1754. left:96px;
  1755. }
  1756. .proform6_menu_2 {
  1757. width:234px;
  1758. height:82px;
  1759. background:url(icons/proform_m5.png) no-repeat;
  1760. cursor:pointer;
  1761. position:absolute;
  1762. top:254px;
  1763. left:110px;
  1764. }
  1765. .proform6_menu_2_on {
  1766. width:234px;
  1767. height:82px;
  1768. background:url(icons/proform_m5_on.png) no-repeat;
  1769. cursor:pointer;
  1770. position:absolute;
  1771. top:254px;
  1772. left:110px;
  1773. }
  1774. .proform6_menu_3 {
  1775. width:234px;
  1776. height:82px;
  1777. background:url(icons/proform_m1.png) no-repeat;
  1778. cursor:pointer;
  1779. position:absolute;
  1780. top:310px;
  1781. left:96px;
  1782. }
  1783. .proform6_menu_3_on {
  1784. width:234px;
  1785. height:82px;
  1786. background:url(icons/proform_m1_on.png) no-repeat;
  1787. cursor:pointer;
  1788. position:absolute;
  1789. top:310px;
  1790. left:96px;
  1791. }
  1792. .company_bg_tl{
  1793. position:absolute;
  1794. width:1414px;
  1795. height:762px;
  1796. top:0px;
  1797. left:0px;
  1798. background:url(icons/company_tl.png) no-repeat;
  1799. z-index:10;
  1800. }
  1801. .company_bg_tm {
  1802. position:absolute;
  1803. height:762px;
  1804. top:0px;
  1805. left:1414px;
  1806. background:url(icons/company_tm.png) repeat-x;
  1807. z-index:10;
  1808. }
  1809. .company_bg_tr {
  1810. position:absolute;
  1811. width:406px;
  1812. height:762px;
  1813. top:0px;
  1814. right:0px;
  1815. background:url(icons/company_tr.png) no-repeat;
  1816. z-index:10;
  1817. }
  1818. .company_bg_ml{
  1819. position:absolute;
  1820. width:1414px;
  1821. top:762px;
  1822. left:0px;
  1823. background:url(icons/company_ml.png) repeat-y;
  1824. z-index:10;
  1825. }
  1826. .company_bg_mm {
  1827. position:absolute;
  1828. left:1414px;
  1829. top:762px;
  1830. background:url(icons/company_mm.png) repeat;
  1831. z-index:10;
  1832. }
  1833. .company_bg_mr {
  1834. position:absolute;
  1835. width:406px;
  1836. top:762px;
  1837. right:0px;
  1838. background:url(icons/company_mr.png) repeat-y;
  1839. z-index:10;
  1840. }
  1841. .company_bg_bl{
  1842. position:absolute;
  1843. width:1414px;
  1844. height:170px;
  1845. bottom:0px;
  1846. left:0px;
  1847. background:url(icons/company_bl.png) no-repeat;
  1848. z-index:10;
  1849. }
  1850. .company_bg_bm {
  1851. position:absolute;
  1852. height:170px;
  1853. width:100px;
  1854. bottom:0px;
  1855. left:1414px;
  1856. background:url(icons/company_bm.png) repeat-x;
  1857. z-index:10;
  1858. }
  1859. .company_bg_br {
  1860. position:absolute;
  1861. height:170px;
  1862. width:406px;
  1863. bottom:0px;
  1864. right:0px;
  1865. background:url(icons/company_br.png) no-repeat;
  1866. z-index:10;
  1867. }
  1868. .bak_to_front {
  1869. position: absolute;
  1870. top:67px;
  1871. left:73px;
  1872. width:110px;
  1873. height:36px;
  1874. background: url(icons/bak_to_front.png) no-repeat;
  1875. z-index:20;
  1876. cursor:pointer;
  1877. }
  1878. .building_level_label{
  1879. position: absolute;
  1880. top:157px;
  1881. left:133px;
  1882. color:#ffffff;
  1883. font-family:微软雅黑, Microsoft YaHei;
  1884. font-size:12px;
  1885. z-index:20;
  1886. }
  1887. .building_level_count{
  1888. margin-left:15px;
  1889. font-family:微软雅黑, Microsoft YaHei;
  1890. font-size:16px;
  1891. font-weight:bold;
  1892. }
  1893. .company_building {
  1894. position: absolute;
  1895. top: 195px;
  1896. left:100px;
  1897. width:536px;
  1898. height:600px;
  1899. overflow-x:none;
  1900. overflow-y:auto;
  1901. z-index:20;
  1902. }
  1903. .company_building_on {
  1904. position: absolute;
  1905. top: 200px;
  1906. left:116px;
  1907. width:496px;
  1908. height:620px;
  1909. z-index:20;
  1910. }
  1911. .company_building::-webkit-scrollbar{
  1912. width:6px;
  1913. height:100%;
  1914. }
  1915. .company_building::-webkit-scrollbar-thumb{
  1916. width:6px;
  1917. height:60px;
  1918. background-color:rgba(0,130,255,0.6);
  1919. border-radius:5px;
  1920. }
  1921. .company_building::-webkit-scrollbar-track
  1922. {
  1923. border-radius: 10px;
  1924. background-color: rgba(0,0,0,.3);
  1925. }
  1926. .building_top {
  1927. position: absolute;
  1928. width:400px;
  1929. height:120px;
  1930. }
  1931. .building_top_label {
  1932. position:absolute;
  1933. top:0px;
  1934. left:0px;
  1935. padding-top:31px;
  1936. padding-right:16px;
  1937. text-align:right;
  1938. font-family:微软雅黑, Microsoft YaHei;
  1939. font-size:12px;
  1940. }
  1941. .building_top_icon {
  1942. position:absolute;
  1943. top:0px;
  1944. left:40px;
  1945. width:360px;
  1946. height:120px;
  1947. background: url(icons/bt_icon.png) no-repeat;
  1948. }
  1949. .building_level {
  1950. position: absolute;
  1951. width:400px;
  1952. height:108px;
  1953. }
  1954. .building_level_info {
  1955. position:absolute;
  1956. top:0px;
  1957. left:0px;
  1958. padding-top:20px;
  1959. padding-right:16px;
  1960. text-align:right;
  1961. font-family:微软雅黑, Microsoft YaHei;
  1962. font-size:12px;
  1963. }
  1964. .building_level_icon {
  1965. position:absolute;
  1966. top:0px;
  1967. left:40px;
  1968. width:360px;
  1969. height:108px;
  1970. background: url(icons/bl_icon.png) no-repeat;
  1971. }
  1972. .building_empty_level_icon {
  1973. position:absolute;
  1974. top:0px;
  1975. left:40px;
  1976. width:360px;
  1977. height:108px;
  1978. background: url(icons/empty_icon.png) no-repeat;
  1979. }
  1980. .building_base {
  1981. position: absolute;
  1982. width:400px;
  1983. height:108px;
  1984. }
  1985. .building_base_info {
  1986. position:absolute;
  1987. top:0px;
  1988. left:0px;
  1989. padding-top:20px;
  1990. padding-right:16px;
  1991. text-align:right;
  1992. font-family:微软雅黑, Microsoft YaHei;
  1993. font-size:12px;
  1994. }
  1995. .building_base_icon {
  1996. position:absolute;
  1997. top:0px;
  1998. left:40px;
  1999. width:360px;
  2000. height:108px;
  2001. background: url(icons/bb_icon.png) no-repeat;
  2002. }
  2003. .dev_checkbox {
  2004. width:15px;
  2005. height:15px;
  2006. border:0px solid #0082ff;
  2007. background-color:#0082ff;
  2008. cursor:pointer;
  2009. }
  2010. .dev_few_checkbox {
  2011. width:15px;
  2012. height:15px;
  2013. border:2px solid #0082ff;
  2014. background-color:rgba(0,130,255,.7);
  2015. cursor:pointer;
  2016. }
  2017. .dev_uncheckbox {
  2018. width:15px;
  2019. height:15px;
  2020. border:2px solid #0082ff;
  2021. cursor:pointer;
  2022. }
  2023. .dev_all_checkbox {
  2024. position:absolute;
  2025. top:174px;
  2026. left:688px;
  2027. z-index:20;
  2028. cursor:pointer;
  2029. }
  2030. .dev_big_checkbox {
  2031. position:absolute;
  2032. top:574px;
  2033. left:688px;
  2034. z-index:20;
  2035. cursor:pointer;
  2036. }
  2037. .dev_big_checklabel {
  2038. position:absolute;
  2039. top:157px;
  2040. left:536px;
  2041. width:60px;
  2042. height:20px;
  2043. background-color:#0082FF;
  2044. text-align:center;
  2045. font-size:12px;
  2046. font-weight:bold;
  2047. font-family:微软雅黑, Microsoft YaHei;
  2048. padding-top:2px;
  2049. border-radius:4px;
  2050. z-index:20;
  2051. cursor:pointer;
  2052. }
  2053. .sc {
  2054. position:absolute;
  2055. top:157px;
  2056. left:420px;
  2057. width:100px;
  2058. height:20px;
  2059. background-color:#0082FF;
  2060. text-align:center;
  2061. font-size:12px;
  2062. font-weight:bold;
  2063. font-family:微软雅黑, Microsoft YaHei;
  2064. padding-top:2px;
  2065. border-radius:4px;
  2066. z-index:20;
  2067. cursor:pointer;
  2068. }
  2069. .dev_all_checklabel {
  2070. position:absolute;
  2071. top:175px;
  2072. left:709px;
  2073. z-index:20;
  2074. font-family:微软雅黑, Microsoft YaHei;
  2075. font-size:12px;
  2076. cursor:pointer;
  2077. }
  2078. .dev_ui_checkbox {
  2079. position:absolute;
  2080. top:214px;
  2081. left:688px;
  2082. z-index:20;
  2083. cursor:pointer;
  2084. }
  2085. .dev_ui_checklabel {
  2086. position:absolute;
  2087. top:215px;
  2088. left:709px;
  2089. z-index:20;
  2090. font-family:微软雅黑, Microsoft YaHei;
  2091. font-size:12px;
  2092. cursor:pointer;
  2093. }
  2094. .dev_sm_checkbox {
  2095. position:absolute;
  2096. top:254px;
  2097. left:688px;
  2098. z-index:20;
  2099. cursor:pointer;
  2100. }
  2101. .dev_sm_checklabel {
  2102. position:absolute;
  2103. top:255px;
  2104. left:709px;
  2105. z-index:20;
  2106. font-family:微软雅黑, Microsoft YaHei;
  2107. font-size:12px;
  2108. cursor:pointer;
  2109. }
  2110. .dev_fc_checkbox {
  2111. position:absolute;
  2112. top:294px;
  2113. left:688px;
  2114. z-index:20;
  2115. cursor:pointer;
  2116. }
  2117. .dev_fc_checklabel {
  2118. position:absolute;
  2119. top:295px;
  2120. left:709px;
  2121. z-index:20;
  2122. font-family:微软雅黑, Microsoft YaHei;
  2123. font-size:12px;
  2124. cursor:pointer;
  2125. }
  2126. .dev_ef_checkbox {
  2127. position:absolute;
  2128. top:334px;
  2129. left:688px;
  2130. z-index:20;
  2131. cursor:pointer;
  2132. }
  2133. .dev_ef_checklabel {
  2134. position:absolute;
  2135. top:335px;
  2136. left:709px;
  2137. z-index:20;
  2138. font-family:微软雅黑, Microsoft YaHei;
  2139. font-size:12px;
  2140. cursor:pointer;
  2141. }
  2142. .dev_wp_checkbox {
  2143. position:absolute;
  2144. top:374px;
  2145. left:688px;
  2146. z-index:20;
  2147. cursor:pointer;
  2148. }
  2149. .dev_wp_checklabel {
  2150. position:absolute;
  2151. top:375px;
  2152. left:709px;
  2153. z-index:20;
  2154. font-family:微软雅黑, Microsoft YaHei;
  2155. font-size:12px;
  2156. cursor:pointer;
  2157. }
  2158. .dev_ll_checkbox {
  2159. position:absolute;
  2160. top:414px;
  2161. left:688px;
  2162. z-index:20;
  2163. cursor:pointer;
  2164. }
  2165. .dev_ll_checklabel {
  2166. position:absolute;
  2167. top:415px;
  2168. left:709px;
  2169. z-index:20;
  2170. font-family:微软雅黑, Microsoft YaHei;
  2171. font-size:12px;
  2172. cursor:pointer;
  2173. }
  2174. .dev_ci_checkbox {
  2175. position:absolute;
  2176. top:454px;
  2177. left:688px;
  2178. z-index:20;
  2179. cursor:pointer;
  2180. }
  2181. .dev_ci_checklabel {
  2182. position:absolute;
  2183. top:455px;
  2184. left:709px;
  2185. z-index:20;
  2186. font-family:微软雅黑, Microsoft YaHei;
  2187. font-size:12px;
  2188. cursor:pointer;
  2189. }
  2190. .dev_va_checkbox {
  2191. position:absolute;
  2192. top:494px;
  2193. left:688px;
  2194. z-index:20;
  2195. cursor:pointer;
  2196. }
  2197. .dev_va_checklabel {
  2198. position:absolute;
  2199. top:495px;
  2200. left:709px;
  2201. z-index:20;
  2202. font-family:微软雅黑, Microsoft YaHei;
  2203. font-size:12px;
  2204. cursor:pointer;
  2205. }
  2206. .dev_ot_checkbox {
  2207. position:absolute;
  2208. top:534px;
  2209. left:688px;
  2210. z-index:20;
  2211. cursor:pointer;
  2212. }
  2213. .dev_ot_checklabel {
  2214. position:absolute;
  2215. top:535px;
  2216. left:709px;
  2217. z-index:20;
  2218. font-family:微软雅黑, Microsoft YaHei;
  2219. font-size:12px;
  2220. cursor:pointer;
  2221. }
  2222. .company_page_title {
  2223. position:absolute;
  2224. top:72px;
  2225. left:930px;
  2226. width:200px;
  2227. height:40px;
  2228. z-index:20;
  2229. }
  2230. .project_title_icon {
  2231. background:url(icons/project_info_title.png) no-repeat;
  2232. }
  2233. .realtime_title_icon {
  2234. background:url(icons/realtime_status_title.png) no-repeat;
  2235. }
  2236. .company_detail_title {
  2237. position:absolute;
  2238. top:478px;
  2239. left:930px;
  2240. width:200px;
  2241. height:40px;
  2242. z-index:20;
  2243. }
  2244. .history_alarm_title_icon {
  2245. background:url(icons/history_alarm_title.png) no-repeat;
  2246. }
  2247. .device_status_title_icon {
  2248. background:url(icons/device_status_title.png) no-repeat;
  2249. }
  2250. .project_info_bar{
  2251. position:absolute;
  2252. top:122px;
  2253. left:883px;
  2254. height:300px;
  2255. z-index:20;
  2256. overflow:auto;
  2257. border:0px solid #000;
  2258. }
  2259. .history_alarm_list {
  2260. position:absolute;
  2261. top:529px;
  2262. left:883px;
  2263. z-index:20;
  2264. overflow:auto;
  2265. border:0px solid #000;
  2266. }
  2267. .history_alarm_list::-webkit-scrollbar{
  2268. width:6px;
  2269. height:100%;
  2270. }
  2271. .history_alarm_list::-webkit-scrollbar-thumb{
  2272. width:6px;
  2273. height:60px;
  2274. background-color:rgba(0,130,255,0.6);
  2275. border-radius:5px;
  2276. }
  2277. .history_alarm_list::-webkit-scrollbar-track
  2278. {
  2279. border-radius: 10px;
  2280. background-color: rgba(0,0,0,.3);
  2281. }
  2282. .project_label {
  2283. font-family:微软雅黑, Microsoft YaHei;
  2284. font-size:12px;
  2285. color:#27c5ff;
  2286. vertical-align:bottom;
  2287. }
  2288. .point_label {
  2289. text-align:right;
  2290. padding-right:10px;
  2291. }
  2292. .project_info {
  2293. font-family:微软雅黑, Microsoft YaHei;
  2294. font-size:16px;
  2295. color:#ffffff;
  2296. vertical-align:bottom;
  2297. }
  2298. .device_large_icon {
  2299. position:absolute;
  2300. top:32px;
  2301. left:48px;
  2302. z-index:20;
  2303. width:100px;
  2304. height:100px;
  2305. }
  2306. .device_count_label{
  2307. position:absolute;
  2308. top:150px;
  2309. left:48px;
  2310. width:100px;
  2311. height:20px;
  2312. text-align:center;
  2313. font-family:微软雅黑, Microsoft YaHei;
  2314. font-size:12px;
  2315. color:#ffffff;
  2316. }
  2317. .ui_large_icon {
  2318. background:url(icons/ui_large_icon.png) no-repeat;
  2319. }
  2320. .fc_large_icon {
  2321. background:url(icons/fc_large_icon.png) no-repeat;
  2322. }
  2323. .ef_large_icon {
  2324. background:url(icons/ef_large_icon.gif) no-repeat;
  2325. }
  2326. .ci_large_icon {
  2327. background:url(icons/ci_large_icon.png) no-repeat;
  2328. }
  2329. .wp0_large_icon {
  2330. background:url(icons/wp0_large_icon.png) no-repeat;
  2331. }
  2332. .wp1_large_icon {
  2333. background:url(icons/wp1_large_icon.png) no-repeat;
  2334. }
  2335. .va_large_icon {
  2336. background:url(icons/va_large_icon.png) no-repeat;
  2337. }
  2338. .ll_large_icon {
  2339. background:url(icons/ll_large_icon.png) no-repeat;
  2340. }
  2341. .device_list_bar {
  2342. position:absolute;
  2343. top:0px;
  2344. left:200px;
  2345. z-index:20;
  2346. width:300px;
  2347. height:300px;
  2348. overflow-x:hidden;
  2349. overflow-y:auto;
  2350. }
  2351. .status_list_bar {
  2352. position:absolute;
  2353. top:0px;
  2354. left:510px;
  2355. z-index:20;
  2356. height:290px;
  2357. overflow-x:hidden;
  2358. overflow-y:auto;
  2359. }
  2360. .status_list_bar_video {
  2361. text-align:center;
  2362. font-size:12px;
  2363. background-color:#000000;
  2364. color:#ffffff;
  2365. }
  2366. .device_list_bar::-webkit-scrollbar{
  2367. width:6px;
  2368. height:100%;
  2369. }
  2370. .device_list_bar::-webkit-scrollbar-thumb{
  2371. width:6px;
  2372. height:60px;
  2373. background-color:rgba(0,130,255,0.6);
  2374. border-radius:5px;
  2375. }
  2376. .device_list_bar::-webkit-scrollbar-track
  2377. {
  2378. border-radius: 10px;
  2379. background-color: rgba(0,0,0,.3);
  2380. }
  2381. .status_list_bar::-webkit-scrollbar{
  2382. width:6px;
  2383. height:100%;
  2384. }
  2385. .status_list_bar::-webkit-scrollbar-thumb{
  2386. width:6px;
  2387. height:60px;
  2388. background-color:rgba(0,130,255,0.6);
  2389. border-radius:5px;
  2390. }
  2391. .status_list_bar::-webkit-scrollbar-track
  2392. {
  2393. border-radius: 10px;
  2394. background-color: rgba(0,0,0,.3);
  2395. }
  2396. .v_reset {
  2397. position:absolute;
  2398. top:127px;
  2399. right:100px;
  2400. width:20px;
  2401. height:20px;
  2402. background:url(icons/v_reset.png) no-repeat;
  2403. z-index:200;
  2404. cursor:pointer;
  2405. }
  2406. .big_view {
  2407. position:absolute;
  2408. top:157px;
  2409. right:100px;
  2410. width:20px;
  2411. height:20px;
  2412. background:url(icons/v_big.png) no-repeat;
  2413. z-index:200;
  2414. cursor:pointer;
  2415. }
  2416. .bak_reset {
  2417. position:absolute;
  2418. top:73px;
  2419. right:89px;
  2420. z-index:20;
  2421. background:url(icons/bak.png) no-repeat;
  2422. width:77px;
  2423. height:41px;
  2424. cursor:pointer;
  2425. }
  2426. .bak_reset2 {
  2427. position:absolute;
  2428. top:479px;
  2429. right:89px;
  2430. z-index:20;