powerfirst.jsp 60 KB

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