123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150 |
- <%@ page language="java" contentType="text/html;charset=utf-8"%>
- <%@include file="/pages/includes/taglibs.jsp"%>
- <html>
- <head>
- <script src="<%=request.getContextPath() %>/resource/js/jquery-1.8.3.js" type="text/javascript"></script>
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
- <script src="<%=request.getContextPath() %>/resource/plugin/jqueryui/js/jquery-ui-1.9.2.custom.js" type="text/javascript"></script>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <style type="text/css">
- body {
- margin-left: 0px;
- margin-top: 0px;
- margin-right: 0px;
- margin-bottom: 0px;
- }
- .value_Name {
- font-family: "Times New Roman", Times, serif;
- font-size: 14px;
- font-weight: bolder;
- color: #666;
- }
- .station_Name {
- font-family: "Times New Roman", Times, serif;
- font-size: 14px;
- font-weight: bolder;
- color: #666;
- }
- @font-face {
- font-family: 'fontNameRegular';
- src:
- url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.eot')
- ;
- src: local('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont Regular'
- ),
- local('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont'),
- url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.woff')
- format('woff'),
- url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.ttf')
- format('truetype'),
- url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.svg#fontName')
- format('svg');
- font-size: 36px;
- font-weight: bolder;
- }
- .item_Name { font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- font-weight: bolder;
- color: #fff;
- }
- .unit_Name { font-family: Arial, Helvetica, sans-serif;
- font-size: 12px;
- color: #fff;
- font-weight: bolder;
- }
- #apDiv1 {
- position: absolute;
- width: 22px;
- height: 12px;
- z-index: 1;
- left: 741px;
- top: 467px;
- }
- #apDiv2 {
- position: absolute;
- width: 22px;
- height: 12px;
- z-index: 2;
- left: 1411px;
- top: 566px;
- }
- #apDiv3 {
- position: absolute;
- left: 1570px;
- top: 482px;
- width: 22px;
- height: 12px;
- z-index: 3;
- }
- #apDiv4 {
- position: absolute;
- left: 1371px;
- top: 377px;
- width: 22px;
- height: 12px;
- z-index: 4;
- }
- #apDiv5 {
- position: absolute;
- left: 1371px;
- top: 236px;
- width: 22px;
- height: 12px;
- z-index: 5;
- }
- #apDiv6 {
- position: absolute;
- left: 1295px;
- top: 132px;
- width: 22px;
- height: 12px;
- z-index: 6;
- }
- #apDiv7 {
- position: absolute;
- left: 1539px;
- top: 771px;
- width: 22px;
- height: 12px;
- z-index: 7;
- }
- #apDiv8 {
- position: absolute;
- left: 969px;
- top: 335px;
- width: 22px;
- height: 12px;
- z-index: 8;
- }
- #apDiv9 {
- position: absolute;
- left: 1293px;
- top: 725px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv10 {
- position: absolute;
- left: 1635px;
- top: 618px;
- width: 22px;
- height: 12px;
- z-index: 10;
- }
- #apDiv11 {
- position: absolute;
- left: 1731px;
- top: 520px;
- width: 22px;
- height: 12px;
- z-index: 11;
- }
- #apDiv12 {
- position: absolute;
- left: 1703px;
- top: 403px;
- width: 22px;
- height: 12px;
- z-index: 12;
- }
- #apDiv13 {
- position: absolute;
- left: 1675px;
- top: 306px;
- width: 22px;
- height: 12px;
- z-index: 13;
- }
- #apDiv14 {
- position: absolute;
- left: 1632px;
- top: 231px;
- width: 22px;
- height: 12px;
- z-index: 14;
- }
- #apDiv15 {
- position: absolute;
- left: 1577px;
- top: 157px;
- width: 22px;
- height: 12px;
- z-index: 15;
- }
- #apDiv16 {
- position: absolute;
- left: 1593px;
- top: 81px;
- width: 22px;
- height: 12px;
- z-index: 16;
- }
- #apDiv17 {
- position: absolute;
- left: 891px;
- top: 96px;
- width: 22px;
- height: 12px;
- z-index: 17;
- }
- .project_text {
- font-family: "宋体";
- font-size: 12px;
- font-weight: bolder;
- color: #FFF;
- text-decoration: none;
- }
- #apDiv18 {
- position: absolute;
- left: 817px;
- top: 201px;
- width: 88px;
- height: 19px;
- z-index: 18;
- }
- #apDiv19 {
- position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv20 {
- position: absolute;
- left: 1091px;
- top: 144px;
- width: 86px;
- height: 21px;
- z-index: 20;
- }
- #apDiv21 {
- position: absolute;
- left: 1120px;
- top: 701px;
- width: 86px;
- height: 47px;
- z-index: 18;
- }
- #apDiv22 {
- position: absolute;
- left: 866px;
- top: 434px;
- width: 86px;
- height: 48px;
- z-index: 19;
- }
- #apDiv23 {
- position: absolute;
- left: 1197px;
- top: 272px;
- width: 89px;
- height: 46px;
- z-index: 20;
- }
- #apDiv24 {
- position: absolute;
- left: 1181px;
- top: 348px;
- width: 98px;
- height: 26px;
- z-index: 21;
- }
- #apDiv25 {
- position: absolute;
- left: 1234px;
- top: 636px;
- width: 97px;
- height: 23px;
- z-index: 22;
- }
- #apDiv26 {
- position: absolute;
- left: 652px;
- top: 267px;
- width: 96px;
- height: 27px;
- z-index: 23;
- }
- #apDiv27 {
- position: absolute;
- left: 738px;
- top: 375px;
- width: 37px;
- height: 50px;
- z-index: 24;
- }
- #apDiv28 {
- position: absolute;
- left: 663px;
- top: 516px;
- width: 39px;
- height: 52px;
- z-index: 25;
- }
- #apDiv29 {
- position: absolute;
- left: 454px;
- top: 505px;
- width: 36px;
- height: 51px;
- z-index: 26;
- }
- #apDiv30 {
- position: absolute;
- left: 827px;
- top: 588px;
- width: 41px;
- height: 52px;
- z-index: 27;
- }
- #apDiv31 {
- position: absolute;
- left: 298px;
- top: 611px;
- width: 35px;
- height: 49px;
- z-index: 28;
- }
- #apDiv32 {
- position: absolute;
- left: 896px;
- top: 715px;
- width: 39px;
- height: 52px;
- z-index: 29;
- }
- #apDiv33 {
- position: absolute;
- left: 698px;
- top: 755px;
- width: 36px;
- height: 48px;
- z-index: 30;
- }
- #apDiv34 {
- position: absolute;
- left: 345px;
- top: 527px;
- width: 40px;
- height: 53px;
- z-index: 31;
- }
- #apDiv35 {
- position: absolute;
- left: 311px;
- top: 588px;
- width: 38px;
- height: 53px;
- z-index: 32;
- }
- #apDiv36 {
- position: absolute;
- left: 344px;
- top: 660px;
- width: 40px;
- height: 51px;
- z-index: 33;
- }
- #apDiv37 {
- position: absolute;
- left: 334px;
- top: 749px;
- width: 40px;
- height: 45px;
- z-index: 34;
- }
- #apDiv38 {
- position: absolute;
- left: 390px;
- top: 117px;
- width: 34px;
- height: 46px;
- z-index: 35;
- }
- #apDiv39 {
- position: absolute;
- left: 445px;
- top: 126px;
- width: 33px;
- height: 49px;
- z-index: 36;
- }
- #apDiv40 {
- position: absolute;
- left: 456px;
- top: 193px;
- width: 33px;
- height: 48px;
- z-index: 37;
- }
- #apDiv41 {
- position: absolute;
- left: 403px;
- top: 198px;
- width: 37px;
- height: 54px;
- z-index: 38;
- }
- #apDiv42 {
- position: absolute;
- left: 338px;
- top: 216px;
- width: 38px;
- height: 50px;
- z-index: 39;
- }
- #apDiv43 {
- position: absolute;
- left: 368px;
- top: 258px;
- width: 38px;
- height: 52px;
- z-index: 40;
- }
- #apDiv44 {
- position: absolute;
- left: 322px;
- top: 311px;
- width: 35px;
- height: 48px;
- z-index: 41;
- }
- #apDiv45 {
- position: absolute;
- left: 294px;
- top: 379px;
- width: 38px;
- height: 52px;
- z-index: 42;
- }
- #apDiv46 {
- position: absolute;
- left: 233px;
- top: 459px;
- width: 35px;
- height: 48px;
- z-index: 43;
- }
- #apDiv47 {
- position: absolute;
- left: 216px;
- top: 545px;
- width: 36px;
- height: 48px;
- z-index: 44;
- }
- #apDiv48 {
- position: absolute;
- left: 227px;
- top: 625px;
- width: 36px;
- height: 49px;
- z-index: 45;
- }
- #apDiv49 {
- position: absolute;
- left: 257px;
- top: 715px;
- width: 42px;
- height: 53px;
- z-index: 46;
- }
- #apDiv50 {
- position: absolute;
- left: 247px;
- top: 189px;
- width: 36px;
- height: 51px;
- z-index: 47;
- }
- #apDiv51 {
- position: absolute;
- left: 212px;
- top: 226px;
- width: 36px;
- height: 52px;
- z-index: 48;
- }
- #apDiv52 {
- position: absolute;
- left: 208px;
- top: 305px;
- width: 42px;
- height: 52px;
- z-index: 49;
- }
- #apDiv53 {
- position: absolute;
- left: 162px;
- top: 340px;
- width: 34px;
- height: 51px;
- z-index: 50;
- }
- #apDiv54 {
- position: absolute;
- left: 100px;
- top: 346px;
- width: 38px;
- height: 50px;
- z-index: 51;
- }
- #apDiv55 {
- position: absolute;
- left: 138px;
- top: 404px;
- width: 36px;
- height: 50px;
- z-index: 52;
- }
- #apDiv56 {
- position: absolute;
- left: 113px;
- top: 472px;
- width: 36px;
- height: 49px;
- z-index: 53;
- }
- #apDiv57 {
- position: absolute;
- left: 121px;
- top: 529px;
- width: 38px;
- height: 51px;
- z-index: 54;
- }
- #apDiv58 {
- position: absolute;
- left: 136px;
- top: 591px;
- width: 36px;
- height: 51px;
- z-index: 55;
- }
- #apDiv59 {
- position: absolute;
- left: 161px;
- top: 664px;
- width: 38px;
- height: 56px;
- z-index: 56;
- }
- #apDiv60 {
- position: absolute;
- left: 55px;
- top: 521px;
- width: 32px;
- height: 53px;
- z-index: 1;
- }
- #apDiv61 {
- position: absolute;
- left: 108px;
- top: 504px;
- width: 30px;
- height: 51px;
- z-index: 2;
- }
- #apDiv62 {
- position: absolute;
- left: 129px;
- top: 568px;
- width: 34px;
- height: 48px;
- z-index: 3;
- }
- #apDiv63 {
- position: absolute;
- left: 183px;
- top: 609px;
- width: 32px;
- height: 49px;
- z-index: 4;
- }
- #apDiv64 {
- position: absolute;
- left: 265px;
- top: 546px;
- width: 30px;
- height: 47px;
- z-index: 5;
- }
- #apDiv65 {
- position: absolute;
- left: 201px;
- top: 546px;
- width: 31px;
- height: 49px;
- z-index: 6;
- }
- #apDiv66 {
- position: absolute;
- left: 220px;
- top: 484px;
- width: 32px;
- height: 50px;
- z-index: 7;
- }
- #apDiv67 {
- position: absolute;
- left: 215px;
- top: 420px;
- width: 31px;
- height: 47px;
- z-index: 8;
- }
- #apDiv68 {
- position: absolute;
- left: 213px;
- top: 352px;
- width: 38px;
- height: 55px;
- z-index: 9;
- }
- #apDiv69 {
- position: absolute;
- left: 254px;
- top: 415px;
- width: 31px;
- height: 46px;
- z-index: 10;
- }
- #apDiv70 {
- position: absolute;
- left: 286px;
- top: 482px;
- width: 33px;
- height: 48px;
- z-index: 11;
- }
- #apDiv71 {
- position: absolute;
- left: 352px;
- top: 507px;
- width: 31px;
- height: 48px;
- z-index: 12;
- }
- #apDiv72 {
- position: absolute;
- left: 406px;
- top: 420px;
- width: 30px;
- height: 41px;
- z-index: 13;
- }
- #apDiv73 {
- position: absolute;
- left: 372px;
- top: 345px;
- width: 32px;
- height: 46px;
- z-index: 14;
- }
- #apDiv74 {
- position: absolute;
- left: 462px;
- top: 383px;
- width: 31px;
- height: 39px;
- z-index: 15;
- }
- #apDiv75 {
- position: absolute;
- left: 504px;
- top: 346px;
- width: 31px;
- height: 44px;
- z-index: 16;
- }
- #apDiv76 {
- position: absolute;
- left: 473px;
- top: 452px;
- width: 29px;
- height: 42px;
- z-index: 17;
- }
- #apDiv77 {
- position: absolute;
- left: 489px;
- top: 485px;
- width: 33px;
- height: 51px;
- z-index: 18;
- }
- #apDiv78 {
- position: absolute;
- left: 515px;
- top: 415px;
- width: 33px;
- height: 51px;
- z-index: 19;
- }
- #apDiv79 {
- position: absolute;
- left: 541px;
- top: 451px;
- width: 28px;
- height: 45px;
- z-index: 20;
- }
- #apDiv80 {
- position: absolute;
- left: 562px;
- top: 484px;
- width: 29px;
- height: 47px;
- z-index: 21;
- }
- #apDiv81 {
- position: absolute;
- left: 589px;
- top: 519px;
- width: 31px;
- height: 43px;
- z-index: 22;
- }
- #apDiv82 {
- position: absolute;
- left: 621px;
- top: 502px;
- width: 31px;
- height: 46px;
- z-index: 23;
- }
- #apDiv83 {
- position: absolute;
- left: 658px;
- top: 478px;
- width: 32px;
- height: 44px;
- z-index: 24;
- }
- #apDiv84 {
- position: absolute;
- left: 101px;
- top: 677px;
- width: 30px;
- height: 46px;
- z-index: 25;
- }
- #apDiv85 {
- position: absolute;
- left: 152px;
- top: 746px;
- width: 32px;
- height: 43px;
- z-index: 26;
- }
- #apDiv86 {
- position: absolute;
- left: 197px;
- top: 741px;
- width: 32px;
- height: 46px;
- z-index: 27;
- }
- #apDiv87 {
- position: absolute;
- left: 187px;
- top: 662px;
- width: 36px;
- height: 47px;
- z-index: 28;
- }
- #apDiv88 {
- position: absolute;
- left: 253px;
- top: 654px;
- width: 37px;
- height: 55px;
- z-index: 29;
- }
- #apDiv89 {
- position: absolute;
- left: 294px;
- top: 623px;
- width: 35px;
- height: 50px;
- z-index: 30;
- }
- #apDiv90 {
- position: absolute;
- left: 311px;
- top: 555px;
- width: 36px;
- height: 50px;
- z-index: 31;
- }
- #apDiv91 {
- position: absolute;
- left: 370px;
- top: 582px;
- width: 36px;
- height: 50px;
- z-index: 32;
- }
- #apDiv92 {
- position: absolute;
- left: 449px;
- top: 516px;
- width: 35px;
- height: 50px;
- z-index: 33;
- }
- #apDiv93 {
- position: absolute;
- left: 448px;
- top: 577px;
- width: 35px;
- height: 54px;
- z-index: 34;
- }
- #apDiv94 {
- position: absolute;
- left: 494px;
- top: 617px;
- width: 36px;
- height: 55px;
- z-index: 35;
- }
- #apDiv95 {
- position: absolute;
- left: 668px;
- top: 561px;
- width: 39px;
- height: 52px;
- z-index: 36;
- }
- #apDiv96 {
- position: absolute;
- left: 685px;
- top: 471px;
- width: 27px;
- height: 44px;
- z-index: 37;
- }
- #apDiv97 {
- position: absolute;
- left: 683px;
- top: 422px;
- width: 30px;
- height: 44px;
- z-index: 38;
- }
- #apDiv98 {
- position: absolute;
- left: 741px;
- top: 394px;
- width: 34px;
- height: 52px;
- z-index: 39;
- }
- #apDiv99 {
- position: absolute;
- left: 758px;
- top: 459px;
- width: 31px;
- height: 46px;
- z-index: 40;
- }
- #apDiv100 {
- position: absolute;
- left: 773px;
- top: 500px;
- width: 35px;
- height: 49px;
- z-index: 41;
- }
- #apDiv101 {
- position: absolute;
- left: 815px;
- top: 469px;
- width: 34px;
- height: 51px;
- z-index: 42;
- }
- #apDiv102 {
- position: absolute;
- left: 861px;
- top: 537px;
- width: 34px;
- height: 44px;
- z-index: 43;
- }
- #apDiv103 {
- position: absolute;
- left: 918px;
- top: 548px;
- width: 35px;
- height: 44px;
- z-index: 44;
- }
- #apDiv104 {
- position: absolute;
- left: 979px;
- top: 598px;
- width: 34px;
- height: 46px;
- z-index: 45;
- }
- #apDiv105 {
- position: absolute;
- left: 1206px;
- top: 579px;
- width: 34px;
- height: 47px;
- z-index: 46;
- }
- #apDiv106 {
- position: absolute;
- left: 1146px;
- top: 595px;
- width: 38px;
- height: 47px;
- z-index: 47;
- }
- #apDiv107 {
- position: absolute;
- left: 1067px;
- top: 612px;
- width: 36px;
- height: 47px;
- z-index: 48;
- }
- #apDiv108 {
- position: absolute;
- left: 982px;
- top: 338px;
- width: 35px;
- height: 51px;
- z-index: 49;
- }
- #apDiv109 {
- position: absolute;
- left: 970px;
- top: 390px;
- width: 34px;
- height: 46px;
- z-index: 50;
- }
- #apDiv110 {
- position: absolute;
- left: 942px;
- top: 433px;
- width: 33px;
- height: 49px;
- z-index: 51;
- }
- #apDiv111 {
- position: absolute;
- left: 884px;
- top: 439px;
- width: 35px;
- height: 49px;
- z-index: 52;
- }
- #apDiv112 {
- position: absolute;
- left: 927px;
- top: 489px;
- width: 37px;
- height: 48px;
- z-index: 53;
- }
- #apDiv113 {
- position: absolute;
- left: 975px;
- top: 475px;
- width: 36px;
- height: 46px;
- z-index: 54;
- }
- #apDiv114 {
- position: absolute;
- left: 1013px;
- top: 540px;
- width: 37px;
- height: 50px;
- z-index: 55;
- }
- #apDiv115 {
- position: absolute;
- left: 1048px;
- top: 511px;
- width: 37px;
- height: 52px;
- z-index: 56;
- }
- #apDiv116 {
- position: absolute;
- left: 1096px;
- top: 548px;
- width: 35px;
- height: 46px;
- z-index: 57;
- }
- #apDiv117 {
- position: absolute;
- left: 1166px;
- top: 515px;
- width: 39px;
- height: 47px;
- z-index: 58;
- }
- #apDiv118 {
- position: absolute;
- left: 1236px;
- top: 533px;
- width: 38px;
- height: 51px;
- z-index: 59;
- }
- #apDiv119 {
- position: absolute;
- left: 773px;
- top: 564px;
- width: 33px;
- height: 47px;
- z-index: 60;
- }
- #apDiv120 {
- position: absolute;
- left: 812px;
- top: 596px;
- width: 37px;
- height: 49px;
- z-index: 61;
- }
- #apDiv121 {
- position: absolute;
- left: 874px;
- top: 597px;
- width: 39px;
- height: 49px;
- z-index: 62;
- }
- #apDiv122 {
- position: absolute;
- left: 906px;
- top: 640px;
- width: 36px;
- height: 50px;
- z-index: 63;
- }
- #apDiv123 {
- position: absolute;
- left: 914px;
- top: 694px;
- width: 40px;
- height: 50px;
- z-index: 64;
- }
- #apDiv124 {
- position: absolute;
- left: 961px;
- top: 662px;
- width: 40px;
- height: 53px;
- z-index: 65;
- }
- #apDiv125 {
- position: absolute;
- left: 1019px;
- top: 683px;
- width: 40px;
- height: 51px;
- z-index: 66;
- }
- #apDiv126 {
- position: absolute;
- left: 1069px;
- top: 674px;
- width: 42px;
- height: 49px;
- z-index: 67;
- }
- #apDiv127 {
- position: absolute;
- left: 1117px;
- top: 660px;
- width: 41px;
- height: 51px;
- z-index: 68;
- }
- #apDiv128 {
- position: absolute;
- left: 1181px;
- top: 642px;
- width: 40px;
- height: 52px;
- z-index: 69;
- }
- #apDiv129 {
- position: absolute;
- left: 722px;
- top: 603px;
- width: 30px;
- height: 45px;
- z-index: 70;
- }
- #apDiv130 {
- position: absolute;
- left: 776px;
- top: 615px;
- width: 30px;
- height: 43px;
- z-index: 71;
- }
- #apDiv131 {
- position: absolute;
- left: 804px;
- top: 760px;
- width: 30px;
- height: 43px;
- z-index: 72;
- }
- #apDiv132 {
- position: absolute;
- left: 814px;
- top: 702px;
- width: 31px;
- height: 41px;
- z-index: 73;
- }
- #apDiv133 {
- position: absolute;
- left: 847px;
- top: 655px;
- width: 35px;
- height: 50px;
- z-index: 74;
- }
- #apDiv134 {
- position: absolute;
- left: 870px;
- top: 716px;
- width: 32px;
- height: 43px;
- z-index: 75;
- }
- #apDiv135 {
- position: absolute;
- left: 893px;
- top: 761px;
- width: 36px;
- height: 49px;
- z-index: 76;
- }
- #apDiv136 {
- position: absolute;
- left: 938px;
- top: 758px;
- width: 33px;
- height: 47px;
- z-index: 77;
- }
- #apDiv137 {
- position: absolute;
- left: 982px;
- top: 744px;
- width: 33px;
- height: 45px;
- z-index: 78;
- }
- #apDiv138 {
- position: absolute;
- left: 1052px;
- top: 740px;
- width: 35px;
- height: 46px;
- z-index: 79;
- }
- #apDiv139 {
- position: absolute;
- left: 1287px;
- top: 622px;
- width: 34px;
- height: 44px;
- z-index: 80;
- }
- #apDiv140 {
- position: absolute;
- left: 1405px;
- top: 368px;
- width: 39px;
- height: 51px;
- z-index: 81;
- }
- #apDiv141 {
- position: absolute;
- left: 1457px;
- top: 326px;
- width: 37px;
- height: 49px;
- z-index: 82;
- }
- #apDiv142 {
- position: absolute;
- left: 1489px;
- top: 253px;
- width: 34px;
- height: 47px;
- z-index: 83;
- }
- #apDiv143 {
- position: absolute;
- left: 1541px;
- top: 210px;
- width: 35px;
- height: 52px;
- z-index: 84;
- }
- #apDiv144 {
- position: absolute;
- left: 1615px;
- top: 179px;
- width: 37px;
- height: 51px;
- z-index: 85;
- }
- #apDiv145 {
- position: absolute;
- left: 1707px;
- top: 157px;
- width: 35px;
- height: 47px;
- z-index: 86;
- }
- #apDiv146 {
- position: absolute;
- left: 1698px;
- top: 237px;
- width: 34px;
- height: 49px;
- z-index: 87;
- }
- #apDiv147 {
- position: absolute;
- left: 1646px;
- top: 264px;
- width: 33px;
- height: 50px;
- z-index: 88;
- }
- #apDiv148 {
- position: absolute;
- left: 1582px;
- top: 271px;
- width: 32px;
- height: 46px;
- z-index: 89;
- }
- #apDiv149 {
- position: absolute;
- left: 1529px;
- top: 306px;
- width: 36px;
- height: 48px;
- z-index: 90;
- }
- #apDiv150 {
- position: absolute;
- left: 1362px;
- top: 560px;
- width: 35px;
- height: 48px;
- z-index: 91;
- }
- #apDiv151 {
- position: absolute;
- left: 1410px;
- top: 512px;
- width: 37px;
- height: 47px;
- z-index: 92;
- }
- #apDiv152 {
- position: absolute;
- left: 1468px;
- top: 495px;
- width: 37px;
- height: 49px;
- z-index: 93;
- }
- #apDiv153 {
- position: absolute;
- left: 1495px;
- top: 435px;
- width: 40px;
- height: 53px;
- z-index: 94;
- }
- #apDiv154 {
- position: absolute;
- left: 1536px;
- top: 467px;
- width: 37px;
- height: 49px;
- z-index: 95;
- }
- #apDiv155 {
- position: absolute;
- left: 1622px;
- top: 402px;
- width: 36px;
- height: 51px;
- z-index: 96;
- }
- #apDiv156 {
- position: absolute;
- left: 1683px;
- top: 385px;
- width: 35px;
- height: 51px;
- z-index: 97;
- }
- #apDiv157 {
- position: absolute;
- left: 1724px;
- top: 355px;
- width: 39px;
- height: 48px;
- z-index: 98;
- }
- #apDiv158 {
- position: absolute;
- left: 1762px;
- top: 311px;
- width: 42px;
- height: 53px;
- z-index: 99;
- }
- #apDiv159 {
- position: absolute;
- left: 1806px;
- top: 261px;
- width: 41px;
- height: 53px;
- z-index: 100;
- }
- #apDiv160 {
- position: absolute;
- left: 1808px;
- top: 369px;
- width: 38px;
- height: 49px;
- z-index: 101;
- }
- #apDiv161 {
- position: absolute;
- left: 104px;
- top: 145px;
- width: 51px;
- height: 64px;
- z-index: 1;
- }
- #apDiv162 {
- position: absolute;
- left: 234px;
- top: 186px;
- width: 52px;
- height: 74px;
- z-index: 2;
- }
- #apDiv163 {
- position: absolute;
- left: 438px;
- top: 266px;
- width: 55px;
- height: 78px;
- z-index: 3;
- }
- #apDiv164 {
- position: absolute;
- left: 573px;
- top: 330px;
- width: 54px;
- height: 78px;
- z-index: 4;
- }
- #apDiv165 {
- position: absolute;
- left: 673px;
- top: 382px;
- width: 51px;
- height: 78px;
- z-index: 5;
- }
- #apDiv166 {
- position: absolute;
- left: 782px;
- top: 472px;
- width: 49px;
- height: 80px;
- z-index: 6;
- }
- #apDiv167 {
- position: absolute;
- left: 874px;
- top: 532px;
- width: 54px;
- height: 76px;
- z-index: 7;
- }
- #apDiv168 {
- position: absolute;
- left: 830px;
- top: 231px;
- width: 47px;
- height: 62px;
- z-index: 8;
- }
- #apDiv169 {
- position: absolute;
- left: 951px;
- top: 270px;
- width: 50px;
- height: 68px;
- z-index: 9;
- }
- #apDiv170 {
- position: absolute;
- left: 1049px;
- top: 323px;
- width: 48px;
- height: 70px;
- z-index: 10;
- }
- #apDiv171 {
- position: absolute;
- left: 1157px;
- top: 390px;
- width: 44px;
- height: 64px;
- z-index: 11;
- }
- #apDiv172 {
- position: absolute;
- left: 883px;
- top: 65px;
- width: 51px;
- height: 63px;
- z-index: 12;
- }
- #apDiv173 {
- position: absolute;
- left: 1031px;
- top: 102px;
- width: 49px;
- height: 66px;
- z-index: 13;
- }
- #apDiv174 {
- position: absolute;
- left: 1056px;
- top: 162px;
- width: 53px;
- height: 63px;
- z-index: 14;
- }
- #apDiv175 {
- position: absolute;
- left: 1423px;
- top: 447px;
- width: 47px;
- height: 61px;
- z-index: 15;
- }
- #apDiv176 {
- position: absolute;
- left: 1539px;
- top: 488px;
- width: 48px;
- height: 64px;
- z-index: 16;
- }
- #apDiv177 {
- position: absolute;
- left: 1555px;
- top: 274px;
- width: 51px;
- height: 64px;
- z-index: 17;
- }
- #apDiv178 {
- position: absolute;
- left: 1796px;
- top: 338px;
- width: 48px;
- height: 65px;
- z-index: 18;
- }
- #apDiv179 {
- position: absolute;
- left: 1639px;
- top: 341px;
- width: 52px;
- height: 63px;
- z-index: 19;
- }
- #apDiv180 {
- position: absolute;
- left: 1408px;
- top: 602px;
- width: 35px;
- height: 48px;
- z-index: 20;
- }
- #apDiv181 {
- position: absolute;
- left: 1472px;
- top: 694px;
- width: 36px;
- height: 52px;
- z-index: 21;
- }
- #apDiv182 {
- position: absolute;
- left: 1300px;
- top: 764px;
- width: 38px;
- height: 47px;
- z-index: 22;
- }
- #apDiv183 {
- position: absolute;
- left: 999px;
- top: 635px;
- width: 40px;
- height: 52px;
- z-index: 23;
- }
- #apDiv184 {
- position: absolute;
- left: 1176px;
- top: 713px;
- width: 40px;
- height: 52px;
- z-index: 24;
- }
- #apDiv185 {
- position: absolute;
- left: 766px;
- top: 673px;
- width: 39px;
- height: 55px;
- z-index: 25;
- }
- #apDiv186 {
- position: absolute;
- left: 651px;
- top: 583px;
- width: 38px;
- height: 52px;
- z-index: 26;
- }
- #apDiv187 {
- position: absolute;
- left: 569px;
- top: 534px;
- width: 41px;
- height: 62px;
- z-index: 27;
- }
- #apDiv188 {
- position: absolute;
- left: 426px;
- top: 457px;
- width: 40px;
- height: 56px;
- z-index: 28;
- }
- #apDiv189 {
- position: absolute;
- left: 360px;
- top: 362px;
- width: 38px;
- height: 58px;
- z-index: 29;
- }
- #apDiv190 {
- position: absolute;
- left: 288px;
- top: 418px;
- width: 40px;
- height: 53px;
- z-index: 30;
- }
- #apDiv191 {
- position: absolute;
- left: 45px;
- top: 309px;
- width: 42px;
- height: 55px;
- z-index: 31;
- }
- #apDiv192 {
- position: absolute;
- left: 196px;
- top: 351px;
- width: 42px;
- height: 55px;
- z-index: 32;
- }
- #apDiv193 {
- position: absolute;
- left: 1562px;
- top: 75px;
- width: 29px;
- height: 38px;
- z-index: 1;
- }
- #apDiv194 {
- position: absolute;
- left: 1617px;
- top: 94px;
- width: 27px;
- height: 38px;
- z-index: 2;
- }
- #apDiv195 {
- position: absolute;
- left: 1707px;
- top: 149px;
- width: 31px;
- height: 42px;
- z-index: 3;
- }
- #apDiv196 {
- position: absolute;
- left: 1607px;
- top: 138px;
- width: 36px;
- height: 47px;
- z-index: 4;
- }
- #apDiv197 {
- position: absolute;
- left: 1475px;
- top: 155px;
- width: 30px;
- height: 39px;
- z-index: 5;
- }
- #apDiv198 {
- position: absolute;
- left: 1555px;
- top: 312px;
- width: 30px;
- height: 42px;
- z-index: 6;
- }
- #apDiv199 {
- position: absolute;
- left: 1694px;
- top: 381px;
- width: 33px;
- height: 44px;
- z-index: 7;
- }
- #apDiv200 {
- position: absolute;
- left: 1784px;
- top: 336px;
- width: 31px;
- height: 43px;
- z-index: 8;
- }
- #apDiv201 {
- position: absolute;
- left: 1774px;
- top: 432px;
- width: 28px;
- height: 35px;
- z-index: 9;
- }
- #apDiv202 {
- position: absolute;
- left: 1772px;
- top: 424px;
- width: 29px;
- height: 39px;
- z-index: 9;
- }
- #apDiv203 {
- position: absolute;
- left: 1738px;
- top: 497px;
- width: 33px;
- height: 43px;
- z-index: 10;
- }
- #apDiv204 {
- position: absolute;
- left: 1707px;
- top: 550px;
- width: 31px;
- height: 40px;
- z-index: 11;
- }
- #apDiv205 {
- position: absolute;
- left: 1227px;
- top: 257px;
- width: 34px;
- height: 45px;
- z-index: 12;
- }
- #apDiv206 {
- position: absolute;
- left: 1342px;
- top: 372px;
- width: 31px;
- height: 43px;
- z-index: 13;
- }
- #apDiv207 {
- position: absolute;
- left: 1353px;
- top: 493px;
- width: 34px;
- height: 46px;
- z-index: 14;
- }
- #apDiv208 {
- position: absolute;
- left: 1435px;
- top: 495px;
- width: 33px;
- height: 46px;
- z-index: 15;
- }
- #apDiv209 {
- position: absolute;
- left: 1483px;
- top: 560px;
- width: 35px;
- height: 48px;
- z-index: 16;
- }
- #apDiv210 {
- position: absolute;
- left: 1556px;
- top: 670px;
- width: 32px;
- height: 42px;
- z-index: 17;
- }
- #apDiv211 {
- position: absolute;
- left: 1465px;
- top: 693px;
- width: 32px;
- height: 45px;
- z-index: 18;
- }
- #apDiv212 {
- position: absolute;
- left: 1367px;
- top: 713px;
- width: 35px;
- height: 47px;
- z-index: 19;
- }
- #apDiv213 {
- position: absolute;
- left: 1332px;
- top: 633px;
- width: 34px;
- height: 44px;
- z-index: 20;
- }
- #apDiv214 {
- position: absolute;
- left: 1269px;
- top: 599px;
- width: 34px;
- height: 47px;
- z-index: 21;
- }
- #apDiv215 {
- position: absolute;
- left: 1205px;
- top: 396px;
- width: 33px;
- height: 43px;
- z-index: 22;
- }
- #apDiv216 {
- position: absolute;
- left: 1074px;
- top: 289px;
- width: 31px;
- height: 41px;
- z-index: 23;
- }
- #apDiv217 {
- position: absolute;
- left: 1103px;
- top: 397px;
- width: 31px;
- height: 41px;
- z-index: 24;
- }
- #apDiv218 {
- position: absolute;
- left: 1090px;
- top: 475px;
- width: 30px;
- height: 44px;
- z-index: 25;
- }
- #apDiv219 {
- position: absolute;
- left: 1181px;
- top: 518px;
- width: 31px;
- height: 44px;
- z-index: 26;
- }
- #apDiv220 {
- position: absolute;
- left: 1160px;
- top: 582px;
- width: 32px;
- height: 43px;
- z-index: 27;
- }
- #apDiv221 {
- position: absolute;
- left: 1104px;
- top: 619px;
- width: 35px;
- height: 44px;
- z-index: 28;
- }
- #apDiv222 {
- position: absolute;
- left: 957px;
- top: 536px;
- width: 35px;
- height: 47px;
- z-index: 29;
- }
- #apDiv223 {
- position: absolute;
- left: 1018px;
- top: 566px;
- width: 33px;
- height: 43px;
- z-index: 30;
- }
- #apDiv224 {
- position: absolute;
- left: 1015px;
- top: 636px;
- width: 33px;
- height: 42px;
- z-index: 31;
- }
- #apDiv225 {
- position: absolute;
- left: 1071px;
- top: 685px;
- width: 32px;
- height: 43px;
- z-index: 32;
- }
- #apDiv226 {
- position: absolute;
- left: 1151px;
- top: 715px;
- width: 33px;
- height: 44px;
- z-index: 33;
- }
- #apDiv227 {
- position: absolute;
- left: 939px;
- top: 148px;
- width: 35px;
- height: 44px;
- z-index: 34;
- }
- #apDiv228 {
- position: absolute;
- left: 976px;
- top: 176px;
- width: 35px;
- height: 42px;
- z-index: 35;
- }
- #apDiv229 {
- position: absolute;
- left: 750px;
- top: 203px;
- width: 32px;
- height: 41px;
- z-index: 36;
- }
- #apDiv230 {
- position: absolute;
- left: 831px;
- top: 242px;
- width: 38px;
- height: 48px;
- z-index: 37;
- }
- #apDiv231 {
- position: absolute;
- left: 751px;
- top: 309px;
- width: 35px;
- height: 46px;
- z-index: 38;
- }
- #apDiv232 {
- position: absolute;
- left: 795px;
- top: 378px;
- width: 36px;
- height: 47px;
- z-index: 39;
- }
- #apDiv233 {
- position: absolute;
- left: 708px;
- top: 396px;
- width: 34px;
- height: 42px;
- z-index: 40;
- }
- #apDiv234 {
- position: absolute;
- left: 747px;
- top: 566px;
- width: 35px;
- height: 43px;
- z-index: 41;
- }
- #apDiv235 {
- position: absolute;
- left: 765px;
- top: 622px;
- width: 34px;
- height: 46px;
- z-index: 42;
- }
- #apDiv236 {
- position: absolute;
- left: 645px;
- top: 568px;
- width: 38px;
- height: 48px;
- z-index: 43;
- }
- #apDiv237 {
- position: absolute;
- left: 678px;
- top: 647px;
- width: 36px;
- height: 45px;
- z-index: 44;
- }
- #apDiv238 {
- position: absolute;
- left: 837px;
- top: 111px;
- width: 36px;
- height: 47px;
- z-index: 45;
- }
- #apDiv239 {
- position: absolute;
- left: 469px;
- top: 155px;
- width: 36px;
- height: 48px;
- z-index: 46;
- }
- #apDiv240 {
- position: absolute;
- left: 361px;
- top: 128px;
- width: 34px;
- height: 47px;
- z-index: 47;
- }
- #apDiv241 {
- position: absolute;
- left: 265px;
- top: 142px;
- width: 34px;
- height: 47px;
- z-index: 48;
- }
- #apDiv242 {
- position: absolute;
- left: 183px;
- top: 154px;
- width: 33px;
- height: 48px;
- z-index: 49;
- }
- #apDiv243 {
- position: absolute;
- left: 145px;
- top: 234px;
- width: 34px;
- height: 46px;
- z-index: 50;
- }
- #apDiv244 {
- position: absolute;
- left: 155px;
- top: 306px;
- width: 40px;
- height: 51px;
- z-index: 51;
- }
- #apDiv245 {
- position: absolute;
- left: 228px;
- top: 395px;
- width: 36px;
- height: 45px;
- z-index: 52;
- }
- #apDiv246 {
- position: absolute;
- left: 319px;
- top: 338px;
- width: 38px;
- height: 51px;
- z-index: 53;
- }
- #apDiv247 {
- position: absolute;
- left: 134px;
- top: 456px;
- width: 34px;
- height: 44px;
- z-index: 54;
- }
- #apDiv248 {
- position: absolute;
- left: 165px;
- top: 521px;
- width: 39px;
- height: 50px;
- z-index: 55;
- }
- #apDiv249 {
- position: absolute;
- left: 220px;
- top: 497px;
- width: 39px;
- height: 48px;
- z-index: 56;
- }
- #apDiv250 {
- position: absolute;
- left: 232px;
- top: 543px;
- width: 38px;
- height: 48px;
- z-index: 57;
- }
- #apDiv251 {
- position: absolute;
- left: 255px;
- top: 589px;
- width: 41px;
- height: 47px;
- z-index: 58;
- }
- #apDiv252 {
- position: absolute;
- left: 362px;
- top: 524px;
- width: 37px;
- height: 49px;
- z-index: 59;
- }
- #apDiv253 {
- position: absolute;
- left: 315px;
- top: 626px;
- width: 36px;
- height: 48px;
- z-index: 60;
- }
- #apDiv254 {
- position: absolute;
- left: 254px;
- top: 652px;
- width: 35px;
- height: 48px;
- z-index: 61;
- }
- #apDiv255 {
- position: absolute;
- left: 345px;
- top: 668px;
- width: 38px;
- height: 46px;
- z-index: 62;
- }
- #apDiv256 {
- position: absolute;
- left: 332px;
- top: 721px;
- width: 39px;
- height: 47px;
- z-index: 63;
- }
- #apDiv257 {
- position: absolute;
- left: 408px;
- top: 692px;
- width: 38px;
- height: 50px;
- z-index: 64;
- }
- #apDiv258 {
- position: absolute;
- left: 547px;
- top: 665px;
- width: 39px;
- height: 47px;
- z-index: 65;
- }
- #apDiv259 {
- position: absolute;
- left: 570px;
- top: 733px;
- width: 40px;
- height: 50px;
- z-index: 66;
- }
- #apDiv {
- position: absolute;
- left: 1468px;
- top: 669px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv260 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv261 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv262 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv263 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv264 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv265 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv266 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv267 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv268 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv269 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv270 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv271 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv272 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv273 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv274 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv275 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv276 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv277 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv278 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv279 { position: absolute;
- left: 245px;
- top: 241px;
- width: 22px;
- height: 12px;
- z-index: 9;
- }
- #apDiv280 { position: absolute;
- left: 1490px;
- top: 137px;
- width: 86px;
- height: 47px;
- z-index: 18;
- }
- #apDiv281 { position: absolute;
- left: 89px;
- top: 131px;
- width: 89px;
- height: 46px;
- z-index: 20;
- }
- #apDiv282 { position: absolute;
- left: 89px;
- top: 131px;
- width: 89px;
- height: 46px;
- z-index: 20;
- }
- #apDiv283 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv284 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv285 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv286 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv287 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv288 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv289 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- #apDiv290 { position: absolute;
- left: 1011px;
- top: 635px;
- width: 89px;
- height: 21px;
- z-index: 19;
- }
- </style>
- <script type="text/javascript">
-
- $(document).ready(function() {
- wpaction();
- //window.setInterval(wpaction, 60000);
- });
- function goback()
- {
- $("#f1").attr("action","/matrix/monitormainIndex.action").submit();
- }
- function wpaction()
- {
- wpAllInfoAjax();
- wtvalueinfo();
-
- }
- function wtvalueinfo() {
- $.ajax({
- url : "wtStationInfo.action?wfName=XS02_GC",
- type : "post",
- cache : false,
- dataType : "json",
- data : {},
- ifModified : false,
- success : function(res) {
- /******************赋值**********************/
- $("#XG01_26gl").html(res["XG01_26gl"] + "kw");
- $("#XG01_27gl").html(res["XG01_27gl"] + "kw");
- $("#XG01_28gl").html(res["XG01_28gl"] + "kw");
- $("#XG01_29gl").html(res["XG01_29gl"] + "kw");
- $("#XG01_30gl").html(res["XG01_30gl"] + "kw");
- $("#XG01_31gl").html(res["XG01_31gl"] + "kw");
- $("#XG01_32gl").html(res["XG01_32gl"] + "kw");
- $("#XG01_33gl").html(res["XG01_33gl"] + "kw");
- $("#XG01_34gl").html(res["XG01_34gl"] + "kw");
- $("#XG01_35gl").html(res["XG01_35gl"] + "kw");
- $("#XG01_36gl").html(res["XG01_36gl"] + "kw");
- $("#XG01_37gl").html(res["XG01_37gl"] + "kw");
- $("#XG01_38gl").html(res["XG01_38gl"] + "kw");
- $("#XG01_39gl").html(res["XG01_39gl"] + "kw");
- $("#XG01_40gl").html(res["XG01_40gl"] + "kw");
- $("#XG01_41gl").html(res["XG01_41gl"] + "kw");
- $("#XG01_42gl").html(res["XG01_42gl"] + "kw");
- $("#XG01_43gl").html(res["XG01_43gl"] + "kw");
- $("#XG01_44gl").html(res["XG01_44gl"] + "kw");
- $("#XG01_45gl").html(res["XG01_45gl"] + "kw");
- $("#XG01_46gl").html(res["XG01_46gl"] + "kw");
- $("#XG01_47gl").html(res["XG01_47gl"] + "kw");
- $("#XG01_48gl").html(res["XG01_48gl"] + "kw");
- $("#XG01_49gl").html(res["XG01_49gl"] + "kw");
- $("#XG01_50gl").html(res["XG01_50gl"] + "kw");
- $("#XG01_51gl").html(res["XG01_51gl"] + "kw");
- $("#XG01_52gl").html(res["XG01_52gl"] + "kw");
- $("#XG01_53gl").html(res["XG01_53gl"] + "kw");
- $("#XG01_54gl").html(res["XG01_54gl"] + "kw");
- $("#XG01_55gl").html(res["XG01_55gl"] + "kw");
- $("#XG01_56gl").html(res["XG01_56gl"] + "kw");
- $("#XG01_57gl").html(res["XG01_57gl"] + "kw");
- $("#XG01_58gl").html(res["XG01_58gl"] + "kw");
- /*****************************************************/
- $("#XG01_01fs").html(res["XG01_01fs"] + "m/s");
- $("#XG01_02fs").html(res["XG01_02fs"] + "m/s");
- $("#XG01_03fs").html(res["XG01_03fs"] + "m/s");
- $("#XG01_04fs").html(res["XG01_04fs"] + "m/s");
- $("#XG01_05fs").html(res["XG01_05fs"] + "m/s");
- $("#XG01_06fs").html(res["XG01_06fs"] + "m/s");
- $("#XG01_07fs").html(res["XG01_07fs"] + "m/s");
- $("#XG01_08fs").html(res["XG01_08fs"] + "m/s");
- $("#XG01_09fs").html(res["XG01_09fs"] + "m/s");
- $("#XG01_10fs").html(res["XG01_10fs"] + "m/s");
- $("#XG01_11fs").html(res["XG01_11fs"] + "m/s");
- $("#XG01_12fs").html(res["XG01_12fs"] + "m/s");
- $("#XG01_13fs").html(res["XG01_13fs"] + "m/s");
- $("#XG01_14fs").html(res["XG01_14fs"] + "m/s");
- $("#XG01_15fs").html(res["XG01_15fs"] + "m/s");
- $("#XG01_16fs").html(res["XG01_16fs"] + "m/s");
- $("#XG01_17fs").html(res["XG01_17fs"] + "m/s");
- $("#XG01_18fs").html(res["XG01_18fs"] + "m/s");
- $("#XG01_19fs").html(res["XG01_19fs"] + "m/s");
- $("#XG01_20fs").html(res["XG01_20fs"] + "m/s");
- $("#XG01_21fs").html(res["XG01_21fs"] + "m/s");
- $("#XG01_22fs").html(res["XG01_22fs"] + "m/s");
- $("#XG01_23fs").html(res["XG01_23fs"] + "m/s");
- $("#XG01_24fs").html(res["XG01_24fs"] + "m/s");
- $("#XG01_25fs").html(res["XG01_25fs"] + "m/s");
- $("#XG01_26fs").html(res["XG01_26fs"] + "m/s");
- $("#XG01_27fs").html(res["XG01_27fs"] + "m/s");
- $("#XG01_28fs").html(res["XG01_28fs"] + "m/s");
- $("#XG01_29fs").html(res["XG01_29fs"] + "m/s");
- $("#XG01_30fs").html(res["XG01_30fs"] + "m/s");
- $("#XG01_31fs").html(res["XG01_31fs"] + "m/s");
- $("#XG01_32fs").html(res["XG01_32fs"] + "m/s");
- $("#XG01_33fs").html(res["XG01_33fs"] + "m/s");
- /*****************************************************/
- $("#XG01_26").html(state(res["XG01_26"]) + "");
- $("#XG01_27").html(state(res["XG01_27"]) + "");
- $("#XG01_28").html(state(res["XG01_28"]) + "");
- $("#XG01_29").html(state(res["XG01_29"]) + "");
- $("#XG01_30").html(state(res["XG01_30"]) + "");
- $("#XG01_31").html(state(res["XG01_31"]) + "");
- $("#XG01_32").html(state(res["XG01_32"]) + "");
- $("#XG01_33").html(state(res["XG01_33"]) + "");
- $("#XG01_34").html(state(res["XG01_34"]) + "");
- $("#XG01_35").html(state(res["XG01_35"]) + "");
- $("#XG01_36").html(state(res["XG01_36"]) + "");
- $("#XG01_37").html(state(res["XG01_37"]) + "");
- $("#XG01_38").html(state(res["XG01_38"]) + "");
- $("#XG01_39").html(state(res["XG01_39"]) + "");
- $("#XG01_40").html(state(res["XG01_40"]) + "");
- $("#XG01_41").html(state(res["XG01_41"]) + "");
- $("#XG01_42").html(state(res["XG01_42"]) + "");
- $("#XG01_43").html(state(res["XG01_43"]) + "");
- $("#XG01_44").html(state(res["XG01_44"]) + "");
- $("#XG01_45").html(state(res["XG01_45"]) + "");
- $("#XG01_46").html(state(res["XG01_46"]) + "");
- $("#XG01_47").html(state(res["XG01_47"]) + "");
- $("#XG01_48").html(state(res["XG01_48"]) + "");
- $("#XG01_49").html(state(res["XG01_49"]) + "");
- $("#XG01_50").html(state(res["XG01_50"]) + "");
- $("#XG01_51").html(state(res["XG01_51"]) + "");
- $("#XG01_52").html(state(res["XG01_52"]) + "");
- $("#XG01_53").html(state(res["XG01_53"]) + "");
- $("#XG01_54").html(state(res["XG01_54"]) + "");
- $("#XG01_55").html(state(res["XG01_55"]) + "");
- $("#XG01_56").html(state(res["XG01_56"]) + "");
- $("#XG01_57").html(state(res["XG01_57"]) + "");
- $("#XG01_58").html(state(res["XG01_58"]) + "");
-
- /*****************************************************/
- }
- });
- }
- function wpAllInfoAjax() {
- $.ajax( {
- url : "/windfarm/windfarmrealtimeinfo.action?wfName=XS02_GC",
- type : "post",
- cache : false,
- dataType : "json",
- data : {},
- ifModified : false,
- success : function(res) {
- $("#zjrl").html(res["zjrl"] + "");
- $("#zgl").html(res["zgl"] + "");
- $("#pjfs").html(res["pjfs"] + "");
- $("#rfdl").html(res["rfdl"] + "");
- $("#yfdl").html(res["yfdl"] + "");
- $("#nfdl").html(res["nfdl"] + "");
- $("#yxts").html(res["yxts"] + "");
- $("#djts").html(res["djts"] + "");
- $("#whts").html(res["whts"] + "");
- $("#gzts").html(res["gzts"] + "");
- $("#lxts").html(res["lxts"] + "");
- $("#xdts").html(res["xdts"] + "");
- $("#jrts").html(res["jrts"] + "");
- $("#wd").html(res["wd"] + "");
- }
- });
- }
- function state(state)
- {
- var temp;
- switch(state){
- case 1:
- temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/run_Icon.gif' width='33' height='45' />";
- break;
- case 0:
- temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png' width='33' height='45' />";
- break;
- case 4:
- temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/repair_Icon.fw.png' width='33' height='45' />";
- break;
- case 2:
- temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/stop_Icon.fw.png' width='33' height='45' />";
- break;
- case 3:
- temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/interrupt_Icon.fw.png' width='33' height='45' />";
- break;
- case 5:
- temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/limit_Icon.gif' width='33' height='45' />";
- break;
- case 6:
- temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/limit_Icon.gif' width='33' height='45' />";
- break;
- }
- return temp;
- }
- function gowt(wtName)
- {
- $("#f1").attr("action","/windfarm/xswtindex.action?wfName=XS_FDC&wtName="+wtName).submit();
- }
- function project1()
- {
- $("#f1").attr("action","/windfarm/xsstation1.action?wfName=XS01_GC").submit();
- }
- function project2()
- {
- $("#f1").attr("action","/windfarm/xsstation2.action?wfName=XS02_GC").submit();
- }
- function windfarm()
- {
- $("#f1").attr("action","/windfarm/xsindex.action?wfName=XS_FDC").submit();
- }
- function tower()
- {
- $("#f1").attr("action","/windfarm/xswindtower.action?windfarm=XS_FDC").submit();
- }
- function powerfirst()
- {
- $("#f1").attr("action","/windfarm/xspowerfirst.action?wfName=XS_FDC").submit();
- }
- function wtinfo()
- {
- $("#f1").attr("action","/windfarm/xswtindex.action?wfName=XS_FDC").submit();
- }
- function power()
- {
- $("#f1").attr("action","/windfarm/xspowerindex.action?wfName=XS_FDC").submit();
- }
- function fjpb()
- {
- $("#f1").attr("action","/windfarm/xsstation1.action?wfName=XS01_GC").submit();
- }
- </script>
- </head>
- <body>
- <form action="" id="f1" method="post" style="width: 1883px">
- <table width="1880" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td height="58" colspan="5" background="<%=request.getContextPath()%>/resource/images/system/pictures/station_Top_xs.jpg"><table width="1880" border="0" cellspacing="0" cellpadding="0" height="58">
- <tr>
- <td width="36" height="25"> </td>
- <td width="64" rowspan="2" align="center"> </td>
- <td width="125" align="center" valign="bottom" class="station_Name">装机容量</td>
- <td width="123"align="center" valign="bottom" class="station_Name">总功率</td>
- <td width="125"align="center" valign="bottom" class="station_Name">日发电量</td>
- <td width="124"align="center" valign="bottom" class="station_Name">月发电量</td>
- <td width="124"align="center" valign="bottom" class="station_Name">年发电量</td>
- <td width="123"align="center" valign="bottom" class="station_Name">温度</td>
- <td width="123"align="center" valign="bottom" class="station_Name">平均风速</td>
- <td width="127"align="center" valign="bottom" class="station_Name">接入台数</td>
- <td width="121"align="center" valign="bottom" class="station_Name">运行台数</td>
- <td width="125"align="center" valign="bottom" class="station_Name">待机台数</td>
- <td width="123"align="center" valign="bottom" class="station_Name">故障台数</td>
- <td width="126"align="center" valign="bottom" class="station_Name">维护台数</td>
- <td width="124"align="center" valign="bottom" class="station_Name">离线台数</td>
- <td width="124"align="center" valign="bottom" class="station_Name">限电台数</td>
- <td width="43"align="center" valign="bottom" class="station_Name" style='cursor: pointer;' onclick="goback()"></td>
- </tr>
- <tr>
- <td height="28"> </td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="zjrl"></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="zgl" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="rfdl" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="yfdl" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="nfdl" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="wd" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="pjfs" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="jrts" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="yxts" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="djts" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="gzts" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="whts" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="lxts" ></span></td>
- <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="xdts" ></span></td>
- <td align="center" style='cursor: pointer;' onclick="goback()"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/back_icon.fw.png" width="18" height="19" /></td>
- </tr>
- </table>
- <tr>
- <td width="17" rowspan="2" valign="top">
- <table width="35" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_zm_Button_link.jpg" width="35" height="80" onclick="windfarm()" style='cursor: pointer;'/></td>
- </tr>
- <tr>
- <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_fjpb_button_selected.jpg" width="35" height="80" onclick="fjpb()" /></td>
- </tr>
- <tr>
- <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_fjinfo_button_link.jpg" width="35" height="80" onclick="wtinfo()" style='cursor: pointer;'/></td>
- </tr>
- <tr>
- <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_syz_button_link.jpg" width="35" onclick="powerfirst()" style='cursor: pointer;'/></td>
- </tr>
- <tr>
- <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_line_button_link.jpg" width="35" height="80" onclick="power()" style='cursor: pointer;'/></td>
- </tr>
- <tr>
- <td align="center" valign="top"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_cft_button_link.jpg" width="35" height="80" onclick="tower()" style='cursor: pointer;'/></td>
- </tr>
- </table></td>
- <td width="1863" height="30" valign="top"
- ><img src="<%=request.getContextPath()%>/resource/images/system/pictures/first_Station_button.jpg" width="90" height="30" onclick="project1()" /><img src="<%=request.getContextPath()%>/resource/images/system/pictures/second_station_Button_selected.fw.png" width="90" height="30" /></td>
- </tr>
- <tr>
- <td height="726" valign="top" background="<%=request.getContextPath()%>/resource/images/system/pictures/xs_pb_map_Second.jpg">
- <div id="apDiv9">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_50')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_50"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">50号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_50gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_50fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_48')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_48"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">48号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_48gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_48fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv2">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_46')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_46"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">46号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_46gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_46fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv3">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_45')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_45"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">45号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_45gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_45fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv4">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_31')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_31"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">31号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_31gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_31fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv5">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_32')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_32"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">32号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_32gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_32fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv6">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_33')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_33"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">33号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_33gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_33fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv7">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_47')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_47"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">47号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_47gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_47fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv8">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_37')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_37"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">37号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_37gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_37fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv10">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_44')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_44"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">44号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_44gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_44fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv11">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_43')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_43"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">43号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_43gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_43fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv12">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_26')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_26"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">26号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_26gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_26fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv13">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_27')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_27"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">27号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_27gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_27fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv14">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_28')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_28"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">28号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_28gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_28fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv15">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_29')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_29"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">29号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_29gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_29fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv16">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_30')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_30"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">30号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_30gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_30fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv17">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_40')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_40"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">40号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_40gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_40fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv18">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_41')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_41"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">41号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_41gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_41fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv19">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_52')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_52"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">52号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_52gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_52fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv20">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_35')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_35"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">35号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_35gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_35fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv21">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_51')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_51"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">51号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_51gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_51fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv22">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_38')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_38"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">38号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_38gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_38fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv23">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_34')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_34"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">34号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_34gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_34fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv24">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_36')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_36"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">36号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_36gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_36fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv25">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_49')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_49"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">49号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_49gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_49fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv26">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_42')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_42"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">42号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_42gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_42fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv27">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_39')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_39"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">39号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_39gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_39fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv28">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_56')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_56"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">56号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_56gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_56fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv29">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_57')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_57"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">57号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_57gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_57fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv30">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_55')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_55"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">55号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_55gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_55fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv31">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_58')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_58"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">58号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_58gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_58fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv32">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_53')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_53"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">53号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_53gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_53fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div>
- <div id="apDiv33">
- <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_54')">
- <tr>
- <td width="39" height="50" rowspan="3"><div id="XG01_54"><img src="<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png" width="33" height="45" /></div></td>
- <td width="41" height="15"><span class="unit_Name">54号</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_54gl" >4888.5kw</span></td>
- </tr>
- <tr>
- <td height="15"><span class="unit_Name" id="XG01_54fs" >7.39m/s</span></td>
- </tr>
- </table>
- </div></td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|