myImages.css 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824
  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. textarea.x-form-field{
  11. background-color: #34383f;
  12. }
  13. .x-btn-default-small-menu-active .x-btn-inner {
  14. color: #ffffff;
  15. background-color: #0e70cb;
  16. border-color:#0e70cb;
  17. background-image: -webkit-linear-gradient(top,#0e70cb,#0e70cb);
  18. }
  19. .x-menu-item-active .x-menu-item-link {
  20. color: #ffffff;
  21. background-color: #0e70cb;
  22. border-color:#0e70cb;
  23. background-image: -webkit-linear-gradient(top,#0e70cb,#0e70cb);
  24. }
  25. .amap-marker .amap-marker-content div{
  26. font-family: DS-Digital-Italic;
  27. color: #ffffff!important;
  28. font-size: 12px!important;
  29. }
  30. .x-btn-arrow {
  31. color: #47ccfd; font-size: 20px;
  32. }
  33. .usky_btn {
  34. background:url(usky/usky.png) left top no-repeat !important;
  35. }
  36. .usky_logo {
  37. background:url(usky/logo.png) left top no-repeat !important
  38. }
  39. .ok_btn {
  40. background:url(common/famicons/accept.png) left top no-repeat !important;
  41. }
  42. .cancel_btn {
  43. background:url(common/famicons/cancel.png) left top no-repeat !important;
  44. }
  45. .filter_btn {
  46. background:url(common/filter-x.gif) left top no-repeat !important;
  47. }
  48. .back_btn {
  49. background:url(common/back.gif) left top no-repeat !important;
  50. }
  51. .append_btn {
  52. background:url(common/famicons/add.png) left top no-repeat !important;
  53. }
  54. .modify_btn {
  55. background:url(common/famicons/application_edit.png) left top no-repeat !important;
  56. }
  57. .delete_btn {
  58. background:url(common/famicons/application_form_delete.png) left top no-repeat !important;
  59. }
  60. .export_btn {
  61. background:url(common/save.gif) left top no-repeat !important;
  62. }
  63. .menu_access_btn {
  64. background:url(usky/menu_access_btn.png) left top no-repeat !important;
  65. }
  66. .menu_alarm_btn {
  67. background:url(usky/menu_alarm_btn.png) left top no-repeat !important;
  68. }
  69. .menu_around_btn {
  70. background:url(usky/menu_around_btn.png) left top no-repeat !important;
  71. }
  72. .main_device_btn {
  73. background:url(common/device_main.png) left top no-repeat !important;
  74. }
  75. .menu_data_btn {
  76. background:url(usky/menu_data_btn.png) left top no-repeat !important;
  77. }
  78. .menu_device_btn {
  79. background:url(usky/menu_device_btn.png) left top no-repeat !important;
  80. }
  81. .menu_efire_btn {
  82. background:url(usky/menu_efire_btn.png) left top no-repeat !important;
  83. }
  84. .menu_fire_btn {
  85. background:url(usky/menu_fire_btn.png) left top no-repeat !important;
  86. }
  87. .menu_frontpage_btn {
  88. background:url(usky/menu_frontpage_btn.png) left top no-repeat !important;
  89. }
  90. .menu_map_btn {
  91. background:url(usky/menu_map_btn.png) left top no-repeat !important;
  92. }
  93. .menu_power_btn {
  94. background:url(usky/menu_power_btn.png) left top no-repeat !important;
  95. }
  96. .menu_statistics_btn {
  97. background:url(usky/menu_statistics_btn.png) left top no-repeat !important;
  98. }
  99. .menu_sysinfo_btn {
  100. background:url(usky/menu_sysinfo_btn.png) left top no-repeat !important;
  101. }
  102. .menu_theme_btn {
  103. background:url(usky/menu_theme_btn.png) left top no-repeat !important;
  104. }
  105. .menu_view_btn {
  106. background:url(usky/menu_view_btn.png) left top no-repeat !important;
  107. }
  108. .menu_water_btn {
  109. background:url(usky/menu_water_btn.png) left top no-repeat !important;
  110. }
  111. .menu_work_btn {
  112. background:url(usky/menu_work_btn.png) left top no-repeat !important;
  113. }
  114. .setup_building_btn {
  115. background:url(usky/setup_building_btn.png) left top no-repeat !important;
  116. }
  117. .setup_company_btn {
  118. background:url(usky/setup_company_btn.png) left top no-repeat !important;
  119. }
  120. .setup_interface_btn {
  121. background:url(usky/setup_interface_btn.png) left top no-repeat !important;
  122. }
  123. .setup_iotcard_btn {
  124. background:url(usky/setup_iotcard_btn.png) left top no-repeat !important;
  125. }
  126. .setup_permission_btn {
  127. background:url(usky/setup_permission_btn.png) left top no-repeat !important;
  128. }
  129. .setup_permissiongroup_btn {
  130. background:url(usky/setup_permissiongroup_btn.png) left top no-repeat !important;
  131. }
  132. .setup_pno_btn {
  133. background:url(usky/setup_pno_btn.png) left top no-repeat !important;
  134. }
  135. .setup_unit_btn {
  136. background:url(usky/setup_unit_btn.png) left top no-repeat !important;
  137. }
  138. .setup_user_btn {
  139. background:url(usky/setup_user_btn.png) left top no-repeat !important;
  140. }
  141. .sysinfo_point_btn {
  142. background:url(usky/sysinfo_point_btn.png) left top no-repeat !important;
  143. }
  144. .sysinfo_runtime_btn {
  145. background:url(usky/sysinfo_runtime_btn.png) left top no-repeat !important;
  146. }
  147. .sysinfo_server_btn {
  148. background:url(usky/sysinfo_server_btn.png) left top no-repeat !important;
  149. }
  150. .user_change_btn {
  151. background:url(usky/user_change_btn.png) left top no-repeat !important;
  152. }
  153. .user_logout_btn {
  154. background:url(usky/user_logout_btn.png) left top no-repeat !important;
  155. }
  156. .user_password_btn {
  157. background:url(usky/user_password_btn.png) left top no-repeat !important;
  158. }
  159. .view_level_btn {
  160. background:url(usky/view_level_btn.png) left top no-repeat !important;
  161. }
  162. .view_scope_btn {
  163. background:url(usky/view_scope_btn.png) left top no-repeat !important;
  164. }
  165. .view_sound_btn {
  166. background:url(usky/view_sound_btn.png) left top no-repeat !important;
  167. }
  168. .back_btn {
  169. background:url(common/famicons/arrow_left.png) left top no-repeat !important;
  170. }
  171. .alarm_pie_var {
  172. margin: 0px; overflow: hidden; z-index: 1000; position: absolute; top: 100px; left:20px; border: 0px solid #000;
  173. }
  174. .device_pie_bar {
  175. margin: 0px; overflow: hidden; z-index: 1000; position: absolute; top: 100px; right:20px; border: 0px solid #000;
  176. }
  177. .pie_total {
  178. color:#DDDF0D;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
  179. }
  180. .pie_normal {
  181. color:#31e9ff;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
  182. }
  183. .pie_abnormal {
  184. color:#f66167;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
  185. }
  186. .shadow_black_bak {
  187. text-shadow: 1px 1px 2px #888, 0 0 0 #000;
  188. }
  189. .shadow_white_bak {
  190. text-shadow: 1px 1px 2px #FFF, 0 0 0 #000;
  191. }
  192. .alarm_wrapper {
  193. font-family:微软雅黑, Microsoft YaHei;
  194. margin-top:5px;
  195. position:absolute; top:10px; left:70px; width:660px; z-index:1000; border: 0px solid #000; font-size:20px; font-weight:bold;
  196. }
  197. .alarm_warpper_table {
  198. border:none; width:800px; height:58px; z-index: 1000; position:absolute; top:22px; left:560px; overflow: hidden;border-collapse: collapse;
  199. }
  200. .sub_wrapper_table {
  201. 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;
  202. }
  203. .toplevel {
  204. z-index:20000;
  205. }
  206. .x-item-disabled-new {
  207. background: rgba(0,0,0,0);
  208. color:#ffffff;
  209. }
  210. .active_company {
  211. border: 1px solid rgba(64,85,98,0.7); background: rgba(64,85,98,0.3);
  212. }
  213. .saerch_company_list {
  214. width:300px;
  215. z-index:1001;
  216. font-size: 14px;
  217. font-family:微软雅黑, Microsoft YaHei;
  218. position:absolute;top:80px; right:200px;
  219. }
  220. .bar5 {background: rgba(0,0,0,0.0);z-index:1001;position:absolute; top:50px;right:200px;color: rgba(255,255,255,0.3);}
  221. .bar5 input, .bar5 button {
  222. background: transparent;
  223. }
  224. .bar5 input {
  225. border: 2px solid #27c5ff;
  226. border-radius:10px;
  227. font-size: 14px;
  228. width: 300px;
  229. color: rgba(255,255,255,0.5);
  230. height: 30px;
  231. font-family:微软雅黑, Microsoft YaHei;
  232. }
  233. .bar input::-webkit-input-placeholder{
  234. color:rgba(255,255,255,0.3);
  235. }
  236. .bar input::-moz-placeholder{
  237. color:rgba(255,255,255,0.3);
  238. }
  239. .bar input:-moz-placeholder{
  240. color:rgba(255,255,255,0.3);
  241. }
  242. .bar input:-ms-input-placeholder{
  243. color:rgba(255,255,255,0.3);
  244. }
  245. .bar5 input:focus {
  246. color: rgba(255,255,255,1);
  247. }
  248. .bar5_clear {
  249. background:url(common/close-tmp.gif) no-repeat 50% 50%; -webkit-filter: grayscale(100%);
  250. -moz-filter: grayscale(100%);
  251. -ms-filter: grayscale(100%);
  252. -o-filter: grayscale(100%);
  253. filter: grayscale(100%);
  254. filter: gray;
  255. width:28px; height:28px; z-index: 1001; position:absolute; top:1px; right:2px;cursor:"pointer";
  256. }
  257. .x-panel-header-new {
  258. background-image: none;
  259. background-color: rgba(0,0,0,0.0);
  260. height: 0px;
  261. overflow:hidden;
  262. }
  263. .operation_body {
  264. height:498px;
  265. background: url(operation_bg.png) repeat-x;
  266. overflow:hidden;
  267. }
  268. .operation_dock_l {
  269. position: absolute;
  270. top: 20px;
  271. left: 20px;
  272. width: 118px;
  273. height: 462px;
  274. background: url(operation_docker_l.png) no-repeat;
  275. }
  276. .operation_dock_r {
  277. position: absolute;
  278. top: 20px;
  279. right: 20px;
  280. width: 118px;
  281. height: 462px;
  282. background: url(operation_docker_r.png) no-repeat;
  283. }
  284. .operation_title_icon{
  285. position:absolute;
  286. top: 86px;
  287. left: 91px;
  288. }
  289. .operation_title_text {
  290. position:absolute;
  291. top: 100px;
  292. left: 146px;
  293. width: 300px;
  294. height: 30px;
  295. font-size: 24px;
  296. color: #6dcffc;
  297. z-index锛�1000锛�
  298. font-family:微软雅黑, Microsoft YaHei;
  299. }
  300. .operation_label_1 {
  301. position:absolute;
  302. top:185px;
  303. left:90px;
  304. color:#dcdcdc;
  305. font-size:16px;
  306. font-family:微软雅黑, Microsoft YaHei;
  307. }
  308. .operation_label_2 {
  309. position:absolute;
  310. top:255px;
  311. left:90px;
  312. color:#dcdcdc;
  313. font-size:16px;
  314. font-family:微软雅黑, Microsoft YaHei;
  315. }
  316. .operation_label_3 {
  317. position:absolute;
  318. top:325px;
  319. left:90px;
  320. color:#dcdcdc;
  321. font-size:16px;
  322. font-family:微软雅黑, Microsoft YaHei;
  323. }
  324. .operation_label_4 {
  325. position:absolute;
  326. top:395px;
  327. left:90px;
  328. color:#dcdcdc;
  329. font-size:16px;
  330. font-family:微软雅黑, Microsoft YaHei;
  331. }
  332. .operation_num_1 {
  333. position:absolute;
  334. top:166px;
  335. left:146px;
  336. color:#ffffff;
  337. font-size:34px;
  338. font-family:微软雅黑, Microsoft YaHei;
  339. width:212px;
  340. height:47px;
  341. background:url(operation_item.png) no-repeat;
  342. padding:2px 0px 0px 9px;
  343. }
  344. .operation_num_2 {
  345. position:absolute;
  346. top:236px;
  347. left:146px;
  348. color:#31e9ff;
  349. font-size:34px;
  350. font-family:微软雅黑, Microsoft YaHei;
  351. width:212px;
  352. height:47px;
  353. background:url(operation_item.png) no-repeat;
  354. padding:2px 0px 0px 9px;
  355. }
  356. .operation_num_3 {
  357. position:absolute;
  358. top:306px;
  359. left:146px;
  360. color:#f66167;
  361. font-size:34px;
  362. font-family:微软雅黑, Microsoft YaHei;
  363. width:212px;
  364. height:47px;
  365. background:url(operation_item.png) no-repeat;
  366. padding:2px 0px 0px 9px;
  367. }
  368. .operation_num_4 {
  369. position:absolute;
  370. top:376px;
  371. left:146px;
  372. color:#f6ff67;
  373. font-size:34px;
  374. font-family:微软雅黑, Microsoft YaHei;
  375. width:212px;
  376. height:47px;
  377. background:url(operation_item.png) no-repeat;
  378. padding:2px 0px 0px 9px;
  379. }
  380. .operation_label_11 {
  381. position:absolute;
  382. top:185px;
  383. left:90px;
  384. color:#dcdcdc;
  385. font-size:16px;
  386. font-family:微软雅黑, Microsoft YaHei;
  387. }
  388. .operation_label_12 {
  389. position:absolute;
  390. top:255px;
  391. left:90px;
  392. color:#dcdcdc;
  393. font-size:16px;
  394. font-family:微软雅黑, Microsoft YaHei;
  395. }
  396. .operation_label_13 {
  397. position:absolute;
  398. top:325px;
  399. left:90px;
  400. color:#dcdcdc;
  401. font-size:16px;
  402. font-family:微软雅黑, Microsoft YaHei;
  403. }
  404. .operation_label_14 {
  405. position:absolute;
  406. top:185px;
  407. left:444px;
  408. color:#dcdcdc;
  409. font-size:16px;
  410. font-family:微软雅黑, Microsoft YaHei;
  411. }
  412. .operation_label_15 {
  413. position:absolute;
  414. top:255px;
  415. left:444px;
  416. color:#dcdcdc;
  417. font-size:16px;
  418. font-family:微软雅黑, Microsoft YaHei;
  419. }
  420. .operation_label_16 {
  421. position:absolute;
  422. top:325px;
  423. left:444px;
  424. color:#dcdcdc;
  425. font-size:16px;
  426. font-family:微软雅黑, Microsoft YaHei;
  427. }
  428. .operation_num_11 {
  429. position:absolute;
  430. top:166px;
  431. left:186px;
  432. color:#ffffff;
  433. font-size:34px;
  434. font-family:微软雅黑, Microsoft YaHei;
  435. width:212px;
  436. height:47px;
  437. background:url(operation_item.png) no-repeat;
  438. padding:2px 0px 0px 9px;
  439. }
  440. .operation_num_12 {
  441. position:absolute;
  442. top:166px;
  443. left:500px;
  444. color:#31e9ff;
  445. display: flex;
  446. justify-content:left;
  447. align-items:Center;
  448. font-size:20px;
  449. font-family:微软雅黑, Microsoft YaHei;
  450. width:212px;
  451. height:47px;
  452. background:url(operation_item.png) no-repeat;
  453. padding:2px 0px 0px 9px;
  454. }
  455. .operation_num_13 {
  456. position:absolute;
  457. top:236px;
  458. left:186px;
  459. color:#f66167;
  460. font-size:34px;
  461. font-family:微软雅黑, Microsoft YaHei;
  462. width:212px;
  463. height:47px;
  464. background:url(operation_item.png) no-repeat;
  465. padding:2px 0px 0px 9px;
  466. }
  467. .operation_num_14 {
  468. position:absolute;
  469. top:236px;
  470. left:500px;
  471. color:#31e9ff;
  472. display: flex;
  473. justify-content:left;
  474. align-items:Center;
  475. font-size:20px;
  476. font-family:微软雅黑, Microsoft YaHei;
  477. width:212px;
  478. height:47px;
  479. background:url(operation_item.png) no-repeat;
  480. padding:2px 0px 0px 9px;
  481. }
  482. .operation_num_15 {
  483. position:absolute;
  484. top:306px;
  485. left:186px;
  486. color:#f6ff67;
  487. font-size:34px;
  488. font-family:微软雅黑, Microsoft YaHei;
  489. width:212px;
  490. height:47px;
  491. background:url(operation_item.png) no-repeat;
  492. padding:2px 0px 0px 9px;
  493. }
  494. .operation_num_16 {
  495. position:absolute;
  496. top:306px;
  497. left:500px;
  498. color:#31e9ff;
  499. display: flex;
  500. justify-content:left;
  501. align-items:Center;
  502. font-size:20px;
  503. font-family:微软雅黑, Microsoft YaHei;
  504. width:212px;
  505. height:47px;
  506. background:url(operation_item.png) no-repeat;
  507. padding:2px 0px 0px 9px;
  508. }
  509. .operation_pie_bg {
  510. position:absolute;
  511. top:116px;
  512. left:410px;
  513. width:280px;
  514. height:280px;
  515. background:url(operation_pie_bg.gif) no-repeat;
  516. }
  517. .operation_pie {
  518. position:absolute;
  519. top:158px;
  520. left:452px;
  521. width:196px;
  522. height:196px;
  523. z-index:100;
  524. }
  525. .operation_pie_title {
  526. position:absolute;
  527. top:365px;
  528. left:526px;
  529. width:70px;
  530. height:20px;
  531. z-index:200;
  532. color:#dcdcdc;
  533. font-size:16px;
  534. font-family:微软雅黑, Microsoft YaHei;
  535. }
  536. .operation_area_bg {
  537. position:absolute;
  538. top:57px;
  539. left:750px;
  540. width:1100px;
  541. height:384px;
  542. background: url(operation_area_bg.gif) no-repeat;
  543. }
  544. .operation_area {
  545. position:absolute;
  546. top:116px;
  547. left:800px;
  548. width:1011px;
  549. height:300px;
  550. z-index:200;
  551. }
  552. .fp_backbtn {
  553. position:absolute;
  554. top:90px;
  555. left:100px;
  556. z-index: 500;
  557. width:133px;
  558. height:46px;
  559. background: url(back.png) no-repeat;
  560. display:none;
  561. cursor:pointer;
  562. }
  563. .mask_left {
  564. position:absolute;
  565. top:0px;
  566. left:0px;
  567. width:630px;
  568. z-index: 200;
  569. background: url(mask_l.png) repeat-y;
  570. }
  571. .mask_right {
  572. position:absolute;
  573. top:0px;
  574. right:0px;
  575. width:630px;
  576. z-index: 200;
  577. background: url(mask_r.png) repeat-y;
  578. }
  579. .mask_top {
  580. position:absolute;
  581. top:0px;
  582. left:0px;
  583. height:100px;
  584. z-index: 200;
  585. background: url(mask_t.png) repeat-x;
  586. }
  587. .mask_bottom {
  588. position:absolute;
  589. left:0px;
  590. height:100px;
  591. z-index: 200;
  592. background: url(mask_b.png) repeat-x;
  593. }
  594. .map_header {
  595. position:absolute;
  596. top:0px;
  597. width:740px;
  598. height:0px;
  599. z-index: 1000;
  600. background: url(icons/map_header2.png) no-repeat;
  601. }
  602. .amap-marker-label{
  603. border: 0;
  604. background-color: rgba(0,0,0,0.0);
  605. }
  606. .info{
  607. position: relative;
  608. top: 0;
  609. right: 0;
  610. min-width: 0;
  611. color:#31e9ff;
  612. border-left: 2px solid #50f7ed;
  613. border-bottom: 2px solid #50f7ed;
  614. font-size:16px;
  615. font-weight:bold;
  616. font-family:微软雅黑, Microsoft YaHei;
  617. border-image: -webkit-linear-gradient(70deg,#50f7ed ,transparent) 0 0 2 2;
  618. border-image: -moz-linear-gradient(70deg,#50f7ed,transparent) 0 0 2 2;
  619. border-image: linear-gradient(70deg,#50f7ed,transparent) 0 0 2 2;
  620. background-color: rgba(16,56,110,0.6);
  621. }
  622. .info_label{
  623. margin:0px;
  624. padding:0px;
  625. font-size:16px;
  626. font-weight:bold;
  627. font-family:微软雅黑, Microsoft YaHei;
  628. border-image: -webkit-linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
  629. border-image: -moz-linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
  630. border-image: linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
  631. background-color: transparent;
  632. }
  633. .info_title{
  634. position: relative;
  635. top:0px;
  636. left:12px;
  637. width:179px;
  638. height:44px;
  639. font-size:16px;
  640. font-weight:bold;
  641. font-family:微软雅黑, Microsoft YaHei;
  642. color:#31e9ff;
  643. overflow:hidden;
  644. display:flex;
  645. }
  646. .info_body0{
  647. position: absolute;
  648. top: 44px;
  649. left:12px;
  650. width:179px;
  651. height:20px;
  652. color:#ffffff;
  653. font-size:14px;
  654. font-family:微软雅黑, Microsoft YaHei;
  655. overflow:hidden;
  656. display:flex;
  657. }
  658. .info_body1{
  659. position: absolute;
  660. top: 64px;
  661. left:12px;
  662. width:179px;
  663. height:20px;
  664. color:#ffffff;
  665. font-size:14px;
  666. font-family:微软雅黑, Microsoft YaHei;
  667. overflow:hidden;
  668. display:flex;
  669. }
  670. .info_body2{
  671. position: absolute;
  672. top: 84px;
  673. left:12px;
  674. width:179px;
  675. height:20px;
  676. color:#ffffff;
  677. font-size:14px;
  678. font-family:微软雅黑, Microsoft YaHei;
  679. overflow:hidden;
  680. display:flex;
  681. }
  682. .info_btn{
  683. position: absolute;
  684. top: 116px;
  685. left:12px;
  686. width:112px;
  687. height:21px;
  688. cursor:pointer;
  689. background: url(icons/detail_btn.png) no-repeat;
  690. text-align:center;
  691. color:#0f386e;
  692. font-size:12px;
  693. font-weight:bold;
  694. font-family:微软雅黑, Microsoft YaHei;
  695. padding-top:2px;
  696. }
  697. .data_bar_title {
  698. font-size:16px;
  699. font-weight:bold;
  700. font-family:微软雅黑, Microsoft YaHei;
  701. color:#ffffff;
  702. height:32px;
  703. cursor:pointer;
  704. }
  705. .data_bar_total_label {
  706. font-size:12px;
  707. font-family:微软雅黑, Microsoft YaHei;
  708. color:#ffffff;
  709. height:32px;
  710. cursor:pointer;
  711. }
  712. .data_bar_total_number {
  713. font-size:18px;
  714. font-family:微软雅黑, Microsoft YaHei;
  715. color:#31e9ff;
  716. height:32px;
  717. cursor:pointer;
  718. }
  719. .data_bar_alarm_label {
  720. font-size:12px;
  721. font-family:微软雅黑, Microsoft YaHei;
  722. color:#ffffff;
  723. height:42px;
  724. cursor:pointer;
  725. }
  726. .data_bar_alarm_number {
  727. font-size:18px;
  728. font-family:微软雅黑, Microsoft YaHei;
  729. color:#f66167;
  730. height:42px;
  731. cursor:pointer;
  732. }
  733. .align_right {
  734. text-align:right;
  735. }
  736. .device_info_title {
  737. margin-top:15px;
  738. font-size:16px;
  739. font-weight:bold;
  740. font-family:微软雅黑, Microsoft YaHei;
  741. color:#ffffff;
  742. cursor:pointer;
  743. }
  744. .device_info {
  745. font-size:10px;
  746. font-family:微软雅黑, Microsoft YaHei;
  747. color:#ffffff;
  748. cursor:pointer;
  749. }
  750. .device_confirm_num0 {
  751. color:#ffffff;
  752. font-size:16px;
  753. cursor:pointer;
  754. }
  755. .device_confirm_num1 {
  756. color:#5ee7b8;
  757. font-size:16px;
  758. cursor:pointer;
  759. }
  760. .device_confirm_num2 {
  761. color:#ea924a;
  762. font-size:16px;
  763. cursor:pointer;
  764. }
  765. .device_confirm_num3 {
  766. color:#ffffff;
  767. font-size:14px;
  768. cursor:pointer;
  769. }
  770. .red_color{
  771. color:#f66167
  772. }
  773. .default_color{
  774. color:#000000
  775. }
  776. .data_bar_area{
  777. top:70px;
  778. left:34px;
  779. position: absolute;
  780. z-index:800;
  781. overflow-x:none;
  782. overflow-y:auto;
  783. width:386px;
  784. height:891px;
  785. cursor:pointer;
  786. }
  787. .data_bar_area::-webkit-scrollbar{
  788. width:6px;
  789. height:100%;
  790. }
  791. .data_bar_area::-webkit-scrollbar-thumb{
  792. width:6px;
  793. height:60px;
  794. background-color:rgba(0,130,255,0.6);
  795. border-radius:5px;
  796. }
  797. .data_bar_area::-webkit-scrollbar-track
  798. {
  799. border-radius: 10px;
  800. background-color: rgba(0,0,0,.3);
  801. }
  802. .alarm_tab_area {
  803. position: absolute;
  804. right:60px;
  805. top:100px;
  806. width:476px;
  807. z-index:500;
  808. overflow-x:none;
  809. overflow-y:auto;
  810. }
  811. .alarm_tab_area::-webkit-scrollbar{
  812. width:6px;
  813. height:100%;
  814. }
  815. .alarm_tab_area::-webkit-scrollbar-thumb{
  816. width:6px;
  817. height:60px;
  818. background-color:rgba(0,130,255,0.6);
  819. border-radius:5px;
  820. }
  821. .alarm_tab_area::-webkit-scrollbar-track
  822. {
  823. border-radius: 10px;
  824. background-color: rgba(0,0,0,.3);
  825. }
  826. .alarm_tab {
  827. position: absolute;
  828. left:0px;
  829. top:0px;
  830. width:456px;
  831. height:132px;
  832. background:url(icons/alarm_tab.png) no-repeat;
  833. z-index:500;
  834. cursor:pointer;
  835. }
  836. .alarm_tab_title {
  837. position:absolute;
  838. top:24px;
  839. left:38px;
  840. font-family:微软雅黑, Microsoft YaHei;
  841. font-size:16px;
  842. font-weight:bold;
  843. color:#31e9ff;
  844. width:320px;
  845. }
  846. .alarm_tab_time {
  847. position:absolute;
  848. top:50px;
  849. left:38px;
  850. font-family:微软雅黑, Microsoft YaHei;
  851. font-size:12px;
  852. color:#dcdcdc;
  853. width:270px;
  854. }
  855. .alarm_tab_data {
  856. position:absolute;
  857. top:70px;
  858. left:38px;
  859. font-family:微软雅黑, Microsoft YaHei;
  860. font-size:12px;
  861. color:#dcdcdc;
  862. width:270px;
  863. height:30px;
  864. }
  865. .alarm_tab_icon {
  866. position:absolute;
  867. top:33px;
  868. right:56px;
  869. }
  870. .alarm_icon_01 {
  871. background:url(icons/alarm_tab_01.gif) no-repeat;
  872. }
  873. .alarm_icon_02 {
  874. background:url(icons/alarm_tab_02.gif) no-repeat;
  875. }
  876. .alarm_icon_03 {
  877. background:url(icons/alarm_tab_03.gif) no-repeat;
  878. }
  879. .alarm_icon_04 {
  880. background:url(icons/alarm_tab_04.gif) no-repeat;
  881. }
  882. .map_btn {
  883. cursor:pointer;
  884. z-index:500;
  885. }
  886. .map_btn_bigger_off {
  887. position:absolute;
  888. bottom:66px;
  889. right:605px;
  890. width:21px;
  891. height:21px;
  892. background:url(icons/bigger_off.png) no-repeat;
  893. }
  894. .map_btn_bigger_on {
  895. position:absolute;
  896. bottom:66px;
  897. right:605px;
  898. width:21px;
  899. height:21px;
  900. background:url(icons/bigger_on.png) no-repeat;
  901. }
  902. .map_btn_smaller_off {
  903. position:absolute;
  904. bottom:66px;
  905. right:575px;
  906. width:21px;
  907. height:21px;
  908. background:url(icons/smaller_off.png) no-repeat;
  909. }
  910. .map_btn_smaller_on {
  911. position:absolute;
  912. bottom:66px;
  913. right:575px;
  914. width:21px;
  915. height:21px;
  916. background:url(icons/smaller_on.png) no-repeat;
  917. }
  918. .map_btn_showlaebl_off {
  919. position:absolute;
  920. bottom:61px;
  921. right:455px;
  922. width:101px;
  923. height:31px;
  924. background:url(icons/show_label_off.png) no-repeat;
  925. }
  926. .map_btn_showlaebl_on {
  927. position:absolute;
  928. bottom:61px;
  929. right:455px;
  930. width:101px;
  931. height:31px;
  932. background:url(icons/show_label_on.png) no-repeat;
  933. }
  934. .map_btn_hidelabel {
  935. position:absolute;
  936. bottom:61px;
  937. right:455px;
  938. width:101px;
  939. height:31px;
  940. background:url(icons/hide_label.png) no-repeat;
  941. }
  942. .map_btn_left_off {
  943. position:absolute;
  944. bottom:61px;
  945. right:365px;
  946. width:80px;
  947. height:31px;
  948. background:url(icons/map_left_off.png) no-repeat;
  949. }
  950. .map_btn_left_on {
  951. position:absolute;
  952. bottom:61px;
  953. right:365px;
  954. width:80px;
  955. height:31px;
  956. background:url(icons/map_left_on.png) no-repeat;
  957. }
  958. .map_btn_right_off {
  959. position:absolute;
  960. bottom:61px;
  961. right:275px;
  962. width:80px;
  963. height:31px;
  964. background:url(icons/map_right_off.png) no-repeat;
  965. }
  966. .map_btn_right_on {
  967. position:absolute;
  968. bottom:61px;
  969. right:275px;
  970. width:80px;
  971. height:31px;
  972. background:url(icons/map_right_on.png) no-repeat;
  973. }
  974. .map_btn_high_off {
  975. position:absolute;
  976. bottom:61px;
  977. right:185px;
  978. width:80px;
  979. height:31px;
  980. background:url(icons/view_high_off.png) no-repeat;
  981. }
  982. .map_btn_high_on {
  983. position:absolute;
  984. bottom:61px;
  985. right:185px;
  986. width:80px;
  987. height:31px;
  988. background:url(icons/view_high_on.png) no-repeat;
  989. }
  990. .map_btn_low_off {
  991. position:absolute;
  992. bottom:61px;
  993. right:95px;
  994. width:80px;
  995. height:31px;
  996. background:url(icons/view_low_off.png) no-repeat;
  997. }
  998. .map_btn_low_on {
  999. position:absolute;
  1000. bottom:61px;
  1001. right:95px;
  1002. width:80px;
  1003. height:31px;
  1004. background:url(icons/view_low_on.png) no-repeat;
  1005. }
  1006. .hiden {
  1007. display:none;
  1008. }
  1009. .shown {
  1010. display:block;
  1011. }
  1012. .proform2_bg_tl{
  1013. position:absolute;
  1014. width:928px;
  1015. height:752px;
  1016. top:0px;
  1017. left:0px;
  1018. background:url(icons/proform2_tl.png) no-repeat;
  1019. }
  1020. .proform_bg_tl{
  1021. position:absolute;
  1022. width:928px;
  1023. height:752px;
  1024. top:0px;
  1025. left:0px;
  1026. background:url(icons/proform_tl.png) no-repeat;
  1027. }
  1028. .proform_bg_tm{
  1029. position:absolute;
  1030. top:0px;
  1031. left:928px;
  1032. height:752px;
  1033. background:url(icons/proform_tm.png) repeat-x;
  1034. }
  1035. .proform_bg_tr {
  1036. position:absolute;
  1037. top:0px;
  1038. right:0px;
  1039. width:442px;
  1040. height:752px;
  1041. background:url(icons/proform_tr.png) no-repeat;
  1042. }
  1043. .proform_bg_ml {
  1044. position:absolute;
  1045. top:752px;
  1046. left:0px;
  1047. width:928px;
  1048. background:url(icons/proform_ml.png) repeat-y;
  1049. }
  1050. .proform_bg_mm {
  1051. position:absolute;
  1052. top:752px;
  1053. left:928px;
  1054. background:url(icons/proform_mm.png) repeat;
  1055. }
  1056. .proform_bg_mr {
  1057. position:absolute;
  1058. top:752px;
  1059. right:0px;
  1060. width:442px;
  1061. background:url(icons/proform_mr.png) repeat-y;
  1062. }
  1063. .proform_bg_bl {
  1064. position:absolute;
  1065. bottom:0px;
  1066. left:0px;
  1067. width:928px;
  1068. height:170px;
  1069. background:url(icons/proform_bl.png) no-repeat;
  1070. }
  1071. .proform_bg_bm {
  1072. position:absolute;
  1073. bottom:0px;
  1074. left:928px;
  1075. height:170px;
  1076. background:url(icons/proform_bm.png) repeat-x;
  1077. }
  1078. .proform_bg_br {
  1079. position:absolute;
  1080. bottom:0px;
  1081. right:0px;
  1082. width:442px;
  1083. height:170px;
  1084. background:url(icons/proform_br.png) no-repeat;
  1085. }
  1086. .proform_menu_1 {
  1087. width:234px;
  1088. height:82px;
  1089. background:url(icons/proform_m3.png) no-repeat;
  1090. cursor:pointer;
  1091. position:absolute;
  1092. top:167px;
  1093. left:96px;
  1094. }
  1095. .proform_menu_1_on {
  1096. width:234px;
  1097. height:82px;
  1098. background:url(icons/proform_m3_on.png) no-repeat;
  1099. cursor:pointer;
  1100. position:absolute;
  1101. top:167px;
  1102. left:96px;
  1103. }
  1104. .proform_menu_2 {
  1105. width:234px;
  1106. height:82px;
  1107. background:url(icons/proform_m1.png) no-repeat;
  1108. cursor:pointer;
  1109. position:absolute;
  1110. top:239px;
  1111. left:96px;
  1112. }
  1113. .proform_menu_2_on {
  1114. width:234px;
  1115. height:82px;
  1116. background:url(icons/proform_m1_on.png) no-repeat;
  1117. cursor:pointer;
  1118. position:absolute;
  1119. top:239px;
  1120. left:96px;
  1121. }
  1122. .proform_menu_3 {
  1123. width:234px;
  1124. height:82px;
  1125. background:url(icons/proform_m5.png) no-repeat;
  1126. cursor:pointer;
  1127. position:absolute;
  1128. top:326px;
  1129. left:110px;
  1130. }
  1131. .proform_menu_3_on {
  1132. width:234px;
  1133. height:82px;
  1134. background:url(icons/proform_m5_on.png) no-repeat;
  1135. cursor:pointer;
  1136. position:absolute;
  1137. top:326px;
  1138. left:110px;
  1139. }
  1140. .proform_menu_4 {
  1141. width:234px;
  1142. height:82px;
  1143. background:url(icons/proform_m6.png) no-repeat;
  1144. cursor:pointer;
  1145. position:absolute;
  1146. top:383px;
  1147. left:96px;
  1148. }
  1149. .proform_menu_4_on {
  1150. width:234px;
  1151. height:82px;
  1152. background:url(icons/proform_m6_on.png) no-repeat;
  1153. cursor:pointer;
  1154. position:absolute;
  1155. top:383px;
  1156. left:96px;
  1157. }
  1158. .proform_menu_5 {
  1159. width:234px;
  1160. height:82px;
  1161. background:url(icons/proform_m2.png) no-repeat;
  1162. cursor:pointer;
  1163. position:absolute;
  1164. top:472px;
  1165. left:110px;
  1166. }
  1167. .proform_menu_5_on {
  1168. width:234px;
  1169. height:82px;
  1170. background:url(icons/proform_m2_on.png) no-repeat;
  1171. cursor:pointer;
  1172. position:absolute;
  1173. top:472px;
  1174. left:110px;
  1175. }
  1176. .proform_menu_6 {
  1177. width:234px;
  1178. height:82px;
  1179. background:url(icons/proform_m4.png) no-repeat;
  1180. cursor:pointer;
  1181. position:absolute;
  1182. top:527px;
  1183. left:96px;
  1184. }
  1185. .proform_menu_6_on {
  1186. width:234px;
  1187. height:82px;
  1188. background:url(icons/proform_m4_on.png) no-repeat;
  1189. cursor:pointer;
  1190. position:absolute;
  1191. top:527px;
  1192. left:96px;
  1193. }
  1194. .proform_menu_7 {
  1195. width:234px;
  1196. height:82px;
  1197. background:url(icons/proform_m7.png) no-repeat;
  1198. cursor:pointer;
  1199. position:absolute;
  1200. top:599px;
  1201. left:96px;
  1202. }
  1203. .proform_menu_7_on {
  1204. width:234px;
  1205. height:82px;
  1206. background:url(icons/proform_m7_on.png) no-repeat;
  1207. cursor:pointer;
  1208. position:absolute;
  1209. top:599px;
  1210. left:96px;
  1211. }
  1212. .proform2_menu_1 {
  1213. width:234px;
  1214. height:82px;
  1215. background:url(icons/proform2_m3.png) no-repeat;
  1216. cursor:pointer;
  1217. position:absolute;
  1218. top:167px;
  1219. left:96px;
  1220. }
  1221. .proform2_menu_1_on {
  1222. width:234px;
  1223. height:82px;
  1224. background:url(icons/proform2_m3_on.png) no-repeat;
  1225. cursor:pointer;
  1226. position:absolute;
  1227. top:167px;
  1228. left:96px;
  1229. }
  1230. .proform2_menu_2 {
  1231. width:234px;
  1232. height:82px;
  1233. background:url(icons/proform2_m1.png) no-repeat;
  1234. cursor:pointer;
  1235. position:absolute;
  1236. top:239px;
  1237. left:96px;
  1238. }
  1239. .proform2_menu_2_on {
  1240. width:234px;
  1241. height:82px;
  1242. background:url(icons/proform2_m1_on.png) no-repeat;
  1243. cursor:pointer;
  1244. position:absolute;
  1245. top:239px;
  1246. left:96px;
  1247. }
  1248. .proform2_menu_3 {
  1249. width:234px;
  1250. height:82px;
  1251. background:url(icons/proform_m5.png) no-repeat;
  1252. cursor:pointer;
  1253. position:absolute;
  1254. top:311px;
  1255. left:96px;
  1256. }
  1257. .proform2_menu_3_on {
  1258. width:234px;
  1259. height:82px;
  1260. background:url(icons/proform_m5_on.png) no-repeat;
  1261. cursor:pointer;
  1262. position:absolute;
  1263. top:311px;
  1264. left:96px;
  1265. }
  1266. .proform2_menu_4 {
  1267. width:234px;
  1268. height:82px;
  1269. background:url(icons/proform2_m6.png) no-repeat;
  1270. cursor:pointer;
  1271. position:absolute;
  1272. top:383px;
  1273. left:96px;
  1274. }
  1275. .proform2_menu_4_on {
  1276. width:234px;
  1277. height:82px;
  1278. background:url(icons/proform2_m6_on.png) no-repeat;
  1279. cursor:pointer;
  1280. position:absolute;
  1281. top:383px;
  1282. left:96px;
  1283. }
  1284. .proform2_menu_5 {
  1285. width:234px;
  1286. height:82px;
  1287. background:url(icons/proform2_m2.png) no-repeat;
  1288. cursor:pointer;
  1289. position:absolute;
  1290. top:455px;
  1291. left:96px;
  1292. }
  1293. .proform2_menu_5_on {
  1294. width:234px;
  1295. height:82px;
  1296. background:url(icons/proform2_m2_on.png) no-repeat;
  1297. cursor:pointer;
  1298. position:absolute;
  1299. top:455px;
  1300. left:96px;
  1301. }
  1302. .proform2_menu_6 {
  1303. width:234px;
  1304. height:82px;
  1305. background:url(icons/proform2_m4.png) no-repeat;
  1306. cursor:pointer;
  1307. position:absolute;
  1308. top:527px;
  1309. left:96px;
  1310. }
  1311. .proform2_menu_6_on {
  1312. width:234px;
  1313. height:82px;
  1314. background:url(icons/proform2_m4_on.png) no-repeat;
  1315. cursor:pointer;
  1316. position:absolute;
  1317. top:527px;
  1318. left:96px;
  1319. }
  1320. .proform2_menu_7 {
  1321. width:234px;
  1322. height:82px;
  1323. background:url(icons/proform2_m7.png) no-repeat;
  1324. cursor:pointer;
  1325. position:absolute;
  1326. top:599px;
  1327. left:96px;
  1328. }
  1329. .proform2_menu_7_on {
  1330. width:234px;
  1331. height:82px;
  1332. background:url(icons/proform2_m7_on.png) no-repeat;
  1333. cursor:pointer;
  1334. position:absolute;
  1335. top:599px;
  1336. left:96px;
  1337. }
  1338. .proform_fliter_btn {
  1339. position:absolute;
  1340. width:120px;
  1341. height:26px;
  1342. background:url(icons/proform_fliter_btn.png) no-repeat;
  1343. cursor:pointer;
  1344. top:162px;
  1345. right:440px;
  1346. }
  1347. .proform_fliter_btn_on {
  1348. position:absolute;
  1349. width:120px;
  1350. height:26px;
  1351. background:url(icons/proform_fliter_btn_on.png) no-repeat;
  1352. cursor:pointer;
  1353. top:162px;
  1354. right:440px;
  1355. }
  1356. .proform_modify_btn {
  1357. position:absolute;
  1358. width:84px;
  1359. height:26px;
  1360. background:url(icons/proform_modify_btn.png) no-repeat;
  1361. cursor:pointer;
  1362. top:162px;
  1363. right:336px;
  1364. }
  1365. .proform_modify_btn_on {
  1366. position:absolute;
  1367. width:84px;
  1368. height:26px;
  1369. background:url(icons/proform_modify_btn_on.png) no-repeat;
  1370. cursor:pointer;
  1371. top:162px;
  1372. right:336px;
  1373. }
  1374. .proform_append_btn {
  1375. position:absolute;
  1376. width:84px;
  1377. height:26px;
  1378. background:url(icons/proform_append_btn.png) no-repeat;
  1379. cursor:pointer;
  1380. top:162px;
  1381. right:232px;
  1382. }
  1383. .proform_append_btn_on {
  1384. position:absolute;
  1385. width:84px;
  1386. height:26px;
  1387. background:url(icons/proform_append_btn_on.png) no-repeat;
  1388. cursor:pointer;
  1389. top:162px;
  1390. right:232px;
  1391. }
  1392. .proform_delete_btn {
  1393. position:absolute;
  1394. width:84px;
  1395. height:26px;
  1396. background:url(icons/proform_delete_btn.png) no-repeat;
  1397. cursor:pointer;
  1398. top:162px;
  1399. right:128px;
  1400. }
  1401. .proform_delete_btn_on {
  1402. position:absolute;
  1403. width:84px;
  1404. height:26px;
  1405. background:url(icons/proform_delete_btn_on.png) no-repeat;
  1406. cursor:pointer;
  1407. top:162px;
  1408. right:128px;
  1409. }
  1410. .company_bg_tl{
  1411. position:absolute;
  1412. width:1414px;
  1413. height:762px;
  1414. top:0px;
  1415. left:0px;
  1416. background:url(icons/company_tl.png) no-repeat;
  1417. z-index:10;
  1418. }
  1419. .company_bg_YP {
  1420. position: absolute;
  1421. width: 1414px;
  1422. height: 762px;
  1423. top: 0px;
  1424. left: 0px;
  1425. background: url(icons/company_tl_yp.png) no-repeat;
  1426. z-index: 10;
  1427. }
  1428. .company_bg_tm {
  1429. position:absolute;
  1430. height:762px;
  1431. top:0px;
  1432. left:1414px;
  1433. background:url(icons/company_tm.png) repeat-x;
  1434. z-index:10;
  1435. }
  1436. .company_bg_tr {
  1437. position:absolute;
  1438. width:406px;
  1439. height:762px;
  1440. top:0px;
  1441. right:0px;
  1442. background:url(icons/company_tr.png) no-repeat;
  1443. z-index:10;
  1444. }
  1445. .company_bg_ml{
  1446. position:absolute;
  1447. width:1414px;
  1448. top:762px;
  1449. left:0px;
  1450. background:url(icons/company_ml.png) repeat-y;
  1451. z-index:10;
  1452. }
  1453. .company_bg_mm {
  1454. position:absolute;
  1455. left:1414px;
  1456. top:762px;
  1457. background:url(icons/company_mm.png) repeat;
  1458. z-index:10;
  1459. }
  1460. .company_bg_mr {
  1461. position:absolute;
  1462. width:406px;
  1463. top:762px;
  1464. right:0px;
  1465. background:url(icons/company_mr.png) repeat-y;
  1466. z-index:10;
  1467. }
  1468. .company_bg_bl{
  1469. position:absolute;
  1470. width:1414px;
  1471. height:170px;
  1472. bottom:0px;
  1473. left:0px;
  1474. background:url(icons/company_bl.png) no-repeat;
  1475. z-index:10;
  1476. }
  1477. .company_bg_bm {
  1478. position:absolute;
  1479. height:170px;
  1480. width:100px;
  1481. bottom:0px;
  1482. left:1414px;
  1483. background:url(icons/company_bm.png) repeat-x;
  1484. z-index:10;
  1485. }
  1486. .company_bg_br {
  1487. position:absolute;
  1488. height:170px;
  1489. width:406px;
  1490. bottom:0px;
  1491. right:0px;
  1492. background:url(icons/company_br.png) no-repeat;
  1493. z-index:10;
  1494. }
  1495. .bak_to_front {
  1496. position: absolute;
  1497. top:67px;
  1498. left:73px;
  1499. width:110px;
  1500. height:36px;
  1501. background: url(icons/bak_to_front.png) no-repeat;
  1502. z-index:20;
  1503. cursor:pointer;
  1504. }
  1505. .building_level_label{
  1506. position: absolute;
  1507. top:157px;
  1508. left:133px;
  1509. color:#ffffff;
  1510. font-family:微软雅黑, Microsoft YaHei;
  1511. font-size:12px;
  1512. z-index:20;
  1513. }
  1514. .building_level_count{
  1515. margin-left:15px;
  1516. font-family:微软雅黑, Microsoft YaHei;
  1517. font-size:16px;
  1518. font-weight:bold;
  1519. }
  1520. .company_building_on {
  1521. position: absolute;
  1522. top: 120px;
  1523. left:71px;
  1524. width:526px;
  1525. height:620px;
  1526. z-index:20;
  1527. }
  1528. .company_building {
  1529. position: absolute;
  1530. top: 195px;
  1531. left:100px;
  1532. width:536px;
  1533. overflow-x:none;
  1534. overflow-y:auto;
  1535. z-index:20;
  1536. }
  1537. .company_building::-webkit-scrollbar{
  1538. width:6px;
  1539. height:100%;
  1540. }
  1541. .company_building::-webkit-scrollbar-thumb{
  1542. width:6px;
  1543. height:60px;
  1544. background-color:rgba(0,130,255,0.6);
  1545. border-radius:5px;
  1546. }
  1547. .company_building::-webkit-scrollbar-track
  1548. {
  1549. border-radius: 10px;
  1550. background-color: rgba(0,0,0,.3);
  1551. }
  1552. .building_top {
  1553. position: absolute;
  1554. width:400px;
  1555. height:120px;
  1556. }
  1557. .building_top_label {
  1558. position:absolute;
  1559. top:0px;
  1560. left:0px;
  1561. padding-top:31px;
  1562. padding-right:16px;
  1563. text-align:right;
  1564. font-family:微软雅黑, Microsoft YaHei;
  1565. font-size:12px;
  1566. }
  1567. .building_top_icon {
  1568. position:absolute;
  1569. top:0px;
  1570. left:40px;
  1571. width:360px;
  1572. height:120px;
  1573. background: url(icons/bt_icon.png) no-repeat;
  1574. }
  1575. .building_level {
  1576. position: absolute;
  1577. width:400px;
  1578. height:108px;
  1579. }
  1580. .building_level_info {
  1581. position:absolute;
  1582. top:0px;
  1583. left:0px;
  1584. padding-top:20px;
  1585. padding-right:16px;
  1586. text-align:right;
  1587. font-family:微软雅黑, Microsoft YaHei;
  1588. font-size:12px;
  1589. }
  1590. .building_level_icon {
  1591. position:absolute;
  1592. top:0px;
  1593. left:40px;
  1594. width:360px;
  1595. height:108px;
  1596. background: url(icons/bl_icon.png) no-repeat;
  1597. }
  1598. .building_empty_level_icon {
  1599. position:absolute;
  1600. top:0px;
  1601. left:40px;
  1602. width:360px;
  1603. height:108px;
  1604. background: url(icons/empty_icon.png) no-repeat;
  1605. }
  1606. .building_base {
  1607. position: absolute;
  1608. width:400px;
  1609. height:108px;
  1610. }
  1611. .building_base_info {
  1612. position:absolute;
  1613. top:0px;
  1614. left:0px;
  1615. padding-top:20px;
  1616. padding-right:16px;
  1617. text-align:right;
  1618. font-family:微软雅黑, Microsoft YaHei;
  1619. font-size:12px;
  1620. }
  1621. .building_base_icon {
  1622. position:absolute;
  1623. top:0px;
  1624. left:40px;
  1625. width:360px;
  1626. height:108px;
  1627. background: url(icons/bb_icon.png) no-repeat;
  1628. }
  1629. .dev_checkbox {
  1630. width:15px;
  1631. height:15px;
  1632. border:0px solid #0082ff;
  1633. background-color:#0082ff;
  1634. cursor:pointer;
  1635. }
  1636. .dev_few_checkbox {
  1637. width:15px;
  1638. height:15px;
  1639. border:2px solid #0082ff;
  1640. background-color:rgba(0,130,255,.7);
  1641. cursor:pointer;
  1642. }
  1643. .dev_uncheckbox {
  1644. width:15px;
  1645. height:15px;
  1646. border:2px solid #0082ff;
  1647. cursor:pointer;
  1648. }
  1649. .dev_all_checkbox {
  1650. position:absolute;
  1651. top:174px;
  1652. left:688px;
  1653. z-index:20;
  1654. cursor:pointer;
  1655. }
  1656. .dev_all_checklabel {
  1657. position:absolute;
  1658. top:175px;
  1659. left:709px;
  1660. z-index:20;
  1661. font-family:微软雅黑, Microsoft YaHei;
  1662. font-size:12px;
  1663. cursor:pointer;
  1664. }
  1665. .dev_ui_checkbox {
  1666. position:absolute;
  1667. top:214px;
  1668. left:688px;
  1669. z-index:20;
  1670. cursor:pointer;
  1671. }
  1672. .dev_ui_checklabel {
  1673. position:absolute;
  1674. top:215px;
  1675. left:709px;
  1676. z-index:20;
  1677. font-family:微软雅黑, Microsoft YaHei;
  1678. font-size:12px;
  1679. cursor:pointer;
  1680. }
  1681. .dev_sm_checkbox {
  1682. position:absolute;
  1683. top:254px;
  1684. left:688px;
  1685. z-index:20;
  1686. cursor:pointer;
  1687. }
  1688. .dev_sm_checklabel {
  1689. position:absolute;
  1690. top:255px;
  1691. left:709px;
  1692. z-index:20;
  1693. font-family:微软雅黑, Microsoft YaHei;
  1694. font-size:12px;
  1695. cursor:pointer;
  1696. }
  1697. .dev_fc_checkbox {
  1698. position:absolute;
  1699. top:294px;
  1700. left:688px;
  1701. z-index:20;
  1702. cursor:pointer;
  1703. }
  1704. .dev_fc_checklabel {
  1705. position:absolute;
  1706. top:295px;
  1707. left:709px;
  1708. z-index:20;
  1709. font-family:微软雅黑, Microsoft YaHei;
  1710. font-size:12px;
  1711. cursor:pointer;
  1712. }
  1713. .dev_ef_checkbox {
  1714. position:absolute;
  1715. top:334px;
  1716. left:688px;
  1717. z-index:20;
  1718. cursor:pointer;
  1719. }
  1720. .dev_ef_checklabel {
  1721. position:absolute;
  1722. top:335px;
  1723. left:709px;
  1724. z-index:20;
  1725. font-family:微软雅黑, Microsoft YaHei;
  1726. font-size:12px;
  1727. cursor:pointer;
  1728. }
  1729. .dev_wp_checkbox {
  1730. position:absolute;
  1731. top:374px;
  1732. left:688px;
  1733. z-index:20;
  1734. cursor:pointer;
  1735. }
  1736. .dev_wp_checklabel {
  1737. position:absolute;
  1738. top:375px;
  1739. left:709px;
  1740. z-index:20;
  1741. font-family:微软雅黑, Microsoft YaHei;
  1742. font-size:12px;
  1743. cursor:pointer;
  1744. }
  1745. .dev_ll_checkbox {
  1746. position:absolute;
  1747. top:414px;
  1748. left:688px;
  1749. z-index:20;
  1750. cursor:pointer;
  1751. }
  1752. .dev_ll_checklabel {
  1753. position:absolute;
  1754. top:415px;
  1755. left:709px;
  1756. z-index:20;
  1757. font-family:微软雅黑, Microsoft YaHei;
  1758. font-size:12px;
  1759. cursor:pointer;
  1760. }
  1761. .dev_ci_checkbox {
  1762. position:absolute;
  1763. top:454px;
  1764. left:688px;
  1765. z-index:20;
  1766. cursor:pointer;
  1767. }
  1768. .dev_ci_checklabel {
  1769. position:absolute;
  1770. top:455px;
  1771. left:709px;
  1772. z-index:20;
  1773. font-family:微软雅黑, Microsoft YaHei;
  1774. font-size:12px;
  1775. cursor:pointer;
  1776. }
  1777. .dev_va_checkbox {
  1778. position:absolute;
  1779. top:494px;
  1780. left:688px;
  1781. z-index:20;
  1782. cursor:pointer;
  1783. }
  1784. .dev_va_checklabel {
  1785. position:absolute;
  1786. top:495px;
  1787. left:709px;
  1788. z-index:20;
  1789. font-family:微软雅黑, Microsoft YaHei;
  1790. font-size:12px;
  1791. cursor:pointer;
  1792. }
  1793. .dev_ot_checkbox {
  1794. position:absolute;
  1795. top:534px;
  1796. left:688px;
  1797. z-index:20;
  1798. cursor:pointer;
  1799. }
  1800. .dev_ot_checklabel {
  1801. position:absolute;
  1802. top:535px;
  1803. left:709px;
  1804. z-index:20;
  1805. font-family:微软雅黑, Microsoft YaHei;
  1806. font-size:12px;
  1807. cursor:pointer;
  1808. }
  1809. .company_page_title {
  1810. position:absolute;
  1811. top:72px;
  1812. left:930px;
  1813. width:200px;
  1814. height:40px;
  1815. z-index:20;
  1816. }
  1817. .project_title_icon {
  1818. background:url(icons/project_info_title.png) no-repeat;
  1819. }
  1820. .realtime_title_icon {
  1821. background:url(icons/realtime_status_title.png) no-repeat;
  1822. }
  1823. .company_detail_title {
  1824. position:absolute;
  1825. top:478px;
  1826. left:930px;
  1827. width:200px;
  1828. height:40px;
  1829. z-index:20;
  1830. }
  1831. .history_alarm_title_icon {
  1832. background:url(icons/history_alarm_title.png) no-repeat;
  1833. }
  1834. .device_status_title_icon {
  1835. background:url(icons/device_status_title.png) no-repeat;
  1836. }
  1837. .project_info_bar{
  1838. position:absolute;
  1839. top:122px;
  1840. left:883px;
  1841. height:300px;
  1842. z-index:20;
  1843. overflow:auto;
  1844. border:0px solid #000;
  1845. }
  1846. .history_alarm_list {
  1847. position:absolute;
  1848. top:529px;
  1849. left:883px;
  1850. z-index:20;
  1851. overflow:auto;
  1852. border:0px solid #000;
  1853. }
  1854. .history_alarm_list::-webkit-scrollbar{
  1855. width:6px;
  1856. height:100%;
  1857. }
  1858. .history_alarm_list::-webkit-scrollbar-thumb{
  1859. width:6px;
  1860. height:60px;
  1861. background-color:rgba(0,130,255,0.6);
  1862. border-radius:5px;
  1863. }
  1864. .history_alarm_list::-webkit-scrollbar-track
  1865. {
  1866. border-radius: 10px;
  1867. background-color: rgba(0,0,0,.3);
  1868. }
  1869. .project_label {
  1870. font-family:微软雅黑, Microsoft YaHei;
  1871. font-size:12px;
  1872. color:#27c5ff;
  1873. vertical-align:bottom;
  1874. }
  1875. .point_label {
  1876. text-align:right;
  1877. padding-right:10px;
  1878. }
  1879. .project_info {
  1880. font-family:微软雅黑, Microsoft YaHei;
  1881. font-size:16px;
  1882. color:#ffffff;
  1883. vertical-align:bottom;
  1884. }
  1885. .device_large_icon {
  1886. position:absolute;
  1887. top:32px;
  1888. left:48px;
  1889. z-index:20;
  1890. width:100px;
  1891. height:100px;
  1892. }
  1893. .device_count_label{
  1894. position:absolute;
  1895. top:150px;
  1896. left:48px;
  1897. width:100px;
  1898. height:20px;
  1899. text-align:center;
  1900. font-family:微软雅黑, Microsoft YaHei;
  1901. font-size:12px;
  1902. color:#ffffff;
  1903. }
  1904. .ui_large_icon {
  1905. background:url(icons/ui_large_icon.png) no-repeat;
  1906. }
  1907. .fc_large_icon {
  1908. background:url(icons/fc_large_icon.png) no-repeat;
  1909. }
  1910. .ef_large_icon {
  1911. background:url(icons/ef_large_icon.gif) no-repeat;
  1912. }
  1913. .ci_large_icon {
  1914. background:url(icons/ci_large_icon.png) no-repeat;
  1915. }
  1916. .wp0_large_icon {
  1917. background:url(icons/wp0_large_icon.png) no-repeat;
  1918. }
  1919. .wp1_large_icon {
  1920. background:url(icons/wp1_large_icon.png) no-repeat;
  1921. }
  1922. .va_large_icon {
  1923. background:url(icons/va_large_icon.png) no-repeat;
  1924. }
  1925. .ll_large_icon {
  1926. background:url(icons/ll_large_icon.png) no-repeat;
  1927. }
  1928. .device_list_bar {
  1929. position:absolute;
  1930. top:0px;
  1931. left:200px;
  1932. z-index:20;
  1933. width:300px;
  1934. height:300px;
  1935. overflow-x:hidden;
  1936. overflow-y:auto;
  1937. }
  1938. .status_list_bar {
  1939. position:absolute;
  1940. top:0px;
  1941. left:510px;
  1942. z-index:20;
  1943. height:290px;
  1944. overflow-x:hidden;
  1945. overflow-y:auto;
  1946. }
  1947. .status_list_bar_video {
  1948. text-align:center;
  1949. font-size:12px;
  1950. background-color:#000000;
  1951. color:#ffffff;
  1952. }
  1953. .device_list_bar::-webkit-scrollbar{
  1954. width:6px;
  1955. height:100%;
  1956. }
  1957. .device_list_bar::-webkit-scrollbar-thumb{
  1958. width:6px;
  1959. height:60px;
  1960. background-color:rgba(0,130,255,0.6);
  1961. border-radius:5px;
  1962. }
  1963. .device_list_bar::-webkit-scrollbar-track
  1964. {
  1965. border-radius: 10px;
  1966. background-color: rgba(0,0,0,.3);
  1967. }
  1968. .status_list_bar::-webkit-scrollbar{
  1969. width:6px;
  1970. height:100%;
  1971. }
  1972. .status_list_bar::-webkit-scrollbar-thumb{
  1973. width:6px;
  1974. height:60px;
  1975. background-color:rgba(0,130,255,0.6);
  1976. border-radius:5px;
  1977. }
  1978. .status_list_bar::-webkit-scrollbar-track
  1979. {
  1980. border-radius: 10px;
  1981. background-color: rgba(0,0,0,.3);
  1982. }
  1983. .v_reset {
  1984. position:absolute;
  1985. top:127px;
  1986. right:100px;
  1987. width:20px;
  1988. height:20px;
  1989. background:url(icons/v_reset.png) no-repeat;
  1990. z-index:200;
  1991. cursor:pointer;
  1992. }
  1993. .big_view {
  1994. position:absolute;
  1995. top:157px;
  1996. right:100px;
  1997. width:20px;
  1998. height:20px;
  1999. background:url(icons/v_big.png) no-repeat;
  2000. z-index:200;
  2001. cursor:pointer;
  2002. }
  2003. .bak_reset {
  2004. position:absolute;
  2005. top:73px;
  2006. right:89px;
  2007. z-index:20;
  2008. background:url(icons/bak.png) no-repeat;
  2009. width:77px;
  2010. height:41px;
  2011. cursor:pointer;
  2012. }
  2013. .bak_reset2 {
  2014. position:absolute;
  2015. top:479px;
  2016. right:89px;
  2017. z-index:20;
  2018. background:url(icons/bak.png) no-repeat;
  2019. width:77px;
  2020. height:41px;
  2021. cursor:pointer;
  2022. }
  2023. .detail_data_btn {
  2024. margin-left:10px;
  2025. width:16px;
  2026. height:16px;
  2027. cursor:pointer;
  2028. }
  2029. .detail_background {
  2030. width:1100px;
  2031. height:384px;
  2032. background:url(operation_area_bg.gif) no-repeat;
  2033. }
  2034. .detail_area {
  2035. position:absolute;
  2036. top:0px;
  2037. left:0px;
  2038. margin:10px 30px 10px 20px;
  2039. width:1050px;
  2040. height:364px;
  2041. }
  2042. /*H2019.6.30*/
  2043. .title13_label1 {
  2044. margin-bottom:20px;
  2045. }
  2046. /*
  2047. #woker_talk table{
  2048. border-right:1px solid #d0d0d0;
  2049. border-bottom:1px solid #d0d0d0;
  2050. width:100%;
  2051. background:#666;
  2052. margin-bottom:20px;
  2053. }
  2054. #woker_talk table td{
  2055. border-left:1px solid #d0d0d0;
  2056. border-top:1px solid #d0d0d0;
  2057. text-align:center;
  2058. font-size:15px;
  2059. }
  2060. .title20_label1 {
  2061. border:1px solid #000;
  2062. width:100%;
  2063. background:#666;
  2064. min-height:80px;
  2065. padding-left:36px;
  2066. margin-bottom:20px;
  2067. }
  2068. .title27_label1 {
  2069. border:1px solid #000;
  2070. width:100%;
  2071. background:#666;
  2072. min-height:120px;
  2073. padding-left:36px;
  2074. margin-bottom:20px;
  2075. }
  2076. */
  2077. .title29_label1 {
  2078. border:1px solid #000;
  2079. width:100%;
  2080. background:#666;
  2081. min-height:120px;
  2082. padding-left:36px;
  2083. margin-bottom:20px;
  2084. }
  2085. .x-boundlist-list-ct{
  2086. font-size:16px;
  2087. }
  2088. .x-box-inner {
  2089. bottom:0px!important;
  2090. }
  2091. /*H2019.6.30*/
  2092. /*H2019.7.08*/
  2093. .title2_div {
  2094. font-size:16px;
  2095. color:#0082ff;
  2096. position:absolute;
  2097. top:56px;
  2098. right:692px;
  2099. }
  2100. .maintenanceperson_title2_div {
  2101. font-size:16px;
  2102. color:#0082ff;
  2103. position:absolute;
  2104. top:56px;
  2105. right:706px;
  2106. }
  2107. .title2_div_panel3 {
  2108. width:40px;
  2109. height:20px;
  2110. border-radius:4px;
  2111. font-size:14px;
  2112. color:#0082ff;
  2113. position:absolute;
  2114. top:5px;
  2115. right:200px;
  2116. }
  2117. .input_class {
  2118. width:160px;
  2119. height:28px;
  2120. border-radius:4px;
  2121. position:absolute;
  2122. top:50px;
  2123. right:518px;
  2124. }
  2125. .input4_class {
  2126. width:20px;
  2127. height:20px;
  2128. border-radius:4px;
  2129. position:absolute;
  2130. top:58px;
  2131. right:672px;
  2132. }
  2133. .childPanel1_div{
  2134. font-size:16px;
  2135. position:absolute;
  2136. top:56px;
  2137. right:630px;
  2138. }
  2139. .input2_class {
  2140. width:20px;
  2141. height:20px;
  2142. border-radius:4px;
  2143. position:absolute;
  2144. top:58px;
  2145. right:594px;
  2146. }
  2147. .childPanel1_div1{
  2148. font-size:16px;
  2149. position:absolute;
  2150. top:56px;
  2151. right:552px;
  2152. }
  2153. .input3_class {
  2154. width:20px;
  2155. height:20px;
  2156. border-radius:4px;
  2157. position:absolute;
  2158. top:58px;
  2159. right:516px;
  2160. }
  2161. .childPanel1_div2{
  2162. font-size:16px;
  2163. position:absolute;
  2164. top:56px;
  2165. right:474px;
  2166. }
  2167. .MaintenancePersonTitle {
  2168. font-size:20px;
  2169. color:#31e9ff;
  2170. position:absolute;
  2171. top:25px;
  2172. left:41px;
  2173. }
  2174. .MaintenancePersonTitle2 {
  2175. font-size:20px;
  2176. color:#31e9ff;
  2177. position:absolute;
  2178. top:25px;
  2179. left:141px;
  2180. }
  2181. .title3_div {
  2182. font-size:16px;
  2183. color:#0082ff;
  2184. position:absolute;
  2185. top:56px;
  2186. right:420px;
  2187. }
  2188. .input1_class {
  2189. width:160px;
  2190. height:28px;
  2191. border-radius:4px;
  2192. position:absolute;
  2193. top:50px;
  2194. right:248px;
  2195. }
  2196. .maintenance_title2_div {
  2197. width:84px;
  2198. height:26px;
  2199. background:url(icons/maintenance_title2_div.png) no-repeat;
  2200. cursor:pointer;
  2201. position:absolute;
  2202. top:51px;
  2203. right:40px;
  2204. }
  2205. .maintenance_title2_div_on {
  2206. width:84px;
  2207. height:26px;
  2208. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2209. cursor:pointer;
  2210. position:absolute;
  2211. top:51px;
  2212. right:40px;
  2213. }
  2214. .maintenance_title1_div {
  2215. width:84px;
  2216. height:26px;
  2217. background:url(icons/maintenance_title1_div.png) no-repeat;
  2218. cursor:pointer;
  2219. position:absolute;
  2220. top:51px;
  2221. right:144px;
  2222. }
  2223. .maintenance_title1_div_on {
  2224. width:84px;
  2225. height:26px;
  2226. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2227. cursor:pointer;
  2228. position:absolute;
  2229. top:51px;
  2230. right:144px;
  2231. }
  2232. .maintenance_title3_div {
  2233. width:84px;
  2234. height:26px;
  2235. background:url(icons/maintenance_title3_div.png) no-repeat;
  2236. cursor:pointer;
  2237. position:absolute;
  2238. top:118px;
  2239. right:40px;
  2240. }
  2241. .maintenance_title3_div_on {
  2242. width:84px;
  2243. height:26px;
  2244. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2245. cursor:pointer;
  2246. position:absolute;
  2247. top:118px;
  2248. right:40px;
  2249. }
  2250. .maintenance_title4_div {
  2251. width:85px;
  2252. height:26px;
  2253. background:url(icons/maintenance_title4_div.png) no-repeat;
  2254. cursor:pointer;
  2255. position:absolute;
  2256. top:118px;
  2257. right:144px;
  2258. }
  2259. .maintenance_title4_div_on {
  2260. width:85px;
  2261. height:26px;
  2262. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2263. cursor:pointer;
  2264. position:absolute;
  2265. top:118px;
  2266. right:144px;
  2267. }
  2268. .maintenance_title5_div {
  2269. width:84px;
  2270. height:26px;
  2271. background:url(icons/maintenance_title5_div.png) no-repeat;
  2272. cursor:pointer;
  2273. position:absolute;
  2274. top:118px;
  2275. right:249px;
  2276. }
  2277. .maintenance_title5_div_on {
  2278. width:84px;
  2279. height:26px;
  2280. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2281. cursor:pointer;
  2282. position:absolute;
  2283. top:118px;
  2284. right:249px;
  2285. }
  2286. .maintenance_title6_div {
  2287. width:85px;
  2288. height:26px;
  2289. background:url(icons/maintenance_title6_div.png) no-repeat;
  2290. cursor:pointer;
  2291. position:absolute;
  2292. top:118px;
  2293. right:353px;
  2294. }
  2295. .maintenance_title6_div_on {
  2296. width:85px;
  2297. height:26px;
  2298. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  2299. cursor:pointer;
  2300. position:absolute;
  2301. top:118px;
  2302. right:353px;
  2303. }
  2304. .maintenancePerson_title2_div {
  2305. width:84px;
  2306. height:26px;
  2307. background:url(icons/maintenance_title2_div.png) no-repeat;
  2308. cursor:pointer;
  2309. position:absolute;
  2310. top:51px;
  2311. right:40px;
  2312. }
  2313. .maintenancePerson_title2_div_on {
  2314. width:84px;
  2315. height:26px;
  2316. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2317. cursor:pointer;
  2318. position:absolute;
  2319. top:51px;
  2320. right:40px;
  2321. }
  2322. .maintenancePerson_title1_div {
  2323. width:84px;
  2324. height:26px;
  2325. background:url(icons/maintenance_title1_div.png) no-repeat;
  2326. cursor:pointer;
  2327. position:absolute;
  2328. top:51px;
  2329. right:144px;
  2330. }
  2331. .maintenancePerson_title1_div_on {
  2332. width:84px;
  2333. height:26px;
  2334. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2335. cursor:pointer;
  2336. position:absolute;
  2337. top:51px;
  2338. right:144px;
  2339. }
  2340. .maintenancePerson_title3_div {
  2341. width:84px;
  2342. height:26px;
  2343. background:url(icons/maintenance_title3_div.png) no-repeat;
  2344. cursor:pointer;
  2345. position:absolute;
  2346. top:118px;
  2347. right:40px;
  2348. }
  2349. .maintenancePerson_title3_div_on {
  2350. width:84px;
  2351. height:26px;
  2352. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2353. cursor:pointer;
  2354. position:absolute;
  2355. top:118px;
  2356. right:40px;
  2357. }
  2358. .maintenancePerson_title4_div {
  2359. width:85px;
  2360. height:26px;
  2361. background:url(icons/maintenance_title4_div.png) no-repeat;
  2362. cursor:pointer;
  2363. position:absolute;
  2364. top:118px;
  2365. right:144px;
  2366. }
  2367. .maintenancePerson_title4_div_on {
  2368. width:85px;
  2369. height:26px;
  2370. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2371. cursor:pointer;
  2372. position:absolute;
  2373. top:118px;
  2374. right:144px;
  2375. }
  2376. .maintenancePerson_title5_div {
  2377. width:84px;
  2378. height:26px;
  2379. background:url(icons/maintenance_title5_div.png) no-repeat;
  2380. cursor:pointer;
  2381. position:absolute;
  2382. top:118px;
  2383. right:249px;
  2384. }
  2385. .maintenancePerson_title5_div_on {
  2386. width:84px;
  2387. height:26px;
  2388. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2389. cursor:pointer;
  2390. position:absolute;
  2391. top:118px;
  2392. right:249px;
  2393. }
  2394. .maintenancePerson_title6_div {
  2395. width:85px;
  2396. height:26px;
  2397. background:url(icons/maintenance_title6_div.png) no-repeat;
  2398. cursor:pointer;
  2399. position:absolute;
  2400. top:118px;
  2401. right:353px;
  2402. }
  2403. .maintenancePerson_title6_div_on {
  2404. width:85px;
  2405. height:26px;
  2406. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  2407. cursor:pointer;
  2408. position:absolute;
  2409. top:118px;
  2410. right:353px;
  2411. }
  2412. .maintenancePerson_title11_div {
  2413. width:85px;
  2414. height:26px;
  2415. background:url(icons/maintenance_title4_div.png) no-repeat;
  2416. cursor:pointer;
  2417. position:absolute;
  2418. top:100px;
  2419. right:20px;
  2420. }
  2421. .maintenancePerson_title11_div_on {
  2422. width:85px;
  2423. height:26px;
  2424. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2425. cursor:pointer;
  2426. position:absolute;
  2427. top:100px;
  2428. right:20px;
  2429. }
  2430. .maintenancePerson_title21_div {
  2431. width:84px;
  2432. height:26px;
  2433. background:url(icons/maintenance_title5_div.png) no-repeat;
  2434. cursor:pointer;
  2435. position:absolute;
  2436. top:100px;
  2437. right:125px;
  2438. }
  2439. .maintenancePerson_title21_div_on {
  2440. width:84px;
  2441. height:26px;
  2442. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2443. cursor:pointer;
  2444. position:absolute;
  2445. top:100px;
  2446. right:125px;
  2447. }
  2448. .maintenance_look_device_img{
  2449. margin: 0 auto;
  2450. }
  2451. .maintenance_look_device_img_baogao{
  2452. margin: 0 auto;
  2453. height:270px;
  2454. width:300px;
  2455. }
  2456. .maintenancePerson_title31_div {
  2457. width:85px;
  2458. height:29px;
  2459. background:url(icons/maintenance_title71_div.png) no-repeat;
  2460. cursor:pointer;
  2461. position:absolute;
  2462. top:95px;
  2463. right:40px;
  2464. }
  2465. .maintenancePerson_title31_div_on {
  2466. width:85px;
  2467. height:29px;
  2468. background:url(icons/maintenance_title71_div_on.png) no-repeat;
  2469. cursor:pointer;
  2470. position:absolute;
  2471. top:95px;
  2472. right:40px;
  2473. }
  2474. .maintenancePerson_title41_div {
  2475. width:86px;
  2476. height:29px;
  2477. background:url(icons/maintenance_title81_div.png) no-repeat;
  2478. cursor:pointer;
  2479. position:absolute;
  2480. top:95px;
  2481. right:144px;
  2482. }
  2483. .maintenancePerson_title41_div_on {
  2484. width:86px;
  2485. height:29px;
  2486. background:url(icons/maintenance_title81_div_on.png) no-repeat;
  2487. cursor:pointer;
  2488. position:absolute;
  2489. top:95px;
  2490. right:144px;
  2491. }
  2492. .maintenancePerson_input111_class {
  2493. width:114px;
  2494. height:24px;
  2495. border-radius:4px;
  2496. position:absolute;
  2497. top:98px;
  2498. right:260px;
  2499. }
  2500. .maintenancePerson_title111_div {
  2501. font-size:16px;
  2502. color:#0082ff;
  2503. position:absolute;
  2504. top:100px;
  2505. right:388px;
  2506. }
  2507. .maintenancePerson_input211_class {
  2508. width:144px;
  2509. height:24px;
  2510. border-radius:4px;
  2511. position:absolute;
  2512. top:98px;
  2513. right:454px;
  2514. }
  2515. .maintenancePerson_title211_div {
  2516. font-size:16px;
  2517. color:#0082ff;
  2518. position:absolute;
  2519. top:100px;
  2520. right:610px;
  2521. }
  2522. .maintenancePlan_title2_div {
  2523. width:84px;
  2524. height:26px;
  2525. background:url(icons/maintenance_title2_div.png) no-repeat;
  2526. cursor:pointer;
  2527. position:absolute;
  2528. top:51px;
  2529. right:40px;
  2530. }
  2531. .maintenancePlan_title2_div_on {
  2532. width:84px;
  2533. height:26px;
  2534. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2535. cursor:pointer;
  2536. position:absolute;
  2537. top:51px;
  2538. right:40px;
  2539. }
  2540. .maintenancePlan_title1_div {
  2541. width:84px;
  2542. height:26px;
  2543. background:url(icons/maintenance_title1_div.png) no-repeat;
  2544. cursor:pointer;
  2545. position:absolute;
  2546. top:51px;
  2547. right:144px;
  2548. }
  2549. .maintenancePlan_title1_div_on {
  2550. width:84px;
  2551. height:26px;
  2552. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2553. cursor:pointer;
  2554. position:absolute;
  2555. top:51px;
  2556. right:144px;
  2557. }
  2558. .maintenancePlan_title3_div {
  2559. width:84px;
  2560. height:26px;
  2561. background:url(icons/maintenance_title3_div.png) no-repeat;
  2562. cursor:pointer;
  2563. position:absolute;
  2564. top:118px;
  2565. right:40px;
  2566. }
  2567. .maintenancePlan_title3_div_on {
  2568. width:84px;
  2569. height:26px;
  2570. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2571. cursor:pointer;
  2572. position:absolute;
  2573. top:118px;
  2574. right:40px;
  2575. }
  2576. .maintenancePlan_title4_div {
  2577. width:85px;
  2578. height:26px;
  2579. background:url(icons/maintenance_title4_div.png) no-repeat;
  2580. cursor:pointer;
  2581. position:absolute;
  2582. top:118px;
  2583. right:144px;
  2584. }
  2585. .maintenancePlan_title4_div_on {
  2586. width:85px;
  2587. height:26px;
  2588. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2589. cursor:pointer;
  2590. position:absolute;
  2591. top:118px;
  2592. right:144px;
  2593. }
  2594. .maintenancePlan_title5_div {
  2595. width:84px;
  2596. height:26px;
  2597. background:url(icons/maintenance_title5_div.png) no-repeat;
  2598. cursor:pointer;
  2599. position:absolute;
  2600. top:118px;
  2601. right:249px;
  2602. }
  2603. .maintenancePlan_title5_div_on {
  2604. width:84px;
  2605. height:26px;
  2606. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2607. cursor:pointer;
  2608. position:absolute;
  2609. top:118px;
  2610. right:249px;
  2611. }
  2612. .maintenancePlan_title6_div {
  2613. width:85px;
  2614. height:26px;
  2615. background:url(icons/maintenance_title6_div.png) no-repeat;
  2616. cursor:pointer;
  2617. position:absolute;
  2618. top:118px;
  2619. right:353px;
  2620. }
  2621. .maintenancePlan_title6_div_on {
  2622. width:85px;
  2623. height:26px;
  2624. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  2625. cursor:pointer;
  2626. position:absolute;
  2627. top:118px;
  2628. right:353px;
  2629. }
  2630. .maintenanceCheck_title2_div {
  2631. width:84px;
  2632. height:26px;
  2633. background:url(icons/maintenance_title2_div.png) no-repeat;
  2634. cursor:pointer;
  2635. position:absolute;
  2636. top:80px;
  2637. right:40px;
  2638. }
  2639. .maintenanceCheck_title2_div_on {
  2640. width:84px;
  2641. height:26px;
  2642. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2643. cursor:pointer;
  2644. position:absolute;
  2645. top:80px;
  2646. right:40px;
  2647. }
  2648. .maintenanceCheck_title1_div {
  2649. width:84px;
  2650. height:26px;
  2651. background:url(icons/maintenance_title1_div.png) no-repeat;
  2652. cursor:pointer;
  2653. position:absolute;
  2654. top:80px;
  2655. right:144px;
  2656. }
  2657. .maintenanceCheck_title1_div_on {
  2658. width:84px;
  2659. height:26px;
  2660. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2661. cursor:pointer;
  2662. position:absolute;
  2663. top:80px;
  2664. right:144px;
  2665. }
  2666. .maintenanceCheck_title3_div {
  2667. width:84px;
  2668. height:26px;
  2669. background:url(icons/maintenance_title3_div.png) no-repeat;
  2670. cursor:pointer;
  2671. position:absolute;
  2672. top:198px;
  2673. right:40px;
  2674. }
  2675. .maintenanceCheck_title3_div_on {
  2676. width:84px;
  2677. height:26px;
  2678. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2679. cursor:pointer;
  2680. position:absolute;
  2681. top:198px;
  2682. right:40px;
  2683. }
  2684. .Check_input1_class {
  2685. width:100px;
  2686. height:28px;
  2687. border-radius:4px;
  2688. position:absolute;
  2689. top:79px;
  2690. right:248px;
  2691. }
  2692. .Check_title3_div {
  2693. font-size:16px;
  2694. color:#0082ff;
  2695. position:absolute;
  2696. top:85px;
  2697. right:360px;
  2698. }
  2699. .Check_input_class {
  2700. width:160px;
  2701. height:28px;
  2702. border-radius:4px;
  2703. position:absolute;
  2704. top:79px;
  2705. right:440px;
  2706. }
  2707. .Check_title2_div {
  2708. font-size:16px;
  2709. color:#0082ff;
  2710. position:absolute;
  2711. top:85px;
  2712. right:612px;
  2713. }
  2714. .Check_input2_class {
  2715. width:100px;
  2716. height:28px;
  2717. border-radius:4px;
  2718. position:absolute;
  2719. top:79px;
  2720. right:710px;
  2721. }
  2722. .Check_input3_class {
  2723. width:100px;
  2724. height:28px;
  2725. border-radius:4px;
  2726. position:absolute;
  2727. top:79px;
  2728. right:840px;
  2729. }
  2730. .Check_title7_div {
  2731. font-size:16px;
  2732. color:#0082ff;
  2733. position:absolute;
  2734. top:85px;
  2735. right:955px;
  2736. }
  2737. .Check_title8_div {
  2738. font-size:16px;
  2739. position:absolute;
  2740. top:85px;
  2741. right:820px;
  2742. }
  2743. .Check_input4_class {
  2744. width:100px;
  2745. height:28px;
  2746. border-radius:4px;
  2747. position:absolute;
  2748. top:79px;
  2749. right:1050px;
  2750. }
  2751. .Check_title9_div {
  2752. font-size:16px;
  2753. color:#0082ff;
  2754. position:absolute;
  2755. top:85px;
  2756. right:1165px;
  2757. }
  2758. .maintenanceCheck_title10_div {
  2759. width:222px;
  2760. height:62px;
  2761. background:url(icons/maintenanceCheck_title10_div.png) no-repeat;
  2762. cursor:pointer;
  2763. position:absolute;
  2764. top:160px;
  2765. right:1200px;
  2766. }
  2767. .maintenanceCheck_title20_div {
  2768. width:222px;
  2769. height:62px;
  2770. background:url(icons/maintenanceCheck_title20_div.png) no-repeat;
  2771. cursor:pointer;
  2772. position:absolute;
  2773. top:160px;
  2774. right:1200px;
  2775. }
  2776. .maintenanceCheck_title11_div {
  2777. width:222px;
  2778. height:62px;
  2779. background:url(icons/maintenanceCheck_title11_div.png) no-repeat;
  2780. cursor:pointer;
  2781. position:absolute;
  2782. top:160px;
  2783. right:958px;
  2784. }
  2785. .maintenanceCheck_title12_div {
  2786. width:222px;
  2787. height:62px;
  2788. background:url(icons/maintenanceCheck_title12_div.png) no-repeat;
  2789. cursor:pointer;
  2790. position:absolute;
  2791. top:160px;
  2792. right:716px;
  2793. }
  2794. .maintenanceCheck_title13_div {
  2795. width:222px;
  2796. height:62px;
  2797. background:url(icons/maintenanceCheck_title13_div.png) no-repeat;
  2798. cursor:pointer;
  2799. position:absolute;
  2800. top:160px;
  2801. right:474px;
  2802. }
  2803. .Check_title14_div {
  2804. font-size:38px;
  2805. color:#59c24a;
  2806. position:absolute;
  2807. top:170px;
  2808. right:500px;
  2809. }
  2810. .Check_title15_div {
  2811. font-size:38px;
  2812. color:#ff0000;
  2813. position:absolute;
  2814. top:170px;
  2815. right:742px;
  2816. }
  2817. .Check_title16_div {
  2818. font-size:38px;
  2819. color:#ff9254;
  2820. position:absolute;
  2821. top:170px;
  2822. right:984px;
  2823. }
  2824. .Check_title17_div {
  2825. font-size:38px;
  2826. color:#25b5ce;
  2827. position:absolute;
  2828. top:170px;
  2829. right:1226px;
  2830. }
  2831. .Check_select_class {
  2832. width:100px;
  2833. height:24px;
  2834. border-radius:4px;
  2835. position:absolute;
  2836. top:15px;
  2837. right:30px;
  2838. }
  2839. .MaintenanceCheckTitle {
  2840. font-size:16px;
  2841. color:#0082ff;
  2842. position:absolute;
  2843. top:18px;
  2844. right:150px;
  2845. }
  2846. .Maintenancediv_title {
  2847. font-size:15px;
  2848. color:#fff;
  2849. position:absolute;
  2850. top:10px;
  2851. right:705px;
  2852. }
  2853. .Maintenancediv_title_weibao {
  2854. font-size:15px;
  2855. color:#fff;
  2856. position:absolute;
  2857. top:10px;
  2858. right:570px;
  2859. }
  2860. .test_form{
  2861. background:#0082ff;
  2862. }
  2863. .maintenancePerson_input_class {
  2864. width:100px;
  2865. height:28px;
  2866. border-radius:4px;
  2867. position:absolute;
  2868. top:50px;
  2869. right:520px;
  2870. }
  2871. .inspectors_title1_div {
  2872. width:84px;
  2873. height:26px;
  2874. background:url(icons/maintenance_title1_div.png) no-repeat;
  2875. cursor:pointer;
  2876. position:absolute;
  2877. top:51px;
  2878. right:144px;
  2879. }
  2880. .inspectors_title1_div_on {
  2881. width:84px;
  2882. height:26px;
  2883. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  2884. cursor:pointer;
  2885. position:absolute;
  2886. top:51px;
  2887. right:144px;
  2888. }
  2889. .inspectors_title2_div {
  2890. width:84px;
  2891. height:26px;
  2892. background:url(icons/maintenance_title2_div.png) no-repeat;
  2893. cursor:pointer;
  2894. position:absolute;
  2895. top:51px;
  2896. right:40px;
  2897. }
  2898. .inspectors_title2_div_on {
  2899. width:84px;
  2900. height:26px;
  2901. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  2902. cursor:pointer;
  2903. position:absolute;
  2904. top:51px;
  2905. right:40px;
  2906. }
  2907. .inspectors_title3_div {
  2908. width:84px;
  2909. height:26px;
  2910. background:url(icons/maintenance_title3_div.png) no-repeat;
  2911. cursor:pointer;
  2912. position:absolute;
  2913. top:118px;
  2914. right:40px;
  2915. }
  2916. .inspectors_title3_div_on {
  2917. width:84px;
  2918. height:26px;
  2919. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  2920. cursor:pointer;
  2921. position:absolute;
  2922. top:118px;
  2923. right:40px;
  2924. }
  2925. .inspectors_title4_div {
  2926. width:85px;
  2927. height:26px;
  2928. background:url(icons/maintenance_title4_div.png) no-repeat;
  2929. cursor:pointer;
  2930. position:absolute;
  2931. top:118px;
  2932. right:144px;
  2933. }
  2934. .inspectors_title4_div_on {
  2935. width:85px;
  2936. height:26px;
  2937. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2938. cursor:pointer;
  2939. position:absolute;
  2940. top:118px;
  2941. right:144px;
  2942. }
  2943. .inspectors_title5_div {
  2944. width:84px;
  2945. height:26px;
  2946. background:url(icons/maintenance_title5_div.png) no-repeat;
  2947. cursor:pointer;
  2948. position:absolute;
  2949. top:118px;
  2950. right:249px;
  2951. }
  2952. .inspectors_title5_div_on {
  2953. width:84px;
  2954. height:26px;
  2955. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  2956. cursor:pointer;
  2957. position:absolute;
  2958. top:118px;
  2959. right:249px;
  2960. }
  2961. .inspectors_title6_div {
  2962. width:85px;
  2963. height:26px;
  2964. background:url(icons/maintenance_title6_div.png) no-repeat;
  2965. cursor:pointer;
  2966. position:absolute;
  2967. top:118px;
  2968. right:353px;
  2969. }
  2970. .inspectors_title6_div_on {
  2971. width:85px;
  2972. height:26px;
  2973. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  2974. cursor:pointer;
  2975. position:absolute;
  2976. top:118px;
  2977. right:353px;
  2978. }
  2979. .inspectors_title11_div {
  2980. width:85px;
  2981. height:26px;
  2982. background:url(icons/maintenance_title4_div.png) no-repeat;
  2983. cursor:pointer;
  2984. position:absolute;
  2985. top:100px;
  2986. right:20px;
  2987. }
  2988. .inspectors_title11_div_on {
  2989. width:85px;
  2990. height:26px;
  2991. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  2992. cursor:pointer;
  2993. position:absolute;
  2994. top:100px;
  2995. right:20px;
  2996. }
  2997. .inspectors_title21_div {
  2998. width:84px;
  2999. height:26px;
  3000. background:url(icons/maintenance_title5_div.png) no-repeat;
  3001. cursor:pointer;
  3002. position:absolute;
  3003. top:100px;
  3004. right:125px;
  3005. }
  3006. .inspectors_title21_div_on {
  3007. width:84px;
  3008. height:26px;
  3009. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3010. cursor:pointer;
  3011. position:absolute;
  3012. top:100px;
  3013. right:125px;
  3014. }
  3015. .inspectors_title31_div {
  3016. width:85px;
  3017. height:29px;
  3018. background:url(icons/maintenance_title71_div.png) no-repeat;
  3019. cursor:pointer;
  3020. position:absolute;
  3021. top:95px;
  3022. right:40px;
  3023. }
  3024. .inspectors_title31_div_on {
  3025. width:85px;
  3026. height:29px;
  3027. background:url(icons/maintenance_title71_div_on.png) no-repeat;
  3028. cursor:pointer;
  3029. position:absolute;
  3030. top:95px;
  3031. right:40px;
  3032. }
  3033. .inspectors_title41_div {
  3034. width:86px;
  3035. height:29px;
  3036. background:url(icons/maintenance_title81_div.png) no-repeat;
  3037. cursor:pointer;
  3038. position:absolute;
  3039. top:95px;
  3040. right:144px;
  3041. }
  3042. .inspectors_title41_div_on {
  3043. width:86px;
  3044. height:29px;
  3045. background:url(icons/maintenance_title81_div_on.png) no-repeat;
  3046. cursor:pointer;
  3047. position:absolute;
  3048. top:95px;
  3049. right:144px;
  3050. }
  3051. .inspectorsCheck_title1_div {
  3052. width:84px;
  3053. height:26px;
  3054. background:url(icons/maintenance_title1_div.png) no-repeat;
  3055. cursor:pointer;
  3056. position:absolute;
  3057. top:80px;
  3058. right:144px;
  3059. }
  3060. .inspectorsCheck_title1_div_on {
  3061. width:84px;
  3062. height:26px;
  3063. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3064. cursor:pointer;
  3065. position:absolute;
  3066. top:80px;
  3067. right:144px;
  3068. }
  3069. .inspectorsCheck_title2_div {
  3070. width:84px;
  3071. height:26px;
  3072. background:url(icons/maintenance_title2_div.png) no-repeat;
  3073. cursor:pointer;
  3074. position:absolute;
  3075. top:80px;
  3076. right:40px;
  3077. }
  3078. .inspectorsCheck_title2_div_on {
  3079. width:84px;
  3080. height:26px;
  3081. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3082. cursor:pointer;
  3083. position:absolute;
  3084. top:80px;
  3085. right:40px;
  3086. }
  3087. .inspectorsCheck_title3_div {
  3088. width:84px;
  3089. height:26px;
  3090. background:url(icons/maintenance_title3_div.png) no-repeat;
  3091. cursor:pointer;
  3092. position:absolute;
  3093. top:198px;
  3094. right:40px;
  3095. }
  3096. .inspectorsCheck_title3_div_on {
  3097. width:84px;
  3098. height:26px;
  3099. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3100. cursor:pointer;
  3101. position:absolute;
  3102. top:198px;
  3103. right:40px;
  3104. }
  3105. .patrolPlan_title1_div {
  3106. width:84px;
  3107. height:26px;
  3108. background:url(icons/maintenance_title1_div.png) no-repeat;
  3109. cursor:pointer;
  3110. position:absolute;
  3111. top:51px;
  3112. right:144px;
  3113. }
  3114. .patrolPlan_title1_div_on {
  3115. width:84px;
  3116. height:26px;
  3117. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3118. cursor:pointer;
  3119. position:absolute;
  3120. top:51px;
  3121. right:144px;
  3122. }
  3123. .patrolPlan_title2_div {
  3124. width:84px;
  3125. height:26px;
  3126. background:url(icons/maintenance_title2_div.png) no-repeat;
  3127. cursor:pointer;
  3128. position:absolute;
  3129. top:51px;
  3130. right:40px;
  3131. }
  3132. .patrolPlan_title2_div_on {
  3133. width:84px;
  3134. height:26px;
  3135. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3136. cursor:pointer;
  3137. position:absolute;
  3138. top:51px;
  3139. right:40px;
  3140. }
  3141. .patrolPlan_title3_div {
  3142. width:84px;
  3143. height:26px;
  3144. background:url(icons/maintenance_title3_div.png) no-repeat;
  3145. cursor:pointer;
  3146. position:absolute;
  3147. top:118px;
  3148. right:40px;
  3149. }
  3150. .patrolPlan_title3_div_on {
  3151. width:84px;
  3152. height:26px;
  3153. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3154. cursor:pointer;
  3155. position:absolute;
  3156. top:118px;
  3157. right:40px;
  3158. }
  3159. .patrolPlan_title4_div {
  3160. width:85px;
  3161. height:26px;
  3162. background:url(icons/maintenance_title4_div.png) no-repeat;
  3163. cursor:pointer;
  3164. position:absolute;
  3165. top:118px;
  3166. right:144px;
  3167. }
  3168. .patrolPlan_title4_div_on {
  3169. width:85px;
  3170. height:26px;
  3171. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  3172. cursor:pointer;
  3173. position:absolute;
  3174. top:118px;
  3175. right:144px;
  3176. }
  3177. .patrolPlan_title5_div {
  3178. width:84px;
  3179. height:26px;
  3180. background:url(icons/maintenance_title5_div.png) no-repeat;
  3181. cursor:pointer;
  3182. position:absolute;
  3183. top:118px;
  3184. right:249px;
  3185. }
  3186. .patrolPlan_title5_div_on {
  3187. width:84px;
  3188. height:26px;
  3189. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3190. cursor:pointer;
  3191. position:absolute;
  3192. top:118px;
  3193. right:249px;
  3194. }
  3195. .patrolPlan_title6_div {
  3196. width:85px;
  3197. height:26px;
  3198. background:url(icons/maintenance_title6_div.png) no-repeat;
  3199. cursor:pointer;
  3200. position:absolute;
  3201. top:118px;
  3202. right:353px;
  3203. }
  3204. .patrolPlan_title6_div_on {
  3205. width:85px;
  3206. height:26px;
  3207. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  3208. cursor:pointer;
  3209. position:absolute;
  3210. top:118px;
  3211. right:353px;
  3212. }
  3213. .patrolpoint_title1_div {
  3214. width:84px;
  3215. height:26px;
  3216. background:url(icons/maintenance_title1_div.png) no-repeat;
  3217. cursor:pointer;
  3218. position:absolute;
  3219. top:51px;
  3220. right:144px;
  3221. }
  3222. .patrolpoint_title1_div_on {
  3223. width:84px;
  3224. height:26px;
  3225. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3226. cursor:pointer;
  3227. position:absolute;
  3228. top:51px;
  3229. right:144px;
  3230. }
  3231. .patrolpoint_title2_div {
  3232. width:84px;
  3233. height:26px;
  3234. background:url(icons/maintenance_title2_div.png) no-repeat;
  3235. cursor:pointer;
  3236. position:absolute;
  3237. top:51px;
  3238. right:40px;
  3239. }
  3240. .patrolpoint_title2_div_on {
  3241. width:84px;
  3242. height:26px;
  3243. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3244. cursor:pointer;
  3245. position:absolute;
  3246. top:51px;
  3247. right:40px;
  3248. }
  3249. .patrolpoint_title3_div {
  3250. width:84px;
  3251. height:26px;
  3252. background:url(icons/maintenance_title3_div.png) no-repeat;
  3253. cursor:pointer;
  3254. position:absolute;
  3255. top:118px;
  3256. right:40px;
  3257. }
  3258. .patrolpoint_title3_div_on {
  3259. width:84px;
  3260. height:26px;
  3261. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3262. cursor:pointer;
  3263. position:absolute;
  3264. top:118px;
  3265. right:40px;
  3266. }
  3267. .patrolpoint_title4_div {
  3268. width:85px;
  3269. height:26px;
  3270. background:url(icons/maintenance_title4_div.png) no-repeat;
  3271. cursor:pointer;
  3272. position:absolute;
  3273. top:118px;
  3274. right:144px;
  3275. }
  3276. .patrolpoint_title4_div_on {
  3277. width:85px;
  3278. height:26px;
  3279. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  3280. cursor:pointer;
  3281. position:absolute;
  3282. top:118px;
  3283. right:144px;
  3284. }
  3285. .patrolpoint_title5_div {
  3286. width:84px;
  3287. height:26px;
  3288. background:url(icons/maintenance_title5_div.png) no-repeat;
  3289. cursor:pointer;
  3290. position:absolute;
  3291. top:118px;
  3292. right:249px;
  3293. }
  3294. .patrolpoint_title5_div_on {
  3295. width:84px;
  3296. height:26px;
  3297. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  3298. cursor:pointer;
  3299. position:absolute;
  3300. top:118px;
  3301. right:249px;
  3302. }
  3303. .patrolpoint_title6_div {
  3304. width:85px;
  3305. height:26px;
  3306. background:url(icons/maintenance_title6_div.png) no-repeat;
  3307. cursor:pointer;
  3308. position:absolute;
  3309. top:118px;
  3310. right:353px;
  3311. }
  3312. .patrolpoint_title6_div_on {
  3313. width:85px;
  3314. height:26px;
  3315. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  3316. cursor:pointer;
  3317. position:absolute;
  3318. top:118px;
  3319. right:353px;
  3320. }
  3321. .proform3_bg_tl{
  3322. position:absolute;
  3323. width:928px;
  3324. height:752px;
  3325. top:0px;
  3326. left:0px;
  3327. background:url(icons/proform3_tl.png) no-repeat;
  3328. }
  3329. .proform3_bg_ml {
  3330. position:absolute;
  3331. top:752px;
  3332. left:0px;
  3333. width:928px;
  3334. background:url(icons/proform3_ml.png) repeat-y;
  3335. }
  3336. .proform3_bg_bl {
  3337. position:absolute;
  3338. bottom:0px;
  3339. left:0px;
  3340. width:928px;
  3341. height:170px;
  3342. background:url(icons/proform3_bl.png) no-repeat;
  3343. }
  3344. .springHandle_title20_div {
  3345. width:302px;
  3346. height:62px;
  3347. background:url(icons/springHandle_title20_div.png) no-repeat;
  3348. cursor:pointer;
  3349. position:absolute;
  3350. top:50px;
  3351. right:1376px;
  3352. }
  3353. .springHandle_title17_div {
  3354. font-size:38px;
  3355. color:#25b5ce;
  3356. position:absolute;
  3357. top:60px;
  3358. right:1460px;
  3359. }
  3360. .springHandle_title11_div {
  3361. width:302px;
  3362. height:62px;
  3363. background:url(icons/springHandle_title11_div.png) no-repeat;
  3364. cursor:pointer;
  3365. position:absolute;
  3366. top:50px;
  3367. right:1054px;
  3368. }
  3369. .springHandle_title16_div {
  3370. font-size:38px;
  3371. color:#ff9254;
  3372. position:absolute;
  3373. top:60px;
  3374. right:1140px;
  3375. }
  3376. .springHandle_title12_div {
  3377. width:302px;
  3378. height:62px;
  3379. background:url(icons/springHandle_title12_div.png) no-repeat;
  3380. cursor:pointer;
  3381. position:absolute;
  3382. top:50px;
  3383. right:732px;
  3384. }
  3385. .springHandle_title15_div {
  3386. font-size:38px;
  3387. color:#ff0000;
  3388. position:absolute;
  3389. top:60px;
  3390. right:814px;
  3391. }
  3392. .springHandle_title13_div {
  3393. width:302px;
  3394. height:62px;
  3395. background:url(icons/springHandle_title13_div.png) no-repeat;
  3396. cursor:pointer;
  3397. position:absolute;
  3398. top:50px;
  3399. right:410px;
  3400. }
  3401. .springHandle_title14_div {
  3402. font-size:38px;
  3403. color:#59c24a;
  3404. position:absolute;
  3405. top:60px;
  3406. right:494px;
  3407. }
  3408. .springHandle_title2_div {
  3409. width:84px;
  3410. height:26px;
  3411. background:url(icons/maintenance_title2_div.png) no-repeat;
  3412. cursor:pointer;
  3413. position:absolute;
  3414. top:140px;
  3415. right:40px;
  3416. }
  3417. .springHandle_title2_div_on {
  3418. width:84px;
  3419. height:26px;
  3420. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  3421. cursor:pointer;
  3422. position:absolute;
  3423. top:140px;
  3424. right:40px;
  3425. }
  3426. .springHandle_title1_div {
  3427. width:84px;
  3428. height:26px;
  3429. background:url(icons/maintenance_title1_div.png) no-repeat;
  3430. cursor:pointer;
  3431. position:absolute;
  3432. top:140px;
  3433. right:144px;
  3434. }
  3435. .springHandle_title1_div_on {
  3436. width:84px;
  3437. height:26px;
  3438. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  3439. cursor:pointer;
  3440. position:absolute;
  3441. top:140px;
  3442. right:144px;
  3443. }
  3444. .springHandle_title3_div {
  3445. width:84px;
  3446. height:26px;
  3447. background:url(icons/maintenance_title3_div.png) no-repeat;
  3448. cursor:pointer;
  3449. position:absolute;
  3450. top:198px;
  3451. right:40px;
  3452. }
  3453. .springHandle_title3_div_on {
  3454. width:84px;
  3455. height:26px;
  3456. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  3457. cursor:pointer;
  3458. position:absolute;
  3459. top:198px;
  3460. right:40px;
  3461. }
  3462. .springHandle_title4_div {
  3463. width:84px;
  3464. height:26px;
  3465. background:url(icons/baoxiu_fenxi.png) no-repeat;
  3466. cursor:pointer;
  3467. position:absolute;
  3468. top:198px;
  3469. right:144px;
  3470. }
  3471. .springHandle_title4_div_on {
  3472. width:84px;
  3473. height:26px;
  3474. background:url(icons/baoxiu_fenxi_on.png) no-repeat;
  3475. cursor:pointer;
  3476. position:absolute;
  3477. top:198px;
  3478. right:144px;
  3479. }
  3480. .springHandle_input_class {
  3481. width:160px;
  3482. height:28px;
  3483. border-radius:4px;
  3484. position:absolute;
  3485. top:140px;
  3486. right:260px;
  3487. }
  3488. .springHandle_title2_div_font {
  3489. font-size:16px;
  3490. color:#0082ff;
  3491. position:absolute;
  3492. top:143px;
  3493. right:440px;
  3494. }
  3495. .springHandle_input1_class {
  3496. width:100px;
  3497. height:28px;
  3498. border-radius:4px;
  3499. position:absolute;
  3500. top:140px;
  3501. right:538px;
  3502. }
  3503. .springHandle_title3_div_font {
  3504. font-size:16px;
  3505. color:#0082ff;
  3506. position:absolute;
  3507. top:143px;
  3508. right:658px;
  3509. }
  3510. .springHandle_input2_class {
  3511. width:100px;
  3512. height:28px;
  3513. border-radius:4px;
  3514. position:absolute;
  3515. top:140px;
  3516. right:740px;
  3517. }
  3518. .springHandle_title8_div {
  3519. font-size:16px;
  3520. position:absolute;
  3521. top:143px;
  3522. right:845px;
  3523. }
  3524. .springHandle_input3_class {
  3525. width:100px;
  3526. height:28px;
  3527. border-radius:4px;
  3528. position:absolute;
  3529. top:140px;
  3530. right:862px;
  3531. }
  3532. .springHandle_title7_div {
  3533. font-size:16px;
  3534. color:#0082ff;
  3535. position:absolute;
  3536. top:143px;
  3537. right:982px;
  3538. }
  3539. .springHandle_input4_class {
  3540. width:100px;
  3541. height:28px;
  3542. border-radius:4px;
  3543. position:absolute;
  3544. top:140px;
  3545. right:1080px;
  3546. }
  3547. .springHandle_title9_div {
  3548. font-size:16px;
  3549. color:#0082ff;
  3550. position:absolute;
  3551. top:143px;
  3552. right:1200px;
  3553. }
  3554. .springHandle_title28_div {
  3555. font-size:16px;
  3556. color:#0082ff;
  3557. position:absolute;
  3558. top:143px;
  3559. right:1420px;
  3560. }
  3561. .springHandle_input5_class {
  3562. width:100px;
  3563. height:28px;
  3564. border-radius:4px;
  3565. position:absolute;
  3566. top:140px;
  3567. right:1300px;
  3568. }
  3569. .SpringHandleTitle {
  3570. font-size:14px;
  3571. color:#0082ff;
  3572. position:absolute;
  3573. top:18px;
  3574. right:410px;
  3575. }
  3576. .SpringHandleTitle1 {
  3577. font-size:16px;
  3578. position:absolute;
  3579. top:18px;
  3580. right:352px;
  3581. }
  3582. .SpringHandleTitle2 {
  3583. font-size:14px;
  3584. color:#0082ff;
  3585. position:absolute;
  3586. top:60px;
  3587. right:410px;
  3588. }
  3589. .SpringHandleTitle3 {
  3590. font-size:16px;
  3591. position:absolute;
  3592. top:60px;
  3593. left:103px;
  3594. }
  3595. .SpringHandleTitle4 {
  3596. font-size:14px;
  3597. color:#0082ff;
  3598. position:absolute;
  3599. top:110px;
  3600. right:410px;
  3601. }
  3602. .SpringHandleTitle5 {
  3603. width:60px;
  3604. height:60px;
  3605. position:absolute;
  3606. top:110px;
  3607. left:103px;
  3608. }
  3609. .SpringHandleTitle6 {
  3610. font-size:14px;
  3611. color:#0082ff;
  3612. position:absolute;
  3613. top:180px;
  3614. right:410px;
  3615. }
  3616. .SpringHandleTitle7 {
  3617. width:200px;
  3618. height:200px;
  3619. position:absolute;
  3620. top:180px;
  3621. left:103px;
  3622. }
  3623. .SpringHandleDiv {
  3624. font-size:14px;
  3625. color:#0082ff;
  3626. position:absolute;
  3627. top:18px;
  3628. right:410px;
  3629. }
  3630. .SpringHandleDiv1 {
  3631. font-size:16px;
  3632. position:absolute;
  3633. top:18px;
  3634. right:352px;
  3635. }
  3636. .SpringHandleDiv2 {
  3637. font-size:14px;
  3638. color:#0082ff;
  3639. position:absolute;
  3640. top:60px;
  3641. right:410px;
  3642. }
  3643. .SpringHandleDiv3 {
  3644. font-size:16px;
  3645. position:absolute;
  3646. top:60px;
  3647. left:103px;
  3648. }
  3649. .SpringHandleDiv4 {
  3650. font-size:14px;
  3651. color:#0082ff;
  3652. position:absolute;
  3653. top:102px;
  3654. right:410px;
  3655. }
  3656. .SpringHandleDiv5 {
  3657. font-size:16px;
  3658. position:absolute;
  3659. top:102px;
  3660. left:103px;
  3661. }
  3662. .SpringHandleDiv6 {
  3663. font-size:14px;
  3664. color:#0082ff;
  3665. position:absolute;
  3666. top:144px;
  3667. right:410px;
  3668. }
  3669. .SpringHandleDiv7 {
  3670. width:200px;
  3671. height:200px;
  3672. position:absolute;
  3673. top:144px;
  3674. left:103px;
  3675. }
  3676. .SpringHandleDiv8 {
  3677. font-size:14px;
  3678. color:#0082ff;
  3679. position:absolute;
  3680. top:18px;
  3681. right:210px;
  3682. }
  3683. .SpringHandleDiv9 {
  3684. font-size:16px;
  3685. position:absolute;
  3686. top:18px;
  3687. right:150px;
  3688. }
  3689. .SpringHandleDiv10 {
  3690. font-size:14px;
  3691. color:#0082ff;
  3692. position:absolute;
  3693. top:60px;
  3694. right:210px;
  3695. }
  3696. .SpringHandleDiv11 {
  3697. font-size:16px;
  3698. position:absolute;
  3699. top:60px;
  3700. right:33px;
  3701. }
  3702. .SpringHandleDiv12 {
  3703. font-size:14px;
  3704. color:#0082ff;
  3705. position:absolute;
  3706. top:18px;
  3707. right:410px;
  3708. }
  3709. .SpringHandleSelect {
  3710. width:100px;
  3711. height:28px;
  3712. border-radius:4px;
  3713. position:absolute;
  3714. top:14px;
  3715. right:295px;
  3716. }
  3717. .SpringHandleDiv13 {
  3718. font-size:14px;
  3719. color:#0082ff;
  3720. position:absolute;
  3721. top:60px;
  3722. right:410px;
  3723. }
  3724. .springHandleInput {
  3725. width:100px;
  3726. height:28px;
  3727. border-radius:4px;
  3728. position:absolute;
  3729. top:58px;
  3730. right:295px;
  3731. }
  3732. .springHandleInput1 {
  3733. width:100px;
  3734. height:28px;
  3735. border-radius:4px;
  3736. position:absolute;
  3737. top:58px;
  3738. right:180px;
  3739. }
  3740. .SpringHandleDiv14 {
  3741. font-size:14px;
  3742. color:#0082ff;
  3743. position:absolute;
  3744. top:102px;
  3745. right:410px;
  3746. }
  3747. .SpringHandleTextarea {
  3748. width:306px!important;
  3749. height:70px!important;
  3750. border-radius:4px;
  3751. position:absolute;
  3752. top:102px;
  3753. left:94px;
  3754. }
  3755. .SpringHandleDiv15 {
  3756. font-size:14px;
  3757. color:#0082ff;
  3758. position:absolute;
  3759. top:18px;
  3760. right:210px;
  3761. }
  3762. .SpringHandleSelect1 {
  3763. width:100px;
  3764. height:28px;
  3765. border-radius:4px;
  3766. position:absolute;
  3767. top:14px;
  3768. right:95px;
  3769. }
  3770. .SpringHandleHtml2Div16 {
  3771. font-size:14px;
  3772. color:#0082ff;
  3773. position:absolute;
  3774. top:18px;
  3775. right:410px;
  3776. }
  3777. .SpringHandleHtml2Div17 {
  3778. font-size:16px;
  3779. color:#59c24a;
  3780. position:absolute;
  3781. top:18px;
  3782. left:100px;
  3783. }
  3784. .SpringHandleHtml2Div1713 {
  3785. font-size:16px;
  3786. color:#ff9254;
  3787. position:absolute;
  3788. top:18px;
  3789. left:100px;
  3790. }
  3791. .SpringHandleHtml2Div18 {
  3792. font-size:14px;
  3793. color:#0082ff;
  3794. position:absolute;
  3795. top:60px;
  3796. right:410px;
  3797. }
  3798. .SpringHandleHtml2Div19 {
  3799. font-size:16px;
  3800. position:absolute;
  3801. top:60px;
  3802. left:100px;
  3803. }
  3804. .SpringHandleHtml2Div20 {
  3805. font-size:14px;
  3806. color:#0082ff;
  3807. position:absolute;
  3808. top:102px;
  3809. right:410px;
  3810. }
  3811. .SpringHandleHtml2Div21 {
  3812. font-size:16px;
  3813. position:absolute;
  3814. top:102px;
  3815. left:100px;
  3816. }
  3817. .SpringHandleHtml2Div22 {
  3818. font-size:14px;
  3819. color:#0082ff;
  3820. position:absolute;
  3821. top:18px;
  3822. right:175px;
  3823. }
  3824. .SpringHandleHtml2Div23 {
  3825. font-size:16px;
  3826. position:absolute;
  3827. top:18px;
  3828. left:334px;
  3829. }
  3830. .SpringHandleHtml2Div24 {
  3831. font-size:14px;
  3832. color:#0082ff;
  3833. position:absolute;
  3834. top:60px;
  3835. right:175px;
  3836. }
  3837. .SpringHandleHtml2Div25 {
  3838. font-size:16px;
  3839. position:absolute;
  3840. top:60px;
  3841. left:334px;
  3842. }
  3843. .SpringHandleHtml2Div26 {
  3844. font-size:14px;
  3845. color:#0082ff;
  3846. position:absolute;
  3847. top:18px;
  3848. right:410px;
  3849. }
  3850. .SpringHandlePanel1Title {
  3851. width:60px;
  3852. height:60px;
  3853. position:absolute;
  3854. top:18px;
  3855. left:103px;
  3856. }
  3857. .SpringHandleHtml2Div27 {
  3858. font-size:14px;
  3859. color:#0082ff;
  3860. position:absolute;
  3861. top:90px;
  3862. right:410px;
  3863. }
  3864. .SpringHandleHtml2Div28 {
  3865. width:250px;
  3866. height:60px;
  3867. font-size:16px;
  3868. position:absolute;
  3869. top:90px;
  3870. left:103px;
  3871. }
  3872. .SpringHandleHtml2Div29 {
  3873. font-size:14px;
  3874. color:#0082ff;
  3875. position:absolute;
  3876. top:18px;
  3877. right:190px;
  3878. }
  3879. .SpringHandleHtml2Div30 {
  3880. font-size:16px;
  3881. position:absolute;
  3882. top:18px;
  3883. left:316px;
  3884. }
  3885. .SpringHandleHtml2Div31 {
  3886. font-size:14px;
  3887. color:#0082ff;
  3888. position:absolute;
  3889. top:170px;
  3890. right:410px;
  3891. }
  3892. .SpringHandleHtml2Div32 {
  3893. font-size:16px;
  3894. position:absolute;
  3895. top:170px;
  3896. left:103px;
  3897. }
  3898. .SpringHandleHtml2Div33 {
  3899. font-size:14px;
  3900. color:#0082ff;
  3901. position:absolute;
  3902. top:170px;
  3903. right:190px;
  3904. }
  3905. .SpringHandleHtml2Div34 {
  3906. font-size:16px;
  3907. position:absolute;
  3908. top:170px;
  3909. left:316px;
  3910. }
  3911. .SpringHandleHtml2Div35 {
  3912. font-size:14px;
  3913. color:#0082ff;
  3914. position:absolute;
  3915. top:212px;
  3916. right:410px;
  3917. }
  3918. .SpringHandleSelect36 {
  3919. width:100px;
  3920. height:28px;
  3921. border-radius:4px;
  3922. position:absolute;
  3923. top:208px;
  3924. right:295px;
  3925. }
  3926. .SpringHandleHtml2Div37 {
  3927. font-size:14px;
  3928. color:#0082ff;
  3929. position:absolute;
  3930. top:252px;
  3931. right:410px;
  3932. }
  3933. .SpringHandleTextarea2 {
  3934. width:306px!important;
  3935. height:70px!important;
  3936. border-radius:4px;
  3937. position:absolute;
  3938. top:252px;
  3939. left:94px;
  3940. }
  3941. .SpringHandleHtml3DivHiddle{
  3942. width:1px;
  3943. height:1px;
  3944. display: none;
  3945. }
  3946. .SpringHandleHtml3DivPanel3{
  3947. width:490px;
  3948. height:270px;
  3949. position:relative;
  3950. }
  3951. .SpringHandleHtml3Div35 {
  3952. font-size:14px;
  3953. color:#0082ff;
  3954. position:absolute;
  3955. top:210px;
  3956. right:410px;
  3957. }
  3958. .SpringHandleHtml3Div36{
  3959. width:300px;
  3960. height:60px;
  3961. font-size:16px;
  3962. position:absolute;
  3963. top:210px;
  3964. left:103px;
  3965. }
  3966. .MaintenancePersonTitle123 {
  3967. font-size:20px;
  3968. color:#31e9ff;
  3969. position:absolute;
  3970. top:0px;
  3971. left:20px;
  3972. }
  3973. #maintenancePersonHtml2{
  3974. background:#121E34;
  3975. }
  3976. #MaintenancePersonListPageToolbar2{
  3977. background:#121E34;
  3978. }
  3979. #InspectorsListPageToolbar2{
  3980. background:#121E34;
  3981. }
  3982. #project_data_win{
  3983. top:88px!important;
  3984. }
  3985. #project_data_winweibao{
  3986. top:88px!important;
  3987. }
  3988. #PatrolAnalysisCheckHtml{
  3989. background:#002C59;
  3990. }
  3991. #PatrolAnalysis2CheckHtml{
  3992. background:#002C59;
  3993. }
  3994. .PatrolAnalysisCheck_title1_div {
  3995. width:84px;
  3996. height:26px;
  3997. background:url(icons/maintenance_title3_div.png) no-repeat;
  3998. cursor:pointer;
  3999. position:absolute;
  4000. top:30px;
  4001. right:40px;
  4002. }
  4003. .PatrolAnalysisCheck_title1_div_on {
  4004. width:84px;
  4005. height:26px;
  4006. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  4007. cursor:pointer;
  4008. position:absolute;
  4009. top:30px;
  4010. right:40px;
  4011. }
  4012. .PatrolAnalysis2Check_title1_div {
  4013. width:84px;
  4014. height:26px;
  4015. background:url(icons/maintenance_title3_div.png) no-repeat;
  4016. cursor:pointer;
  4017. position:absolute;
  4018. top:30px;
  4019. right:40px;
  4020. }
  4021. .PatrolAnalysis2Check_title1_div_on {
  4022. width:84px;
  4023. height:26px;
  4024. background:url(icons/maintenance_title3_div_on.png) no-repeat;
  4025. cursor:pointer;
  4026. position:absolute;
  4027. top:30px;
  4028. right:40px;
  4029. }
  4030. /*H2019.7.08*/
  4031. .proform4_bg_tl{
  4032. position:absolute;
  4033. width:928px;
  4034. height:752px;
  4035. top:0px;
  4036. left:0px;
  4037. background:url(icons/yy6.png) no-repeat;
  4038. }
  4039. .pzb_title2_div_font {
  4040. font-size:16px;
  4041. color:#0082ff;
  4042. position:absolute;
  4043. top:143px;
  4044. right:440px;
  4045. }
  4046. .pzb_input_class {
  4047. width:160px;
  4048. height:28px;
  4049. border-radius:4px;
  4050. position:absolute;
  4051. top:140px;
  4052. right:260px;
  4053. }
  4054. .pzb_title3_div_font {
  4055. font-size:16px;
  4056. color:#0082ff;
  4057. position:absolute;
  4058. top:143px;
  4059. right:700px;
  4060. }
  4061. .pzb_input1_class {
  4062. width:160px;
  4063. height:28px;
  4064. border-radius:4px;
  4065. position:absolute;
  4066. top:140px;
  4067. right:520px;
  4068. }
  4069. .pzb_title28_div {
  4070. font-size:16px;
  4071. color:#0082ff;
  4072. position:absolute;
  4073. top:143px;
  4074. right:1010px;
  4075. }
  4076. .pzb_input5_class {
  4077. width:160px;
  4078. height:28px;
  4079. border-radius:4px;
  4080. position:absolute;
  4081. top:140px;
  4082. right:830px;
  4083. }
  4084. .pzb_title7_div {
  4085. font-size:16px;
  4086. color:#0082ff;
  4087. position:absolute;
  4088. top:143px;
  4089. right:1332px;
  4090. }
  4091. .pzb_input2_class {
  4092. width:100px;
  4093. height:28px;
  4094. border-radius:4px;
  4095. position:absolute;
  4096. top:140px;
  4097. right:1090px;
  4098. }
  4099. .pzb_title8_div {
  4100. font-size:16px;
  4101. position:absolute;
  4102. top:143px;
  4103. right:1195px;
  4104. }
  4105. .pzb_input3_class {
  4106. width:100px;
  4107. height:28px;
  4108. border-radius:4px;
  4109. position:absolute;
  4110. top:140px;
  4111. right:1212px;
  4112. }
  4113. .pzb_title1_div {
  4114. width:84px;
  4115. height:26px;
  4116. background:url(icons/maintenance_title1_div.png) no-repeat;
  4117. cursor:pointer;
  4118. position:absolute;
  4119. top:140px;
  4120. right:144px;
  4121. }
  4122. .pzb_title1_div_on {
  4123. width:84px;
  4124. height:26px;
  4125. background:url(icons/maintenance_title1_div_on.png) no-repeat;
  4126. cursor:pointer;
  4127. position:absolute;
  4128. top:140px;
  4129. right:144px;
  4130. }
  4131. .pzb_title2_div {
  4132. width:84px;
  4133. height:26px;
  4134. background:url(icons/maintenance_title2_div.png) no-repeat;
  4135. cursor:pointer;
  4136. position:absolute;
  4137. top:140px;
  4138. right:40px;
  4139. }
  4140. .pzb_title2_div_on {
  4141. width:84px;
  4142. height:26px;
  4143. background:url(icons/maintenance_title2_div_on.png) no-repeat;
  4144. cursor:pointer;
  4145. position:absolute;
  4146. top:140px;
  4147. right:40px;
  4148. }
  4149. .pzb_title3_div {
  4150. width:85px;
  4151. height:26px;
  4152. background:url(icons/maintenance_title4_div.png) no-repeat;
  4153. cursor:pointer;
  4154. position:absolute;
  4155. top:198px;
  4156. right:40px;
  4157. }
  4158. .pzb_title3_div_on {
  4159. width:85px;
  4160. height:26px;
  4161. background:url(icons/maintenance_title4_div_on.png) no-repeat;
  4162. cursor:pointer;
  4163. position:absolute;
  4164. top:198px;
  4165. right:40px;
  4166. }
  4167. .pzb_title4_div {
  4168. width:85px;
  4169. height:26px;
  4170. background:url(icons/maintenance_title5_div.png) no-repeat;
  4171. cursor:pointer;
  4172. position:absolute;
  4173. top:198px;
  4174. right:144px;
  4175. }
  4176. .pzb_title4_div_on {
  4177. width:85px;
  4178. height:26px;
  4179. background:url(icons/maintenance_title5_div_on.png) no-repeat;
  4180. cursor:pointer;
  4181. position:absolute;
  4182. top:198px;
  4183. right:144px;
  4184. }
  4185. .pzb_title5_div {
  4186. width:85px;
  4187. height:26px;
  4188. background:url(icons/maintenance_title6_div.png) no-repeat;
  4189. cursor:pointer;
  4190. position:absolute;
  4191. top:198px;
  4192. right:249px;
  4193. }
  4194. .pzb_title5_div_on {
  4195. width:85px;
  4196. height:26px;
  4197. background:url(icons/maintenance_title6_div_on.png) no-repeat;
  4198. cursor:pointer;
  4199. position:absolute;
  4200. top:198px;
  4201. right:249px;
  4202. }
  4203. .pzb_title20_div {
  4204. width:302px;
  4205. height:62px;
  4206. background:url(icons/yy1.png) no-repeat;
  4207. cursor:pointer;
  4208. position:absolute;
  4209. top:50px;
  4210. right:1376px;
  4211. }
  4212. .pzb_title11_div {
  4213. width:302px;
  4214. height:62px;
  4215. background:url(icons/yy4.png) no-repeat;
  4216. cursor:pointer;
  4217. position:absolute;
  4218. top:50px;
  4219. right:1054px;
  4220. }
  4221. .pzb_title12_div {
  4222. width:302px;
  4223. height:62px;
  4224. background:url(icons/yy3.png) no-repeat;
  4225. cursor:pointer;
  4226. position:absolute;
  4227. top:50px;
  4228. right:732px;
  4229. }
  4230. .pzb_title13_div {
  4231. width:302px;
  4232. height:62px;
  4233. background:url(icons/yy2.png) no-repeat;
  4234. cursor:pointer;
  4235. position:absolute;
  4236. top:50px;
  4237. right:410px;
  4238. }
  4239. .pzb_title14_div {
  4240. font-size:38px;
  4241. color:#59c24a;
  4242. position:absolute;
  4243. top:60px;
  4244. right:494px;
  4245. }
  4246. .pzb_title15_div {
  4247. font-size:38px;
  4248. color:#ff0000;
  4249. position:absolute;
  4250. top:60px;
  4251. right:814px;
  4252. }
  4253. .pzb_title16_div {
  4254. font-size:38px;
  4255. color:#ff9254;
  4256. position:absolute;
  4257. top:60px;
  4258. right:1140px;
  4259. }
  4260. .pzb_title17_div {
  4261. font-size:38px;
  4262. color:#25b5ce;
  4263. position:absolute;
  4264. top:60px;
  4265. right:1460px;
  4266. }