myImages.css 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536
  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;
  2431. background:url(icons/bak.png) no-repeat;
  2432. width:77px;
  2433. height:41px;
  2434. cursor:pointer;
  2435. }
  2436. .detail_data_btn {
  2437. margin-left:10px;
  2438. width:16px;
  2439. height:16px;
  2440. cursor:pointer;
  2441. }
  2442. .detail_background {
  2443. width:1100px;
  2444. height:384px;
  2445. background:url(operation_area_bg.gif) no-repeat;
  2446. }
  2447. .detail_area {
  2448. position:absolute;
  2449. top:0px;
  2450. left:0px;
  2451. margin:10px 30px 10px 20px;
  2452. width:1050px;
  2453. height:364px;
  2454. }
  2455. /*H2019.6.30*/
  2456. .title13_label1 {
  2457. margin-bottom:20px;
  2458. }
  2459. /*
  2460. #woker_talk table{
  2461. border-right:1px solid #d0d0d0;
  2462. border-bottom:1px solid #d0d0d0;
  2463. width:100%;
  2464. background:#666;
  2465. margin-bottom:20px;
  2466. }
  2467. #woker_talk table td{
  2468. border-left:1px solid #d0d0d0;
  2469. border-top:1px solid #d0d0d0;
  2470. text-align:center;
  2471. font-size:15px;
  2472. }
  2473. .title20_label1 {
  2474. border:1px solid #000;
  2475. width:100%;
  2476. background:#666;
  2477. min-height:80px;
  2478. padding-left:36px;
  2479. margin-bottom:20px;
  2480. }
  2481. .title27_label1 {
  2482. border:1px solid #000;
  2483. width:100%;
  2484. background:#666;
  2485. min-height:120px;
  2486. padding-left:36px;
  2487. margin-bottom:20px;
  2488. }
  2489. */
  2490. .title29_label1 {
  2491. border:1px solid #000;
  2492. width:100%;
  2493. background:#666;
  2494. min-height:120px;
  2495. padding-left:36px;
  2496. margin-bottom:20px;
  2497. }
  2498. .x-boundlist-list-ct{
  2499. font-size:16px;
  2500. }
  2501. .x-box-inner {
  2502. bottom:0px!important;
  2503. }
  2504. /*H2019.6.30*/
  2505. /*H2019.7.08*/
  2506. .title2_div {
  2507. font-size:16px;
  2508. color:#0082ff;
  2509. position:absolute;
  2510. top:56px;
  2511. right:692px;
  2512. }
  2513. .maintenanceperson_title2_div {
  2514. font-size:16px;
  2515. color:#0082ff;
  2516. position:absolute;
  2517. top:56px;
  2518. right:706px;
  2519. }
  2520. .title2_div_panel3 {
  2521. width:40px;
  2522. height:20px;
  2523. border-radius:4px;
  2524. font-size:14px;
  2525. color:#0082ff;
  2526. position:absolute;
  2527. top:5px;
  2528. right:200px;
  2529. }
  2530. .input_class {
  2531. width:160px;
  2532. height:28px;
  2533. border-radius:4px;
  2534. position:absolute;
  2535. top:50px;
  2536. right:518px;
  2537. }
  2538. .input4_class {
  2539. width:20px;
  2540. height:20px;
  2541. border-radius:4px;
  2542. position:absolute;
  2543. top:58px;
  2544. right:672px;
  2545. }
  2546. .childPanel1_div{
  2547. font-size:16px;
  2548. position:absolute;
  2549. top:56px;
  2550. right:630px;
  2551. }
  2552. .input2_class {
  2553. width:20px;
  2554. height:20px;
  2555. border-radius:4px;
  2556. position:absolute;
  2557. top:58px;
  2558. right:594px;
  2559. }
  2560. .childPanel1_div1{
  2561. font-size:16px;
  2562. position:absolute;
  2563. top:56px;
  2564. right:552px;
  2565. }
  2566. .input3_class {
  2567. width:20px;
  2568. height:20px;
  2569. border-radius:4px;
  2570. position:absolute;
  2571. top:58px;
  2572. right:516px;
  2573. }
  2574. .childPanel1_div2{
  2575. font-size:16px;
  2576. position:absolute;
  2577. top:56px;
  2578. right:474px;
  2579. }
  2580. .MaintenancePersonTitle {
  2581. font-size:20px;
  2582. color:#31e9ff;
  2583. position:absolute;
  2584. top:25px;
  2585. left:41px;
  2586. }
  2587. .MaintenancePersonTitle2 {
  2588. font-size:20px;
  2589. color:#31e9ff;
  2590. position:absolute;
  2591. top:25px;
  2592. left:141px;
  2593. }
  2594. .title3_div {
  2595. font-size:16px;
  2596. color:#0082ff;
  2597. position:absolute;
  2598. top:56px;
  2599. right:420px;
  2600. }
  2601. .input1_class {
  2602. width:160px;
  2603. height:28px;
  2604. border-radius:4px;
  2605. position:absolute;
  2606. top:50px;
  2607. right:248px;
  2608. }
  2609. .maintenance_title2_div {
  2610. width:84px;
  2611. height:26px;
  2612. background:url(icons/maintenance_title2_div.png) no-repeat;
  2613. cursor:pointer;
  2614. position:absolute;
  2615. top:51px;
  2616. right:40px;
  2617. }
  2618. .maintenance_title2_div_on {
  2619. width:84px;
  2620. height:26px;
  2621. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2622. cursor:pointer;
  2623. position:absolute;
  2624. top:51px;
  2625. right:40px;
  2626. }
  2627. .maintenance_title1_div {
  2628. width:84px;
  2629. height:26px;
  2630. background:url(icons/maintenance_title1_div.png) no-repeat;
  2631. cursor:pointer;
  2632. position:absolute;
  2633. top:51px;
  2634. right:144px;
  2635. }
  2636. .maintenance_title1_div_on {
  2637. width:84px;
  2638. height:26px;
  2639. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2640. cursor:pointer;
  2641. position:absolute;
  2642. top:51px;
  2643. right:144px;
  2644. }
  2645. .maintenance_title3_div {
  2646. width:84px;
  2647. height:26px;
  2648. background:url(icons/maintenance_title3_div.png) no-repeat;
  2649. cursor:pointer;
  2650. position:absolute;
  2651. top:118px;
  2652. right:40px;
  2653. }
  2654. .maintenance_title3_div_on {
  2655. width:84px;
  2656. height:26px;
  2657. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2658. cursor:pointer;
  2659. position:absolute;
  2660. top:118px;
  2661. right:40px;
  2662. }
  2663. .maintenance_title4_div {
  2664. width:85px;
  2665. height:26px;
  2666. background:url(icons/maintenance_title4_div.png) no-repeat;
  2667. cursor:pointer;
  2668. position:absolute;
  2669. top:118px;
  2670. right:144px;
  2671. }
  2672. .maintenance_title4_div_on {
  2673. width:85px;
  2674. height:26px;
  2675. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2676. cursor:pointer;
  2677. position:absolute;
  2678. top:118px;
  2679. right:144px;
  2680. }
  2681. .maintenance_title5_div {
  2682. width:84px;
  2683. height:26px;
  2684. background:url(icons/maintenance_title5_div.png) no-repeat;
  2685. cursor:pointer;
  2686. position:absolute;
  2687. top:118px;
  2688. right:249px;
  2689. }
  2690. .maintenance_title5_div_on {
  2691. width:84px;
  2692. height:26px;
  2693. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2694. cursor:pointer;
  2695. position:absolute;
  2696. top:118px;
  2697. right:249px;
  2698. }
  2699. .maintenance_title6_div {
  2700. width:85px;
  2701. height:26px;
  2702. background:url(icons/maintenance_title6_div.png) no-repeat;
  2703. cursor:pointer;
  2704. position:absolute;
  2705. top:118px;
  2706. right:353px;
  2707. }
  2708. .maintenance_title6_div_on {
  2709. width:85px;
  2710. height:26px;
  2711. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  2712. cursor:pointer;
  2713. position:absolute;
  2714. top:118px;
  2715. right:353px;
  2716. }
  2717. .maintenancePerson_title2_div {
  2718. width:84px;
  2719. height:26px;
  2720. background:url(icons/maintenance_title2_div.png) no-repeat;
  2721. cursor:pointer;
  2722. position:absolute;
  2723. top:51px;
  2724. right:40px;
  2725. }
  2726. .maintenancePerson_title2_div_on {
  2727. width:84px;
  2728. height:26px;
  2729. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2730. cursor:pointer;
  2731. position:absolute;
  2732. top:51px;
  2733. right:40px;
  2734. }
  2735. .maintenancePerson_title1_div {
  2736. width:84px;
  2737. height:26px;
  2738. background:url(icons/maintenance_title1_div.png) no-repeat;
  2739. cursor:pointer;
  2740. position:absolute;
  2741. top:51px;
  2742. right:144px;
  2743. }
  2744. .maintenancePerson_title1_div_on {
  2745. width:84px;
  2746. height:26px;
  2747. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2748. cursor:pointer;
  2749. position:absolute;
  2750. top:51px;
  2751. right:144px;
  2752. }
  2753. .maintenancePerson_title3_div {
  2754. width:84px;
  2755. height:26px;
  2756. background:url(icons/maintenance_title3_div.png) no-repeat;
  2757. cursor:pointer;
  2758. position:absolute;
  2759. top:118px;
  2760. right:40px;
  2761. }
  2762. .maintenancePerson_title3_div_on {
  2763. width:84px;
  2764. height:26px;
  2765. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2766. cursor:pointer;
  2767. position:absolute;
  2768. top:118px;
  2769. right:40px;
  2770. }
  2771. .maintenancePerson_title4_div {
  2772. width:85px;
  2773. height:26px;
  2774. background:url(icons/maintenance_title4_div.png) no-repeat;
  2775. cursor:pointer;
  2776. position:absolute;
  2777. top:118px;
  2778. right:144px;
  2779. }
  2780. .maintenancePerson_title4_div_on {
  2781. width:85px;
  2782. height:26px;
  2783. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2784. cursor:pointer;
  2785. position:absolute;
  2786. top:118px;
  2787. right:144px;
  2788. }
  2789. .maintenancePerson_title5_div {
  2790. width:84px;
  2791. height:26px;
  2792. background:url(icons/maintenance_title5_div.png) no-repeat;
  2793. cursor:pointer;
  2794. position:absolute;
  2795. top:118px;
  2796. right:249px;
  2797. }
  2798. .maintenancePerson_title5_div_on {
  2799. width:84px;
  2800. height:26px;
  2801. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2802. cursor:pointer;
  2803. position:absolute;
  2804. top:118px;
  2805. right:249px;
  2806. }
  2807. .maintenancePerson_title6_div {
  2808. width:85px;
  2809. height:26px;
  2810. background:url(icons/maintenance_title6_div.png) no-repeat;
  2811. cursor:pointer;
  2812. position:absolute;
  2813. top:118px;
  2814. right:353px;
  2815. }
  2816. .maintenancePerson_title6_div_on {
  2817. width:85px;
  2818. height:26px;
  2819. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  2820. cursor:pointer;
  2821. position:absolute;
  2822. top:118px;
  2823. right:353px;
  2824. }
  2825. .maintenancePerson_title11_div {
  2826. width:85px;
  2827. height:26px;
  2828. background:url(icons/maintenance_title4_div.png) no-repeat;
  2829. cursor:pointer;
  2830. position:absolute;
  2831. top:100px;
  2832. right:20px;
  2833. }
  2834. .maintenancePerson_title11_div_on {
  2835. width:85px;
  2836. height:26px;
  2837. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2838. cursor:pointer;
  2839. position:absolute;
  2840. top:100px;
  2841. right:20px;
  2842. }
  2843. .maintenancePerson_title21_div {
  2844. width:84px;
  2845. height:26px;
  2846. background:url(icons/maintenance_title5_div.png) no-repeat;
  2847. cursor:pointer;
  2848. position:absolute;
  2849. top:100px;
  2850. right:125px;
  2851. }
  2852. .maintenancePerson_title21_div_on {
  2853. width:84px;
  2854. height:26px;
  2855. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2856. cursor:pointer;
  2857. position:absolute;
  2858. top:100px;
  2859. right:125px;
  2860. }
  2861. .maintenance_look_device_img{
  2862. margin: 0 auto;
  2863. }
  2864. .maintenance_look_device_img_baogao{
  2865. margin: 0 auto;
  2866. height:270px;
  2867. width:300px;
  2868. }
  2869. .maintenancePerson_title31_div {
  2870. width:85px;
  2871. height:29px;
  2872. background:url(icons/maintenance_title71_div.png) no-repeat;
  2873. cursor:pointer;
  2874. position:absolute;
  2875. top:95px;
  2876. right:40px;
  2877. }
  2878. .maintenancePerson_title31_div_on {
  2879. width:85px;
  2880. height:29px;
  2881. background:url(icons/maintenance_title71_div_on.png) no-repeat;
  2882. cursor:pointer;
  2883. position:absolute;
  2884. top:95px;
  2885. right:40px;
  2886. }
  2887. .maintenancePerson_title41_div {
  2888. width:86px;
  2889. height:29px;
  2890. background:url(icons/maintenance_title81_div.png) no-repeat;
  2891. cursor:pointer;
  2892. position:absolute;
  2893. top:95px;
  2894. right:144px;
  2895. }
  2896. .maintenancePerson_title41_div_on {
  2897. width:86px;
  2898. height:29px;
  2899. background:url(icons/maintenance_title81_div_on.png) no-repeat;
  2900. cursor:pointer;
  2901. position:absolute;
  2902. top:95px;
  2903. right:144px;
  2904. }
  2905. .maintenancePerson_input111_class {
  2906. width:114px;
  2907. height:24px;
  2908. border-radius:4px;
  2909. position:absolute;
  2910. top:98px;
  2911. right:260px;
  2912. }
  2913. .maintenancePerson_title111_div {
  2914. font-size:16px;
  2915. color:#0082ff;
  2916. position:absolute;
  2917. top:100px;
  2918. right:388px;
  2919. }
  2920. .maintenancePerson_input211_class {
  2921. width:144px;
  2922. height:24px;
  2923. border-radius:4px;
  2924. position:absolute;
  2925. top:98px;
  2926. right:454px;
  2927. }
  2928. .maintenancePerson_title211_div {
  2929. font-size:16px;
  2930. color:#0082ff;
  2931. position:absolute;
  2932. top:100px;
  2933. right:610px;
  2934. }
  2935. .maintenancePlan_title2_div {
  2936. width:84px;
  2937. height:26px;
  2938. background:url(icons/maintenance_title2_div.png) no-repeat;
  2939. cursor:pointer;
  2940. position:absolute;
  2941. top:51px;
  2942. right:40px;
  2943. }
  2944. .maintenancePlan_title2_div_on {
  2945. width:84px;
  2946. height:26px;
  2947. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2948. cursor:pointer;
  2949. position:absolute;
  2950. top:51px;
  2951. right:40px;
  2952. }
  2953. .maintenancePlan_title1_div {
  2954. width:84px;
  2955. height:26px;
  2956. background:url(icons/maintenance_title1_div.png) no-repeat;
  2957. cursor:pointer;
  2958. position:absolute;
  2959. top:51px;
  2960. right:144px;
  2961. }
  2962. .maintenancePlan_title1_div_on {
  2963. width:84px;
  2964. height:26px;
  2965. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2966. cursor:pointer;
  2967. position:absolute;
  2968. top:51px;
  2969. right:144px;
  2970. }
  2971. .maintenancePlan_title3_div {
  2972. width:84px;
  2973. height:26px;
  2974. background:url(icons/maintenance_title3_div.png) no-repeat;
  2975. cursor:pointer;
  2976. position:absolute;
  2977. top:118px;
  2978. right:40px;
  2979. }
  2980. .maintenancePlan_title3_div_on {
  2981. width:84px;
  2982. height:26px;
  2983. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2984. cursor:pointer;
  2985. position:absolute;
  2986. top:118px;
  2987. right:40px;
  2988. }
  2989. .maintenancePlan_title4_div {
  2990. width:85px;
  2991. height:26px;
  2992. background:url(icons/maintenance_title4_div.png) no-repeat;
  2993. cursor:pointer;
  2994. position:absolute;
  2995. top:118px;
  2996. right:144px;
  2997. }
  2998. .maintenancePlan_title4_div_on {
  2999. width:85px;
  3000. height:26px;
  3001. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  3002. cursor:pointer;
  3003. position:absolute;
  3004. top:118px;
  3005. right:144px;
  3006. }
  3007. .maintenancePlan_title5_div {
  3008. width:84px;
  3009. height:26px;
  3010. background:url(icons/maintenance_title5_div.png) no-repeat;
  3011. cursor:pointer;
  3012. position:absolute;
  3013. top:118px;
  3014. right:249px;
  3015. }
  3016. .maintenancePlan_title5_div_on {
  3017. width:84px;
  3018. height:26px;
  3019. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3020. cursor:pointer;
  3021. position:absolute;
  3022. top:118px;
  3023. right:249px;
  3024. }
  3025. .maintenancePlan_title6_div {
  3026. width:85px;
  3027. height:26px;
  3028. background:url(icons/maintenance_title6_div.png) no-repeat;
  3029. cursor:pointer;
  3030. position:absolute;
  3031. top:118px;
  3032. right:353px;
  3033. }
  3034. .maintenancePlan_title6_div_on {
  3035. width:85px;
  3036. height:26px;
  3037. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  3038. cursor:pointer;
  3039. position:absolute;
  3040. top:118px;
  3041. right:353px;
  3042. }
  3043. .maintenanceCheck_title2_div {
  3044. width:84px;
  3045. height:26px;
  3046. background:url(icons/maintenance_title2_div.png) no-repeat;
  3047. cursor:pointer;
  3048. position:absolute;
  3049. top:80px;
  3050. right:40px;
  3051. }
  3052. .maintenanceCheck_title2_div_on {
  3053. width:84px;
  3054. height:26px;
  3055. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3056. cursor:pointer;
  3057. position:absolute;
  3058. top:80px;
  3059. right:40px;
  3060. }
  3061. .maintenanceCheck_title1_div {
  3062. width:84px;
  3063. height:26px;
  3064. background:url(icons/maintenance_title1_div.png) no-repeat;
  3065. cursor:pointer;
  3066. position:absolute;
  3067. top:80px;
  3068. right:144px;
  3069. }
  3070. .maintenanceCheck_title1_div_on {
  3071. width:84px;
  3072. height:26px;
  3073. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3074. cursor:pointer;
  3075. position:absolute;
  3076. top:80px;
  3077. right:144px;
  3078. }
  3079. .maintenanceCheck_title3_div {
  3080. width:84px;
  3081. height:26px;
  3082. background:url(icons/maintenance_title3_div.png) no-repeat;
  3083. cursor:pointer;
  3084. position:absolute;
  3085. top:198px;
  3086. right:40px;
  3087. }
  3088. .maintenanceCheck_title3_div_on {
  3089. width:84px;
  3090. height:26px;
  3091. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3092. cursor:pointer;
  3093. position:absolute;
  3094. top:198px;
  3095. right:40px;
  3096. }
  3097. .Check_input1_class {
  3098. width:100px;
  3099. height:28px;
  3100. border-radius:4px;
  3101. position:absolute;
  3102. top:79px;
  3103. right:248px;
  3104. }
  3105. .Check_title3_div {
  3106. font-size:16px;
  3107. color:#0082ff;
  3108. position:absolute;
  3109. top:85px;
  3110. right:360px;
  3111. }
  3112. .Check_input_class {
  3113. width:160px;
  3114. height:28px;
  3115. border-radius:4px;
  3116. position:absolute;
  3117. top:79px;
  3118. right:440px;
  3119. }
  3120. .Check_title2_div {
  3121. font-size:16px;
  3122. color:#0082ff;
  3123. position:absolute;
  3124. top:85px;
  3125. right:612px;
  3126. }
  3127. .Check_input2_class {
  3128. width:100px;
  3129. height:28px;
  3130. border-radius:4px;
  3131. position:absolute;
  3132. top:79px;
  3133. right:710px;
  3134. }
  3135. .Check_input3_class {
  3136. width:100px;
  3137. height:28px;
  3138. border-radius:4px;
  3139. position:absolute;
  3140. top:79px;
  3141. right:840px;
  3142. }
  3143. .Check_title7_div {
  3144. font-size:16px;
  3145. color:#0082ff;
  3146. position:absolute;
  3147. top:85px;
  3148. right:955px;
  3149. }
  3150. .Check_title8_div {
  3151. font-size:16px;
  3152. position:absolute;
  3153. top:85px;
  3154. right:820px;
  3155. }
  3156. .Check_input4_class {
  3157. width:100px;
  3158. height:28px;
  3159. border-radius:4px;
  3160. position:absolute;
  3161. top:79px;
  3162. right:1050px;
  3163. }
  3164. .Check_title9_div {
  3165. font-size:16px;
  3166. color:#0082ff;
  3167. position:absolute;
  3168. top:85px;
  3169. right:1165px;
  3170. }
  3171. .maintenanceCheck_title10_div {
  3172. width:222px;
  3173. height:62px;
  3174. background:url(icons/maintenanceCheck_title10_div.png) no-repeat;
  3175. cursor:pointer;
  3176. position:absolute;
  3177. top:160px;
  3178. right:1200px;
  3179. }
  3180. .maintenanceCheck_title20_div {
  3181. width:222px;
  3182. height:62px;
  3183. background:url(icons/maintenanceCheck_title20_div.png) no-repeat;
  3184. cursor:pointer;
  3185. position:absolute;
  3186. top:160px;
  3187. right:1200px;
  3188. }
  3189. .maintenanceCheck_title11_div {
  3190. width:222px;
  3191. height:62px;
  3192. background:url(icons/maintenanceCheck_title11_div.png) no-repeat;
  3193. cursor:pointer;
  3194. position:absolute;
  3195. top:160px;
  3196. right:958px;
  3197. }
  3198. .maintenanceCheck_title12_div {
  3199. width:222px;
  3200. height:62px;
  3201. background:url(icons/maintenanceCheck_title12_div.png) no-repeat;
  3202. cursor:pointer;
  3203. position:absolute;
  3204. top:160px;
  3205. right:716px;
  3206. }
  3207. .maintenanceCheck_title13_div {
  3208. width:222px;
  3209. height:62px;
  3210. background:url(icons/maintenanceCheck_title13_div.png) no-repeat;
  3211. cursor:pointer;
  3212. position:absolute;
  3213. top:160px;
  3214. right:474px;
  3215. }
  3216. .Check_title14_div {
  3217. font-size:38px;
  3218. color:#59c24a;
  3219. position:absolute;
  3220. top:170px;
  3221. right:500px;
  3222. }
  3223. .Check_title15_div {
  3224. font-size:38px;
  3225. color:#ff0000;
  3226. position:absolute;
  3227. top:170px;
  3228. right:742px;
  3229. }
  3230. .Check_title16_div {
  3231. font-size:38px;
  3232. color:#ff9254;
  3233. position:absolute;
  3234. top:170px;
  3235. right:984px;
  3236. }
  3237. .Check_title17_div {
  3238. font-size:38px;
  3239. color:#25b5ce;
  3240. position:absolute;
  3241. top:170px;
  3242. right:1226px;
  3243. }
  3244. .Check_select_class {
  3245. width:100px;
  3246. height:24px;
  3247. border-radius:4px;
  3248. position:absolute;
  3249. top:15px;
  3250. right:30px;
  3251. }
  3252. .MaintenanceCheckTitle {
  3253. font-size:16px;
  3254. color:#0082ff;
  3255. position:absolute;
  3256. top:18px;
  3257. right:150px;
  3258. }
  3259. .Maintenancediv_title {
  3260. font-size:15px;
  3261. color:#fff;
  3262. position:absolute;
  3263. top:10px;
  3264. right:705px;
  3265. }
  3266. .Maintenancediv_title_weibao {
  3267. font-size:15px;
  3268. color:#fff;
  3269. position:absolute;
  3270. top:10px;
  3271. right:570px;
  3272. }
  3273. .test_form{
  3274. background:#0082ff;
  3275. }
  3276. .maintenancePerson_input_class {
  3277. width:100px;
  3278. height:28px;
  3279. border-radius:4px;
  3280. position:absolute;
  3281. top:50px;
  3282. right:520px;
  3283. }
  3284. .inspectors_title1_div {
  3285. width:84px;
  3286. height:26px;
  3287. background:url(icons/maintenance_title1_div.png) no-repeat;
  3288. cursor:pointer;
  3289. position:absolute;
  3290. top:51px;
  3291. right:144px;
  3292. }
  3293. .inspectors_title1_div_on {
  3294. width:84px;
  3295. height:26px;
  3296. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3297. cursor:pointer;
  3298. position:absolute;
  3299. top:51px;
  3300. right:144px;
  3301. }
  3302. .inspectors_title2_div {
  3303. width:84px;
  3304. height:26px;
  3305. background:url(icons/maintenance_title2_div.png) no-repeat;
  3306. cursor:pointer;
  3307. position:absolute;
  3308. top:51px;
  3309. right:40px;
  3310. }
  3311. .inspectors_title2_div_on {
  3312. width:84px;
  3313. height:26px;
  3314. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3315. cursor:pointer;
  3316. position:absolute;
  3317. top:51px;
  3318. right:40px;
  3319. }
  3320. .inspectors_title3_div {
  3321. width:84px;
  3322. height:26px;
  3323. background:url(icons/maintenance_title3_div.png) no-repeat;
  3324. cursor:pointer;
  3325. position:absolute;
  3326. top:118px;
  3327. right:40px;
  3328. }
  3329. .inspectors_title3_div_on {
  3330. width:84px;
  3331. height:26px;
  3332. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3333. cursor:pointer;
  3334. position:absolute;
  3335. top:118px;
  3336. right:40px;
  3337. }
  3338. .inspectors_title4_div {
  3339. width:85px;
  3340. height:26px;
  3341. background:url(icons/maintenance_title4_div.png) no-repeat;
  3342. cursor:pointer;
  3343. position:absolute;
  3344. top:118px;
  3345. right:144px;
  3346. }
  3347. .inspectors_title4_div_on {
  3348. width:85px;
  3349. height:26px;
  3350. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  3351. cursor:pointer;
  3352. position:absolute;
  3353. top:118px;
  3354. right:144px;
  3355. }
  3356. .inspectors_title5_div {
  3357. width:84px;
  3358. height:26px;
  3359. background:url(icons/maintenance_title5_div.png) no-repeat;
  3360. cursor:pointer;
  3361. position:absolute;
  3362. top:118px;
  3363. right:249px;
  3364. }
  3365. .inspectors_title5_div_on {
  3366. width:84px;
  3367. height:26px;
  3368. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3369. cursor:pointer;
  3370. position:absolute;
  3371. top:118px;
  3372. right:249px;
  3373. }
  3374. .inspectors_title6_div {
  3375. width:85px;
  3376. height:26px;
  3377. background:url(icons/maintenance_title6_div.png) no-repeat;
  3378. cursor:pointer;
  3379. position:absolute;
  3380. top:118px;
  3381. right:353px;
  3382. }
  3383. .inspectors_title6_div_on {
  3384. width:85px;
  3385. height:26px;
  3386. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  3387. cursor:pointer;
  3388. position:absolute;
  3389. top:118px;
  3390. right:353px;
  3391. }
  3392. .inspectors_title11_div {
  3393. width:85px;
  3394. height:26px;
  3395. background:url(icons/maintenance_title4_div.png) no-repeat;
  3396. cursor:pointer;
  3397. position:absolute;
  3398. top:100px;
  3399. right:20px;
  3400. }
  3401. .inspectors_title11_div_on {
  3402. width:85px;
  3403. height:26px;
  3404. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  3405. cursor:pointer;
  3406. position:absolute;
  3407. top:100px;
  3408. right:20px;
  3409. }
  3410. .inspectors_title21_div {
  3411. width:84px;
  3412. height:26px;
  3413. background:url(icons/maintenance_title5_div.png) no-repeat;
  3414. cursor:pointer;
  3415. position:absolute;
  3416. top:100px;
  3417. right:125px;
  3418. }
  3419. .inspectors_title21_div_on {
  3420. width:84px;
  3421. height:26px;
  3422. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3423. cursor:pointer;
  3424. position:absolute;
  3425. top:100px;
  3426. right:125px;
  3427. }
  3428. .inspectors_title31_div {
  3429. width:85px;
  3430. height:29px;
  3431. background:url(icons/maintenance_title71_div.png) no-repeat;
  3432. cursor:pointer;
  3433. position:absolute;
  3434. top:95px;
  3435. right:40px;
  3436. }
  3437. .inspectors_title31_div_on {
  3438. width:85px;
  3439. height:29px;
  3440. background:url(icons/maintenance_title71_div_on.png) no-repeat;
  3441. cursor:pointer;
  3442. position:absolute;
  3443. top:95px;
  3444. right:40px;
  3445. }
  3446. .inspectors_title41_div {
  3447. width:86px;
  3448. height:29px;
  3449. background:url(icons/maintenance_title81_div.png) no-repeat;
  3450. cursor:pointer;
  3451. position:absolute;
  3452. top:95px;
  3453. right:144px;
  3454. }
  3455. .inspectors_title41_div_on {
  3456. width:86px;
  3457. height:29px;
  3458. background:url(icons/maintenance_title81_div_on.png) no-repeat;
  3459. cursor:pointer;
  3460. position:absolute;
  3461. top:95px;
  3462. right:144px;
  3463. }
  3464. .inspectorsCheck_title1_div {
  3465. width:84px;
  3466. height:26px;
  3467. background:url(icons/maintenance_title1_div.png) no-repeat;
  3468. cursor:pointer;
  3469. position:absolute;
  3470. top:80px;
  3471. right:144px;
  3472. }
  3473. .inspectorsCheck_title1_div_on {
  3474. width:84px;
  3475. height:26px;
  3476. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3477. cursor:pointer;
  3478. position:absolute;
  3479. top:80px;
  3480. right:144px;
  3481. }
  3482. .inspectorsCheck_title2_div {
  3483. width:84px;
  3484. height:26px;
  3485. background:url(icons/maintenance_title2_div.png) no-repeat;
  3486. cursor:pointer;
  3487. position:absolute;
  3488. top:80px;
  3489. right:40px;
  3490. }
  3491. .inspectorsCheck_title2_div_on {
  3492. width:84px;
  3493. height:26px;
  3494. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3495. cursor:pointer;
  3496. position:absolute;
  3497. top:80px;
  3498. right:40px;
  3499. }
  3500. .inspectorsCheck_title3_div {
  3501. width:84px;
  3502. height:26px;
  3503. background:url(icons/maintenance_title3_div.png) no-repeat;
  3504. cursor:pointer;
  3505. position:absolute;
  3506. top:198px;
  3507. right:40px;
  3508. }
  3509. .inspectorsCheck_title3_div_on {
  3510. width:84px;
  3511. height:26px;
  3512. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3513. cursor:pointer;
  3514. position:absolute;
  3515. top:198px;
  3516. right:40px;
  3517. }
  3518. .patrolPlan_title1_div {
  3519. width:84px;
  3520. height:26px;
  3521. background:url(icons/maintenance_title1_div.png) no-repeat;
  3522. cursor:pointer;
  3523. position:absolute;
  3524. top:51px;
  3525. right:144px;
  3526. }
  3527. .patrolPlan_title1_div_on {
  3528. width:84px;
  3529. height:26px;
  3530. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3531. cursor:pointer;
  3532. position:absolute;
  3533. top:51px;
  3534. right:144px;
  3535. }
  3536. .patrolPlan_title2_div {
  3537. width:84px;
  3538. height:26px;
  3539. background:url(icons/maintenance_title2_div.png) no-repeat;
  3540. cursor:pointer;
  3541. position:absolute;
  3542. top:51px;
  3543. right:40px;
  3544. }
  3545. .patrolPlan_title2_div_on {
  3546. width:84px;
  3547. height:26px;
  3548. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3549. cursor:pointer;
  3550. position:absolute;
  3551. top:51px;
  3552. right:40px;
  3553. }
  3554. .patrolPlan_title3_div {
  3555. width:84px;
  3556. height:26px;
  3557. background:url(icons/maintenance_title3_div.png) no-repeat;
  3558. cursor:pointer;
  3559. position:absolute;
  3560. top:118px;
  3561. right:40px;
  3562. }
  3563. .patrolPlan_title3_div_on {
  3564. width:84px;
  3565. height:26px;
  3566. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3567. cursor:pointer;
  3568. position:absolute;
  3569. top:118px;
  3570. right:40px;
  3571. }
  3572. .patrolPlan_title4_div {
  3573. width:85px;
  3574. height:26px;
  3575. background:url(icons/maintenance_title4_div.png) no-repeat;
  3576. cursor:pointer;
  3577. position:absolute;
  3578. top:118px;
  3579. right:144px;
  3580. }
  3581. .patrolPlan_title4_div_on {
  3582. width:85px;
  3583. height:26px;
  3584. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  3585. cursor:pointer;
  3586. position:absolute;
  3587. top:118px;
  3588. right:144px;
  3589. }
  3590. .patrolPlan_title5_div {
  3591. width:84px;
  3592. height:26px;
  3593. background:url(icons/maintenance_title5_div.png) no-repeat;
  3594. cursor:pointer;
  3595. position:absolute;
  3596. top:118px;
  3597. right:249px;
  3598. }
  3599. .patrolPlan_title5_div_on {
  3600. width:84px;
  3601. height:26px;
  3602. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3603. cursor:pointer;
  3604. position:absolute;
  3605. top:118px;
  3606. right:249px;
  3607. }
  3608. .patrolPlan_title6_div {
  3609. width:85px;
  3610. height:26px;
  3611. background:url(icons/maintenance_title6_div.png) no-repeat;
  3612. cursor:pointer;
  3613. position:absolute;
  3614. top:118px;
  3615. right:353px;
  3616. }
  3617. .patrolPlan_title6_div_on {
  3618. width:85px;
  3619. height:26px;
  3620. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  3621. cursor:pointer;
  3622. position:absolute;
  3623. top:118px;
  3624. right:353px;
  3625. }
  3626. .patrolpoint_title1_div {
  3627. width:84px;
  3628. height:26px;
  3629. background:url(icons/maintenance_title1_div.png) no-repeat;
  3630. cursor:pointer;
  3631. position:absolute;
  3632. top:51px;
  3633. right:144px;
  3634. }
  3635. .patrolpoint_title1_div_on {
  3636. width:84px;
  3637. height:26px;
  3638. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3639. cursor:pointer;
  3640. position:absolute;
  3641. top:51px;
  3642. right:144px;
  3643. }
  3644. .patrolpoint_title2_div {
  3645. width:84px;
  3646. height:26px;
  3647. background:url(icons/maintenance_title2_div.png) no-repeat;
  3648. cursor:pointer;
  3649. position:absolute;
  3650. top:51px;
  3651. right:40px;
  3652. }
  3653. .patrolpoint_title2_div_on {
  3654. width:84px;
  3655. height:26px;
  3656. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3657. cursor:pointer;
  3658. position:absolute;
  3659. top:51px;
  3660. right:40px;
  3661. }
  3662. .patrolpoint_title3_div {
  3663. width:84px;
  3664. height:26px;
  3665. background:url(icons/maintenance_title3_div.png) no-repeat;
  3666. cursor:pointer;
  3667. position:absolute;
  3668. top:118px;
  3669. right:40px;
  3670. }
  3671. .patrolpoint_title3_div_on {
  3672. width:84px;
  3673. height:26px;
  3674. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3675. cursor:pointer;
  3676. position:absolute;
  3677. top:118px;
  3678. right:40px;
  3679. }
  3680. .patrolpoint_title4_div {
  3681. width:85px;
  3682. height:26px;
  3683. background:url(icons/maintenance_title4_div.png) no-repeat;
  3684. cursor:pointer;
  3685. position:absolute;
  3686. top:118px;
  3687. right:144px;
  3688. }
  3689. .patrolpoint_title4_div_on {
  3690. width:85px;
  3691. height:26px;
  3692. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  3693. cursor:pointer;
  3694. position:absolute;
  3695. top:118px;
  3696. right:144px;
  3697. }
  3698. .patrolpoint_title5_div {
  3699. width:84px;
  3700. height:26px;
  3701. background:url(icons/maintenance_title5_div.png) no-repeat;
  3702. cursor:pointer;
  3703. position:absolute;
  3704. top:118px;
  3705. right:249px;
  3706. }
  3707. .patrolpoint_title5_div_on {
  3708. width:84px;
  3709. height:26px;
  3710. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3711. cursor:pointer;
  3712. position:absolute;
  3713. top:118px;
  3714. right:249px;
  3715. }
  3716. .patrolpoint_title6_div {
  3717. width:85px;
  3718. height:26px;
  3719. background:url(icons/maintenance_title6_div.png) no-repeat;
  3720. cursor:pointer;
  3721. position:absolute;
  3722. top:118px;
  3723. right:353px;
  3724. }
  3725. .patrolpoint_title6_div_on {
  3726. width:85px;
  3727. height:26px;
  3728. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  3729. cursor:pointer;
  3730. position:absolute;
  3731. top:118px;
  3732. right:353px;
  3733. }
  3734. .proform3_bg_tl{
  3735. position:absolute;
  3736. width:928px;
  3737. height:752px;
  3738. top:0px;
  3739. left:0px;
  3740. background:url(icons/proform3_tl.png) no-repeat;
  3741. }
  3742. .proform3_bg_ml {
  3743. position:absolute;
  3744. top:752px;
  3745. left:0px;
  3746. width:928px;
  3747. background:url(icons/proform3_ml.png) repeat-y;
  3748. }
  3749. .proform3_bg_bl {
  3750. position:absolute;
  3751. bottom:0px;
  3752. left:0px;
  3753. width:928px;
  3754. height:170px;
  3755. background:url(icons/proform3_bl.png) no-repeat;
  3756. }
  3757. .springHandle_title20_div {
  3758. width:302px;
  3759. height:62px;
  3760. background:url(icons/springHandle_title20_div.png) no-repeat;
  3761. cursor:pointer;
  3762. position:absolute;
  3763. top:50px;
  3764. right:1376px;
  3765. }
  3766. .springHandle_title17_div {
  3767. font-size:38px;
  3768. color:#25b5ce;
  3769. position:absolute;
  3770. top:60px;
  3771. right:1460px;
  3772. }
  3773. .springHandle_title11_div {
  3774. width:302px;
  3775. height:62px;
  3776. background:url(icons/springHandle_title11_div.png) no-repeat;
  3777. cursor:pointer;
  3778. position:absolute;
  3779. top:50px;
  3780. right:1054px;
  3781. }
  3782. .springHandle_title16_div {
  3783. font-size:38px;
  3784. color:#ff9254;
  3785. position:absolute;
  3786. top:60px;
  3787. right:1140px;
  3788. }
  3789. .springHandle_title12_div {
  3790. width:302px;
  3791. height:62px;
  3792. background:url(icons/springHandle_title12_div.png) no-repeat;
  3793. cursor:pointer;
  3794. position:absolute;
  3795. top:50px;
  3796. right:732px;
  3797. }
  3798. .springHandle_title15_div {
  3799. font-size:38px;
  3800. color:#ff0000;
  3801. position:absolute;
  3802. top:60px;
  3803. right:814px;
  3804. }
  3805. .springHandle_title13_div {
  3806. width:302px;
  3807. height:62px;
  3808. background:url(icons/springHandle_title13_div.png) no-repeat;
  3809. cursor:pointer;
  3810. position:absolute;
  3811. top:50px;
  3812. right:410px;
  3813. }
  3814. .springHandle_title14_div {
  3815. font-size:38px;
  3816. color:#59c24a;
  3817. position:absolute;
  3818. top:60px;
  3819. right:494px;
  3820. }
  3821. .springHandle_title2_div {
  3822. width:84px;
  3823. height:26px;
  3824. background:url(icons/maintenance_title2_div.png) no-repeat;
  3825. cursor:pointer;
  3826. position:absolute;
  3827. top:140px;
  3828. right:40px;
  3829. }
  3830. .springHandle_title2_div_on {
  3831. width:84px;
  3832. height:26px;
  3833. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3834. cursor:pointer;
  3835. position:absolute;
  3836. top:140px;
  3837. right:40px;
  3838. }
  3839. .springHandle_title1_div {
  3840. width:84px;
  3841. height:26px;
  3842. background:url(icons/maintenance_title1_div.png) no-repeat;
  3843. cursor:pointer;
  3844. position:absolute;
  3845. top:140px;
  3846. right:144px;
  3847. }
  3848. .springHandle_title1_div_on {
  3849. width:84px;
  3850. height:26px;
  3851. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3852. cursor:pointer;
  3853. position:absolute;
  3854. top:140px;
  3855. right:144px;
  3856. }
  3857. .springHandle_title3_div {
  3858. width:84px;
  3859. height:26px;
  3860. background:url(icons/maintenance_title3_div.png) no-repeat;
  3861. cursor:pointer;
  3862. position:absolute;
  3863. top:198px;
  3864. right:40px;
  3865. }
  3866. .springHandle_title3_div_on {
  3867. width:84px;
  3868. height:26px;
  3869. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3870. cursor:pointer;
  3871. position:absolute;
  3872. top:198px;
  3873. right:40px;
  3874. }
  3875. .springHandle_title4_div {
  3876. width:84px;
  3877. height:26px;
  3878. background:url(icons/baoxiu_fenxi.png) no-repeat;
  3879. cursor:pointer;
  3880. position:absolute;
  3881. top:198px;
  3882. right:144px;
  3883. }
  3884. .springHandle_title4_div_on {
  3885. width:84px;
  3886. height:26px;
  3887. background:url(icons/baoxiu_fenxi_on.png) no-repeat;
  3888. cursor:pointer;
  3889. position:absolute;
  3890. top:198px;
  3891. right:144px;
  3892. }
  3893. .springHandle_input_class {
  3894. width:160px;
  3895. height:28px;
  3896. border-radius:4px;
  3897. position:absolute;
  3898. top:140px;
  3899. right:260px;
  3900. }
  3901. .springHandle_title2_div_font {
  3902. font-size:16px;
  3903. color:#0082ff;
  3904. position:absolute;
  3905. top:143px;
  3906. right:440px;
  3907. }
  3908. .springHandle_input1_class {
  3909. width:100px;
  3910. height:28px;
  3911. border-radius:4px;
  3912. position:absolute;
  3913. top:140px;
  3914. right:538px;
  3915. }
  3916. .springHandle_title3_div_font {
  3917. font-size:16px;
  3918. color:#0082ff;
  3919. position:absolute;
  3920. top:143px;
  3921. right:658px;
  3922. }
  3923. .springHandle_input2_class {
  3924. width:100px;
  3925. height:28px;
  3926. border-radius:4px;
  3927. position:absolute;
  3928. top:140px;
  3929. right:740px;
  3930. }
  3931. .springHandle_title8_div {
  3932. font-size:16px;
  3933. position:absolute;
  3934. top:143px;
  3935. right:845px;
  3936. }
  3937. .springHandle_input3_class {
  3938. width:100px;
  3939. height:28px;
  3940. border-radius:4px;
  3941. position:absolute;
  3942. top:140px;
  3943. right:862px;
  3944. }
  3945. .springHandle_title7_div {
  3946. font-size:16px;
  3947. color:#0082ff;
  3948. position:absolute;
  3949. top:143px;
  3950. right:982px;
  3951. }
  3952. .springHandle_input4_class {
  3953. width:100px;
  3954. height:28px;
  3955. border-radius:4px;
  3956. position:absolute;
  3957. top:140px;
  3958. right:1080px;
  3959. }
  3960. .springHandle_title9_div {
  3961. font-size:16px;
  3962. color:#0082ff;
  3963. position:absolute;
  3964. top:143px;
  3965. right:1200px;
  3966. }
  3967. .springHandle_title28_div {
  3968. font-size:16px;
  3969. color:#0082ff;
  3970. position:absolute;
  3971. top:143px;
  3972. right:1420px;
  3973. }
  3974. .springHandle_input5_class {
  3975. width:100px;
  3976. height:28px;
  3977. border-radius:4px;
  3978. position:absolute;
  3979. top:140px;
  3980. right:1300px;
  3981. }
  3982. .SpringHandleTitle {
  3983. font-size:14px;
  3984. color:#0082ff;
  3985. position:absolute;
  3986. top:18px;
  3987. right:410px;
  3988. }
  3989. .SpringHandleTitle1 {
  3990. font-size:16px;
  3991. position:absolute;
  3992. top:18px;
  3993. right:352px;
  3994. }
  3995. .SpringHandleTitle2 {
  3996. font-size:14px;
  3997. color:#0082ff;
  3998. position:absolute;
  3999. top:60px;
  4000. right:410px;
  4001. }
  4002. .SpringHandleTitle3 {
  4003. font-size:16px;
  4004. position:absolute;
  4005. top:60px;
  4006. left:103px;
  4007. }
  4008. .SpringHandleTitle4 {
  4009. font-size:14px;
  4010. color:#0082ff;
  4011. position:absolute;
  4012. top:110px;
  4013. right:410px;
  4014. }
  4015. .SpringHandleTitle5 {
  4016. width:60px;
  4017. height:60px;
  4018. position:absolute;
  4019. top:110px;
  4020. left:103px;