station2.jsp 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150
  1. <%@ page language="java" contentType="text/html;charset=utf-8"%>
  2. <%@include file="/pages/includes/taglibs.jsp"%>
  3. <html>
  4. <head>
  5. <script src="<%=request.getContextPath() %>/resource/js/jquery-1.8.3.js" type="text/javascript"></script>
  6. <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/resource/plugin/jqueryui/css/custom-theme/jquery-ui-1.9.2.custom.css" />
  7. <script src="<%=request.getContextPath() %>/resource/plugin/jqueryui/js/jquery-ui-1.9.2.custom.js" type="text/javascript"></script>
  8. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  9. <style type="text/css">
  10. body {
  11. margin-left: 0px;
  12. margin-top: 0px;
  13. margin-right: 0px;
  14. margin-bottom: 0px;
  15. }
  16. .value_Name {
  17. font-family: "Times New Roman", Times, serif;
  18. font-size: 14px;
  19. font-weight: bolder;
  20. color: #666;
  21. }
  22. .station_Name {
  23. font-family: "Times New Roman", Times, serif;
  24. font-size: 14px;
  25. font-weight: bolder;
  26. color: #666;
  27. }
  28. @font-face {
  29. font-family: 'fontNameRegular';
  30. src:
  31. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.eot')
  32. ;
  33. src: local('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont Regular'
  34. ),
  35. local('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont'),
  36. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.woff')
  37. format('woff'),
  38. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.ttf')
  39. format('truetype'),
  40. url('<%=request.getContextPath()%>/resource/fonts/DS-DIGIT-webfont.svg#fontName')
  41. format('svg');
  42. font-size: 36px;
  43. font-weight: bolder;
  44. }
  45. .item_Name { font-family: Arial, Helvetica, sans-serif;
  46. font-size: 12px;
  47. font-weight: bolder;
  48. color: #fff;
  49. }
  50. .unit_Name { font-family: Arial, Helvetica, sans-serif;
  51. font-size: 12px;
  52. color: #fff;
  53. font-weight: bolder;
  54. }
  55. #apDiv1 {
  56. position: absolute;
  57. width: 22px;
  58. height: 12px;
  59. z-index: 1;
  60. left: 741px;
  61. top: 467px;
  62. }
  63. #apDiv2 {
  64. position: absolute;
  65. width: 22px;
  66. height: 12px;
  67. z-index: 2;
  68. left: 1411px;
  69. top: 566px;
  70. }
  71. #apDiv3 {
  72. position: absolute;
  73. left: 1570px;
  74. top: 482px;
  75. width: 22px;
  76. height: 12px;
  77. z-index: 3;
  78. }
  79. #apDiv4 {
  80. position: absolute;
  81. left: 1371px;
  82. top: 377px;
  83. width: 22px;
  84. height: 12px;
  85. z-index: 4;
  86. }
  87. #apDiv5 {
  88. position: absolute;
  89. left: 1371px;
  90. top: 236px;
  91. width: 22px;
  92. height: 12px;
  93. z-index: 5;
  94. }
  95. #apDiv6 {
  96. position: absolute;
  97. left: 1295px;
  98. top: 132px;
  99. width: 22px;
  100. height: 12px;
  101. z-index: 6;
  102. }
  103. #apDiv7 {
  104. position: absolute;
  105. left: 1539px;
  106. top: 771px;
  107. width: 22px;
  108. height: 12px;
  109. z-index: 7;
  110. }
  111. #apDiv8 {
  112. position: absolute;
  113. left: 969px;
  114. top: 335px;
  115. width: 22px;
  116. height: 12px;
  117. z-index: 8;
  118. }
  119. #apDiv9 {
  120. position: absolute;
  121. left: 1293px;
  122. top: 725px;
  123. width: 22px;
  124. height: 12px;
  125. z-index: 9;
  126. }
  127. #apDiv10 {
  128. position: absolute;
  129. left: 1635px;
  130. top: 618px;
  131. width: 22px;
  132. height: 12px;
  133. z-index: 10;
  134. }
  135. #apDiv11 {
  136. position: absolute;
  137. left: 1731px;
  138. top: 520px;
  139. width: 22px;
  140. height: 12px;
  141. z-index: 11;
  142. }
  143. #apDiv12 {
  144. position: absolute;
  145. left: 1703px;
  146. top: 403px;
  147. width: 22px;
  148. height: 12px;
  149. z-index: 12;
  150. }
  151. #apDiv13 {
  152. position: absolute;
  153. left: 1675px;
  154. top: 306px;
  155. width: 22px;
  156. height: 12px;
  157. z-index: 13;
  158. }
  159. #apDiv14 {
  160. position: absolute;
  161. left: 1632px;
  162. top: 231px;
  163. width: 22px;
  164. height: 12px;
  165. z-index: 14;
  166. }
  167. #apDiv15 {
  168. position: absolute;
  169. left: 1577px;
  170. top: 157px;
  171. width: 22px;
  172. height: 12px;
  173. z-index: 15;
  174. }
  175. #apDiv16 {
  176. position: absolute;
  177. left: 1593px;
  178. top: 81px;
  179. width: 22px;
  180. height: 12px;
  181. z-index: 16;
  182. }
  183. #apDiv17 {
  184. position: absolute;
  185. left: 891px;
  186. top: 96px;
  187. width: 22px;
  188. height: 12px;
  189. z-index: 17;
  190. }
  191. .project_text {
  192. font-family: "宋体";
  193. font-size: 12px;
  194. font-weight: bolder;
  195. color: #FFF;
  196. text-decoration: none;
  197. }
  198. #apDiv18 {
  199. position: absolute;
  200. left: 817px;
  201. top: 201px;
  202. width: 88px;
  203. height: 19px;
  204. z-index: 18;
  205. }
  206. #apDiv19 {
  207. position: absolute;
  208. left: 1011px;
  209. top: 635px;
  210. width: 89px;
  211. height: 21px;
  212. z-index: 19;
  213. }
  214. #apDiv20 {
  215. position: absolute;
  216. left: 1091px;
  217. top: 144px;
  218. width: 86px;
  219. height: 21px;
  220. z-index: 20;
  221. }
  222. #apDiv21 {
  223. position: absolute;
  224. left: 1120px;
  225. top: 701px;
  226. width: 86px;
  227. height: 47px;
  228. z-index: 18;
  229. }
  230. #apDiv22 {
  231. position: absolute;
  232. left: 866px;
  233. top: 434px;
  234. width: 86px;
  235. height: 48px;
  236. z-index: 19;
  237. }
  238. #apDiv23 {
  239. position: absolute;
  240. left: 1197px;
  241. top: 272px;
  242. width: 89px;
  243. height: 46px;
  244. z-index: 20;
  245. }
  246. #apDiv24 {
  247. position: absolute;
  248. left: 1181px;
  249. top: 348px;
  250. width: 98px;
  251. height: 26px;
  252. z-index: 21;
  253. }
  254. #apDiv25 {
  255. position: absolute;
  256. left: 1234px;
  257. top: 636px;
  258. width: 97px;
  259. height: 23px;
  260. z-index: 22;
  261. }
  262. #apDiv26 {
  263. position: absolute;
  264. left: 652px;
  265. top: 267px;
  266. width: 96px;
  267. height: 27px;
  268. z-index: 23;
  269. }
  270. #apDiv27 {
  271. position: absolute;
  272. left: 738px;
  273. top: 375px;
  274. width: 37px;
  275. height: 50px;
  276. z-index: 24;
  277. }
  278. #apDiv28 {
  279. position: absolute;
  280. left: 663px;
  281. top: 516px;
  282. width: 39px;
  283. height: 52px;
  284. z-index: 25;
  285. }
  286. #apDiv29 {
  287. position: absolute;
  288. left: 454px;
  289. top: 505px;
  290. width: 36px;
  291. height: 51px;
  292. z-index: 26;
  293. }
  294. #apDiv30 {
  295. position: absolute;
  296. left: 827px;
  297. top: 588px;
  298. width: 41px;
  299. height: 52px;
  300. z-index: 27;
  301. }
  302. #apDiv31 {
  303. position: absolute;
  304. left: 298px;
  305. top: 611px;
  306. width: 35px;
  307. height: 49px;
  308. z-index: 28;
  309. }
  310. #apDiv32 {
  311. position: absolute;
  312. left: 896px;
  313. top: 715px;
  314. width: 39px;
  315. height: 52px;
  316. z-index: 29;
  317. }
  318. #apDiv33 {
  319. position: absolute;
  320. left: 698px;
  321. top: 755px;
  322. width: 36px;
  323. height: 48px;
  324. z-index: 30;
  325. }
  326. #apDiv34 {
  327. position: absolute;
  328. left: 345px;
  329. top: 527px;
  330. width: 40px;
  331. height: 53px;
  332. z-index: 31;
  333. }
  334. #apDiv35 {
  335. position: absolute;
  336. left: 311px;
  337. top: 588px;
  338. width: 38px;
  339. height: 53px;
  340. z-index: 32;
  341. }
  342. #apDiv36 {
  343. position: absolute;
  344. left: 344px;
  345. top: 660px;
  346. width: 40px;
  347. height: 51px;
  348. z-index: 33;
  349. }
  350. #apDiv37 {
  351. position: absolute;
  352. left: 334px;
  353. top: 749px;
  354. width: 40px;
  355. height: 45px;
  356. z-index: 34;
  357. }
  358. #apDiv38 {
  359. position: absolute;
  360. left: 390px;
  361. top: 117px;
  362. width: 34px;
  363. height: 46px;
  364. z-index: 35;
  365. }
  366. #apDiv39 {
  367. position: absolute;
  368. left: 445px;
  369. top: 126px;
  370. width: 33px;
  371. height: 49px;
  372. z-index: 36;
  373. }
  374. #apDiv40 {
  375. position: absolute;
  376. left: 456px;
  377. top: 193px;
  378. width: 33px;
  379. height: 48px;
  380. z-index: 37;
  381. }
  382. #apDiv41 {
  383. position: absolute;
  384. left: 403px;
  385. top: 198px;
  386. width: 37px;
  387. height: 54px;
  388. z-index: 38;
  389. }
  390. #apDiv42 {
  391. position: absolute;
  392. left: 338px;
  393. top: 216px;
  394. width: 38px;
  395. height: 50px;
  396. z-index: 39;
  397. }
  398. #apDiv43 {
  399. position: absolute;
  400. left: 368px;
  401. top: 258px;
  402. width: 38px;
  403. height: 52px;
  404. z-index: 40;
  405. }
  406. #apDiv44 {
  407. position: absolute;
  408. left: 322px;
  409. top: 311px;
  410. width: 35px;
  411. height: 48px;
  412. z-index: 41;
  413. }
  414. #apDiv45 {
  415. position: absolute;
  416. left: 294px;
  417. top: 379px;
  418. width: 38px;
  419. height: 52px;
  420. z-index: 42;
  421. }
  422. #apDiv46 {
  423. position: absolute;
  424. left: 233px;
  425. top: 459px;
  426. width: 35px;
  427. height: 48px;
  428. z-index: 43;
  429. }
  430. #apDiv47 {
  431. position: absolute;
  432. left: 216px;
  433. top: 545px;
  434. width: 36px;
  435. height: 48px;
  436. z-index: 44;
  437. }
  438. #apDiv48 {
  439. position: absolute;
  440. left: 227px;
  441. top: 625px;
  442. width: 36px;
  443. height: 49px;
  444. z-index: 45;
  445. }
  446. #apDiv49 {
  447. position: absolute;
  448. left: 257px;
  449. top: 715px;
  450. width: 42px;
  451. height: 53px;
  452. z-index: 46;
  453. }
  454. #apDiv50 {
  455. position: absolute;
  456. left: 247px;
  457. top: 189px;
  458. width: 36px;
  459. height: 51px;
  460. z-index: 47;
  461. }
  462. #apDiv51 {
  463. position: absolute;
  464. left: 212px;
  465. top: 226px;
  466. width: 36px;
  467. height: 52px;
  468. z-index: 48;
  469. }
  470. #apDiv52 {
  471. position: absolute;
  472. left: 208px;
  473. top: 305px;
  474. width: 42px;
  475. height: 52px;
  476. z-index: 49;
  477. }
  478. #apDiv53 {
  479. position: absolute;
  480. left: 162px;
  481. top: 340px;
  482. width: 34px;
  483. height: 51px;
  484. z-index: 50;
  485. }
  486. #apDiv54 {
  487. position: absolute;
  488. left: 100px;
  489. top: 346px;
  490. width: 38px;
  491. height: 50px;
  492. z-index: 51;
  493. }
  494. #apDiv55 {
  495. position: absolute;
  496. left: 138px;
  497. top: 404px;
  498. width: 36px;
  499. height: 50px;
  500. z-index: 52;
  501. }
  502. #apDiv56 {
  503. position: absolute;
  504. left: 113px;
  505. top: 472px;
  506. width: 36px;
  507. height: 49px;
  508. z-index: 53;
  509. }
  510. #apDiv57 {
  511. position: absolute;
  512. left: 121px;
  513. top: 529px;
  514. width: 38px;
  515. height: 51px;
  516. z-index: 54;
  517. }
  518. #apDiv58 {
  519. position: absolute;
  520. left: 136px;
  521. top: 591px;
  522. width: 36px;
  523. height: 51px;
  524. z-index: 55;
  525. }
  526. #apDiv59 {
  527. position: absolute;
  528. left: 161px;
  529. top: 664px;
  530. width: 38px;
  531. height: 56px;
  532. z-index: 56;
  533. }
  534. #apDiv60 {
  535. position: absolute;
  536. left: 55px;
  537. top: 521px;
  538. width: 32px;
  539. height: 53px;
  540. z-index: 1;
  541. }
  542. #apDiv61 {
  543. position: absolute;
  544. left: 108px;
  545. top: 504px;
  546. width: 30px;
  547. height: 51px;
  548. z-index: 2;
  549. }
  550. #apDiv62 {
  551. position: absolute;
  552. left: 129px;
  553. top: 568px;
  554. width: 34px;
  555. height: 48px;
  556. z-index: 3;
  557. }
  558. #apDiv63 {
  559. position: absolute;
  560. left: 183px;
  561. top: 609px;
  562. width: 32px;
  563. height: 49px;
  564. z-index: 4;
  565. }
  566. #apDiv64 {
  567. position: absolute;
  568. left: 265px;
  569. top: 546px;
  570. width: 30px;
  571. height: 47px;
  572. z-index: 5;
  573. }
  574. #apDiv65 {
  575. position: absolute;
  576. left: 201px;
  577. top: 546px;
  578. width: 31px;
  579. height: 49px;
  580. z-index: 6;
  581. }
  582. #apDiv66 {
  583. position: absolute;
  584. left: 220px;
  585. top: 484px;
  586. width: 32px;
  587. height: 50px;
  588. z-index: 7;
  589. }
  590. #apDiv67 {
  591. position: absolute;
  592. left: 215px;
  593. top: 420px;
  594. width: 31px;
  595. height: 47px;
  596. z-index: 8;
  597. }
  598. #apDiv68 {
  599. position: absolute;
  600. left: 213px;
  601. top: 352px;
  602. width: 38px;
  603. height: 55px;
  604. z-index: 9;
  605. }
  606. #apDiv69 {
  607. position: absolute;
  608. left: 254px;
  609. top: 415px;
  610. width: 31px;
  611. height: 46px;
  612. z-index: 10;
  613. }
  614. #apDiv70 {
  615. position: absolute;
  616. left: 286px;
  617. top: 482px;
  618. width: 33px;
  619. height: 48px;
  620. z-index: 11;
  621. }
  622. #apDiv71 {
  623. position: absolute;
  624. left: 352px;
  625. top: 507px;
  626. width: 31px;
  627. height: 48px;
  628. z-index: 12;
  629. }
  630. #apDiv72 {
  631. position: absolute;
  632. left: 406px;
  633. top: 420px;
  634. width: 30px;
  635. height: 41px;
  636. z-index: 13;
  637. }
  638. #apDiv73 {
  639. position: absolute;
  640. left: 372px;
  641. top: 345px;
  642. width: 32px;
  643. height: 46px;
  644. z-index: 14;
  645. }
  646. #apDiv74 {
  647. position: absolute;
  648. left: 462px;
  649. top: 383px;
  650. width: 31px;
  651. height: 39px;
  652. z-index: 15;
  653. }
  654. #apDiv75 {
  655. position: absolute;
  656. left: 504px;
  657. top: 346px;
  658. width: 31px;
  659. height: 44px;
  660. z-index: 16;
  661. }
  662. #apDiv76 {
  663. position: absolute;
  664. left: 473px;
  665. top: 452px;
  666. width: 29px;
  667. height: 42px;
  668. z-index: 17;
  669. }
  670. #apDiv77 {
  671. position: absolute;
  672. left: 489px;
  673. top: 485px;
  674. width: 33px;
  675. height: 51px;
  676. z-index: 18;
  677. }
  678. #apDiv78 {
  679. position: absolute;
  680. left: 515px;
  681. top: 415px;
  682. width: 33px;
  683. height: 51px;
  684. z-index: 19;
  685. }
  686. #apDiv79 {
  687. position: absolute;
  688. left: 541px;
  689. top: 451px;
  690. width: 28px;
  691. height: 45px;
  692. z-index: 20;
  693. }
  694. #apDiv80 {
  695. position: absolute;
  696. left: 562px;
  697. top: 484px;
  698. width: 29px;
  699. height: 47px;
  700. z-index: 21;
  701. }
  702. #apDiv81 {
  703. position: absolute;
  704. left: 589px;
  705. top: 519px;
  706. width: 31px;
  707. height: 43px;
  708. z-index: 22;
  709. }
  710. #apDiv82 {
  711. position: absolute;
  712. left: 621px;
  713. top: 502px;
  714. width: 31px;
  715. height: 46px;
  716. z-index: 23;
  717. }
  718. #apDiv83 {
  719. position: absolute;
  720. left: 658px;
  721. top: 478px;
  722. width: 32px;
  723. height: 44px;
  724. z-index: 24;
  725. }
  726. #apDiv84 {
  727. position: absolute;
  728. left: 101px;
  729. top: 677px;
  730. width: 30px;
  731. height: 46px;
  732. z-index: 25;
  733. }
  734. #apDiv85 {
  735. position: absolute;
  736. left: 152px;
  737. top: 746px;
  738. width: 32px;
  739. height: 43px;
  740. z-index: 26;
  741. }
  742. #apDiv86 {
  743. position: absolute;
  744. left: 197px;
  745. top: 741px;
  746. width: 32px;
  747. height: 46px;
  748. z-index: 27;
  749. }
  750. #apDiv87 {
  751. position: absolute;
  752. left: 187px;
  753. top: 662px;
  754. width: 36px;
  755. height: 47px;
  756. z-index: 28;
  757. }
  758. #apDiv88 {
  759. position: absolute;
  760. left: 253px;
  761. top: 654px;
  762. width: 37px;
  763. height: 55px;
  764. z-index: 29;
  765. }
  766. #apDiv89 {
  767. position: absolute;
  768. left: 294px;
  769. top: 623px;
  770. width: 35px;
  771. height: 50px;
  772. z-index: 30;
  773. }
  774. #apDiv90 {
  775. position: absolute;
  776. left: 311px;
  777. top: 555px;
  778. width: 36px;
  779. height: 50px;
  780. z-index: 31;
  781. }
  782. #apDiv91 {
  783. position: absolute;
  784. left: 370px;
  785. top: 582px;
  786. width: 36px;
  787. height: 50px;
  788. z-index: 32;
  789. }
  790. #apDiv92 {
  791. position: absolute;
  792. left: 449px;
  793. top: 516px;
  794. width: 35px;
  795. height: 50px;
  796. z-index: 33;
  797. }
  798. #apDiv93 {
  799. position: absolute;
  800. left: 448px;
  801. top: 577px;
  802. width: 35px;
  803. height: 54px;
  804. z-index: 34;
  805. }
  806. #apDiv94 {
  807. position: absolute;
  808. left: 494px;
  809. top: 617px;
  810. width: 36px;
  811. height: 55px;
  812. z-index: 35;
  813. }
  814. #apDiv95 {
  815. position: absolute;
  816. left: 668px;
  817. top: 561px;
  818. width: 39px;
  819. height: 52px;
  820. z-index: 36;
  821. }
  822. #apDiv96 {
  823. position: absolute;
  824. left: 685px;
  825. top: 471px;
  826. width: 27px;
  827. height: 44px;
  828. z-index: 37;
  829. }
  830. #apDiv97 {
  831. position: absolute;
  832. left: 683px;
  833. top: 422px;
  834. width: 30px;
  835. height: 44px;
  836. z-index: 38;
  837. }
  838. #apDiv98 {
  839. position: absolute;
  840. left: 741px;
  841. top: 394px;
  842. width: 34px;
  843. height: 52px;
  844. z-index: 39;
  845. }
  846. #apDiv99 {
  847. position: absolute;
  848. left: 758px;
  849. top: 459px;
  850. width: 31px;
  851. height: 46px;
  852. z-index: 40;
  853. }
  854. #apDiv100 {
  855. position: absolute;
  856. left: 773px;
  857. top: 500px;
  858. width: 35px;
  859. height: 49px;
  860. z-index: 41;
  861. }
  862. #apDiv101 {
  863. position: absolute;
  864. left: 815px;
  865. top: 469px;
  866. width: 34px;
  867. height: 51px;
  868. z-index: 42;
  869. }
  870. #apDiv102 {
  871. position: absolute;
  872. left: 861px;
  873. top: 537px;
  874. width: 34px;
  875. height: 44px;
  876. z-index: 43;
  877. }
  878. #apDiv103 {
  879. position: absolute;
  880. left: 918px;
  881. top: 548px;
  882. width: 35px;
  883. height: 44px;
  884. z-index: 44;
  885. }
  886. #apDiv104 {
  887. position: absolute;
  888. left: 979px;
  889. top: 598px;
  890. width: 34px;
  891. height: 46px;
  892. z-index: 45;
  893. }
  894. #apDiv105 {
  895. position: absolute;
  896. left: 1206px;
  897. top: 579px;
  898. width: 34px;
  899. height: 47px;
  900. z-index: 46;
  901. }
  902. #apDiv106 {
  903. position: absolute;
  904. left: 1146px;
  905. top: 595px;
  906. width: 38px;
  907. height: 47px;
  908. z-index: 47;
  909. }
  910. #apDiv107 {
  911. position: absolute;
  912. left: 1067px;
  913. top: 612px;
  914. width: 36px;
  915. height: 47px;
  916. z-index: 48;
  917. }
  918. #apDiv108 {
  919. position: absolute;
  920. left: 982px;
  921. top: 338px;
  922. width: 35px;
  923. height: 51px;
  924. z-index: 49;
  925. }
  926. #apDiv109 {
  927. position: absolute;
  928. left: 970px;
  929. top: 390px;
  930. width: 34px;
  931. height: 46px;
  932. z-index: 50;
  933. }
  934. #apDiv110 {
  935. position: absolute;
  936. left: 942px;
  937. top: 433px;
  938. width: 33px;
  939. height: 49px;
  940. z-index: 51;
  941. }
  942. #apDiv111 {
  943. position: absolute;
  944. left: 884px;
  945. top: 439px;
  946. width: 35px;
  947. height: 49px;
  948. z-index: 52;
  949. }
  950. #apDiv112 {
  951. position: absolute;
  952. left: 927px;
  953. top: 489px;
  954. width: 37px;
  955. height: 48px;
  956. z-index: 53;
  957. }
  958. #apDiv113 {
  959. position: absolute;
  960. left: 975px;
  961. top: 475px;
  962. width: 36px;
  963. height: 46px;
  964. z-index: 54;
  965. }
  966. #apDiv114 {
  967. position: absolute;
  968. left: 1013px;
  969. top: 540px;
  970. width: 37px;
  971. height: 50px;
  972. z-index: 55;
  973. }
  974. #apDiv115 {
  975. position: absolute;
  976. left: 1048px;
  977. top: 511px;
  978. width: 37px;
  979. height: 52px;
  980. z-index: 56;
  981. }
  982. #apDiv116 {
  983. position: absolute;
  984. left: 1096px;
  985. top: 548px;
  986. width: 35px;
  987. height: 46px;
  988. z-index: 57;
  989. }
  990. #apDiv117 {
  991. position: absolute;
  992. left: 1166px;
  993. top: 515px;
  994. width: 39px;
  995. height: 47px;
  996. z-index: 58;
  997. }
  998. #apDiv118 {
  999. position: absolute;
  1000. left: 1236px;
  1001. top: 533px;
  1002. width: 38px;
  1003. height: 51px;
  1004. z-index: 59;
  1005. }
  1006. #apDiv119 {
  1007. position: absolute;
  1008. left: 773px;
  1009. top: 564px;
  1010. width: 33px;
  1011. height: 47px;
  1012. z-index: 60;
  1013. }
  1014. #apDiv120 {
  1015. position: absolute;
  1016. left: 812px;
  1017. top: 596px;
  1018. width: 37px;
  1019. height: 49px;
  1020. z-index: 61;
  1021. }
  1022. #apDiv121 {
  1023. position: absolute;
  1024. left: 874px;
  1025. top: 597px;
  1026. width: 39px;
  1027. height: 49px;
  1028. z-index: 62;
  1029. }
  1030. #apDiv122 {
  1031. position: absolute;
  1032. left: 906px;
  1033. top: 640px;
  1034. width: 36px;
  1035. height: 50px;
  1036. z-index: 63;
  1037. }
  1038. #apDiv123 {
  1039. position: absolute;
  1040. left: 914px;
  1041. top: 694px;
  1042. width: 40px;
  1043. height: 50px;
  1044. z-index: 64;
  1045. }
  1046. #apDiv124 {
  1047. position: absolute;
  1048. left: 961px;
  1049. top: 662px;
  1050. width: 40px;
  1051. height: 53px;
  1052. z-index: 65;
  1053. }
  1054. #apDiv125 {
  1055. position: absolute;
  1056. left: 1019px;
  1057. top: 683px;
  1058. width: 40px;
  1059. height: 51px;
  1060. z-index: 66;
  1061. }
  1062. #apDiv126 {
  1063. position: absolute;
  1064. left: 1069px;
  1065. top: 674px;
  1066. width: 42px;
  1067. height: 49px;
  1068. z-index: 67;
  1069. }
  1070. #apDiv127 {
  1071. position: absolute;
  1072. left: 1117px;
  1073. top: 660px;
  1074. width: 41px;
  1075. height: 51px;
  1076. z-index: 68;
  1077. }
  1078. #apDiv128 {
  1079. position: absolute;
  1080. left: 1181px;
  1081. top: 642px;
  1082. width: 40px;
  1083. height: 52px;
  1084. z-index: 69;
  1085. }
  1086. #apDiv129 {
  1087. position: absolute;
  1088. left: 722px;
  1089. top: 603px;
  1090. width: 30px;
  1091. height: 45px;
  1092. z-index: 70;
  1093. }
  1094. #apDiv130 {
  1095. position: absolute;
  1096. left: 776px;
  1097. top: 615px;
  1098. width: 30px;
  1099. height: 43px;
  1100. z-index: 71;
  1101. }
  1102. #apDiv131 {
  1103. position: absolute;
  1104. left: 804px;
  1105. top: 760px;
  1106. width: 30px;
  1107. height: 43px;
  1108. z-index: 72;
  1109. }
  1110. #apDiv132 {
  1111. position: absolute;
  1112. left: 814px;
  1113. top: 702px;
  1114. width: 31px;
  1115. height: 41px;
  1116. z-index: 73;
  1117. }
  1118. #apDiv133 {
  1119. position: absolute;
  1120. left: 847px;
  1121. top: 655px;
  1122. width: 35px;
  1123. height: 50px;
  1124. z-index: 74;
  1125. }
  1126. #apDiv134 {
  1127. position: absolute;
  1128. left: 870px;
  1129. top: 716px;
  1130. width: 32px;
  1131. height: 43px;
  1132. z-index: 75;
  1133. }
  1134. #apDiv135 {
  1135. position: absolute;
  1136. left: 893px;
  1137. top: 761px;
  1138. width: 36px;
  1139. height: 49px;
  1140. z-index: 76;
  1141. }
  1142. #apDiv136 {
  1143. position: absolute;
  1144. left: 938px;
  1145. top: 758px;
  1146. width: 33px;
  1147. height: 47px;
  1148. z-index: 77;
  1149. }
  1150. #apDiv137 {
  1151. position: absolute;
  1152. left: 982px;
  1153. top: 744px;
  1154. width: 33px;
  1155. height: 45px;
  1156. z-index: 78;
  1157. }
  1158. #apDiv138 {
  1159. position: absolute;
  1160. left: 1052px;
  1161. top: 740px;
  1162. width: 35px;
  1163. height: 46px;
  1164. z-index: 79;
  1165. }
  1166. #apDiv139 {
  1167. position: absolute;
  1168. left: 1287px;
  1169. top: 622px;
  1170. width: 34px;
  1171. height: 44px;
  1172. z-index: 80;
  1173. }
  1174. #apDiv140 {
  1175. position: absolute;
  1176. left: 1405px;
  1177. top: 368px;
  1178. width: 39px;
  1179. height: 51px;
  1180. z-index: 81;
  1181. }
  1182. #apDiv141 {
  1183. position: absolute;
  1184. left: 1457px;
  1185. top: 326px;
  1186. width: 37px;
  1187. height: 49px;
  1188. z-index: 82;
  1189. }
  1190. #apDiv142 {
  1191. position: absolute;
  1192. left: 1489px;
  1193. top: 253px;
  1194. width: 34px;
  1195. height: 47px;
  1196. z-index: 83;
  1197. }
  1198. #apDiv143 {
  1199. position: absolute;
  1200. left: 1541px;
  1201. top: 210px;
  1202. width: 35px;
  1203. height: 52px;
  1204. z-index: 84;
  1205. }
  1206. #apDiv144 {
  1207. position: absolute;
  1208. left: 1615px;
  1209. top: 179px;
  1210. width: 37px;
  1211. height: 51px;
  1212. z-index: 85;
  1213. }
  1214. #apDiv145 {
  1215. position: absolute;
  1216. left: 1707px;
  1217. top: 157px;
  1218. width: 35px;
  1219. height: 47px;
  1220. z-index: 86;
  1221. }
  1222. #apDiv146 {
  1223. position: absolute;
  1224. left: 1698px;
  1225. top: 237px;
  1226. width: 34px;
  1227. height: 49px;
  1228. z-index: 87;
  1229. }
  1230. #apDiv147 {
  1231. position: absolute;
  1232. left: 1646px;
  1233. top: 264px;
  1234. width: 33px;
  1235. height: 50px;
  1236. z-index: 88;
  1237. }
  1238. #apDiv148 {
  1239. position: absolute;
  1240. left: 1582px;
  1241. top: 271px;
  1242. width: 32px;
  1243. height: 46px;
  1244. z-index: 89;
  1245. }
  1246. #apDiv149 {
  1247. position: absolute;
  1248. left: 1529px;
  1249. top: 306px;
  1250. width: 36px;
  1251. height: 48px;
  1252. z-index: 90;
  1253. }
  1254. #apDiv150 {
  1255. position: absolute;
  1256. left: 1362px;
  1257. top: 560px;
  1258. width: 35px;
  1259. height: 48px;
  1260. z-index: 91;
  1261. }
  1262. #apDiv151 {
  1263. position: absolute;
  1264. left: 1410px;
  1265. top: 512px;
  1266. width: 37px;
  1267. height: 47px;
  1268. z-index: 92;
  1269. }
  1270. #apDiv152 {
  1271. position: absolute;
  1272. left: 1468px;
  1273. top: 495px;
  1274. width: 37px;
  1275. height: 49px;
  1276. z-index: 93;
  1277. }
  1278. #apDiv153 {
  1279. position: absolute;
  1280. left: 1495px;
  1281. top: 435px;
  1282. width: 40px;
  1283. height: 53px;
  1284. z-index: 94;
  1285. }
  1286. #apDiv154 {
  1287. position: absolute;
  1288. left: 1536px;
  1289. top: 467px;
  1290. width: 37px;
  1291. height: 49px;
  1292. z-index: 95;
  1293. }
  1294. #apDiv155 {
  1295. position: absolute;
  1296. left: 1622px;
  1297. top: 402px;
  1298. width: 36px;
  1299. height: 51px;
  1300. z-index: 96;
  1301. }
  1302. #apDiv156 {
  1303. position: absolute;
  1304. left: 1683px;
  1305. top: 385px;
  1306. width: 35px;
  1307. height: 51px;
  1308. z-index: 97;
  1309. }
  1310. #apDiv157 {
  1311. position: absolute;
  1312. left: 1724px;
  1313. top: 355px;
  1314. width: 39px;
  1315. height: 48px;
  1316. z-index: 98;
  1317. }
  1318. #apDiv158 {
  1319. position: absolute;
  1320. left: 1762px;
  1321. top: 311px;
  1322. width: 42px;
  1323. height: 53px;
  1324. z-index: 99;
  1325. }
  1326. #apDiv159 {
  1327. position: absolute;
  1328. left: 1806px;
  1329. top: 261px;
  1330. width: 41px;
  1331. height: 53px;
  1332. z-index: 100;
  1333. }
  1334. #apDiv160 {
  1335. position: absolute;
  1336. left: 1808px;
  1337. top: 369px;
  1338. width: 38px;
  1339. height: 49px;
  1340. z-index: 101;
  1341. }
  1342. #apDiv161 {
  1343. position: absolute;
  1344. left: 104px;
  1345. top: 145px;
  1346. width: 51px;
  1347. height: 64px;
  1348. z-index: 1;
  1349. }
  1350. #apDiv162 {
  1351. position: absolute;
  1352. left: 234px;
  1353. top: 186px;
  1354. width: 52px;
  1355. height: 74px;
  1356. z-index: 2;
  1357. }
  1358. #apDiv163 {
  1359. position: absolute;
  1360. left: 438px;
  1361. top: 266px;
  1362. width: 55px;
  1363. height: 78px;
  1364. z-index: 3;
  1365. }
  1366. #apDiv164 {
  1367. position: absolute;
  1368. left: 573px;
  1369. top: 330px;
  1370. width: 54px;
  1371. height: 78px;
  1372. z-index: 4;
  1373. }
  1374. #apDiv165 {
  1375. position: absolute;
  1376. left: 673px;
  1377. top: 382px;
  1378. width: 51px;
  1379. height: 78px;
  1380. z-index: 5;
  1381. }
  1382. #apDiv166 {
  1383. position: absolute;
  1384. left: 782px;
  1385. top: 472px;
  1386. width: 49px;
  1387. height: 80px;
  1388. z-index: 6;
  1389. }
  1390. #apDiv167 {
  1391. position: absolute;
  1392. left: 874px;
  1393. top: 532px;
  1394. width: 54px;
  1395. height: 76px;
  1396. z-index: 7;
  1397. }
  1398. #apDiv168 {
  1399. position: absolute;
  1400. left: 830px;
  1401. top: 231px;
  1402. width: 47px;
  1403. height: 62px;
  1404. z-index: 8;
  1405. }
  1406. #apDiv169 {
  1407. position: absolute;
  1408. left: 951px;
  1409. top: 270px;
  1410. width: 50px;
  1411. height: 68px;
  1412. z-index: 9;
  1413. }
  1414. #apDiv170 {
  1415. position: absolute;
  1416. left: 1049px;
  1417. top: 323px;
  1418. width: 48px;
  1419. height: 70px;
  1420. z-index: 10;
  1421. }
  1422. #apDiv171 {
  1423. position: absolute;
  1424. left: 1157px;
  1425. top: 390px;
  1426. width: 44px;
  1427. height: 64px;
  1428. z-index: 11;
  1429. }
  1430. #apDiv172 {
  1431. position: absolute;
  1432. left: 883px;
  1433. top: 65px;
  1434. width: 51px;
  1435. height: 63px;
  1436. z-index: 12;
  1437. }
  1438. #apDiv173 {
  1439. position: absolute;
  1440. left: 1031px;
  1441. top: 102px;
  1442. width: 49px;
  1443. height: 66px;
  1444. z-index: 13;
  1445. }
  1446. #apDiv174 {
  1447. position: absolute;
  1448. left: 1056px;
  1449. top: 162px;
  1450. width: 53px;
  1451. height: 63px;
  1452. z-index: 14;
  1453. }
  1454. #apDiv175 {
  1455. position: absolute;
  1456. left: 1423px;
  1457. top: 447px;
  1458. width: 47px;
  1459. height: 61px;
  1460. z-index: 15;
  1461. }
  1462. #apDiv176 {
  1463. position: absolute;
  1464. left: 1539px;
  1465. top: 488px;
  1466. width: 48px;
  1467. height: 64px;
  1468. z-index: 16;
  1469. }
  1470. #apDiv177 {
  1471. position: absolute;
  1472. left: 1555px;
  1473. top: 274px;
  1474. width: 51px;
  1475. height: 64px;
  1476. z-index: 17;
  1477. }
  1478. #apDiv178 {
  1479. position: absolute;
  1480. left: 1796px;
  1481. top: 338px;
  1482. width: 48px;
  1483. height: 65px;
  1484. z-index: 18;
  1485. }
  1486. #apDiv179 {
  1487. position: absolute;
  1488. left: 1639px;
  1489. top: 341px;
  1490. width: 52px;
  1491. height: 63px;
  1492. z-index: 19;
  1493. }
  1494. #apDiv180 {
  1495. position: absolute;
  1496. left: 1408px;
  1497. top: 602px;
  1498. width: 35px;
  1499. height: 48px;
  1500. z-index: 20;
  1501. }
  1502. #apDiv181 {
  1503. position: absolute;
  1504. left: 1472px;
  1505. top: 694px;
  1506. width: 36px;
  1507. height: 52px;
  1508. z-index: 21;
  1509. }
  1510. #apDiv182 {
  1511. position: absolute;
  1512. left: 1300px;
  1513. top: 764px;
  1514. width: 38px;
  1515. height: 47px;
  1516. z-index: 22;
  1517. }
  1518. #apDiv183 {
  1519. position: absolute;
  1520. left: 999px;
  1521. top: 635px;
  1522. width: 40px;
  1523. height: 52px;
  1524. z-index: 23;
  1525. }
  1526. #apDiv184 {
  1527. position: absolute;
  1528. left: 1176px;
  1529. top: 713px;
  1530. width: 40px;
  1531. height: 52px;
  1532. z-index: 24;
  1533. }
  1534. #apDiv185 {
  1535. position: absolute;
  1536. left: 766px;
  1537. top: 673px;
  1538. width: 39px;
  1539. height: 55px;
  1540. z-index: 25;
  1541. }
  1542. #apDiv186 {
  1543. position: absolute;
  1544. left: 651px;
  1545. top: 583px;
  1546. width: 38px;
  1547. height: 52px;
  1548. z-index: 26;
  1549. }
  1550. #apDiv187 {
  1551. position: absolute;
  1552. left: 569px;
  1553. top: 534px;
  1554. width: 41px;
  1555. height: 62px;
  1556. z-index: 27;
  1557. }
  1558. #apDiv188 {
  1559. position: absolute;
  1560. left: 426px;
  1561. top: 457px;
  1562. width: 40px;
  1563. height: 56px;
  1564. z-index: 28;
  1565. }
  1566. #apDiv189 {
  1567. position: absolute;
  1568. left: 360px;
  1569. top: 362px;
  1570. width: 38px;
  1571. height: 58px;
  1572. z-index: 29;
  1573. }
  1574. #apDiv190 {
  1575. position: absolute;
  1576. left: 288px;
  1577. top: 418px;
  1578. width: 40px;
  1579. height: 53px;
  1580. z-index: 30;
  1581. }
  1582. #apDiv191 {
  1583. position: absolute;
  1584. left: 45px;
  1585. top: 309px;
  1586. width: 42px;
  1587. height: 55px;
  1588. z-index: 31;
  1589. }
  1590. #apDiv192 {
  1591. position: absolute;
  1592. left: 196px;
  1593. top: 351px;
  1594. width: 42px;
  1595. height: 55px;
  1596. z-index: 32;
  1597. }
  1598. #apDiv193 {
  1599. position: absolute;
  1600. left: 1562px;
  1601. top: 75px;
  1602. width: 29px;
  1603. height: 38px;
  1604. z-index: 1;
  1605. }
  1606. #apDiv194 {
  1607. position: absolute;
  1608. left: 1617px;
  1609. top: 94px;
  1610. width: 27px;
  1611. height: 38px;
  1612. z-index: 2;
  1613. }
  1614. #apDiv195 {
  1615. position: absolute;
  1616. left: 1707px;
  1617. top: 149px;
  1618. width: 31px;
  1619. height: 42px;
  1620. z-index: 3;
  1621. }
  1622. #apDiv196 {
  1623. position: absolute;
  1624. left: 1607px;
  1625. top: 138px;
  1626. width: 36px;
  1627. height: 47px;
  1628. z-index: 4;
  1629. }
  1630. #apDiv197 {
  1631. position: absolute;
  1632. left: 1475px;
  1633. top: 155px;
  1634. width: 30px;
  1635. height: 39px;
  1636. z-index: 5;
  1637. }
  1638. #apDiv198 {
  1639. position: absolute;
  1640. left: 1555px;
  1641. top: 312px;
  1642. width: 30px;
  1643. height: 42px;
  1644. z-index: 6;
  1645. }
  1646. #apDiv199 {
  1647. position: absolute;
  1648. left: 1694px;
  1649. top: 381px;
  1650. width: 33px;
  1651. height: 44px;
  1652. z-index: 7;
  1653. }
  1654. #apDiv200 {
  1655. position: absolute;
  1656. left: 1784px;
  1657. top: 336px;
  1658. width: 31px;
  1659. height: 43px;
  1660. z-index: 8;
  1661. }
  1662. #apDiv201 {
  1663. position: absolute;
  1664. left: 1774px;
  1665. top: 432px;
  1666. width: 28px;
  1667. height: 35px;
  1668. z-index: 9;
  1669. }
  1670. #apDiv202 {
  1671. position: absolute;
  1672. left: 1772px;
  1673. top: 424px;
  1674. width: 29px;
  1675. height: 39px;
  1676. z-index: 9;
  1677. }
  1678. #apDiv203 {
  1679. position: absolute;
  1680. left: 1738px;
  1681. top: 497px;
  1682. width: 33px;
  1683. height: 43px;
  1684. z-index: 10;
  1685. }
  1686. #apDiv204 {
  1687. position: absolute;
  1688. left: 1707px;
  1689. top: 550px;
  1690. width: 31px;
  1691. height: 40px;
  1692. z-index: 11;
  1693. }
  1694. #apDiv205 {
  1695. position: absolute;
  1696. left: 1227px;
  1697. top: 257px;
  1698. width: 34px;
  1699. height: 45px;
  1700. z-index: 12;
  1701. }
  1702. #apDiv206 {
  1703. position: absolute;
  1704. left: 1342px;
  1705. top: 372px;
  1706. width: 31px;
  1707. height: 43px;
  1708. z-index: 13;
  1709. }
  1710. #apDiv207 {
  1711. position: absolute;
  1712. left: 1353px;
  1713. top: 493px;
  1714. width: 34px;
  1715. height: 46px;
  1716. z-index: 14;
  1717. }
  1718. #apDiv208 {
  1719. position: absolute;
  1720. left: 1435px;
  1721. top: 495px;
  1722. width: 33px;
  1723. height: 46px;
  1724. z-index: 15;
  1725. }
  1726. #apDiv209 {
  1727. position: absolute;
  1728. left: 1483px;
  1729. top: 560px;
  1730. width: 35px;
  1731. height: 48px;
  1732. z-index: 16;
  1733. }
  1734. #apDiv210 {
  1735. position: absolute;
  1736. left: 1556px;
  1737. top: 670px;
  1738. width: 32px;
  1739. height: 42px;
  1740. z-index: 17;
  1741. }
  1742. #apDiv211 {
  1743. position: absolute;
  1744. left: 1465px;
  1745. top: 693px;
  1746. width: 32px;
  1747. height: 45px;
  1748. z-index: 18;
  1749. }
  1750. #apDiv212 {
  1751. position: absolute;
  1752. left: 1367px;
  1753. top: 713px;
  1754. width: 35px;
  1755. height: 47px;
  1756. z-index: 19;
  1757. }
  1758. #apDiv213 {
  1759. position: absolute;
  1760. left: 1332px;
  1761. top: 633px;
  1762. width: 34px;
  1763. height: 44px;
  1764. z-index: 20;
  1765. }
  1766. #apDiv214 {
  1767. position: absolute;
  1768. left: 1269px;
  1769. top: 599px;
  1770. width: 34px;
  1771. height: 47px;
  1772. z-index: 21;
  1773. }
  1774. #apDiv215 {
  1775. position: absolute;
  1776. left: 1205px;
  1777. top: 396px;
  1778. width: 33px;
  1779. height: 43px;
  1780. z-index: 22;
  1781. }
  1782. #apDiv216 {
  1783. position: absolute;
  1784. left: 1074px;
  1785. top: 289px;
  1786. width: 31px;
  1787. height: 41px;
  1788. z-index: 23;
  1789. }
  1790. #apDiv217 {
  1791. position: absolute;
  1792. left: 1103px;
  1793. top: 397px;
  1794. width: 31px;
  1795. height: 41px;
  1796. z-index: 24;
  1797. }
  1798. #apDiv218 {
  1799. position: absolute;
  1800. left: 1090px;
  1801. top: 475px;
  1802. width: 30px;
  1803. height: 44px;
  1804. z-index: 25;
  1805. }
  1806. #apDiv219 {
  1807. position: absolute;
  1808. left: 1181px;
  1809. top: 518px;
  1810. width: 31px;
  1811. height: 44px;
  1812. z-index: 26;
  1813. }
  1814. #apDiv220 {
  1815. position: absolute;
  1816. left: 1160px;
  1817. top: 582px;
  1818. width: 32px;
  1819. height: 43px;
  1820. z-index: 27;
  1821. }
  1822. #apDiv221 {
  1823. position: absolute;
  1824. left: 1104px;
  1825. top: 619px;
  1826. width: 35px;
  1827. height: 44px;
  1828. z-index: 28;
  1829. }
  1830. #apDiv222 {
  1831. position: absolute;
  1832. left: 957px;
  1833. top: 536px;
  1834. width: 35px;
  1835. height: 47px;
  1836. z-index: 29;
  1837. }
  1838. #apDiv223 {
  1839. position: absolute;
  1840. left: 1018px;
  1841. top: 566px;
  1842. width: 33px;
  1843. height: 43px;
  1844. z-index: 30;
  1845. }
  1846. #apDiv224 {
  1847. position: absolute;
  1848. left: 1015px;
  1849. top: 636px;
  1850. width: 33px;
  1851. height: 42px;
  1852. z-index: 31;
  1853. }
  1854. #apDiv225 {
  1855. position: absolute;
  1856. left: 1071px;
  1857. top: 685px;
  1858. width: 32px;
  1859. height: 43px;
  1860. z-index: 32;
  1861. }
  1862. #apDiv226 {
  1863. position: absolute;
  1864. left: 1151px;
  1865. top: 715px;
  1866. width: 33px;
  1867. height: 44px;
  1868. z-index: 33;
  1869. }
  1870. #apDiv227 {
  1871. position: absolute;
  1872. left: 939px;
  1873. top: 148px;
  1874. width: 35px;
  1875. height: 44px;
  1876. z-index: 34;
  1877. }
  1878. #apDiv228 {
  1879. position: absolute;
  1880. left: 976px;
  1881. top: 176px;
  1882. width: 35px;
  1883. height: 42px;
  1884. z-index: 35;
  1885. }
  1886. #apDiv229 {
  1887. position: absolute;
  1888. left: 750px;
  1889. top: 203px;
  1890. width: 32px;
  1891. height: 41px;
  1892. z-index: 36;
  1893. }
  1894. #apDiv230 {
  1895. position: absolute;
  1896. left: 831px;
  1897. top: 242px;
  1898. width: 38px;
  1899. height: 48px;
  1900. z-index: 37;
  1901. }
  1902. #apDiv231 {
  1903. position: absolute;
  1904. left: 751px;
  1905. top: 309px;
  1906. width: 35px;
  1907. height: 46px;
  1908. z-index: 38;
  1909. }
  1910. #apDiv232 {
  1911. position: absolute;
  1912. left: 795px;
  1913. top: 378px;
  1914. width: 36px;
  1915. height: 47px;
  1916. z-index: 39;
  1917. }
  1918. #apDiv233 {
  1919. position: absolute;
  1920. left: 708px;
  1921. top: 396px;
  1922. width: 34px;
  1923. height: 42px;
  1924. z-index: 40;
  1925. }
  1926. #apDiv234 {
  1927. position: absolute;
  1928. left: 747px;
  1929. top: 566px;
  1930. width: 35px;
  1931. height: 43px;
  1932. z-index: 41;
  1933. }
  1934. #apDiv235 {
  1935. position: absolute;
  1936. left: 765px;
  1937. top: 622px;
  1938. width: 34px;
  1939. height: 46px;
  1940. z-index: 42;
  1941. }
  1942. #apDiv236 {
  1943. position: absolute;
  1944. left: 645px;
  1945. top: 568px;
  1946. width: 38px;
  1947. height: 48px;
  1948. z-index: 43;
  1949. }
  1950. #apDiv237 {
  1951. position: absolute;
  1952. left: 678px;
  1953. top: 647px;
  1954. width: 36px;
  1955. height: 45px;
  1956. z-index: 44;
  1957. }
  1958. #apDiv238 {
  1959. position: absolute;
  1960. left: 837px;
  1961. top: 111px;
  1962. width: 36px;
  1963. height: 47px;
  1964. z-index: 45;
  1965. }
  1966. #apDiv239 {
  1967. position: absolute;
  1968. left: 469px;
  1969. top: 155px;
  1970. width: 36px;
  1971. height: 48px;
  1972. z-index: 46;
  1973. }
  1974. #apDiv240 {
  1975. position: absolute;
  1976. left: 361px;
  1977. top: 128px;
  1978. width: 34px;
  1979. height: 47px;
  1980. z-index: 47;
  1981. }
  1982. #apDiv241 {
  1983. position: absolute;
  1984. left: 265px;
  1985. top: 142px;
  1986. width: 34px;
  1987. height: 47px;
  1988. z-index: 48;
  1989. }
  1990. #apDiv242 {
  1991. position: absolute;
  1992. left: 183px;
  1993. top: 154px;
  1994. width: 33px;
  1995. height: 48px;
  1996. z-index: 49;
  1997. }
  1998. #apDiv243 {
  1999. position: absolute;
  2000. left: 145px;
  2001. top: 234px;
  2002. width: 34px;
  2003. height: 46px;
  2004. z-index: 50;
  2005. }
  2006. #apDiv244 {
  2007. position: absolute;
  2008. left: 155px;
  2009. top: 306px;
  2010. width: 40px;
  2011. height: 51px;
  2012. z-index: 51;
  2013. }
  2014. #apDiv245 {
  2015. position: absolute;
  2016. left: 228px;
  2017. top: 395px;
  2018. width: 36px;
  2019. height: 45px;
  2020. z-index: 52;
  2021. }
  2022. #apDiv246 {
  2023. position: absolute;
  2024. left: 319px;
  2025. top: 338px;
  2026. width: 38px;
  2027. height: 51px;
  2028. z-index: 53;
  2029. }
  2030. #apDiv247 {
  2031. position: absolute;
  2032. left: 134px;
  2033. top: 456px;
  2034. width: 34px;
  2035. height: 44px;
  2036. z-index: 54;
  2037. }
  2038. #apDiv248 {
  2039. position: absolute;
  2040. left: 165px;
  2041. top: 521px;
  2042. width: 39px;
  2043. height: 50px;
  2044. z-index: 55;
  2045. }
  2046. #apDiv249 {
  2047. position: absolute;
  2048. left: 220px;
  2049. top: 497px;
  2050. width: 39px;
  2051. height: 48px;
  2052. z-index: 56;
  2053. }
  2054. #apDiv250 {
  2055. position: absolute;
  2056. left: 232px;
  2057. top: 543px;
  2058. width: 38px;
  2059. height: 48px;
  2060. z-index: 57;
  2061. }
  2062. #apDiv251 {
  2063. position: absolute;
  2064. left: 255px;
  2065. top: 589px;
  2066. width: 41px;
  2067. height: 47px;
  2068. z-index: 58;
  2069. }
  2070. #apDiv252 {
  2071. position: absolute;
  2072. left: 362px;
  2073. top: 524px;
  2074. width: 37px;
  2075. height: 49px;
  2076. z-index: 59;
  2077. }
  2078. #apDiv253 {
  2079. position: absolute;
  2080. left: 315px;
  2081. top: 626px;
  2082. width: 36px;
  2083. height: 48px;
  2084. z-index: 60;
  2085. }
  2086. #apDiv254 {
  2087. position: absolute;
  2088. left: 254px;
  2089. top: 652px;
  2090. width: 35px;
  2091. height: 48px;
  2092. z-index: 61;
  2093. }
  2094. #apDiv255 {
  2095. position: absolute;
  2096. left: 345px;
  2097. top: 668px;
  2098. width: 38px;
  2099. height: 46px;
  2100. z-index: 62;
  2101. }
  2102. #apDiv256 {
  2103. position: absolute;
  2104. left: 332px;
  2105. top: 721px;
  2106. width: 39px;
  2107. height: 47px;
  2108. z-index: 63;
  2109. }
  2110. #apDiv257 {
  2111. position: absolute;
  2112. left: 408px;
  2113. top: 692px;
  2114. width: 38px;
  2115. height: 50px;
  2116. z-index: 64;
  2117. }
  2118. #apDiv258 {
  2119. position: absolute;
  2120. left: 547px;
  2121. top: 665px;
  2122. width: 39px;
  2123. height: 47px;
  2124. z-index: 65;
  2125. }
  2126. #apDiv259 {
  2127. position: absolute;
  2128. left: 570px;
  2129. top: 733px;
  2130. width: 40px;
  2131. height: 50px;
  2132. z-index: 66;
  2133. }
  2134. #apDiv {
  2135. position: absolute;
  2136. left: 1468px;
  2137. top: 669px;
  2138. width: 22px;
  2139. height: 12px;
  2140. z-index: 9;
  2141. }
  2142. #apDiv260 { position: absolute;
  2143. left: 245px;
  2144. top: 241px;
  2145. width: 22px;
  2146. height: 12px;
  2147. z-index: 9;
  2148. }
  2149. #apDiv261 { position: absolute;
  2150. left: 245px;
  2151. top: 241px;
  2152. width: 22px;
  2153. height: 12px;
  2154. z-index: 9;
  2155. }
  2156. #apDiv262 { position: absolute;
  2157. left: 245px;
  2158. top: 241px;
  2159. width: 22px;
  2160. height: 12px;
  2161. z-index: 9;
  2162. }
  2163. #apDiv263 { position: absolute;
  2164. left: 245px;
  2165. top: 241px;
  2166. width: 22px;
  2167. height: 12px;
  2168. z-index: 9;
  2169. }
  2170. #apDiv264 { position: absolute;
  2171. left: 245px;
  2172. top: 241px;
  2173. width: 22px;
  2174. height: 12px;
  2175. z-index: 9;
  2176. }
  2177. #apDiv265 { position: absolute;
  2178. left: 245px;
  2179. top: 241px;
  2180. width: 22px;
  2181. height: 12px;
  2182. z-index: 9;
  2183. }
  2184. #apDiv266 { position: absolute;
  2185. left: 245px;
  2186. top: 241px;
  2187. width: 22px;
  2188. height: 12px;
  2189. z-index: 9;
  2190. }
  2191. #apDiv267 { position: absolute;
  2192. left: 245px;
  2193. top: 241px;
  2194. width: 22px;
  2195. height: 12px;
  2196. z-index: 9;
  2197. }
  2198. #apDiv268 { position: absolute;
  2199. left: 245px;
  2200. top: 241px;
  2201. width: 22px;
  2202. height: 12px;
  2203. z-index: 9;
  2204. }
  2205. #apDiv269 { position: absolute;
  2206. left: 245px;
  2207. top: 241px;
  2208. width: 22px;
  2209. height: 12px;
  2210. z-index: 9;
  2211. }
  2212. #apDiv270 { position: absolute;
  2213. left: 245px;
  2214. top: 241px;
  2215. width: 22px;
  2216. height: 12px;
  2217. z-index: 9;
  2218. }
  2219. #apDiv271 { position: absolute;
  2220. left: 245px;
  2221. top: 241px;
  2222. width: 22px;
  2223. height: 12px;
  2224. z-index: 9;
  2225. }
  2226. #apDiv272 { position: absolute;
  2227. left: 245px;
  2228. top: 241px;
  2229. width: 22px;
  2230. height: 12px;
  2231. z-index: 9;
  2232. }
  2233. #apDiv273 { position: absolute;
  2234. left: 245px;
  2235. top: 241px;
  2236. width: 22px;
  2237. height: 12px;
  2238. z-index: 9;
  2239. }
  2240. #apDiv274 { position: absolute;
  2241. left: 245px;
  2242. top: 241px;
  2243. width: 22px;
  2244. height: 12px;
  2245. z-index: 9;
  2246. }
  2247. #apDiv275 { position: absolute;
  2248. left: 245px;
  2249. top: 241px;
  2250. width: 22px;
  2251. height: 12px;
  2252. z-index: 9;
  2253. }
  2254. #apDiv276 { position: absolute;
  2255. left: 245px;
  2256. top: 241px;
  2257. width: 22px;
  2258. height: 12px;
  2259. z-index: 9;
  2260. }
  2261. #apDiv277 { position: absolute;
  2262. left: 245px;
  2263. top: 241px;
  2264. width: 22px;
  2265. height: 12px;
  2266. z-index: 9;
  2267. }
  2268. #apDiv278 { position: absolute;
  2269. left: 245px;
  2270. top: 241px;
  2271. width: 22px;
  2272. height: 12px;
  2273. z-index: 9;
  2274. }
  2275. #apDiv279 { position: absolute;
  2276. left: 245px;
  2277. top: 241px;
  2278. width: 22px;
  2279. height: 12px;
  2280. z-index: 9;
  2281. }
  2282. #apDiv280 { position: absolute;
  2283. left: 1490px;
  2284. top: 137px;
  2285. width: 86px;
  2286. height: 47px;
  2287. z-index: 18;
  2288. }
  2289. #apDiv281 { position: absolute;
  2290. left: 89px;
  2291. top: 131px;
  2292. width: 89px;
  2293. height: 46px;
  2294. z-index: 20;
  2295. }
  2296. #apDiv282 { position: absolute;
  2297. left: 89px;
  2298. top: 131px;
  2299. width: 89px;
  2300. height: 46px;
  2301. z-index: 20;
  2302. }
  2303. #apDiv283 { position: absolute;
  2304. left: 1011px;
  2305. top: 635px;
  2306. width: 89px;
  2307. height: 21px;
  2308. z-index: 19;
  2309. }
  2310. #apDiv284 { position: absolute;
  2311. left: 1011px;
  2312. top: 635px;
  2313. width: 89px;
  2314. height: 21px;
  2315. z-index: 19;
  2316. }
  2317. #apDiv285 { position: absolute;
  2318. left: 1011px;
  2319. top: 635px;
  2320. width: 89px;
  2321. height: 21px;
  2322. z-index: 19;
  2323. }
  2324. #apDiv286 { position: absolute;
  2325. left: 1011px;
  2326. top: 635px;
  2327. width: 89px;
  2328. height: 21px;
  2329. z-index: 19;
  2330. }
  2331. #apDiv287 { position: absolute;
  2332. left: 1011px;
  2333. top: 635px;
  2334. width: 89px;
  2335. height: 21px;
  2336. z-index: 19;
  2337. }
  2338. #apDiv288 { position: absolute;
  2339. left: 1011px;
  2340. top: 635px;
  2341. width: 89px;
  2342. height: 21px;
  2343. z-index: 19;
  2344. }
  2345. #apDiv289 { position: absolute;
  2346. left: 1011px;
  2347. top: 635px;
  2348. width: 89px;
  2349. height: 21px;
  2350. z-index: 19;
  2351. }
  2352. #apDiv290 { position: absolute;
  2353. left: 1011px;
  2354. top: 635px;
  2355. width: 89px;
  2356. height: 21px;
  2357. z-index: 19;
  2358. }
  2359. </style>
  2360. <script type="text/javascript">
  2361. $(document).ready(function() {
  2362. wpaction();
  2363. //window.setInterval(wpaction, 60000);
  2364. });
  2365. function goback()
  2366. {
  2367. $("#f1").attr("action","/matrix/monitormainIndex.action").submit();
  2368. }
  2369. function wpaction()
  2370. {
  2371. wpAllInfoAjax();
  2372. wtvalueinfo();
  2373. }
  2374. function wtvalueinfo() {
  2375. $.ajax({
  2376. url : "wtStationInfo.action?wfName=XS02_GC",
  2377. type : "post",
  2378. cache : false,
  2379. dataType : "json",
  2380. data : {},
  2381. ifModified : false,
  2382. success : function(res) {
  2383. /******************赋值**********************/
  2384. $("#XG01_26gl").html(res["XG01_26gl"] + "kw");
  2385. $("#XG01_27gl").html(res["XG01_27gl"] + "kw");
  2386. $("#XG01_28gl").html(res["XG01_28gl"] + "kw");
  2387. $("#XG01_29gl").html(res["XG01_29gl"] + "kw");
  2388. $("#XG01_30gl").html(res["XG01_30gl"] + "kw");
  2389. $("#XG01_31gl").html(res["XG01_31gl"] + "kw");
  2390. $("#XG01_32gl").html(res["XG01_32gl"] + "kw");
  2391. $("#XG01_33gl").html(res["XG01_33gl"] + "kw");
  2392. $("#XG01_34gl").html(res["XG01_34gl"] + "kw");
  2393. $("#XG01_35gl").html(res["XG01_35gl"] + "kw");
  2394. $("#XG01_36gl").html(res["XG01_36gl"] + "kw");
  2395. $("#XG01_37gl").html(res["XG01_37gl"] + "kw");
  2396. $("#XG01_38gl").html(res["XG01_38gl"] + "kw");
  2397. $("#XG01_39gl").html(res["XG01_39gl"] + "kw");
  2398. $("#XG01_40gl").html(res["XG01_40gl"] + "kw");
  2399. $("#XG01_41gl").html(res["XG01_41gl"] + "kw");
  2400. $("#XG01_42gl").html(res["XG01_42gl"] + "kw");
  2401. $("#XG01_43gl").html(res["XG01_43gl"] + "kw");
  2402. $("#XG01_44gl").html(res["XG01_44gl"] + "kw");
  2403. $("#XG01_45gl").html(res["XG01_45gl"] + "kw");
  2404. $("#XG01_46gl").html(res["XG01_46gl"] + "kw");
  2405. $("#XG01_47gl").html(res["XG01_47gl"] + "kw");
  2406. $("#XG01_48gl").html(res["XG01_48gl"] + "kw");
  2407. $("#XG01_49gl").html(res["XG01_49gl"] + "kw");
  2408. $("#XG01_50gl").html(res["XG01_50gl"] + "kw");
  2409. $("#XG01_51gl").html(res["XG01_51gl"] + "kw");
  2410. $("#XG01_52gl").html(res["XG01_52gl"] + "kw");
  2411. $("#XG01_53gl").html(res["XG01_53gl"] + "kw");
  2412. $("#XG01_54gl").html(res["XG01_54gl"] + "kw");
  2413. $("#XG01_55gl").html(res["XG01_55gl"] + "kw");
  2414. $("#XG01_56gl").html(res["XG01_56gl"] + "kw");
  2415. $("#XG01_57gl").html(res["XG01_57gl"] + "kw");
  2416. $("#XG01_58gl").html(res["XG01_58gl"] + "kw");
  2417. /*****************************************************/
  2418. $("#XG01_01fs").html(res["XG01_01fs"] + "m/s");
  2419. $("#XG01_02fs").html(res["XG01_02fs"] + "m/s");
  2420. $("#XG01_03fs").html(res["XG01_03fs"] + "m/s");
  2421. $("#XG01_04fs").html(res["XG01_04fs"] + "m/s");
  2422. $("#XG01_05fs").html(res["XG01_05fs"] + "m/s");
  2423. $("#XG01_06fs").html(res["XG01_06fs"] + "m/s");
  2424. $("#XG01_07fs").html(res["XG01_07fs"] + "m/s");
  2425. $("#XG01_08fs").html(res["XG01_08fs"] + "m/s");
  2426. $("#XG01_09fs").html(res["XG01_09fs"] + "m/s");
  2427. $("#XG01_10fs").html(res["XG01_10fs"] + "m/s");
  2428. $("#XG01_11fs").html(res["XG01_11fs"] + "m/s");
  2429. $("#XG01_12fs").html(res["XG01_12fs"] + "m/s");
  2430. $("#XG01_13fs").html(res["XG01_13fs"] + "m/s");
  2431. $("#XG01_14fs").html(res["XG01_14fs"] + "m/s");
  2432. $("#XG01_15fs").html(res["XG01_15fs"] + "m/s");
  2433. $("#XG01_16fs").html(res["XG01_16fs"] + "m/s");
  2434. $("#XG01_17fs").html(res["XG01_17fs"] + "m/s");
  2435. $("#XG01_18fs").html(res["XG01_18fs"] + "m/s");
  2436. $("#XG01_19fs").html(res["XG01_19fs"] + "m/s");
  2437. $("#XG01_20fs").html(res["XG01_20fs"] + "m/s");
  2438. $("#XG01_21fs").html(res["XG01_21fs"] + "m/s");
  2439. $("#XG01_22fs").html(res["XG01_22fs"] + "m/s");
  2440. $("#XG01_23fs").html(res["XG01_23fs"] + "m/s");
  2441. $("#XG01_24fs").html(res["XG01_24fs"] + "m/s");
  2442. $("#XG01_25fs").html(res["XG01_25fs"] + "m/s");
  2443. $("#XG01_26fs").html(res["XG01_26fs"] + "m/s");
  2444. $("#XG01_27fs").html(res["XG01_27fs"] + "m/s");
  2445. $("#XG01_28fs").html(res["XG01_28fs"] + "m/s");
  2446. $("#XG01_29fs").html(res["XG01_29fs"] + "m/s");
  2447. $("#XG01_30fs").html(res["XG01_30fs"] + "m/s");
  2448. $("#XG01_31fs").html(res["XG01_31fs"] + "m/s");
  2449. $("#XG01_32fs").html(res["XG01_32fs"] + "m/s");
  2450. $("#XG01_33fs").html(res["XG01_33fs"] + "m/s");
  2451. /*****************************************************/
  2452. $("#XG01_26").html(state(res["XG01_26"]) + "");
  2453. $("#XG01_27").html(state(res["XG01_27"]) + "");
  2454. $("#XG01_28").html(state(res["XG01_28"]) + "");
  2455. $("#XG01_29").html(state(res["XG01_29"]) + "");
  2456. $("#XG01_30").html(state(res["XG01_30"]) + "");
  2457. $("#XG01_31").html(state(res["XG01_31"]) + "");
  2458. $("#XG01_32").html(state(res["XG01_32"]) + "");
  2459. $("#XG01_33").html(state(res["XG01_33"]) + "");
  2460. $("#XG01_34").html(state(res["XG01_34"]) + "");
  2461. $("#XG01_35").html(state(res["XG01_35"]) + "");
  2462. $("#XG01_36").html(state(res["XG01_36"]) + "");
  2463. $("#XG01_37").html(state(res["XG01_37"]) + "");
  2464. $("#XG01_38").html(state(res["XG01_38"]) + "");
  2465. $("#XG01_39").html(state(res["XG01_39"]) + "");
  2466. $("#XG01_40").html(state(res["XG01_40"]) + "");
  2467. $("#XG01_41").html(state(res["XG01_41"]) + "");
  2468. $("#XG01_42").html(state(res["XG01_42"]) + "");
  2469. $("#XG01_43").html(state(res["XG01_43"]) + "");
  2470. $("#XG01_44").html(state(res["XG01_44"]) + "");
  2471. $("#XG01_45").html(state(res["XG01_45"]) + "");
  2472. $("#XG01_46").html(state(res["XG01_46"]) + "");
  2473. $("#XG01_47").html(state(res["XG01_47"]) + "");
  2474. $("#XG01_48").html(state(res["XG01_48"]) + "");
  2475. $("#XG01_49").html(state(res["XG01_49"]) + "");
  2476. $("#XG01_50").html(state(res["XG01_50"]) + "");
  2477. $("#XG01_51").html(state(res["XG01_51"]) + "");
  2478. $("#XG01_52").html(state(res["XG01_52"]) + "");
  2479. $("#XG01_53").html(state(res["XG01_53"]) + "");
  2480. $("#XG01_54").html(state(res["XG01_54"]) + "");
  2481. $("#XG01_55").html(state(res["XG01_55"]) + "");
  2482. $("#XG01_56").html(state(res["XG01_56"]) + "");
  2483. $("#XG01_57").html(state(res["XG01_57"]) + "");
  2484. $("#XG01_58").html(state(res["XG01_58"]) + "");
  2485. /*****************************************************/
  2486. }
  2487. });
  2488. }
  2489. function wpAllInfoAjax() {
  2490. $.ajax( {
  2491. url : "/windfarm/windfarmrealtimeinfo.action?wfName=XS02_GC",
  2492. type : "post",
  2493. cache : false,
  2494. dataType : "json",
  2495. data : {},
  2496. ifModified : false,
  2497. success : function(res) {
  2498. $("#zjrl").html(res["zjrl"] + "");
  2499. $("#zgl").html(res["zgl"] + "");
  2500. $("#pjfs").html(res["pjfs"] + "");
  2501. $("#rfdl").html(res["rfdl"] + "");
  2502. $("#yfdl").html(res["yfdl"] + "");
  2503. $("#nfdl").html(res["nfdl"] + "");
  2504. $("#yxts").html(res["yxts"] + "");
  2505. $("#djts").html(res["djts"] + "");
  2506. $("#whts").html(res["whts"] + "");
  2507. $("#gzts").html(res["gzts"] + "");
  2508. $("#lxts").html(res["lxts"] + "");
  2509. $("#xdts").html(res["xdts"] + "");
  2510. $("#jrts").html(res["jrts"] + "");
  2511. $("#wd").html(res["wd"] + "");
  2512. }
  2513. });
  2514. }
  2515. function state(state)
  2516. {
  2517. var temp;
  2518. switch(state){
  2519. case 1:
  2520. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/run_Icon.gif' width='33' height='45' />";
  2521. break;
  2522. case 0:
  2523. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/standBy_Icon.fw.png' width='33' height='45' />";
  2524. break;
  2525. case 4:
  2526. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/repair_Icon.fw.png' width='33' height='45' />";
  2527. break;
  2528. case 2:
  2529. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/stop_Icon.fw.png' width='33' height='45' />";
  2530. break;
  2531. case 3:
  2532. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/interrupt_Icon.fw.png' width='33' height='45' />";
  2533. break;
  2534. case 5:
  2535. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/limit_Icon.gif' width='33' height='45' />";
  2536. break;
  2537. case 6:
  2538. temp=" <img src='<%=request.getContextPath()%>/resource/images/system/pictures/limit_Icon.gif' width='33' height='45' />";
  2539. break;
  2540. }
  2541. return temp;
  2542. }
  2543. function gowt(wtName)
  2544. {
  2545. $("#f1").attr("action","/windfarm/xswtindex.action?wfName=XS_FDC&wtName="+wtName).submit();
  2546. }
  2547. function project1()
  2548. {
  2549. $("#f1").attr("action","/windfarm/xsstation1.action?wfName=XS01_GC").submit();
  2550. }
  2551. function project2()
  2552. {
  2553. $("#f1").attr("action","/windfarm/xsstation2.action?wfName=XS02_GC").submit();
  2554. }
  2555. function windfarm()
  2556. {
  2557. $("#f1").attr("action","/windfarm/xsindex.action?wfName=XS_FDC").submit();
  2558. }
  2559. function tower()
  2560. {
  2561. $("#f1").attr("action","/windfarm/xswindtower.action?windfarm=XS_FDC").submit();
  2562. }
  2563. function powerfirst()
  2564. {
  2565. $("#f1").attr("action","/windfarm/xspowerfirst.action?wfName=XS_FDC").submit();
  2566. }
  2567. function wtinfo()
  2568. {
  2569. $("#f1").attr("action","/windfarm/xswtindex.action?wfName=XS_FDC").submit();
  2570. }
  2571. function power()
  2572. {
  2573. $("#f1").attr("action","/windfarm/xspowerindex.action?wfName=XS_FDC").submit();
  2574. }
  2575. function fjpb()
  2576. {
  2577. $("#f1").attr("action","/windfarm/xsstation1.action?wfName=XS01_GC").submit();
  2578. }
  2579. </script>
  2580. </head>
  2581. <body>
  2582. <form action="" id="f1" method="post" style="width: 1883px">
  2583. <table width="1880" border="0" align="center" cellpadding="0" cellspacing="0">
  2584. <tr>
  2585. <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">
  2586. <tr>
  2587. <td width="36" height="25">&nbsp;</td>
  2588. <td width="64" rowspan="2" align="center">&nbsp; </td>
  2589. <td width="125" align="center" valign="bottom" class="station_Name">装机容量</td>
  2590. <td width="123"align="center" valign="bottom" class="station_Name">总功率</td>
  2591. <td width="125"align="center" valign="bottom" class="station_Name">日发电量</td>
  2592. <td width="124"align="center" valign="bottom" class="station_Name">月发电量</td>
  2593. <td width="124"align="center" valign="bottom" class="station_Name">年发电量</td>
  2594. <td width="123"align="center" valign="bottom" class="station_Name">温度</td>
  2595. <td width="123"align="center" valign="bottom" class="station_Name">平均风速</td>
  2596. <td width="127"align="center" valign="bottom" class="station_Name">接入台数</td>
  2597. <td width="121"align="center" valign="bottom" class="station_Name">运行台数</td>
  2598. <td width="125"align="center" valign="bottom" class="station_Name">待机台数</td>
  2599. <td width="123"align="center" valign="bottom" class="station_Name">故障台数</td>
  2600. <td width="126"align="center" valign="bottom" class="station_Name">维护台数</td>
  2601. <td width="124"align="center" valign="bottom" class="station_Name">离线台数</td>
  2602. <td width="124"align="center" valign="bottom" class="station_Name">限电台数</td>
  2603. <td width="43"align="center" valign="bottom" class="station_Name" style='cursor: pointer;' onclick="goback()"></td>
  2604. </tr>
  2605. <tr>
  2606. <td height="28">&nbsp;</td>
  2607. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="zjrl"></span></td>
  2608. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="zgl" ></span></td>
  2609. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="rfdl" ></span></td>
  2610. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="yfdl" ></span></td>
  2611. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="nfdl" ></span></td>
  2612. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="wd" ></span></td>
  2613. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="pjfs" ></span></td>
  2614. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="jrts" ></span></td>
  2615. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="yxts" ></span></td>
  2616. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="djts" ></span></td>
  2617. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="gzts" ></span></td>
  2618. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="whts" ></span></td>
  2619. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="lxts" ></span></td>
  2620. <td align="center"><span style="font-family: fontNameRegular;font-size: 20px;font-weight: bolder; color: #666;" id="xdts" ></span></td>
  2621. <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>
  2622. </tr>
  2623. </table>
  2624. <tr>
  2625. <td width="17" rowspan="2" valign="top">
  2626. <table width="35" border="0" cellspacing="0" cellpadding="0">
  2627. <tr>
  2628. <td><img src="<%=request.getContextPath()%>/resource/images/system/pictures/station_zm_Button_link.jpg" width="35" height="80" onclick="windfarm()" style='cursor: pointer;'/></td>
  2629. </tr>
  2630. <tr>
  2631. <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>
  2632. </tr>
  2633. <tr>
  2634. <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>
  2635. </tr>
  2636. <tr>
  2637. <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>
  2638. </tr>
  2639. <tr>
  2640. <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>
  2641. </tr>
  2642. <tr>
  2643. <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>
  2644. </tr>
  2645. </table></td>
  2646. <td width="1863" height="30" valign="top"
  2647. ><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>
  2648. </tr>
  2649. <tr>
  2650. <td height="726" valign="top" background="<%=request.getContextPath()%>/resource/images/system/pictures/xs_pb_map_Second.jpg">
  2651. <div id="apDiv9">
  2652. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_50')">
  2653. <tr>
  2654. <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>
  2655. <td width="41" height="15"><span class="unit_Name">50号</span></td>
  2656. </tr>
  2657. <tr>
  2658. <td height="15"><span class="unit_Name" id="XG01_50gl" >4888.5kw</span></td>
  2659. </tr>
  2660. <tr>
  2661. <td height="15"><span class="unit_Name" id="XG01_50fs" >7.39m/s</span></td>
  2662. </tr>
  2663. </table>
  2664. </div>
  2665. <div id="apDiv">
  2666. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_48')">
  2667. <tr>
  2668. <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>
  2669. <td width="41" height="15"><span class="unit_Name">48号</span></td>
  2670. </tr>
  2671. <tr>
  2672. <td height="15"><span class="unit_Name" id="XG01_48gl" >4888.5kw</span></td>
  2673. </tr>
  2674. <tr>
  2675. <td height="15"><span class="unit_Name" id="XG01_48fs" >7.39m/s</span></td>
  2676. </tr>
  2677. </table>
  2678. </div>
  2679. <div id="apDiv2">
  2680. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_46')">
  2681. <tr>
  2682. <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>
  2683. <td width="41" height="15"><span class="unit_Name">46号</span></td>
  2684. </tr>
  2685. <tr>
  2686. <td height="15"><span class="unit_Name" id="XG01_46gl" >4888.5kw</span></td>
  2687. </tr>
  2688. <tr>
  2689. <td height="15"><span class="unit_Name" id="XG01_46fs" >7.39m/s</span></td>
  2690. </tr>
  2691. </table>
  2692. </div>
  2693. <div id="apDiv3">
  2694. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_45')">
  2695. <tr>
  2696. <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>
  2697. <td width="41" height="15"><span class="unit_Name">45号</span></td>
  2698. </tr>
  2699. <tr>
  2700. <td height="15"><span class="unit_Name" id="XG01_45gl" >4888.5kw</span></td>
  2701. </tr>
  2702. <tr>
  2703. <td height="15"><span class="unit_Name" id="XG01_45fs" >7.39m/s</span></td>
  2704. </tr>
  2705. </table>
  2706. </div>
  2707. <div id="apDiv4">
  2708. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_31')">
  2709. <tr>
  2710. <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>
  2711. <td width="41" height="15"><span class="unit_Name">31号</span></td>
  2712. </tr>
  2713. <tr>
  2714. <td height="15"><span class="unit_Name" id="XG01_31gl" >4888.5kw</span></td>
  2715. </tr>
  2716. <tr>
  2717. <td height="15"><span class="unit_Name" id="XG01_31fs" >7.39m/s</span></td>
  2718. </tr>
  2719. </table>
  2720. </div>
  2721. <div id="apDiv5">
  2722. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_32')">
  2723. <tr>
  2724. <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>
  2725. <td width="41" height="15"><span class="unit_Name">32号</span></td>
  2726. </tr>
  2727. <tr>
  2728. <td height="15"><span class="unit_Name" id="XG01_32gl" >4888.5kw</span></td>
  2729. </tr>
  2730. <tr>
  2731. <td height="15"><span class="unit_Name" id="XG01_32fs" >7.39m/s</span></td>
  2732. </tr>
  2733. </table>
  2734. </div>
  2735. <div id="apDiv6">
  2736. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_33')">
  2737. <tr>
  2738. <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>
  2739. <td width="41" height="15"><span class="unit_Name">33号</span></td>
  2740. </tr>
  2741. <tr>
  2742. <td height="15"><span class="unit_Name" id="XG01_33gl" >4888.5kw</span></td>
  2743. </tr>
  2744. <tr>
  2745. <td height="15"><span class="unit_Name" id="XG01_33fs" >7.39m/s</span></td>
  2746. </tr>
  2747. </table>
  2748. </div>
  2749. <div id="apDiv7">
  2750. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_47')">
  2751. <tr>
  2752. <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>
  2753. <td width="41" height="15"><span class="unit_Name">47号</span></td>
  2754. </tr>
  2755. <tr>
  2756. <td height="15"><span class="unit_Name" id="XG01_47gl" >4888.5kw</span></td>
  2757. </tr>
  2758. <tr>
  2759. <td height="15"><span class="unit_Name" id="XG01_47fs" >7.39m/s</span></td>
  2760. </tr>
  2761. </table>
  2762. </div>
  2763. <div id="apDiv8">
  2764. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_37')">
  2765. <tr>
  2766. <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>
  2767. <td width="41" height="15"><span class="unit_Name">37号</span></td>
  2768. </tr>
  2769. <tr>
  2770. <td height="15"><span class="unit_Name" id="XG01_37gl" >4888.5kw</span></td>
  2771. </tr>
  2772. <tr>
  2773. <td height="15"><span class="unit_Name" id="XG01_37fs" >7.39m/s</span></td>
  2774. </tr>
  2775. </table>
  2776. </div>
  2777. <div id="apDiv10">
  2778. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_44')">
  2779. <tr>
  2780. <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>
  2781. <td width="41" height="15"><span class="unit_Name">44号</span></td>
  2782. </tr>
  2783. <tr>
  2784. <td height="15"><span class="unit_Name" id="XG01_44gl" >4888.5kw</span></td>
  2785. </tr>
  2786. <tr>
  2787. <td height="15"><span class="unit_Name" id="XG01_44fs" >7.39m/s</span></td>
  2788. </tr>
  2789. </table>
  2790. </div>
  2791. <div id="apDiv11">
  2792. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_43')">
  2793. <tr>
  2794. <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>
  2795. <td width="41" height="15"><span class="unit_Name">43号</span></td>
  2796. </tr>
  2797. <tr>
  2798. <td height="15"><span class="unit_Name" id="XG01_43gl" >4888.5kw</span></td>
  2799. </tr>
  2800. <tr>
  2801. <td height="15"><span class="unit_Name" id="XG01_43fs" >7.39m/s</span></td>
  2802. </tr>
  2803. </table>
  2804. </div>
  2805. <div id="apDiv12">
  2806. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_26')">
  2807. <tr>
  2808. <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>
  2809. <td width="41" height="15"><span class="unit_Name">26号</span></td>
  2810. </tr>
  2811. <tr>
  2812. <td height="15"><span class="unit_Name" id="XG01_26gl" >4888.5kw</span></td>
  2813. </tr>
  2814. <tr>
  2815. <td height="15"><span class="unit_Name" id="XG01_26fs" >7.39m/s</span></td>
  2816. </tr>
  2817. </table>
  2818. </div>
  2819. <div id="apDiv13">
  2820. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_27')">
  2821. <tr>
  2822. <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>
  2823. <td width="41" height="15"><span class="unit_Name">27号</span></td>
  2824. </tr>
  2825. <tr>
  2826. <td height="15"><span class="unit_Name" id="XG01_27gl" >4888.5kw</span></td>
  2827. </tr>
  2828. <tr>
  2829. <td height="15"><span class="unit_Name" id="XG01_27fs" >7.39m/s</span></td>
  2830. </tr>
  2831. </table>
  2832. </div>
  2833. <div id="apDiv14">
  2834. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_28')">
  2835. <tr>
  2836. <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>
  2837. <td width="41" height="15"><span class="unit_Name">28号</span></td>
  2838. </tr>
  2839. <tr>
  2840. <td height="15"><span class="unit_Name" id="XG01_28gl" >4888.5kw</span></td>
  2841. </tr>
  2842. <tr>
  2843. <td height="15"><span class="unit_Name" id="XG01_28fs" >7.39m/s</span></td>
  2844. </tr>
  2845. </table>
  2846. </div>
  2847. <div id="apDiv15">
  2848. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_29')">
  2849. <tr>
  2850. <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>
  2851. <td width="41" height="15"><span class="unit_Name">29号</span></td>
  2852. </tr>
  2853. <tr>
  2854. <td height="15"><span class="unit_Name" id="XG01_29gl" >4888.5kw</span></td>
  2855. </tr>
  2856. <tr>
  2857. <td height="15"><span class="unit_Name" id="XG01_29fs" >7.39m/s</span></td>
  2858. </tr>
  2859. </table>
  2860. </div>
  2861. <div id="apDiv16">
  2862. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_30')">
  2863. <tr>
  2864. <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>
  2865. <td width="41" height="15"><span class="unit_Name">30号</span></td>
  2866. </tr>
  2867. <tr>
  2868. <td height="15"><span class="unit_Name" id="XG01_30gl" >4888.5kw</span></td>
  2869. </tr>
  2870. <tr>
  2871. <td height="15"><span class="unit_Name" id="XG01_30fs" >7.39m/s</span></td>
  2872. </tr>
  2873. </table>
  2874. </div>
  2875. <div id="apDiv17">
  2876. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_40')">
  2877. <tr>
  2878. <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>
  2879. <td width="41" height="15"><span class="unit_Name">40号</span></td>
  2880. </tr>
  2881. <tr>
  2882. <td height="15"><span class="unit_Name" id="XG01_40gl" >4888.5kw</span></td>
  2883. </tr>
  2884. <tr>
  2885. <td height="15"><span class="unit_Name" id="XG01_40fs" >7.39m/s</span></td>
  2886. </tr>
  2887. </table>
  2888. </div>
  2889. <div id="apDiv18">
  2890. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_41')">
  2891. <tr>
  2892. <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>
  2893. <td width="41" height="15"><span class="unit_Name">41号</span></td>
  2894. </tr>
  2895. <tr>
  2896. <td height="15"><span class="unit_Name" id="XG01_41gl" >4888.5kw</span></td>
  2897. </tr>
  2898. <tr>
  2899. <td height="15"><span class="unit_Name" id="XG01_41fs" >7.39m/s</span></td>
  2900. </tr>
  2901. </table>
  2902. </div>
  2903. <div id="apDiv19">
  2904. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_52')">
  2905. <tr>
  2906. <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>
  2907. <td width="41" height="15"><span class="unit_Name">52号</span></td>
  2908. </tr>
  2909. <tr>
  2910. <td height="15"><span class="unit_Name" id="XG01_52gl" >4888.5kw</span></td>
  2911. </tr>
  2912. <tr>
  2913. <td height="15"><span class="unit_Name" id="XG01_52fs" >7.39m/s</span></td>
  2914. </tr>
  2915. </table>
  2916. </div>
  2917. <div id="apDiv20">
  2918. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_35')">
  2919. <tr>
  2920. <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>
  2921. <td width="41" height="15"><span class="unit_Name">35号</span></td>
  2922. </tr>
  2923. <tr>
  2924. <td height="15"><span class="unit_Name" id="XG01_35gl" >4888.5kw</span></td>
  2925. </tr>
  2926. <tr>
  2927. <td height="15"><span class="unit_Name" id="XG01_35fs" >7.39m/s</span></td>
  2928. </tr>
  2929. </table>
  2930. </div>
  2931. <div id="apDiv21">
  2932. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_51')">
  2933. <tr>
  2934. <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>
  2935. <td width="41" height="15"><span class="unit_Name">51号</span></td>
  2936. </tr>
  2937. <tr>
  2938. <td height="15"><span class="unit_Name" id="XG01_51gl" >4888.5kw</span></td>
  2939. </tr>
  2940. <tr>
  2941. <td height="15"><span class="unit_Name" id="XG01_51fs" >7.39m/s</span></td>
  2942. </tr>
  2943. </table>
  2944. </div>
  2945. <div id="apDiv22">
  2946. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_38')">
  2947. <tr>
  2948. <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>
  2949. <td width="41" height="15"><span class="unit_Name">38号</span></td>
  2950. </tr>
  2951. <tr>
  2952. <td height="15"><span class="unit_Name" id="XG01_38gl" >4888.5kw</span></td>
  2953. </tr>
  2954. <tr>
  2955. <td height="15"><span class="unit_Name" id="XG01_38fs" >7.39m/s</span></td>
  2956. </tr>
  2957. </table>
  2958. </div>
  2959. <div id="apDiv23">
  2960. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_34')">
  2961. <tr>
  2962. <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>
  2963. <td width="41" height="15"><span class="unit_Name">34号</span></td>
  2964. </tr>
  2965. <tr>
  2966. <td height="15"><span class="unit_Name" id="XG01_34gl" >4888.5kw</span></td>
  2967. </tr>
  2968. <tr>
  2969. <td height="15"><span class="unit_Name" id="XG01_34fs" >7.39m/s</span></td>
  2970. </tr>
  2971. </table>
  2972. </div>
  2973. <div id="apDiv24">
  2974. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_36')">
  2975. <tr>
  2976. <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>
  2977. <td width="41" height="15"><span class="unit_Name">36号</span></td>
  2978. </tr>
  2979. <tr>
  2980. <td height="15"><span class="unit_Name" id="XG01_36gl" >4888.5kw</span></td>
  2981. </tr>
  2982. <tr>
  2983. <td height="15"><span class="unit_Name" id="XG01_36fs" >7.39m/s</span></td>
  2984. </tr>
  2985. </table>
  2986. </div>
  2987. <div id="apDiv25">
  2988. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_49')">
  2989. <tr>
  2990. <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>
  2991. <td width="41" height="15"><span class="unit_Name">49号</span></td>
  2992. </tr>
  2993. <tr>
  2994. <td height="15"><span class="unit_Name" id="XG01_49gl" >4888.5kw</span></td>
  2995. </tr>
  2996. <tr>
  2997. <td height="15"><span class="unit_Name" id="XG01_49fs" >7.39m/s</span></td>
  2998. </tr>
  2999. </table>
  3000. </div>
  3001. <div id="apDiv26">
  3002. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_42')">
  3003. <tr>
  3004. <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>
  3005. <td width="41" height="15"><span class="unit_Name">42号</span></td>
  3006. </tr>
  3007. <tr>
  3008. <td height="15"><span class="unit_Name" id="XG01_42gl" >4888.5kw</span></td>
  3009. </tr>
  3010. <tr>
  3011. <td height="15"><span class="unit_Name" id="XG01_42fs" >7.39m/s</span></td>
  3012. </tr>
  3013. </table>
  3014. </div>
  3015. <div id="apDiv27">
  3016. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_39')">
  3017. <tr>
  3018. <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>
  3019. <td width="41" height="15"><span class="unit_Name">39号</span></td>
  3020. </tr>
  3021. <tr>
  3022. <td height="15"><span class="unit_Name" id="XG01_39gl" >4888.5kw</span></td>
  3023. </tr>
  3024. <tr>
  3025. <td height="15"><span class="unit_Name" id="XG01_39fs" >7.39m/s</span></td>
  3026. </tr>
  3027. </table>
  3028. </div>
  3029. <div id="apDiv28">
  3030. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_56')">
  3031. <tr>
  3032. <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>
  3033. <td width="41" height="15"><span class="unit_Name">56号</span></td>
  3034. </tr>
  3035. <tr>
  3036. <td height="15"><span class="unit_Name" id="XG01_56gl" >4888.5kw</span></td>
  3037. </tr>
  3038. <tr>
  3039. <td height="15"><span class="unit_Name" id="XG01_56fs" >7.39m/s</span></td>
  3040. </tr>
  3041. </table>
  3042. </div>
  3043. <div id="apDiv29">
  3044. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_57')">
  3045. <tr>
  3046. <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>
  3047. <td width="41" height="15"><span class="unit_Name">57号</span></td>
  3048. </tr>
  3049. <tr>
  3050. <td height="15"><span class="unit_Name" id="XG01_57gl" >4888.5kw</span></td>
  3051. </tr>
  3052. <tr>
  3053. <td height="15"><span class="unit_Name" id="XG01_57fs" >7.39m/s</span></td>
  3054. </tr>
  3055. </table>
  3056. </div>
  3057. <div id="apDiv30">
  3058. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_55')">
  3059. <tr>
  3060. <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>
  3061. <td width="41" height="15"><span class="unit_Name">55号</span></td>
  3062. </tr>
  3063. <tr>
  3064. <td height="15"><span class="unit_Name" id="XG01_55gl" >4888.5kw</span></td>
  3065. </tr>
  3066. <tr>
  3067. <td height="15"><span class="unit_Name" id="XG01_55fs" >7.39m/s</span></td>
  3068. </tr>
  3069. </table>
  3070. </div>
  3071. <div id="apDiv31">
  3072. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_58')">
  3073. <tr>
  3074. <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>
  3075. <td width="41" height="15"><span class="unit_Name">58号</span></td>
  3076. </tr>
  3077. <tr>
  3078. <td height="15"><span class="unit_Name" id="XG01_58gl" >4888.5kw</span></td>
  3079. </tr>
  3080. <tr>
  3081. <td height="15"><span class="unit_Name" id="XG01_58fs" >7.39m/s</span></td>
  3082. </tr>
  3083. </table>
  3084. </div>
  3085. <div id="apDiv32">
  3086. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_53')">
  3087. <tr>
  3088. <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>
  3089. <td width="41" height="15"><span class="unit_Name">53号</span></td>
  3090. </tr>
  3091. <tr>
  3092. <td height="15"><span class="unit_Name" id="XG01_53gl" >4888.5kw</span></td>
  3093. </tr>
  3094. <tr>
  3095. <td height="15"><span class="unit_Name" id="XG01_53fs" >7.39m/s</span></td>
  3096. </tr>
  3097. </table>
  3098. </div>
  3099. <div id="apDiv33">
  3100. <table width="80" border="0" cellspacing="0" cellpadding="0" style='cursor: pointer;' onclick="gowt('XG01_54')">
  3101. <tr>
  3102. <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>
  3103. <td width="41" height="15"><span class="unit_Name">54号</span></td>
  3104. </tr>
  3105. <tr>
  3106. <td height="15"><span class="unit_Name" id="XG01_54gl" >4888.5kw</span></td>
  3107. </tr>
  3108. <tr>
  3109. <td height="15"><span class="unit_Name" id="XG01_54fs" >7.39m/s</span></td>
  3110. </tr>
  3111. </table>
  3112. </div></td>
  3113. </tr>
  3114. </table>
  3115. </form>
  3116. </body>
  3117. </html>