123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754 |
- .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;
|