123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536 |
- .usky_menu .x-btn-inner {
- font-size: 16px; padding:0 10 0 10;font-family:微软雅黑, Microsoft YaHei;
- }
- .x-btn-inner{
- heigh:24px; inner-height:24px;
- }
- .usky_menu .x-menu-item-text {
- font-size: 16px; padding:0 10 0 10;font-family:微软雅黑, Microsoft YaHei;
- }
- @font-face {
- font-family: 'UnidreamLED';
- src:url(UnidreamLED/UnidreamLED.eot); /***兼容ie9***/
- src:url(UnidreamLED/UnidreamLED.eot?#iefix)format('embedded-opentype'), /***兼容ie6-ie8***/
- url('UnidreamLED/UnidreamLED.woff') format('woff'),
- local('UnidreamLED'), url("UnidreamLED/UnidreamLED.woff");/***默认使用本地的***/
- }
- .x-btn-default-small-menu-active .x-btn-inner {
- color: #ffffff;
- background-color: #0e70cb;
- border-color:#0e70cb;
- background-image: -webkit-linear-gradient(top,#0e70cb,#0e70cb);
- }
- .x-menu-item-active .x-menu-item-link {
- color: #ffffff;
- background-color: #0e70cb;
- border-color:#0e70cb;
- background-image: -webkit-linear-gradient(top,#0e70cb,#0e70cb);
- }
- .amap-marker .amap-marker-content div{
- font-family: DS-Digital-Italic;
- color: #ffffff!important;
- font-size: 12px!important;
- }
- .x-btn-arrow {
- color: #47ccfd; font-size: 20px;
- }
- .usky_btn {
- background:url(usky/usky.png) left top no-repeat !important;
- }
- .usky_logo {
- background:url(usky/logo.png) left top no-repeat !important
- }
- .ok_btn {
- background:url(common/famicons/accept.png) left top no-repeat !important;
- }
- .cancel_btn {
- background:url(common/famicons/cancel.png) left top no-repeat !important;
- }
- .filter_btn {
- background:url(common/filter-x.gif) left top no-repeat !important;
- }
- .back_btn {
- background:url(common/back.gif) left top no-repeat !important;
- }
- .append_btn {
- background:url(common/famicons/add.png) left top no-repeat !important;
- }
- .modify_btn {
- background:url(common/famicons/application_edit.png) left top no-repeat !important;
- }
- .delete_btn {
- background:url(common/famicons/application_form_delete.png) left top no-repeat !important;
- }
- .export_btn {
- background:url(common/save.gif) left top no-repeat !important;
- }
- .menu_access_btn {
- background:url(usky/menu_access_btn.png) left top no-repeat !important;
- }
- .menu_alarm_btn {
- background:url(usky/menu_alarm_btn.png) left top no-repeat !important;
- }
- .menu_around_btn {
- background:url(usky/menu_around_btn.png) left top no-repeat !important;
- }
- .main_device_btn {
- background:url(common/device_main.png) left top no-repeat !important;
- }
- .menu_data_btn {
- background:url(usky/menu_data_btn.png) left top no-repeat !important;
- }
- .menu_device_btn {
- background:url(usky/menu_device_btn.png) left top no-repeat !important;
- }
- .menu_efire_btn {
- background:url(usky/menu_efire_btn.png) left top no-repeat !important;
- }
- .menu_fire_btn {
- background:url(usky/menu_fire_btn.png) left top no-repeat !important;
- }
- .menu_frontpage_btn {
- background:url(usky/menu_frontpage_btn.png) left top no-repeat !important;
- }
- .menu_map_btn {
- background:url(usky/menu_map_btn.png) left top no-repeat !important;
- }
- .menu_power_btn {
- background:url(usky/menu_power_btn.png) left top no-repeat !important;
- }
- .menu_statistics_btn {
- background:url(usky/menu_statistics_btn.png) left top no-repeat !important;
- }
- .menu_sysinfo_btn {
- background:url(usky/menu_sysinfo_btn.png) left top no-repeat !important;
- }
- .menu_theme_btn {
- background:url(usky/menu_theme_btn.png) left top no-repeat !important;
- }
- .menu_view_btn {
- background:url(usky/menu_view_btn.png) left top no-repeat !important;
- }
- .menu_water_btn {
- background:url(usky/menu_water_btn.png) left top no-repeat !important;
- }
- .menu_work_btn {
- background:url(usky/menu_work_btn.png) left top no-repeat !important;
- }
- .setup_building_btn {
- background:url(usky/setup_building_btn.png) left top no-repeat !important;
- }
- .setup_company_btn {
- background:url(usky/setup_company_btn.png) left top no-repeat !important;
- }
- .setup_interface_btn {
- background:url(usky/setup_interface_btn.png) left top no-repeat !important;
- }
- .setup_iotcard_btn {
- background:url(usky/setup_iotcard_btn.png) left top no-repeat !important;
- }
- .setup_permission_btn {
- background:url(usky/setup_permission_btn.png) left top no-repeat !important;
- }
- .setup_permissiongroup_btn {
- background:url(usky/setup_permissiongroup_btn.png) left top no-repeat !important;
- }
- .setup_pno_btn {
- background:url(usky/setup_pno_btn.png) left top no-repeat !important;
- }
- .setup_unit_btn {
- background:url(usky/setup_unit_btn.png) left top no-repeat !important;
- }
- .setup_user_btn {
- background:url(usky/setup_user_btn.png) left top no-repeat !important;
- }
- .sysinfo_point_btn {
- background:url(usky/sysinfo_point_btn.png) left top no-repeat !important;
- }
- .sysinfo_runtime_btn {
- background:url(usky/sysinfo_runtime_btn.png) left top no-repeat !important;
- }
- .sysinfo_server_btn {
- background:url(usky/sysinfo_server_btn.png) left top no-repeat !important;
- }
- .user_change_btn {
- background:url(usky/user_change_btn.png) left top no-repeat !important;
- }
- .user_logout_btn {
- background:url(usky/user_logout_btn.png) left top no-repeat !important;
- }
- .user_password_btn {
- background:url(usky/user_password_btn.png) left top no-repeat !important;
- }
- .view_level_btn {
- background:url(usky/view_level_btn.png) left top no-repeat !important;
- }
- .view_scope_btn {
- background:url(usky/view_scope_btn.png) left top no-repeat !important;
- }
- .view_sound_btn {
- background:url(usky/view_sound_btn.png) left top no-repeat !important;
- }
- .back_btn {
- background:url(common/famicons/arrow_left.png) left top no-repeat !important;
- }
- .alarm_pie_var {
- margin: 0px; overflow: hidden; z-index: 1000; position: absolute; top: 100px; left:20px; border: 0px solid #000;
- }
- .device_pie_bar {
- margin: 0px; overflow: hidden; z-index: 1000; position: absolute; top: 100px; right:20px; border: 0px solid #000;
- }
- .pie_total {
- color:#DDDF0D;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
- }
- .pie_normal {
- color:#31e9ff;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
-
- }
- .pie_abnormal {
- color:#f66167;text-shadow: 1px 1px 2px #888, 0 0 0 #000; font-size:24px;
- }
- .shadow_black_bak {
- text-shadow: 1px 1px 2px #888, 0 0 0 #000;
- }
- .shadow_white_bak {
- text-shadow: 1px 1px 2px #FFF, 0 0 0 #000;
- }
- .alarm_wrapper {
- font-family:微软雅黑, Microsoft YaHei;
- margin-top:5px;
- position:absolute; top:10px; left:70px; width:660px; z-index:1000; border: 0px solid #000; font-size:20px; font-weight:bold;
- }
- .alarm_warpper_table {
- border:none; width:800px; height:58px; z-index: 1000; position:absolute; top:22px; left:560px; overflow: hidden;border-collapse: collapse;
- }
- .sub_wrapper_table {
- 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;
- }
- .toplevel {
- z-index:20000;
- }
- .x-item-disabled-new {
- background: rgba(0,0,0,0);
- color:#ffffff;
- }
- .active_company {
- border: 1px solid rgba(64,85,98,0.7); background: rgba(64,85,98,0.3);
- }
- .saerch_company_list {
- width:300px;
- z-index:1001;
- font-size: 14px;
- font-family:微软雅黑, Microsoft YaHei;
- position:absolute;top:80px; right:200px;
- }
- .bar5 {background: rgba(0,0,0,0.0);z-index:1001;position:absolute; top:50px;right:200px;color: rgba(255,255,255,0.3);}
- .bar5 input, .bar5 button {
- background: transparent;
- }
- .bar5 input {
- border: 2px solid #27c5ff;
- border-radius:10px;
- font-size: 14px;
- width: 300px;
- color: rgba(255,255,255,0.5);
- height: 30px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .bar input::-webkit-input-placeholder{
- color:rgba(255,255,255,0.3);
- }
- .bar input::-moz-placeholder{
- color:rgba(255,255,255,0.3);
- }
- .bar input:-moz-placeholder{
- color:rgba(255,255,255,0.3);
- }
- .bar input:-ms-input-placeholder{
- color:rgba(255,255,255,0.3);
- }
- .bar5 input:focus {
- color: rgba(255,255,255,1);
- }
- .bar5_clear {
- background:url(common/close-tmp.gif) no-repeat 50% 50%; -webkit-filter: grayscale(100%);
- -moz-filter: grayscale(100%);
- -ms-filter: grayscale(100%);
- -o-filter: grayscale(100%);
- filter: grayscale(100%);
- filter: gray;
- width:28px; height:28px; z-index: 1001; position:absolute; top:1px; right:2px;cursor:"pointer";
- }
- .x-panel-header-new {
- background-image: none;
- background-color: rgba(0,0,0,0.0);
- height: 0px;
- overflow:hidden;
- }
- .operation_body {
- height:498px;
- background: url(operation_bg.png) repeat-x;
- overflow:hidden;
- }
- .operation_dock_l {
- position: absolute;
- top: 20px;
- left: 20px;
- width: 118px;
- height: 462px;
- background: url(operation_docker_l.png) no-repeat;
- }
- .operation_dock_r {
- position: absolute;
- top: 20px;
- right: 20px;
- width: 118px;
- height: 462px;
- background: url(operation_docker_r.png) no-repeat;
- }
- .operation_title_icon{
- position:absolute;
- top: 86px;
- left: 91px;
- }
- .operation_title_text {
- position:absolute;
- top: 100px;
- left: 146px;
- width: 300px;
- height: 30px;
- font-size: 24px;
- color: #6dcffc;
- z-index锛�1000锛�
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_1 {
- position:absolute;
- top:185px;
- left:90px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_2 {
- position:absolute;
- top:255px;
- left:90px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_3 {
- position:absolute;
- top:325px;
- left:90px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_4 {
- position:absolute;
- top:395px;
- left:90px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_num_1 {
- position:absolute;
- top:166px;
- left:146px;
- color:#ffffff;
- font-size:34px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_2 {
- position:absolute;
- top:236px;
- left:146px;
- color:#31e9ff;
- font-size:34px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_3 {
- position:absolute;
- top:306px;
- left:146px;
- color:#f66167;
- font-size:34px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_4 {
- position:absolute;
- top:376px;
- left:146px;
- color:#f6ff67;
- font-size:34px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_label_11 {
- position:absolute;
- top:185px;
- left:90px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_12 {
- position:absolute;
- top:255px;
- left:90px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_13 {
- position:absolute;
- top:325px;
- left:90px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_14 {
- position:absolute;
- top:185px;
- left:444px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_15 {
- position:absolute;
- top:255px;
- left:444px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_label_16 {
- position:absolute;
- top:325px;
- left:444px;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_num_11 {
- position:absolute;
- top:166px;
- left:186px;
- color:#ffffff;
- font-size:34px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_12 {
- position:absolute;
- top:166px;
- left:500px;
- color:#31e9ff;
- display: flex;
- justify-content:left;
- align-items:Center;
- font-size:20px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_13 {
- position:absolute;
- top:236px;
- left:186px;
- color:#f66167;
- font-size:34px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_14 {
- position:absolute;
- top:236px;
- left:500px;
- color:#31e9ff;
- display: flex;
- justify-content:left;
- align-items:Center;
- font-size:20px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_15 {
- position:absolute;
- top:306px;
- left:186px;
- color:#f6ff67;
- font-size:34px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_num_16 {
- position:absolute;
- top:306px;
- left:500px;
- color:#31e9ff;
- display: flex;
- justify-content:left;
- align-items:Center;
- font-size:20px;
- font-family:微软雅黑, Microsoft YaHei;
- width:212px;
- height:47px;
- background:url(operation_item.png) no-repeat;
- padding:2px 0px 0px 9px;
- }
- .operation_pie_bg {
- position:absolute;
- top:116px;
- left:410px;
- width:280px;
- height:280px;
- background:url(operation_pie_bg.gif) no-repeat;
- }
- .operation_pie {
- position:absolute;
- top:158px;
- left:452px;
- width:196px;
- height:196px;
- z-index:100;
- }
- .operation_pie_title {
- position:absolute;
- top:365px;
- left:526px;
- width:70px;
- height:20px;
- z-index:200;
- color:#dcdcdc;
- font-size:16px;
- font-family:微软雅黑, Microsoft YaHei;
- }
- .operation_area_bg {
- position:absolute;
- top:57px;
- left:750px;
- width:1100px;
- height:384px;
- background: url(operation_area_bg.gif) no-repeat;
- }
- .operation_area {
- position:absolute;
- top:116px;
- left:800px;
- width:1011px;
- height:300px;
- z-index:200;
- }
- .fp_backbtn {
- position:absolute;
- top:90px;
- left:100px;
- z-index: 500;
- width:133px;
- height:46px;
- background: url(back.png) no-repeat;
- display:none;
- cursor:pointer;
- }
- .mask_left {
- position:absolute;
- top:0px;
- left:0px;
- width:630px;
- z-index: 200;
- background: url(mask_l.png) repeat-y;
- }
- .mask_right {
- position:absolute;
- top:0px;
- right:0px;
- width:630px;
- z-index: 200;
- background: url(mask_r.png) repeat-y;
- }
- .mask_top {
- position:absolute;
- top:0px;
- left:0px;
- height:100px;
- z-index: 200;
- background: url(mask_t.png) repeat-x;
- }
- .mask_bottom {
- position:absolute;
- left:0px;
- height:100px;
- z-index: 200;
- background: url(mask_b.png) repeat-x;
- }
- .map_header {
- position:absolute;
- top:0px;
- width:740px;
- height:0px;
- z-index: 1000;
- background: url(icons/map_header2.png) no-repeat center top;
- /*background: url(03index/map_header_frame.png) no-repeat center top;*/
- }
- .amap-marker-label{
- border: 0;
- background-color: rgba(0,0,0,0.0);
- }
- .info{
- position: relative;
- top: 0;
- right: 0;
- min-width: 0;
- color:#31e9ff;
- border-left: 2px solid #50f7ed;
- border-bottom: 2px solid #50f7ed;
- font-size:16px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- border-image: -webkit-linear-gradient(70deg,#50f7ed ,transparent) 0 0 2 2;
- border-image: -moz-linear-gradient(70deg,#50f7ed,transparent) 0 0 2 2;
- border-image: linear-gradient(70deg,#50f7ed,transparent) 0 0 2 2;
- background-color: rgba(16,56,110,0.6);
- }
- .info_label{
- margin:0px;
- padding:0px;
- font-size:16px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- border-image: -webkit-linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
- border-image: -moz-linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
- border-image: linear-gradient(left,transparent,#50f7ed,transparent) 2 0 0 0;
- background-color: transparent;
- }
- .info_title{
- position: relative;
- top:4px;
- left:96px;
- width:179px;
- height:44px;
- font-size:12px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- color:#31e9ff;
- overflow:hidden;
- white-space:nowrap;
- text-overflow:ellipsis;
- }
- .info_body0{
- position: absolute;
- top:44px;
- left:80px;
- width:179px;
- height:20px;
- color:#ffffff;
- font-size:14px;
- font-family:微软雅黑, Microsoft YaHei;
- overflow:hidden;
- display:flex;
-
- }
- .info_body1{
- position: absolute;
- top:70px;
- left:80px;
- width:179px;
- height:20px;
- color:#ffffff;
- font-size:14px;
- font-family:微软雅黑, Microsoft YaHei;
- overflow:hidden;
- display:flex;
- }
- .info_body2{
- position: absolute;
- top:96px;
- left:80px;
- width:179px;
- height:20px;
- color:#ffffff;
- font-size:14px;
- font-family:微软雅黑, Microsoft YaHei;
- overflow:hidden;
- display:flex;
- }
- .info_body3{
- position: absolute;
- top:122px;
- left:80px;
- width:179px;
- height:20px;
- color:#ffffff;
- font-size:14px;
- font-family:微软雅黑, Microsoft YaHei;
- overflow:hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .info_btn{
- position: absolute;
- top: 156px;
- left:66px;
- width:66px;
- height:24px;
- cursor:pointer;
- background-color:#7FEEFF;
- text-align:center;
- color:#0f386e;
- font-size:12px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- padding-top:2px;
- border-radius:4px;
- }
- .alarm_btn{
- position: absolute;
- top: 156px;
- left:138px;
- width:66px;
- height:24px;
- cursor:pointer;
- background-color:#7FEEFF;
- text-align:center;
- color:#0f386e;
- font-size:12px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- padding-top:2px;
- border-radius:4px;
- }
- .company_building_return{
- position: absolute;
- top: 56px;
- right:66px;
- width:66px;
- height:24px;
- cursor:pointer;
- background-color:#7FEEFF;
- text-align:center;
- color:#0f386e;
- font-size:12px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- padding-top:2px;
- border-radius:4px;
- }
- .today_team_btn{
- position: absolute;
- top: 156px;
- left:210px;
- width:66px;
- height:24px;
- cursor:pointer;
- background-color:#7FEEFF;
- text-align:center;
- color:#0f386e;
- font-size:12px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- padding-top:2px;
- border-radius:4px;
- }
- .alarm_div{
- width:179px;
- height:200px;
- background-color:yellow;
- }
- .data_bar_title {
- font-size:16px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- color:#ffffff;
- height:32px;
- cursor:pointer;
- }
- .data_bar_total_label {
- font-size:12px;
- font-family:微软雅黑, Microsoft YaHei;
- color:#ffffff;
- height:32px;
- cursor:pointer;
- }
- .data_bar_total_number {
- font-size:18px;
- font-family:微软雅黑, Microsoft YaHei;
- color:#31e9ff;
- height:32px;
- cursor:pointer;
- }
- .data_bar_alarm_label {
- font-size:12px;
- font-family:微软雅黑, Microsoft YaHei;
- color:#ffffff;
- height:42px;
- cursor:pointer;
- }
- .data_bar_alarm_number {
- font-size:18px;
- font-family:微软雅黑, Microsoft YaHei;
- color:#f66167;
- height:42px;
- cursor:pointer;
- }
- .align_right {
- text-align:right;
- }
- .device_info_title {
- margin-top:15px;
- font-size:16px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- color:#ffffff;
- cursor:pointer;
- }
- .device_info {
- font-size:10px;
- font-family:微软雅黑, Microsoft YaHei;
- color:#ffffff;
- cursor:pointer;
- }
- .device_confirm_num0 {
- color:#ffffff;
- font-size:16px;
- cursor:pointer;
- }
- .device_confirm_num1 {
- color:#5ee7b8;
- font-size:16px;
- cursor:pointer;
- }
- .device_confirm_num2 {
- color:#ea924a;
- font-size:16px;
- cursor:pointer;
- }
- .device_confirm_num3 {
- color:#ffffff;
- font-size:14px;
- cursor:pointer;
- }
- .red_color{
- color:#f66167
- }
- .default_color{
- color:#000000
- }
- .data_bar_area{
- top:70px;
- left:34px;
- position: absolute;
- z-index:800;
- overflow-x:none;
- overflow-y:auto;
- width:386px;
- height:891px;
- cursor:pointer;
- }
- .data_bar_area::-webkit-scrollbar{
- width:6px;
- height:100%;
- }
- .data_bar_area::-webkit-scrollbar-thumb{
- width:6px;
- height:60px;
- background-color:rgba(0,130,255,0.6);
- border-radius:5px;
- }
- .data_bar_area::-webkit-scrollbar-track
- {
- border-radius: 10px;
- background-color: rgba(0,0,0,.3);
- }
- .alarm_tab_area {
- position: absolute;
- right:60px;
- top:100px;
- width:476px;
- z-index:500;
- overflow-x:none;
- overflow-y:auto;
- }
- .alarm_tab_area::-webkit-scrollbar{
- width:6px;
- height:100%;
- }
- .alarm_tab_area::-webkit-scrollbar-thumb{
- width:6px;
- height:60px;
- background-color:rgba(0,130,255,0.6);
- border-radius:5px;
- }
- .alarm_tab_area::-webkit-scrollbar-track
- {
- border-radius: 10px;
- background-color: rgba(0,0,0,.3);
- }
- .alarm_tab {
- position: absolute;
- left:0px;
- top:0px;
- width:456px;
- height:132px;
- background:url(icons/alarm_tab.png) no-repeat;
- z-index:500;
- cursor:pointer;
- }
- .alarm_tab_title {
- position:absolute;
- top:24px;
- left:38px;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:16px;
- font-weight:bold;
- color:#31e9ff;
- width:320px;
- }
- .alarm_tab_time {
- position:absolute;
- top:50px;
- left:38px;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- color:#dcdcdc;
- width:270px;
- }
- .alarm_tab_data {
- position:absolute;
- top:70px;
- left:38px;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- color:#dcdcdc;
- width:270px;
- height:30px;
- }
- .alarm_tab_icon {
- position:absolute;
- top:33px;
- right:56px;
- }
- .alarm_icon_01 {
- background:url(icons/alarm_tab_01.gif) no-repeat;
- }
- .alarm_icon_02 {
- background:url(icons/alarm_tab_02.gif) no-repeat;
- }
- .alarm_icon_03 {
- background:url(icons/alarm_tab_03.gif) no-repeat;
- }
- .alarm_icon_04 {
- background:url(icons/alarm_tab_04.gif) no-repeat;
- }
- .map_btn {
- cursor:pointer;
- z-index:500;
- }
- /*左边按钮样式
- .map_btn_bigger_off {
- position:absolute;
- bottom:66px;
- left:60px;
- width:21px;
- height:21px;
- background:url(icons/bigger_off.png) no-repeat;
- }
- .map_btn_bigger_on {
- position:absolute;
- bottom:66px;
- left:60px;
- width:21px;
- height:21px;
- background:url(icons/bigger_on.png) no-repeat;
- }
- .map_btn_smaller_off {
- position:absolute;
- bottom:66px;
- left:90px;
- width:21px;
- height:21px;
- background:url(icons/smaller_off.png) no-repeat;
- }
- .map_btn_smaller_on {
- position:absolute;
- bottom:66px;
- left:90px;
- width:21px;
- height:21px;
- background:url(icons/smaller_on.png) no-repeat;
- }
- .map_btn_showlaebl_off {
- position:absolute;
- bottom:61px;
- left:130px;
- width:101px;
- height:31px;
- background:url(icons/show_label_off.png) no-repeat;
- }
- .map_btn_showlaebl_on {
- position:absolute;
- bottom:61px;
- left:130px;
- width:101px;
- height:31px;
- background:url(icons/show_label_on.png) no-repeat;
- }
- .map_btn_hidelabel {
- position:absolute;
- bottom:61px;
- left:130px;
- width:101px;
- height:31px;
- background:url(icons/hide_label.png) no-repeat;
- }
- .map_btn_left_off {
- position:absolute;
- bottom:61px;
- left:241px;
- width:80px;
- height:31px;
- background:url(icons/map_left_off.png) no-repeat;
- }
- .map_btn_left_on {
- position:absolute;
- bottom:61px;
- left:241px;
- width:80px;
- height:31px;
- background:url(icons/map_left_on.png) no-repeat;
- }
- .map_btn_right_off {
- position:absolute;
- bottom:61px;
- left:331px;
- width:80px;
- height:31px;
- background:url(icons/map_right_off.png) no-repeat;
- }
- .map_btn_right_on {
- position:absolute;
- bottom:61px;
- left:331px;
- width:80px;
- height:31px;
- background:url(icons/map_right_on.png) no-repeat;
- }
- .map_btn_high_off {
- position:absolute;
- bottom:61px;
- left:421px;
- width:80px;
- height:31px;
- background:url(icons/view_high_off.png) no-repeat;
- }
- .map_btn_high_on {
- position:absolute;
- bottom:61px;
- left:421px;
- width:80px;
- height:31px;
- background:url(icons/view_high_on.png) no-repeat;
- }
- .map_btn_low_off {
- position:absolute;
- bottom:61px;
- left:511px;
- width:80px;
- height:31px;
- background:url(icons/view_low_off.png) no-repeat;
- }
- .map_btn_low_on {
- position:absolute;
- bottom:61px;
- left:511px;
- width:80px;
- height:31px;
- background:url(icons/view_low_on.png) no-repeat;
- }
- */
- .map_btn_bigger_off {
- position:absolute;
- bottom:66px;
- right:605px;
- width:21px;
- height:21px;
- background:url(icons/bigger_off.png) no-repeat;
- }
- .map_btn_bigger_on {
- position:absolute;
- bottom:66px;
- right:605px;
- width:21px;
- height:21px;
- background:url(icons/bigger_on.png) no-repeat;
- }
- .map_btn_smaller_off {
- position:absolute;
- bottom:66px;
- right:575px;
- width:21px;
- height:21px;
- background:url(icons/smaller_off.png) no-repeat;
- }
- .map_btn_smaller_on {
- position:absolute;
- bottom:66px;
- right:575px;
- width:21px;
- height:21px;
- background:url(icons/smaller_on.png) no-repeat;
- }
- .map_btn_showlaebl_off {
- position:absolute;
- bottom:61px;
- right:455px;
- width:101px;
- height:31px;
- background:url(icons/show_label_off.png) no-repeat;
- }
- .map_btn_showlaebl_on {
- position:absolute;
- bottom:61px;
- right:455px;
- width:101px;
- height:31px;
- background:url(icons/show_label_on.png) no-repeat;
- }
- .map_btn_hidelabel {
- position:absolute;
- bottom:61px;
- right:455px;
- width:101px;
- height:31px;
- background:url(icons/hide_label.png) no-repeat;
- }
- .map_btn_left_off {
- position:absolute;
- bottom:61px;
- right:365px;
- width:80px;
- height:31px;
- background:url(icons/map_left_off.png) no-repeat;
- }
- .map_btn_left_on {
- position:absolute;
- bottom:61px;
- right:365px;
- width:80px;
- height:31px;
- background:url(icons/map_left_on.png) no-repeat;
- }
- .map_btn_right_off {
- position:absolute;
- bottom:61px;
- right:275px;
- width:80px;
- height:31px;
- background:url(icons/map_right_off.png) no-repeat;
- }
- .map_btn_right_on {
- position:absolute;
- bottom:61px;
- right:275px;
- width:80px;
- height:31px;
- background:url(icons/map_right_on.png) no-repeat;
- }
- .map_btn_high_off {
- position:absolute;
- bottom:61px;
- right:185px;
- width:80px;
- height:31px;
- background:url(icons/view_high_off.png) no-repeat;
- }
- .map_btn_high_on {
- position:absolute;
- bottom:61px;
- right:185px;
- width:80px;
- height:31px;
- background:url(icons/view_high_on.png) no-repeat;
- }
- .map_btn_low_off {
- position:absolute;
- bottom:61px;
- right:95px;
- width:80px;
- height:31px;
- background:url(icons/view_low_off.png) no-repeat;
- }
- .map_btn_low_on {
- position:absolute;
- bottom:61px;
- right:95px;
- width:80px;
- height:31px;
- background:url(icons/view_low_on.png) no-repeat;
- }
- .alarm_tab_pingfen {
- position:absolute;
- top:620px;
- left:50px;
- width:420px;
- height:220px;
- background:url(mange-item-new-new.png) no-repeat;
- }
- .alarm_tab_pingfenChart {
- position:absolute;
- top:20px;
- left:0px;
- width:170px;
- height:160px;
- }
- .alarm_tab_pingfenTitle {
- position:absolute;
- top:24px;
- left:216px;
- font-Size:18px;
- font-weight:bold;
- color:#7AFFFF;
- }
- .alarm_tab_pingfenContent {
- position:absolute;
- width:230px;
- height:80px;
- top:60px;
- left:160px;
- font-Size:14px;
- color:#7AFFFF;
- }
- .operating_mode{
- width: 321px;
- height: 80px;
- position: fixed;
- bottom:100px;
- left:50px;
- border: 1px solid #25bfff;
- box-shadow: inset 0px 0px 10px #25bfff;
- background-color: rgba(23,21,57,0.2);
- background: rgba(13, 22, 41, .9);
- border-radius:10px;
- font-size: 16px;
- }
- .operating_mode_ul{
- list-style-type: disc;
- display: flex;
- margin-block-start: 1em;
- margin-inline-start: 0px;
- margin-inline-end: 0px;
- flex-direction: row;
- justify-content: center;
- }
- .operating_mode_li{
- width: 105px;
- height: 40px;
- display: inline-block;
- text-align: center;
- padding: 0;
- margin: 0px;
- font-family: "微软雅黑";
- }
- .operating_mode_p1{
- position: fixed;
- bottom:140px;
- left:90px;
- color: #25bfff;
- }
- .operating_mode_p2{
- color: #fff;
- position: fixed;
- bottom:120px;
- left:72px;
- }
- .operating_mode_li1{
- width: 105px;
- height: 40px;
- display: inline-block;
- text-align: center;
- margin-top: 20px;
- padding: 0;
- margin: 0px;
- font-family: "微软雅黑";
- border-left: 1px solid #25bfff;
- }
- .operating_mode_p3{
- position: fixed;
- bottom:140px;
- left:200px;
- color: #25bfff;
- }
- .operating_mode_p4{
- color: #fff;
- position: fixed;
- bottom:120px;
- left:182px;
- }
- .operating_mode_li2{
- width: 105px;
- height: 40px;
- display: inline-block;
- text-align: center;
- margin-top: 20px;
- padding: 0;
- margin: 0px;
- font-family: "微软雅黑";
- border-left: 1px solid #25bfff;
- }
- .operating_mode_p5{
- color: #25bfff;
- position: fixed;
- bottom:140px;
- left:300px;
- }
- .operating_mode_p6{
- color: #fff;
- position: fixed;
- bottom:120px;
- left:272px;
- }
- .bar_chart{
- posttion:absolute;
- float:left;
- height:300px!important;
- width:200px!important;
- bottom:120px;
- left:600px;
- }
- .bar_chart_canvas{
- height:300px;
- width:200px;
- }
- .hiden {
- display:none;
- }
- .shown {
- display:block;
- }
- .proform2_bg_tl{
- position:absolute;
- width:928px;
- height:752px;
- top:0px;
- left:0px;
- background:url(icons/proform2_tl.png) no-repeat;
- }
- .proform_bg_tl{
- position:absolute;
- width:928px;
- height:752px;
- top:0px;
- left:0px;
- background:url(icons/proform_tl.png) no-repeat;
- }
- .proform_bg_tm{
- position:absolute;
- top:0px;
- left:928px;
- height:752px;
- background:url(icons/proform_tm.png) repeat-x;
- }
- .proform_bg_tr {
- position:absolute;
- top:0px;
- right:0px;
- width:442px;
- height:752px;
- background:url(icons/proform_tr.png) no-repeat;
- }
- .proform_bg_ml {
- position:absolute;
- top:752px;
- left:0px;
- width:928px;
- background:url(icons/proform_ml.png) repeat-y;
- }
- .proform_bg_mm {
- position:absolute;
- top:752px;
- left:928px;
- background:url(icons/proform_mm.png) repeat;
- }
- .proform_bg_mr {
- position:absolute;
- top:752px;
- right:0px;
- width:442px;
- background:url(icons/proform_mr.png) repeat-y;
- }
- .proform_bg_bl {
- position:absolute;
- bottom:0px;
- left:0px;
- width:928px;
- height:170px;
- background:url(icons/proform_bl.png) no-repeat;
- }
- .proform_bg_bm {
- position:absolute;
- bottom:0px;
- left:928px;
- height:170px;
- background:url(icons/proform_bm.png) repeat-x;
- }
- .proform_bg_br {
- position:absolute;
- bottom:0px;
- right:0px;
- width:442px;
- height:170px;
- background:url(icons/proform_br.png) no-repeat;
- }
- .proform_menu_1 {
- width:234px;
- height:82px;
- background:url(icons/proform_m3.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:167px;
- left:96px;
- }
- .proform_menu_1_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m3_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:167px;
- left:96px;
- }
- .proform_menu_2 {
- width:234px;
- height:82px;
- background:url(icons/proform_m1.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:239px;
- left:96px;
- }
- .proform_menu_2_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m1_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:239px;
- left:96px;
- }
- .proform_menu_3 {
- width:234px;
- height:82px;
- background:url(icons/proform_m5.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:326px;
- left:110px;
- }
- .proform_menu_3_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m5_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:326px;
- left:110px;
- }
- .proform_menu_4 {
- width:234px;
- height:82px;
- background:url(icons/proform_m6.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:383px;
- left:96px;
- }
- .proform_menu_4_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m6_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:383px;
- left:96px;
- }
- .proform_menu_5 {
- width:234px;
- height:82px;
- background:url(icons/proform_m2.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:472px;
- left:110px;
- }
- .proform_menu_5_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m2_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:472px;
- left:110px;
- }
- .proform_menu_6 {
- width:234px;
- height:82px;
- background:url(icons/proform_m4.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:527px;
- left:96px;
- }
- .proform_menu_6_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m4_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:527px;
- left:96px;
- }
- .proform_menu_7 {
- width:234px;
- height:82px;
- background:url(icons/proform_m7.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:599px;
- left:96px;
- }
- .proform_menu_7_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m7_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:599px;
- left:96px;
- }
- .proform2_menu_1 {
- width:234px;
- height:82px;
- background:url(icons/proform2_m3.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:167px;
- left:96px;
- }
- .proform2_menu_1_on {
- width:234px;
- height:82px;
- background:url(icons/proform2_m3_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:167px;
- left:96px;
- }
- .proform2_menu_2 {
- width:234px;
- height:82px;
- background:url(icons/proform2_m1.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:239px;
- left:96px;
- }
- .proform2_menu_2_on {
- width:234px;
- height:82px;
- background:url(icons/proform2_m1_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:239px;
- left:96px;
- }
- .proform2_menu_3 {
- width:234px;
- height:82px;
- background:url(icons/proform_m5.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:311px;
- left:96px;
- }
- .proform2_menu_3_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m5_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:311px;
- left:96px;
- }
- .proform2_menu_4 {
- width:234px;
- height:82px;
- background:url(icons/proform2_m6.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:383px;
- left:96px;
- }
- .proform2_menu_4_on {
- width:234px;
- height:82px;
- background:url(icons/proform2_m6_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:383px;
- left:96px;
- }
- .proform2_menu_5 {
- width:234px;
- height:82px;
- background:url(icons/proform2_m2.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:455px;
- left:96px;
- }
- .proform2_menu_5_on {
- width:234px;
- height:82px;
- background:url(icons/proform2_m2_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:455px;
- left:96px;
- }
- .proform2_menu_6 {
- width:234px;
- height:82px;
- background:url(icons/proform2_m4.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:527px;
- left:96px;
- }
- .proform2_menu_6_on {
- width:234px;
- height:82px;
- background:url(icons/proform2_m4_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:527px;
- left:96px;
- }
- .proform2_menu_7 {
- width:234px;
- height:82px;
- background:url(icons/proform2_m7.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:599px;
- left:96px;
- }
- .proform2_menu_7_on {
- width:234px;
- height:82px;
- background:url(icons/proform2_m7_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:599px;
- left:96px;
- }
- .proform_fliter_btn {
- position:absolute;
- width:120px;
- height:26px;
- background:url(icons/proform_fliter_btn.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:440px;
- }
- .proform_fliter_btn_on {
- position:absolute;
- width:120px;
- height:26px;
- background:url(icons/proform_fliter_btn_on.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:440px;
- }
- .proform_modify_btn {
- position:absolute;
- width:84px;
- height:26px;
- background:url(icons/proform_modify_btn.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:336px;
- }
- .proform_modify_btn_on {
- position:absolute;
- width:84px;
- height:26px;
- background:url(icons/proform_modify_btn_on.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:336px;
- }
- .proform_append_btn {
- position:absolute;
- width:84px;
- height:26px;
- background:url(icons/proform_append_btn.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:232px;
- }
- .proform_append_btn_on {
- position:absolute;
- width:84px;
- height:26px;
- background:url(icons/proform_append_btn_on.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:232px;
- }
- .proform_delete_btn {
- position:absolute;
- width:84px;
- height:26px;
- background:url(icons/proform_delete_btn.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:128px;
- }
- .proform_delete_btn_on {
- position:absolute;
- width:84px;
- height:26px;
- background:url(icons/proform_delete_btn_on.png) no-repeat;
- cursor:pointer;
- top:162px;
- right:128px;
- }
- .proform6_menu_1 {
- width:234px;
- height:82px;
- background:url(icons/proform_m1.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:167px;
- left:96px;
- }
- .proform6_menu_1_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m1_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:167px;
- left:96px;
- }
- .proform6_menu_2 {
- width:234px;
- height:82px;
- background:url(icons/proform_m5.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:254px;
- left:110px;
- }
- .proform6_menu_2_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m5_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:254px;
- left:110px;
- }
- .proform6_menu_3 {
- width:234px;
- height:82px;
- background:url(icons/proform_m1.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:310px;
- left:96px;
- }
- .proform6_menu_3_on {
- width:234px;
- height:82px;
- background:url(icons/proform_m1_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:310px;
- left:96px;
- }
- .company_bg_tl{
- position:absolute;
- width:1414px;
- height:762px;
- top:0px;
- left:0px;
- background:url(icons/company_tl.png) no-repeat;
- z-index:10;
- }
- .company_bg_tm {
- position:absolute;
- height:762px;
- top:0px;
- left:1414px;
- background:url(icons/company_tm.png) repeat-x;
- z-index:10;
- }
- .company_bg_tr {
- position:absolute;
- width:406px;
- height:762px;
- top:0px;
- right:0px;
- background:url(icons/company_tr.png) no-repeat;
- z-index:10;
- }
- .company_bg_ml{
- position:absolute;
- width:1414px;
- top:762px;
- left:0px;
- background:url(icons/company_ml.png) repeat-y;
- z-index:10;
- }
- .company_bg_mm {
- position:absolute;
- left:1414px;
- top:762px;
- background:url(icons/company_mm.png) repeat;
- z-index:10;
- }
- .company_bg_mr {
- position:absolute;
- width:406px;
- top:762px;
- right:0px;
- background:url(icons/company_mr.png) repeat-y;
- z-index:10;
- }
- .company_bg_bl{
- position:absolute;
- width:1414px;
- height:170px;
- bottom:0px;
- left:0px;
- background:url(icons/company_bl.png) no-repeat;
- z-index:10;
- }
- .company_bg_bm {
- position:absolute;
- height:170px;
- width:100px;
- bottom:0px;
- left:1414px;
- background:url(icons/company_bm.png) repeat-x;
- z-index:10;
- }
- .company_bg_br {
- position:absolute;
- height:170px;
- width:406px;
- bottom:0px;
- right:0px;
- background:url(icons/company_br.png) no-repeat;
- z-index:10;
- }
- .bak_to_front {
- position: absolute;
- top:67px;
- left:73px;
- width:110px;
- height:36px;
- background: url(icons/bak_to_front.png) no-repeat;
- z-index:20;
- cursor:pointer;
- }
- .building_level_label{
- position: absolute;
- top:157px;
- left:133px;
- color:#ffffff;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- z-index:20;
- }
- .building_level_count{
- margin-left:15px;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:16px;
- font-weight:bold;
- }
- .company_building {
- position: absolute;
- top: 195px;
- left:100px;
- width:536px;
- height:600px;
- overflow-x:none;
- overflow-y:auto;
- z-index:20;
- }
- .company_building_on {
- position: absolute;
- top: 200px;
- left:116px;
- width:496px;
- height:620px;
- z-index:20;
- }
- .company_building::-webkit-scrollbar{
- width:6px;
- height:100%;
- }
- .company_building::-webkit-scrollbar-thumb{
- width:6px;
- height:60px;
- background-color:rgba(0,130,255,0.6);
- border-radius:5px;
- }
- .company_building::-webkit-scrollbar-track
- {
- border-radius: 10px;
- background-color: rgba(0,0,0,.3);
- }
- .building_top {
- position: absolute;
- width:400px;
- height:120px;
- }
- .building_top_label {
- position:absolute;
- top:0px;
- left:0px;
- padding-top:31px;
- padding-right:16px;
- text-align:right;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- }
- .building_top_icon {
- position:absolute;
- top:0px;
- left:40px;
- width:360px;
- height:120px;
- background: url(icons/bt_icon.png) no-repeat;
- }
- .building_level {
- position: absolute;
- width:400px;
- height:108px;
- }
- .building_level_info {
- position:absolute;
- top:0px;
- left:0px;
- padding-top:20px;
- padding-right:16px;
- text-align:right;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- }
- .building_level_icon {
- position:absolute;
- top:0px;
- left:40px;
- width:360px;
- height:108px;
- background: url(icons/bl_icon.png) no-repeat;
- }
- .building_empty_level_icon {
- position:absolute;
- top:0px;
- left:40px;
- width:360px;
- height:108px;
- background: url(icons/empty_icon.png) no-repeat;
- }
- .building_base {
- position: absolute;
- width:400px;
- height:108px;
- }
- .building_base_info {
- position:absolute;
- top:0px;
- left:0px;
- padding-top:20px;
- padding-right:16px;
- text-align:right;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- }
- .building_base_icon {
- position:absolute;
- top:0px;
- left:40px;
- width:360px;
- height:108px;
- background: url(icons/bb_icon.png) no-repeat;
- }
- .dev_checkbox {
- width:15px;
- height:15px;
- border:0px solid #0082ff;
- background-color:#0082ff;
- cursor:pointer;
- }
- .dev_few_checkbox {
- width:15px;
- height:15px;
- border:2px solid #0082ff;
- background-color:rgba(0,130,255,.7);
- cursor:pointer;
- }
- .dev_uncheckbox {
- width:15px;
- height:15px;
- border:2px solid #0082ff;
- cursor:pointer;
- }
- .dev_all_checkbox {
- position:absolute;
- top:174px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_big_checkbox {
- position:absolute;
- top:574px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_big_checklabel {
- position:absolute;
- top:157px;
- left:536px;
- width:60px;
- height:20px;
- background-color:#0082FF;
- text-align:center;
- font-size:12px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- padding-top:2px;
- border-radius:4px;
- z-index:20;
- cursor:pointer;
- }
- .sc {
- position:absolute;
- top:157px;
- left:420px;
- width:100px;
- height:20px;
- background-color:#0082FF;
- text-align:center;
- font-size:12px;
- font-weight:bold;
- font-family:微软雅黑, Microsoft YaHei;
- padding-top:2px;
- border-radius:4px;
- z-index:20;
- cursor:pointer;
- }
- .dev_all_checklabel {
- position:absolute;
- top:175px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_ui_checkbox {
- position:absolute;
- top:214px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_ui_checklabel {
- position:absolute;
- top:215px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_sm_checkbox {
- position:absolute;
- top:254px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_sm_checklabel {
- position:absolute;
- top:255px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_fc_checkbox {
- position:absolute;
- top:294px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_fc_checklabel {
- position:absolute;
- top:295px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_ef_checkbox {
- position:absolute;
- top:334px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_ef_checklabel {
- position:absolute;
- top:335px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_wp_checkbox {
- position:absolute;
- top:374px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_wp_checklabel {
- position:absolute;
- top:375px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_ll_checkbox {
- position:absolute;
- top:414px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_ll_checklabel {
- position:absolute;
- top:415px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_ci_checkbox {
- position:absolute;
- top:454px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_ci_checklabel {
- position:absolute;
- top:455px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_va_checkbox {
- position:absolute;
- top:494px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_va_checklabel {
- position:absolute;
- top:495px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .dev_ot_checkbox {
- position:absolute;
- top:534px;
- left:688px;
- z-index:20;
- cursor:pointer;
- }
- .dev_ot_checklabel {
- position:absolute;
- top:535px;
- left:709px;
- z-index:20;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- cursor:pointer;
- }
- .company_page_title {
- position:absolute;
- top:72px;
- left:930px;
- width:200px;
- height:40px;
- z-index:20;
- }
- .project_title_icon {
- background:url(icons/project_info_title.png) no-repeat;
- }
- .realtime_title_icon {
- background:url(icons/realtime_status_title.png) no-repeat;
- }
- .company_detail_title {
- position:absolute;
- top:478px;
- left:930px;
- width:200px;
- height:40px;
- z-index:20;
- }
- .history_alarm_title_icon {
- background:url(icons/history_alarm_title.png) no-repeat;
- }
- .device_status_title_icon {
- background:url(icons/device_status_title.png) no-repeat;
- }
- .project_info_bar{
- position:absolute;
- top:122px;
- left:883px;
- height:300px;
- z-index:20;
- overflow:auto;
- border:0px solid #000;
- }
- .history_alarm_list {
- position:absolute;
- top:529px;
- left:883px;
- z-index:20;
- overflow:auto;
- border:0px solid #000;
- }
- .history_alarm_list::-webkit-scrollbar{
- width:6px;
- height:100%;
- }
- .history_alarm_list::-webkit-scrollbar-thumb{
- width:6px;
- height:60px;
- background-color:rgba(0,130,255,0.6);
- border-radius:5px;
- }
- .history_alarm_list::-webkit-scrollbar-track
- {
- border-radius: 10px;
- background-color: rgba(0,0,0,.3);
- }
- .project_label {
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- color:#27c5ff;
- vertical-align:bottom;
- }
- .point_label {
- text-align:right;
- padding-right:10px;
- }
- .project_info {
- font-family:微软雅黑, Microsoft YaHei;
- font-size:16px;
- color:#ffffff;
- vertical-align:bottom;
- }
- .device_large_icon {
- position:absolute;
- top:32px;
- left:48px;
- z-index:20;
- width:100px;
- height:100px;
- }
- .device_count_label{
- position:absolute;
- top:150px;
- left:48px;
- width:100px;
- height:20px;
- text-align:center;
- font-family:微软雅黑, Microsoft YaHei;
- font-size:12px;
- color:#ffffff;
- }
- .ui_large_icon {
- background:url(icons/ui_large_icon.png) no-repeat;
- }
- .fc_large_icon {
- background:url(icons/fc_large_icon.png) no-repeat;
- }
- .ef_large_icon {
- background:url(icons/ef_large_icon.gif) no-repeat;
- }
- .ci_large_icon {
- background:url(icons/ci_large_icon.png) no-repeat;
- }
- .wp0_large_icon {
- background:url(icons/wp0_large_icon.png) no-repeat;
- }
- .wp1_large_icon {
- background:url(icons/wp1_large_icon.png) no-repeat;
- }
- .va_large_icon {
- background:url(icons/va_large_icon.png) no-repeat;
- }
- .ll_large_icon {
- background:url(icons/ll_large_icon.png) no-repeat;
- }
- .device_list_bar {
- position:absolute;
- top:0px;
- left:200px;
- z-index:20;
- width:300px;
- height:300px;
- overflow-x:hidden;
- overflow-y:auto;
- }
- .status_list_bar {
- position:absolute;
- top:0px;
- left:510px;
- z-index:20;
- height:290px;
- overflow-x:hidden;
- overflow-y:auto;
- }
- .status_list_bar_video {
- text-align:center;
- font-size:12px;
- background-color:#000000;
- color:#ffffff;
- }
- .device_list_bar::-webkit-scrollbar{
- width:6px;
- height:100%;
- }
- .device_list_bar::-webkit-scrollbar-thumb{
- width:6px;
- height:60px;
- background-color:rgba(0,130,255,0.6);
- border-radius:5px;
- }
- .device_list_bar::-webkit-scrollbar-track
- {
- border-radius: 10px;
- background-color: rgba(0,0,0,.3);
- }
- .status_list_bar::-webkit-scrollbar{
- width:6px;
- height:100%;
- }
- .status_list_bar::-webkit-scrollbar-thumb{
- width:6px;
- height:60px;
- background-color:rgba(0,130,255,0.6);
- border-radius:5px;
- }
- .status_list_bar::-webkit-scrollbar-track
- {
- border-radius: 10px;
- background-color: rgba(0,0,0,.3);
- }
- .v_reset {
- position:absolute;
- top:127px;
- right:100px;
- width:20px;
- height:20px;
- background:url(icons/v_reset.png) no-repeat;
- z-index:200;
- cursor:pointer;
- }
- .big_view {
- position:absolute;
- top:157px;
- right:100px;
- width:20px;
- height:20px;
- background:url(icons/v_big.png) no-repeat;
- z-index:200;
- cursor:pointer;
- }
- .bak_reset {
- position:absolute;
- top:73px;
- right:89px;
- z-index:20;
- background:url(icons/bak.png) no-repeat;
- width:77px;
- height:41px;
- cursor:pointer;
- }
- .bak_reset2 {
- position:absolute;
- top:479px;
- right:89px;
- z-index:20;
- background:url(icons/bak.png) no-repeat;
- width:77px;
- height:41px;
- cursor:pointer;
- }
- .detail_data_btn {
- margin-left:10px;
- width:16px;
- height:16px;
- cursor:pointer;
- }
- .detail_background {
- width:1100px;
- height:384px;
- background:url(operation_area_bg.gif) no-repeat;
- }
- .detail_area {
- position:absolute;
- top:0px;
- left:0px;
- margin:10px 30px 10px 20px;
- width:1050px;
- height:364px;
- }
- /*H2019.6.30*/
- .title13_label1 {
- margin-bottom:20px;
- }
- /*
- #woker_talk table{
- border-right:1px solid #d0d0d0;
- border-bottom:1px solid #d0d0d0;
- width:100%;
- background:#666;
- margin-bottom:20px;
- }
- #woker_talk table td{
- border-left:1px solid #d0d0d0;
- border-top:1px solid #d0d0d0;
- text-align:center;
- font-size:15px;
- }
- .title20_label1 {
- border:1px solid #000;
- width:100%;
- background:#666;
- min-height:80px;
- padding-left:36px;
- margin-bottom:20px;
- }
- .title27_label1 {
- border:1px solid #000;
- width:100%;
- background:#666;
- min-height:120px;
- padding-left:36px;
- margin-bottom:20px;
- }
- */
- .title29_label1 {
- border:1px solid #000;
- width:100%;
- background:#666;
- min-height:120px;
- padding-left:36px;
- margin-bottom:20px;
- }
- .x-boundlist-list-ct{
- font-size:16px;
- }
- .x-box-inner {
- bottom:0px!important;
- }
- /*H2019.6.30*/
- /*H2019.7.08*/
- .title2_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:56px;
- right:692px;
- }
- .maintenanceperson_title2_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:56px;
- right:706px;
- }
- .title2_div_panel3 {
- width:40px;
- height:20px;
- border-radius:4px;
- font-size:14px;
- color:#0082ff;
- position:absolute;
- top:5px;
- right:200px;
- }
- .input_class {
- width:160px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:50px;
- right:518px;
- }
- .input4_class {
- width:20px;
- height:20px;
- border-radius:4px;
- position:absolute;
- top:58px;
- right:672px;
- }
- .childPanel1_div{
- font-size:16px;
- position:absolute;
- top:56px;
- right:630px;
- }
- .input2_class {
- width:20px;
- height:20px;
- border-radius:4px;
- position:absolute;
- top:58px;
- right:594px;
- }
- .childPanel1_div1{
- font-size:16px;
- position:absolute;
- top:56px;
- right:552px;
- }
- .input3_class {
- width:20px;
- height:20px;
- border-radius:4px;
- position:absolute;
- top:58px;
- right:516px;
- }
- .childPanel1_div2{
- font-size:16px;
- position:absolute;
- top:56px;
- right:474px;
- }
- .MaintenancePersonTitle {
- font-size:20px;
- color:#31e9ff;
- position:absolute;
- top:25px;
- left:41px;
- }
- .MaintenancePersonTitle2 {
- font-size:20px;
- color:#31e9ff;
- position:absolute;
- top:25px;
- left:141px;
- }
- .title3_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:56px;
- right:420px;
- }
- .input1_class {
- width:160px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:50px;
- right:248px;
- }
- .maintenance_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .maintenance_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .maintenance_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .maintenance_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .maintenance_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .maintenance_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .maintenance_title4_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .maintenance_title4_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .maintenance_title5_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .maintenance_title5_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .maintenance_title6_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .maintenance_title6_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .maintenancePerson_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .maintenancePerson_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .maintenancePerson_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .maintenancePerson_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .maintenancePerson_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .maintenancePerson_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .maintenancePerson_title4_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .maintenancePerson_title4_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .maintenancePerson_title5_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .maintenancePerson_title5_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .maintenancePerson_title6_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .maintenancePerson_title6_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .maintenancePerson_title11_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:20px;
- }
- .maintenancePerson_title11_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:20px;
- }
- .maintenancePerson_title21_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:125px;
- }
- .maintenancePerson_title21_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:125px;
- }
- .maintenance_look_device_img{
- margin: 0 auto;
- }
- .maintenance_look_device_img_baogao{
- margin: 0 auto;
- height:270px;
- width:300px;
- }
- .maintenancePerson_title31_div {
- width:85px;
- height:29px;
- background:url(icons/maintenance_title71_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:40px;
- }
- .maintenancePerson_title31_div_on {
- width:85px;
- height:29px;
- background:url(icons/maintenance_title71_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:40px;
- }
- .maintenancePerson_title41_div {
- width:86px;
- height:29px;
- background:url(icons/maintenance_title81_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:144px;
- }
- .maintenancePerson_title41_div_on {
- width:86px;
- height:29px;
- background:url(icons/maintenance_title81_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:144px;
- }
- .maintenancePerson_input111_class {
- width:114px;
- height:24px;
- border-radius:4px;
- position:absolute;
- top:98px;
- right:260px;
- }
- .maintenancePerson_title111_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:100px;
- right:388px;
- }
- .maintenancePerson_input211_class {
- width:144px;
- height:24px;
- border-radius:4px;
- position:absolute;
- top:98px;
- right:454px;
- }
- .maintenancePerson_title211_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:100px;
- right:610px;
- }
- .maintenancePlan_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .maintenancePlan_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .maintenancePlan_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .maintenancePlan_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .maintenancePlan_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .maintenancePlan_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .maintenancePlan_title4_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .maintenancePlan_title4_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .maintenancePlan_title5_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .maintenancePlan_title5_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .maintenancePlan_title6_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .maintenancePlan_title6_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .maintenanceCheck_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:40px;
- }
- .maintenanceCheck_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:40px;
- }
- .maintenanceCheck_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:144px;
- }
- .maintenanceCheck_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:144px;
- }
- .maintenanceCheck_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:40px;
- }
- .maintenanceCheck_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:40px;
- }
- .Check_input1_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:79px;
- right:248px;
- }
- .Check_title3_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:85px;
- right:360px;
- }
- .Check_input_class {
- width:160px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:79px;
- right:440px;
- }
- .Check_title2_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:85px;
- right:612px;
- }
- .Check_input2_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:79px;
- right:710px;
- }
- .Check_input3_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:79px;
- right:840px;
- }
- .Check_title7_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:85px;
- right:955px;
- }
- .Check_title8_div {
- font-size:16px;
- position:absolute;
- top:85px;
- right:820px;
- }
- .Check_input4_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:79px;
- right:1050px;
- }
- .Check_title9_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:85px;
- right:1165px;
- }
- .maintenanceCheck_title10_div {
- width:222px;
- height:62px;
- background:url(icons/maintenanceCheck_title10_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:160px;
- right:1200px;
- }
- .maintenanceCheck_title20_div {
- width:222px;
- height:62px;
- background:url(icons/maintenanceCheck_title20_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:160px;
- right:1200px;
- }
- .maintenanceCheck_title11_div {
- width:222px;
- height:62px;
- background:url(icons/maintenanceCheck_title11_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:160px;
- right:958px;
- }
- .maintenanceCheck_title12_div {
- width:222px;
- height:62px;
- background:url(icons/maintenanceCheck_title12_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:160px;
- right:716px;
- }
- .maintenanceCheck_title13_div {
- width:222px;
- height:62px;
- background:url(icons/maintenanceCheck_title13_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:160px;
- right:474px;
- }
- .Check_title14_div {
- font-size:38px;
- color:#59c24a;
- position:absolute;
- top:170px;
- right:500px;
- }
- .Check_title15_div {
- font-size:38px;
- color:#ff0000;
- position:absolute;
- top:170px;
- right:742px;
- }
- .Check_title16_div {
- font-size:38px;
- color:#ff9254;
- position:absolute;
- top:170px;
- right:984px;
- }
- .Check_title17_div {
- font-size:38px;
- color:#25b5ce;
- position:absolute;
- top:170px;
- right:1226px;
- }
- .Check_select_class {
- width:100px;
- height:24px;
- border-radius:4px;
- position:absolute;
- top:15px;
- right:30px;
- }
- .MaintenanceCheckTitle {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:18px;
- right:150px;
- }
- .Maintenancediv_title {
- font-size:15px;
- color:#fff;
- position:absolute;
- top:10px;
- right:705px;
- }
- .Maintenancediv_title_weibao {
- font-size:15px;
- color:#fff;
- position:absolute;
- top:10px;
- right:570px;
- }
- .test_form{
- background:#0082ff;
- }
- .maintenancePerson_input_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:50px;
- right:520px;
- }
- .inspectors_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .inspectors_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .inspectors_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .inspectors_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .inspectors_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .inspectors_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .inspectors_title4_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .inspectors_title4_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .inspectors_title5_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .inspectors_title5_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .inspectors_title6_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .inspectors_title6_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .inspectors_title11_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:20px;
- }
- .inspectors_title11_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:20px;
- }
- .inspectors_title21_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:125px;
- }
- .inspectors_title21_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:100px;
- right:125px;
- }
- .inspectors_title31_div {
- width:85px;
- height:29px;
- background:url(icons/maintenance_title71_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:40px;
- }
- .inspectors_title31_div_on {
- width:85px;
- height:29px;
- background:url(icons/maintenance_title71_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:40px;
- }
- .inspectors_title41_div {
- width:86px;
- height:29px;
- background:url(icons/maintenance_title81_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:144px;
- }
- .inspectors_title41_div_on {
- width:86px;
- height:29px;
- background:url(icons/maintenance_title81_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:95px;
- right:144px;
- }
- .inspectorsCheck_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:144px;
- }
- .inspectorsCheck_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:144px;
- }
- .inspectorsCheck_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:40px;
- }
- .inspectorsCheck_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:80px;
- right:40px;
- }
- .inspectorsCheck_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:40px;
- }
- .inspectorsCheck_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:40px;
- }
- .patrolPlan_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .patrolPlan_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .patrolPlan_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .patrolPlan_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .patrolPlan_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .patrolPlan_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .patrolPlan_title4_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .patrolPlan_title4_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .patrolPlan_title5_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .patrolPlan_title5_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .patrolPlan_title6_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .patrolPlan_title6_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .patrolpoint_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .patrolpoint_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:144px;
- }
- .patrolpoint_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .patrolpoint_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:51px;
- right:40px;
- }
- .patrolpoint_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .patrolpoint_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:40px;
- }
- .patrolpoint_title4_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .patrolpoint_title4_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title4_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:144px;
- }
- .patrolpoint_title5_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .patrolpoint_title5_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title5_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:249px;
- }
- .patrolpoint_title6_div {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .patrolpoint_title6_div_on {
- width:85px;
- height:26px;
- background:url(icons/maintenance_title6_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:118px;
- right:353px;
- }
- .proform3_bg_tl{
- position:absolute;
- width:928px;
- height:752px;
- top:0px;
- left:0px;
- background:url(icons/proform3_tl.png) no-repeat;
- }
- .proform3_bg_ml {
- position:absolute;
- top:752px;
- left:0px;
- width:928px;
- background:url(icons/proform3_ml.png) repeat-y;
- }
- .proform3_bg_bl {
- position:absolute;
- bottom:0px;
- left:0px;
- width:928px;
- height:170px;
- background:url(icons/proform3_bl.png) no-repeat;
- }
- .springHandle_title20_div {
- width:302px;
- height:62px;
- background:url(icons/springHandle_title20_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:50px;
- right:1376px;
- }
- .springHandle_title17_div {
- font-size:38px;
- color:#25b5ce;
- position:absolute;
- top:60px;
- right:1460px;
- }
- .springHandle_title11_div {
- width:302px;
- height:62px;
- background:url(icons/springHandle_title11_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:50px;
- right:1054px;
- }
- .springHandle_title16_div {
- font-size:38px;
- color:#ff9254;
- position:absolute;
- top:60px;
- right:1140px;
- }
- .springHandle_title12_div {
- width:302px;
- height:62px;
- background:url(icons/springHandle_title12_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:50px;
- right:732px;
- }
- .springHandle_title15_div {
- font-size:38px;
- color:#ff0000;
- position:absolute;
- top:60px;
- right:814px;
- }
- .springHandle_title13_div {
- width:302px;
- height:62px;
- background:url(icons/springHandle_title13_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:50px;
- right:410px;
- }
- .springHandle_title14_div {
- font-size:38px;
- color:#59c24a;
- position:absolute;
- top:60px;
- right:494px;
- }
- .springHandle_title2_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:140px;
- right:40px;
- }
- .springHandle_title2_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title2_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:140px;
- right:40px;
- }
- .springHandle_title1_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:140px;
- right:144px;
- }
- .springHandle_title1_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title1_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:140px;
- right:144px;
- }
- .springHandle_title3_div {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:40px;
- }
- .springHandle_title3_div_on {
- width:84px;
- height:26px;
- background:url(icons/maintenance_title3_div_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:40px;
- }
- .springHandle_title4_div {
- width:84px;
- height:26px;
- background:url(icons/baoxiu_fenxi.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:144px;
- }
- .springHandle_title4_div_on {
- width:84px;
- height:26px;
- background:url(icons/baoxiu_fenxi_on.png) no-repeat;
- cursor:pointer;
- position:absolute;
- top:198px;
- right:144px;
- }
- .springHandle_input_class {
- width:160px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:140px;
- right:260px;
- }
- .springHandle_title2_div_font {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:143px;
- right:440px;
- }
- .springHandle_input1_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:140px;
- right:538px;
- }
- .springHandle_title3_div_font {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:143px;
- right:658px;
- }
- .springHandle_input2_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:140px;
- right:740px;
- }
- .springHandle_title8_div {
- font-size:16px;
- position:absolute;
- top:143px;
- right:845px;
- }
- .springHandle_input3_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:140px;
- right:862px;
- }
- .springHandle_title7_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:143px;
- right:982px;
- }
- .springHandle_input4_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:140px;
- right:1080px;
- }
- .springHandle_title9_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:143px;
- right:1200px;
- }
- .springHandle_title28_div {
- font-size:16px;
- color:#0082ff;
- position:absolute;
- top:143px;
- right:1420px;
- }
- .springHandle_input5_class {
- width:100px;
- height:28px;
- border-radius:4px;
- position:absolute;
- top:140px;
- right:1300px;
- }
- .SpringHandleTitle {
- font-size:14px;
- color:#0082ff;
- position:absolute;
- top:18px;
- right:410px;
- }
- .SpringHandleTitle1 {
- font-size:16px;
- position:absolute;
- top:18px;
- right:352px;
- }
- .SpringHandleTitle2 {
- font-size:14px;
- color:#0082ff;
- position:absolute;
- top:60px;
- right:410px;
- }
- .SpringHandleTitle3 {
- font-size:16px;
- position:absolute;
- top:60px;
- left:103px;
- }
- .SpringHandleTitle4 {
- font-size:14px;
- color:#0082ff;
- position:absolute;
- top:110px;
- right:410px;
- }
- .SpringHandleTitle5 {
- width:60px;
- height:60px;
- position:absolute;
- top:110px;
- left:103px;
|