styles.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1000px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u1 {
  16. position:absolute;
  17. left:0px;
  18. top:0px;
  19. width:1000px;
  20. height:80px;
  21. }
  22. #u1_img {
  23. position:absolute;
  24. left:0px;
  25. top:0px;
  26. width:1000px;
  27. height:80px;
  28. }
  29. #u2 {
  30. position:absolute;
  31. left:2px;
  32. top:32px;
  33. width:996px;
  34. visibility:hidden;
  35. word-wrap:break-word;
  36. }
  37. #u3 {
  38. position:absolute;
  39. left:710px;
  40. top:32px;
  41. width:66px;
  42. height:16px;
  43. }
  44. #u3_img {
  45. position:absolute;
  46. left:0px;
  47. top:0px;
  48. width:66px;
  49. height:16px;
  50. }
  51. #u4 {
  52. position:absolute;
  53. left:0px;
  54. top:0px;
  55. width:66px;
  56. white-space:nowrap;
  57. }
  58. #u5 {
  59. position:absolute;
  60. left:877px;
  61. top:32px;
  62. width:53px;
  63. height:16px;
  64. }
  65. #u5_img {
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:53px;
  70. height:16px;
  71. }
  72. #u6 {
  73. position:absolute;
  74. left:0px;
  75. top:0px;
  76. width:53px;
  77. white-space:nowrap;
  78. }
  79. #u7 {
  80. position:absolute;
  81. left:784px;
  82. top:32px;
  83. width:53px;
  84. height:16px;
  85. }
  86. #u7_img {
  87. position:absolute;
  88. left:0px;
  89. top:0px;
  90. width:53px;
  91. height:16px;
  92. }
  93. #u8 {
  94. position:absolute;
  95. left:0px;
  96. top:0px;
  97. width:53px;
  98. white-space:nowrap;
  99. }
  100. #u9 {
  101. position:absolute;
  102. left:20px;
  103. top:15px;
  104. width:140px;
  105. height:50px;
  106. }
  107. #u9_img {
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:140px;
  112. height:50px;
  113. }
  114. #u10 {
  115. position:absolute;
  116. left:2px;
  117. top:17px;
  118. width:136px;
  119. visibility:hidden;
  120. word-wrap:break-word;
  121. }
  122. #u11 {
  123. position:absolute;
  124. left:237px;
  125. top:22px;
  126. width:169px;
  127. height:34px;
  128. font-family:'新細明體-ExtB Regular', '新細明體-ExtB';
  129. font-weight:400;
  130. font-style:normal;
  131. font-size:28px;
  132. }
  133. #u11_img {
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:169px;
  138. height:34px;
  139. }
  140. #u12 {
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:169px;
  145. white-space:nowrap;
  146. }
  147. #u13 {
  148. position:absolute;
  149. left:594px;
  150. top:32px;
  151. width:40px;
  152. height:16px;
  153. }
  154. #u13_img {
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:40px;
  159. height:16px;
  160. }
  161. #u14 {
  162. position:absolute;
  163. left:0px;
  164. top:0px;
  165. width:40px;
  166. white-space:nowrap;
  167. }
  168. #u15 {
  169. position:absolute;
  170. left:636px;
  171. top:32px;
  172. width:40px;
  173. height:16px;
  174. }
  175. #u15_img {
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:40px;
  180. height:16px;
  181. }
  182. #u16 {
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:40px;
  187. white-space:nowrap;
  188. }
  189. #u17 {
  190. position:absolute;
  191. left:219px;
  192. top:79px;
  193. width:781px;
  194. height:50px;
  195. }
  196. #u17_img {
  197. position:absolute;
  198. left:0px;
  199. top:0px;
  200. width:781px;
  201. height:50px;
  202. }
  203. #u18 {
  204. position:absolute;
  205. left:2px;
  206. top:17px;
  207. width:777px;
  208. visibility:hidden;
  209. word-wrap:break-word;
  210. }
  211. #u19 {
  212. position:absolute;
  213. left:890px;
  214. top:92px;
  215. width:100px;
  216. height:25px;
  217. }
  218. #u19_input {
  219. position:absolute;
  220. left:0px;
  221. top:0px;
  222. width:100px;
  223. height:25px;
  224. font-family:'Arial Normal', 'Arial';
  225. font-weight:400;
  226. font-style:normal;
  227. font-size:13px;
  228. text-decoration:none;
  229. color:#000000;
  230. text-align:center;
  231. }
  232. #u20 {
  233. position:absolute;
  234. left:240px;
  235. top:94px;
  236. width:20px;
  237. height:20px;
  238. }
  239. #u20_img {
  240. position:absolute;
  241. left:0px;
  242. top:0px;
  243. width:20px;
  244. height:20px;
  245. }
  246. #u21 {
  247. position:absolute;
  248. left:2px;
  249. top:2px;
  250. width:16px;
  251. visibility:hidden;
  252. word-wrap:break-word;
  253. }
  254. #u22 {
  255. position:absolute;
  256. left:270px;
  257. top:98px;
  258. width:53px;
  259. height:16px;
  260. }
  261. #u22_img {
  262. position:absolute;
  263. left:0px;
  264. top:0px;
  265. width:53px;
  266. height:16px;
  267. }
  268. #u23 {
  269. position:absolute;
  270. left:0px;
  271. top:0px;
  272. width:53px;
  273. white-space:nowrap;
  274. }
  275. #u24 {
  276. position:absolute;
  277. left:219px;
  278. top:129px;
  279. width:781px;
  280. height:72px;
  281. }
  282. #u24_img {
  283. position:absolute;
  284. left:0px;
  285. top:0px;
  286. width:781px;
  287. height:72px;
  288. }
  289. #u25 {
  290. position:absolute;
  291. left:2px;
  292. top:28px;
  293. width:777px;
  294. visibility:hidden;
  295. word-wrap:break-word;
  296. }
  297. #u26 {
  298. position:absolute;
  299. left:280px;
  300. top:139px;
  301. width:110px;
  302. height:22px;
  303. }
  304. #u26_input {
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:110px;
  309. height:22px;
  310. font-family:'微软雅黑 Regular', '微软雅黑';
  311. font-weight:400;
  312. font-style:normal;
  313. font-size:13px;
  314. text-decoration:none;
  315. color:#000000;
  316. }
  317. #u26_input:disabled {
  318. color:grayText;
  319. }
  320. #u27 {
  321. position:absolute;
  322. left:230px;
  323. top:143px;
  324. width:40px;
  325. height:16px;
  326. }
  327. #u27_img {
  328. position:absolute;
  329. left:0px;
  330. top:0px;
  331. width:40px;
  332. height:16px;
  333. }
  334. #u28 {
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:40px;
  339. white-space:nowrap;
  340. }
  341. #u29 {
  342. position:absolute;
  343. left:425px;
  344. top:143px;
  345. width:40px;
  346. height:16px;
  347. }
  348. #u29_img {
  349. position:absolute;
  350. left:0px;
  351. top:0px;
  352. width:40px;
  353. height:16px;
  354. }
  355. #u30 {
  356. position:absolute;
  357. left:0px;
  358. top:0px;
  359. width:40px;
  360. white-space:nowrap;
  361. }
  362. #u31 {
  363. position:absolute;
  364. left:491px;
  365. top:140px;
  366. width:115px;
  367. height:22px;
  368. }
  369. #u31_input {
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:115px;
  374. height:22px;
  375. font-family:'微软雅黑 Regular', '微软雅黑';
  376. font-weight:400;
  377. font-style:normal;
  378. font-size:13px;
  379. text-decoration:none;
  380. color:#000000;
  381. }
  382. #u31_input:disabled {
  383. color:grayText;
  384. }
  385. #u32 {
  386. position:absolute;
  387. left:650px;
  388. top:143px;
  389. width:66px;
  390. height:16px;
  391. }
  392. #u32_img {
  393. position:absolute;
  394. left:0px;
  395. top:0px;
  396. width:66px;
  397. height:16px;
  398. }
  399. #u33 {
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:66px;
  404. white-space:nowrap;
  405. }
  406. #u34 {
  407. position:absolute;
  408. left:716px;
  409. top:140px;
  410. width:103px;
  411. height:22px;
  412. }
  413. #u34_input {
  414. position:absolute;
  415. left:0px;
  416. top:0px;
  417. width:103px;
  418. height:22px;
  419. font-family:'微软雅黑 Regular', '微软雅黑';
  420. font-weight:400;
  421. font-style:normal;
  422. font-size:13px;
  423. text-decoration:none;
  424. color:#000000;
  425. }
  426. #u34_input:disabled {
  427. color:grayText;
  428. }
  429. #u35 {
  430. position:absolute;
  431. left:878px;
  432. top:139px;
  433. width:100px;
  434. height:25px;
  435. }
  436. #u35_input {
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:100px;
  441. height:25px;
  442. font-family:'Arial Normal', 'Arial';
  443. font-weight:400;
  444. font-style:normal;
  445. font-size:13px;
  446. text-decoration:none;
  447. color:#000000;
  448. text-align:center;
  449. }
  450. #u36 {
  451. position:absolute;
  452. left:425px;
  453. top:177px;
  454. width:66px;
  455. height:16px;
  456. }
  457. #u36_img {
  458. position:absolute;
  459. left:0px;
  460. top:0px;
  461. width:66px;
  462. height:16px;
  463. }
  464. #u37 {
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:66px;
  469. white-space:nowrap;
  470. }
  471. #u38 {
  472. position:absolute;
  473. left:504px;
  474. top:173px;
  475. width:122px;
  476. height:25px;
  477. }
  478. #u38_input {
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:122px;
  483. height:25px;
  484. font-family:'Arial Normal', 'Arial';
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:13px;
  488. text-decoration:none;
  489. color:#000000;
  490. text-align:left;
  491. }
  492. #u39 {
  493. position:absolute;
  494. left:636px;
  495. top:175px;
  496. width:27px;
  497. height:17px;
  498. }
  499. #u39_img {
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:27px;
  504. height:17px;
  505. }
  506. #u40 {
  507. position:absolute;
  508. left:0px;
  509. top:0px;
  510. width:27px;
  511. white-space:nowrap;
  512. }
  513. #u41 {
  514. position:absolute;
  515. left:683px;
  516. top:172px;
  517. width:129px;
  518. height:25px;
  519. }
  520. #u41_input {
  521. position:absolute;
  522. left:0px;
  523. top:0px;
  524. width:129px;
  525. height:25px;
  526. font-family:'Arial Normal', 'Arial';
  527. font-weight:400;
  528. font-style:normal;
  529. font-size:13px;
  530. text-decoration:none;
  531. color:#000000;
  532. text-align:left;
  533. }
  534. #u42 {
  535. position:absolute;
  536. left:220px;
  537. top:200px;
  538. }
  539. #u42_state0 {
  540. position:relative;
  541. left:0px;
  542. top:0px;
  543. background-image:none;
  544. }
  545. #u42_state0_content {
  546. position:absolute;
  547. left:0px;
  548. top:0px;
  549. width:1px;
  550. height:1px;
  551. }
  552. #u43 {
  553. position:absolute;
  554. left:0px;
  555. top:71px;
  556. width:780px;
  557. height:300px;
  558. }
  559. .u44 {
  560. position:absolute;
  561. left:60px;
  562. top:0px;
  563. width:75px;
  564. height:30px;
  565. font-family:'微软雅黑 Regular', '微软雅黑';
  566. font-weight:400;
  567. font-style:normal;
  568. }
  569. .u44_img {
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:75px;
  574. height:30px;
  575. }
  576. .u45 {
  577. position:absolute;
  578. left:2px;
  579. top:7px;
  580. width:71px;
  581. visibility:hidden;
  582. word-wrap:break-word;
  583. }
  584. .u46 {
  585. position:absolute;
  586. left:134px;
  587. top:0px;
  588. width:100px;
  589. height:30px;
  590. font-family:'微软雅黑 Regular', '微软雅黑';
  591. font-weight:400;
  592. font-style:normal;
  593. }
  594. .u46_img {
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:100px;
  599. height:30px;
  600. }
  601. .u47 {
  602. position:absolute;
  603. left:2px;
  604. top:7px;
  605. width:96px;
  606. visibility:hidden;
  607. word-wrap:break-word;
  608. }
  609. .u48 {
  610. position:absolute;
  611. left:233px;
  612. top:0px;
  613. width:57px;
  614. height:30px;
  615. font-family:'微软雅黑 Regular', '微软雅黑';
  616. font-weight:400;
  617. font-style:normal;
  618. }
  619. .u48_img {
  620. position:absolute;
  621. left:0px;
  622. top:0px;
  623. width:57px;
  624. height:30px;
  625. }
  626. .u49 {
  627. position:absolute;
  628. left:2px;
  629. top:7px;
  630. width:53px;
  631. visibility:hidden;
  632. word-wrap:break-word;
  633. }
  634. .u50 {
  635. position:absolute;
  636. left:289px;
  637. top:0px;
  638. width:52px;
  639. height:30px;
  640. font-family:'微软雅黑 Regular', '微软雅黑';
  641. font-weight:400;
  642. font-style:normal;
  643. }
  644. .u50_img {
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:52px;
  649. height:30px;
  650. }
  651. .u51 {
  652. position:absolute;
  653. left:2px;
  654. top:7px;
  655. width:48px;
  656. visibility:hidden;
  657. word-wrap:break-word;
  658. }
  659. .u52 {
  660. position:absolute;
  661. left:449px;
  662. top:0px;
  663. width:133px;
  664. height:30px;
  665. font-family:'微软雅黑 Regular', '微软雅黑';
  666. font-weight:400;
  667. font-style:normal;
  668. }
  669. .u52_img {
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:133px;
  674. height:30px;
  675. }
  676. .u53 {
  677. position:absolute;
  678. left:2px;
  679. top:7px;
  680. width:129px;
  681. visibility:hidden;
  682. word-wrap:break-word;
  683. }
  684. .u54 {
  685. position:absolute;
  686. left:581px;
  687. top:0px;
  688. width:100px;
  689. height:30px;
  690. font-family:'微软雅黑 Regular', '微软雅黑';
  691. font-weight:400;
  692. font-style:normal;
  693. }
  694. .u54_img {
  695. position:absolute;
  696. left:0px;
  697. top:0px;
  698. width:100px;
  699. height:30px;
  700. }
  701. .u55 {
  702. position:absolute;
  703. left:2px;
  704. top:7px;
  705. width:96px;
  706. visibility:hidden;
  707. word-wrap:break-word;
  708. }
  709. .u56 {
  710. position:absolute;
  711. left:9px;
  712. top:7px;
  713. width:20px;
  714. height:16px;
  715. }
  716. .u57 {
  717. position:absolute;
  718. left:16px;
  719. top:0px;
  720. width:2px;
  721. visibility:hidden;
  722. word-wrap:break-word;
  723. }
  724. .u56_input {
  725. position:absolute;
  726. left:-3px;
  727. top:-2px;
  728. }
  729. .u58 {
  730. position:absolute;
  731. left:680px;
  732. top:0px;
  733. width:100px;
  734. height:30px;
  735. font-family:'微软雅黑 Regular', '微软雅黑';
  736. font-weight:400;
  737. font-style:normal;
  738. }
  739. .u58_img {
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:100px;
  744. height:30px;
  745. }
  746. .u59 {
  747. position:absolute;
  748. left:2px;
  749. top:7px;
  750. width:96px;
  751. visibility:hidden;
  752. word-wrap:break-word;
  753. }
  754. .u60 {
  755. position:absolute;
  756. left:340px;
  757. top:0px;
  758. width:110px;
  759. height:30px;
  760. font-family:'微软雅黑 Regular', '微软雅黑';
  761. font-weight:400;
  762. font-style:normal;
  763. }
  764. .u60_img {
  765. position:absolute;
  766. left:0px;
  767. top:0px;
  768. width:110px;
  769. height:30px;
  770. }
  771. .u61 {
  772. position:absolute;
  773. left:2px;
  774. top:7px;
  775. width:106px;
  776. visibility:hidden;
  777. word-wrap:break-word;
  778. }
  779. .u62 {
  780. position:absolute;
  781. left:30px;
  782. top:0px;
  783. width:30px;
  784. height:30px;
  785. font-family:'微软雅黑 Regular', '微软雅黑';
  786. font-weight:400;
  787. font-style:normal;
  788. }
  789. .u62_img {
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:30px;
  794. height:30px;
  795. }
  796. .u63 {
  797. position:absolute;
  798. left:2px;
  799. top:7px;
  800. width:26px;
  801. visibility:hidden;
  802. word-wrap:break-word;
  803. }
  804. #u64 {
  805. position:absolute;
  806. left:0px;
  807. top:0px;
  808. width:781px;
  809. height:40px;
  810. }
  811. #u64_img {
  812. position:absolute;
  813. left:0px;
  814. top:0px;
  815. width:781px;
  816. height:40px;
  817. }
  818. #u65 {
  819. position:absolute;
  820. left:2px;
  821. top:12px;
  822. width:777px;
  823. visibility:hidden;
  824. word-wrap:break-word;
  825. }
  826. #u66 {
  827. position:absolute;
  828. left:10px;
  829. top:9px;
  830. width:121px;
  831. height:20px;
  832. font-family:'微软雅黑 Regular', '微软雅黑';
  833. font-weight:400;
  834. font-style:normal;
  835. font-size:14px;
  836. }
  837. #u66_img {
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:121px;
  842. height:20px;
  843. }
  844. #u67 {
  845. position:absolute;
  846. left:0px;
  847. top:0px;
  848. width:121px;
  849. word-wrap:break-word;
  850. }
  851. #u68 {
  852. position:absolute;
  853. left:209px;
  854. top:6px;
  855. width:49px;
  856. height:30px;
  857. }
  858. #u68_img {
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:49px;
  863. height:30px;
  864. }
  865. #u69 {
  866. position:absolute;
  867. left:2px;
  868. top:7px;
  869. width:45px;
  870. word-wrap:break-word;
  871. }
  872. #u70 {
  873. position:absolute;
  874. left:327px;
  875. top:6px;
  876. width:84px;
  877. height:30px;
  878. font-family:'微软雅黑 Regular', '微软雅黑';
  879. font-weight:400;
  880. font-style:normal;
  881. }
  882. #u70_img {
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:84px;
  887. height:30px;
  888. }
  889. #u71 {
  890. position:absolute;
  891. left:2px;
  892. top:6px;
  893. width:80px;
  894. word-wrap:break-word;
  895. }
  896. #u72 {
  897. position:absolute;
  898. left:268px;
  899. top:6px;
  900. width:49px;
  901. height:30px;
  902. }
  903. #u72_img {
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:49px;
  908. height:30px;
  909. }
  910. #u73 {
  911. position:absolute;
  912. left:2px;
  913. top:7px;
  914. width:45px;
  915. word-wrap:break-word;
  916. }
  917. #u74 {
  918. position:absolute;
  919. left:710px;
  920. top:6px;
  921. width:60px;
  922. height:30px;
  923. font-family:'Arial Negreta', 'Arial';
  924. font-weight:700;
  925. font-style:normal;
  926. color:#666666;
  927. }
  928. #u74_img {
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:60px;
  933. height:30px;
  934. }
  935. #u75 {
  936. position:absolute;
  937. left:2px;
  938. top:7px;
  939. width:56px;
  940. word-wrap:break-word;
  941. }
  942. #u76 {
  943. position:absolute;
  944. left:570px;
  945. top:6px;
  946. width:30px;
  947. height:30px;
  948. font-size:20px;
  949. color:#FFFFFF;
  950. }
  951. #u76_img {
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:30px;
  956. height:30px;
  957. }
  958. #u77 {
  959. position:absolute;
  960. left:2px;
  961. top:3px;
  962. width:26px;
  963. word-wrap:break-word;
  964. }
  965. #u78 {
  966. position:absolute;
  967. left:610px;
  968. top:6px;
  969. width:90px;
  970. height:30px;
  971. color:#1E1E1E;
  972. text-align:right;
  973. }
  974. #u78_img {
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:90px;
  979. height:30px;
  980. }
  981. #u79 {
  982. position:absolute;
  983. left:2px;
  984. top:7px;
  985. width:86px;
  986. visibility:hidden;
  987. word-wrap:break-word;
  988. }
  989. #u80 {
  990. position:absolute;
  991. left:616px;
  992. top:10px;
  993. width:30px;
  994. height:20px;
  995. }
  996. #u80_input {
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:30px;
  1001. height:20px;
  1002. font-family:'Arial Normal', 'Arial';
  1003. font-weight:400;
  1004. font-style:normal;
  1005. font-size:13px;
  1006. text-decoration:none;
  1007. color:#000000;
  1008. text-align:left;
  1009. }
  1010. #u81 {
  1011. position:absolute;
  1012. left:0px;
  1013. top:39px;
  1014. width:780px;
  1015. height:32px;
  1016. }
  1017. #u81_img {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:780px;
  1022. height:32px;
  1023. }
  1024. #u82 {
  1025. position:absolute;
  1026. left:2px;
  1027. top:8px;
  1028. width:776px;
  1029. visibility:hidden;
  1030. word-wrap:break-word;
  1031. }
  1032. #u83 {
  1033. position:absolute;
  1034. left:121px;
  1035. top:7px;
  1036. width:29px;
  1037. height:27px;
  1038. }
  1039. #u83_img {
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:29px;
  1044. height:27px;
  1045. }
  1046. #u84 {
  1047. position:absolute;
  1048. left:0px;
  1049. top:0px;
  1050. width:29px;
  1051. word-wrap:break-word;
  1052. }
  1053. #u85 {
  1054. position:absolute;
  1055. left:61px;
  1056. top:46px;
  1057. width:66px;
  1058. height:19px;
  1059. font-family:'微软雅黑 Bold', '微软雅黑';
  1060. font-weight:700;
  1061. font-style:normal;
  1062. color:#FFFFFF;
  1063. }
  1064. #u85_img {
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:66px;
  1069. height:19px;
  1070. }
  1071. #u86 {
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:66px;
  1076. white-space:nowrap;
  1077. }
  1078. #u87 {
  1079. position:absolute;
  1080. left:254px;
  1081. top:46px;
  1082. width:40px;
  1083. height:19px;
  1084. font-family:'微软雅黑 Bold', '微软雅黑';
  1085. font-weight:700;
  1086. font-style:normal;
  1087. color:#FFFFFF;
  1088. }
  1089. #u87_img {
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:40px;
  1094. height:19px;
  1095. }
  1096. #u88 {
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:40px;
  1101. white-space:nowrap;
  1102. }
  1103. #u89 {
  1104. position:absolute;
  1105. left:308px;
  1106. top:46px;
  1107. width:40px;
  1108. height:16px;
  1109. font-family:'微软雅黑 Bold', '微软雅黑';
  1110. font-weight:700;
  1111. font-style:normal;
  1112. color:#FFFFFF;
  1113. }
  1114. #u89_img {
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:40px;
  1119. height:16px;
  1120. }
  1121. #u90 {
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:40px;
  1126. white-space:nowrap;
  1127. }
  1128. #u91 {
  1129. position:absolute;
  1130. left:380px;
  1131. top:46px;
  1132. width:41px;
  1133. height:16px;
  1134. font-family:'微软雅黑 Bold', '微软雅黑';
  1135. font-weight:700;
  1136. font-style:normal;
  1137. color:#FFFFFF;
  1138. }
  1139. #u91_img {
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:41px;
  1144. height:16px;
  1145. }
  1146. #u92 {
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:41px;
  1151. word-wrap:break-word;
  1152. }
  1153. #u93 {
  1154. position:absolute;
  1155. left:497px;
  1156. top:46px;
  1157. width:42px;
  1158. height:16px;
  1159. font-family:'微软雅黑 Bold', '微软雅黑';
  1160. font-weight:700;
  1161. font-style:normal;
  1162. color:#FFFFFF;
  1163. }
  1164. #u93_img {
  1165. position:absolute;
  1166. left:0px;
  1167. top:0px;
  1168. width:42px;
  1169. height:16px;
  1170. }
  1171. #u94 {
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:42px;
  1176. word-wrap:break-word;
  1177. }
  1178. #u95 {
  1179. position:absolute;
  1180. left:619px;
  1181. top:46px;
  1182. width:40px;
  1183. height:16px;
  1184. font-family:'微软雅黑 Bold', '微软雅黑';
  1185. font-weight:700;
  1186. font-style:normal;
  1187. color:#FFFFFF;
  1188. }
  1189. #u95_img {
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:40px;
  1194. height:16px;
  1195. }
  1196. #u96 {
  1197. position:absolute;
  1198. left:0px;
  1199. top:0px;
  1200. width:40px;
  1201. white-space:nowrap;
  1202. }
  1203. #u97 {
  1204. position:absolute;
  1205. left:706px;
  1206. top:45px;
  1207. width:66px;
  1208. height:1px;
  1209. font-family:'微软雅黑 Bold', '微软雅黑';
  1210. font-weight:700;
  1211. font-style:normal;
  1212. color:#FFFFFF;
  1213. }
  1214. #u97_img {
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:66px;
  1219. height:1px;
  1220. }
  1221. #u98 {
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:66px;
  1226. white-space:nowrap;
  1227. }
  1228. #u99 {
  1229. position:absolute;
  1230. left:704px;
  1231. top:45px;
  1232. width:66px;
  1233. height:1px;
  1234. font-family:'微软雅黑 Bold', '微软雅黑';
  1235. font-weight:700;
  1236. font-style:normal;
  1237. color:#FFFFFF;
  1238. }
  1239. #u99_img {
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:66px;
  1244. height:1px;
  1245. }
  1246. #u100 {
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:66px;
  1251. white-space:nowrap;
  1252. }
  1253. #u101 {
  1254. position:absolute;
  1255. left:421px;
  1256. top:6px;
  1257. width:63px;
  1258. height:30px;
  1259. font-family:'微软雅黑 Regular', '微软雅黑';
  1260. font-weight:400;
  1261. font-style:normal;
  1262. }
  1263. #u101_img {
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:63px;
  1268. height:30px;
  1269. }
  1270. #u102 {
  1271. position:absolute;
  1272. left:2px;
  1273. top:6px;
  1274. width:59px;
  1275. word-wrap:break-word;
  1276. }
  1277. #u103 {
  1278. position:absolute;
  1279. left:170px;
  1280. top:46px;
  1281. width:27px;
  1282. height:19px;
  1283. font-family:'微软雅黑 Bold', '微软雅黑';
  1284. font-weight:700;
  1285. font-style:normal;
  1286. color:#FFFFFF;
  1287. }
  1288. #u103_img {
  1289. position:absolute;
  1290. left:0px;
  1291. top:0px;
  1292. width:27px;
  1293. height:19px;
  1294. }
  1295. #u104 {
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:27px;
  1300. white-space:nowrap;
  1301. }
  1302. #u105 {
  1303. position:absolute;
  1304. left:150px;
  1305. top:13px;
  1306. width:40px;
  1307. height:16px;
  1308. }
  1309. #u105_img {
  1310. position:absolute;
  1311. left:0px;
  1312. top:0px;
  1313. width:40px;
  1314. height:16px;
  1315. }
  1316. #u106 {
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:40px;
  1321. white-space:nowrap;
  1322. }
  1323. #u107 {
  1324. position:absolute;
  1325. left:497px;
  1326. top:6px;
  1327. width:63px;
  1328. height:30px;
  1329. font-family:'微软雅黑 Regular', '微软雅黑';
  1330. font-weight:400;
  1331. font-style:normal;
  1332. }
  1333. #u107_img {
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:63px;
  1338. height:30px;
  1339. }
  1340. #u108 {
  1341. position:absolute;
  1342. left:2px;
  1343. top:6px;
  1344. width:59px;
  1345. word-wrap:break-word;
  1346. }
  1347. #u42_state1 {
  1348. position:relative;
  1349. left:0px;
  1350. top:0px;
  1351. visibility:hidden;
  1352. background-image:none;
  1353. }
  1354. #u42_state1_content {
  1355. position:absolute;
  1356. left:0px;
  1357. top:0px;
  1358. width:1px;
  1359. height:1px;
  1360. }
  1361. #u109 {
  1362. position:absolute;
  1363. left:0px;
  1364. top:71px;
  1365. width:780px;
  1366. height:270px;
  1367. }
  1368. .u110 {
  1369. position:absolute;
  1370. left:60px;
  1371. top:0px;
  1372. width:75px;
  1373. height:30px;
  1374. font-family:'微软雅黑 Regular', '微软雅黑';
  1375. font-weight:400;
  1376. font-style:normal;
  1377. }
  1378. .u110_img {
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:75px;
  1383. height:30px;
  1384. }
  1385. .u111 {
  1386. position:absolute;
  1387. left:2px;
  1388. top:7px;
  1389. width:71px;
  1390. visibility:hidden;
  1391. word-wrap:break-word;
  1392. }
  1393. .u112 {
  1394. position:absolute;
  1395. left:134px;
  1396. top:0px;
  1397. width:100px;
  1398. height:30px;
  1399. font-family:'微软雅黑 Regular', '微软雅黑';
  1400. font-weight:400;
  1401. font-style:normal;
  1402. }
  1403. .u112_img {
  1404. position:absolute;
  1405. left:0px;
  1406. top:0px;
  1407. width:100px;
  1408. height:30px;
  1409. }
  1410. .u113 {
  1411. position:absolute;
  1412. left:2px;
  1413. top:7px;
  1414. width:96px;
  1415. visibility:hidden;
  1416. word-wrap:break-word;
  1417. }
  1418. .u114 {
  1419. position:absolute;
  1420. left:233px;
  1421. top:0px;
  1422. width:57px;
  1423. height:30px;
  1424. font-family:'微软雅黑 Regular', '微软雅黑';
  1425. font-weight:400;
  1426. font-style:normal;
  1427. }
  1428. .u114_img {
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:57px;
  1433. height:30px;
  1434. }
  1435. .u115 {
  1436. position:absolute;
  1437. left:2px;
  1438. top:7px;
  1439. width:53px;
  1440. visibility:hidden;
  1441. word-wrap:break-word;
  1442. }
  1443. .u116 {
  1444. position:absolute;
  1445. left:289px;
  1446. top:0px;
  1447. width:52px;
  1448. height:30px;
  1449. font-family:'微软雅黑 Regular', '微软雅黑';
  1450. font-weight:400;
  1451. font-style:normal;
  1452. }
  1453. .u116_img {
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:52px;
  1458. height:30px;
  1459. }
  1460. .u117 {
  1461. position:absolute;
  1462. left:2px;
  1463. top:7px;
  1464. width:48px;
  1465. visibility:hidden;
  1466. word-wrap:break-word;
  1467. }
  1468. .u118 {
  1469. position:absolute;
  1470. left:449px;
  1471. top:0px;
  1472. width:133px;
  1473. height:30px;
  1474. font-family:'微软雅黑 Regular', '微软雅黑';
  1475. font-weight:400;
  1476. font-style:normal;
  1477. }
  1478. .u118_img {
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:133px;
  1483. height:30px;
  1484. }
  1485. .u119 {
  1486. position:absolute;
  1487. left:2px;
  1488. top:7px;
  1489. width:129px;
  1490. visibility:hidden;
  1491. word-wrap:break-word;
  1492. }
  1493. .u120 {
  1494. position:absolute;
  1495. left:581px;
  1496. top:0px;
  1497. width:100px;
  1498. height:30px;
  1499. font-family:'微软雅黑 Regular', '微软雅黑';
  1500. font-weight:400;
  1501. font-style:normal;
  1502. }
  1503. .u120_img {
  1504. position:absolute;
  1505. left:0px;
  1506. top:0px;
  1507. width:100px;
  1508. height:30px;
  1509. }
  1510. .u121 {
  1511. position:absolute;
  1512. left:2px;
  1513. top:7px;
  1514. width:96px;
  1515. visibility:hidden;
  1516. word-wrap:break-word;
  1517. }
  1518. .u122 {
  1519. position:absolute;
  1520. left:9px;
  1521. top:7px;
  1522. width:20px;
  1523. height:16px;
  1524. }
  1525. .u123 {
  1526. position:absolute;
  1527. left:16px;
  1528. top:0px;
  1529. width:2px;
  1530. visibility:hidden;
  1531. word-wrap:break-word;
  1532. }
  1533. .u122_input {
  1534. position:absolute;
  1535. left:-3px;
  1536. top:-2px;
  1537. }
  1538. .u124 {
  1539. position:absolute;
  1540. left:680px;
  1541. top:0px;
  1542. width:100px;
  1543. height:30px;
  1544. font-family:'微软雅黑 Regular', '微软雅黑';
  1545. font-weight:400;
  1546. font-style:normal;
  1547. }
  1548. .u124_img {
  1549. position:absolute;
  1550. left:0px;
  1551. top:0px;
  1552. width:100px;
  1553. height:30px;
  1554. }
  1555. .u125 {
  1556. position:absolute;
  1557. left:2px;
  1558. top:7px;
  1559. width:96px;
  1560. visibility:hidden;
  1561. word-wrap:break-word;
  1562. }
  1563. .u126 {
  1564. position:absolute;
  1565. left:340px;
  1566. top:0px;
  1567. width:110px;
  1568. height:30px;
  1569. font-family:'微软雅黑 Regular', '微软雅黑';
  1570. font-weight:400;
  1571. font-style:normal;
  1572. }
  1573. .u126_img {
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:110px;
  1578. height:30px;
  1579. }
  1580. .u127 {
  1581. position:absolute;
  1582. left:2px;
  1583. top:7px;
  1584. width:106px;
  1585. visibility:hidden;
  1586. word-wrap:break-word;
  1587. }
  1588. .u128 {
  1589. position:absolute;
  1590. left:30px;
  1591. top:0px;
  1592. width:30px;
  1593. height:30px;
  1594. font-family:'微软雅黑 Regular', '微软雅黑';
  1595. font-weight:400;
  1596. font-style:normal;
  1597. }
  1598. .u128_img {
  1599. position:absolute;
  1600. left:0px;
  1601. top:0px;
  1602. width:30px;
  1603. height:30px;
  1604. }
  1605. .u129 {
  1606. position:absolute;
  1607. left:2px;
  1608. top:7px;
  1609. width:26px;
  1610. visibility:hidden;
  1611. word-wrap:break-word;
  1612. }
  1613. #u130 {
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:781px;
  1618. height:40px;
  1619. }
  1620. #u130_img {
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:781px;
  1625. height:40px;
  1626. }
  1627. #u131 {
  1628. position:absolute;
  1629. left:2px;
  1630. top:12px;
  1631. width:777px;
  1632. visibility:hidden;
  1633. word-wrap:break-word;
  1634. }
  1635. #u132 {
  1636. position:absolute;
  1637. left:10px;
  1638. top:10px;
  1639. width:60px;
  1640. height:20px;
  1641. font-family:'微软雅黑 Regular', '微软雅黑';
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:14px;
  1645. }
  1646. #u132_img {
  1647. position:absolute;
  1648. left:0px;
  1649. top:0px;
  1650. width:60px;
  1651. height:20px;
  1652. }
  1653. #u133 {
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:60px;
  1658. word-wrap:break-word;
  1659. }
  1660. #u134 {
  1661. position:absolute;
  1662. left:311px;
  1663. top:5px;
  1664. width:49px;
  1665. height:30px;
  1666. }
  1667. #u134_img {
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:49px;
  1672. height:30px;
  1673. }
  1674. #u135 {
  1675. position:absolute;
  1676. left:2px;
  1677. top:7px;
  1678. width:45px;
  1679. word-wrap:break-word;
  1680. }
  1681. #u136 {
  1682. position:absolute;
  1683. left:427px;
  1684. top:5px;
  1685. width:84px;
  1686. height:30px;
  1687. font-family:'微软雅黑 Regular', '微软雅黑';
  1688. font-weight:400;
  1689. font-style:normal;
  1690. }
  1691. #u136_img {
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:84px;
  1696. height:30px;
  1697. }
  1698. #u137 {
  1699. position:absolute;
  1700. left:2px;
  1701. top:6px;
  1702. width:80px;
  1703. word-wrap:break-word;
  1704. }
  1705. #u138 {
  1706. position:absolute;
  1707. left:369px;
  1708. top:5px;
  1709. width:49px;
  1710. height:30px;
  1711. }
  1712. #u138_img {
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:49px;
  1717. height:30px;
  1718. }
  1719. #u139 {
  1720. position:absolute;
  1721. left:2px;
  1722. top:7px;
  1723. width:45px;
  1724. word-wrap:break-word;
  1725. }
  1726. #u140 {
  1727. position:absolute;
  1728. left:710px;
  1729. top:5px;
  1730. width:60px;
  1731. height:30px;
  1732. font-family:'Arial Negreta', 'Arial';
  1733. font-weight:700;
  1734. font-style:normal;
  1735. color:#666666;
  1736. }
  1737. #u140_img {
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:60px;
  1742. height:30px;
  1743. }
  1744. #u141 {
  1745. position:absolute;
  1746. left:2px;
  1747. top:7px;
  1748. width:56px;
  1749. word-wrap:break-word;
  1750. }
  1751. #u142 {
  1752. position:absolute;
  1753. left:570px;
  1754. top:5px;
  1755. width:30px;
  1756. height:30px;
  1757. font-size:20px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u142_img {
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:30px;
  1765. height:30px;
  1766. }
  1767. #u143 {
  1768. position:absolute;
  1769. left:2px;
  1770. top:3px;
  1771. width:26px;
  1772. word-wrap:break-word;
  1773. }
  1774. #u144 {
  1775. position:absolute;
  1776. left:0px;
  1777. top:39px;
  1778. width:780px;
  1779. height:32px;
  1780. }
  1781. #u144_img {
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:780px;
  1786. height:32px;
  1787. }
  1788. #u145 {
  1789. position:absolute;
  1790. left:2px;
  1791. top:8px;
  1792. width:776px;
  1793. visibility:hidden;
  1794. word-wrap:break-word;
  1795. }
  1796. #u146 {
  1797. position:absolute;
  1798. left:610px;
  1799. top:5px;
  1800. width:90px;
  1801. height:30px;
  1802. text-align:right;
  1803. }
  1804. #u146_img {
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:90px;
  1809. height:30px;
  1810. }
  1811. #u147 {
  1812. position:absolute;
  1813. left:2px;
  1814. top:7px;
  1815. width:86px;
  1816. visibility:hidden;
  1817. word-wrap:break-word;
  1818. }
  1819. #u148 {
  1820. position:absolute;
  1821. left:616px;
  1822. top:10px;
  1823. width:30px;
  1824. height:20px;
  1825. }
  1826. #u148_input {
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:30px;
  1831. height:20px;
  1832. font-family:'Arial Normal', 'Arial';
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:13px;
  1836. text-decoration:none;
  1837. color:#000000;
  1838. text-align:left;
  1839. }
  1840. #u149 {
  1841. position:absolute;
  1842. left:70px;
  1843. top:6px;
  1844. width:38px;
  1845. height:27px;
  1846. }
  1847. #u149_img {
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:38px;
  1852. height:27px;
  1853. }
  1854. #u150 {
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:38px;
  1859. white-space:nowrap;
  1860. }
  1861. #u151 {
  1862. position:absolute;
  1863. left:66px;
  1864. top:46px;
  1865. width:66px;
  1866. height:19px;
  1867. font-family:'微软雅黑 Bold', '微软雅黑';
  1868. font-weight:700;
  1869. font-style:normal;
  1870. color:#FFFFFF;
  1871. }
  1872. #u151_img {
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:66px;
  1877. height:19px;
  1878. }
  1879. #u152 {
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:66px;
  1884. white-space:nowrap;
  1885. }
  1886. #u153 {
  1887. position:absolute;
  1888. left:254px;
  1889. top:46px;
  1890. width:40px;
  1891. height:19px;
  1892. font-family:'微软雅黑 Bold', '微软雅黑';
  1893. font-weight:700;
  1894. font-style:normal;
  1895. color:#FFFFFF;
  1896. }
  1897. #u153_img {
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:40px;
  1902. height:19px;
  1903. }
  1904. #u154 {
  1905. position:absolute;
  1906. left:0px;
  1907. top:0px;
  1908. width:40px;
  1909. white-space:nowrap;
  1910. }
  1911. #u155 {
  1912. position:absolute;
  1913. left:308px;
  1914. top:46px;
  1915. width:40px;
  1916. height:16px;
  1917. font-family:'微软雅黑 Bold', '微软雅黑';
  1918. font-weight:700;
  1919. font-style:normal;
  1920. color:#FFFFFF;
  1921. }
  1922. #u155_img {
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:40px;
  1927. height:16px;
  1928. }
  1929. #u156 {
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:40px;
  1934. white-space:nowrap;
  1935. }
  1936. #u157 {
  1937. position:absolute;
  1938. left:380px;
  1939. top:46px;
  1940. width:41px;
  1941. height:16px;
  1942. font-family:'微软雅黑 Bold', '微软雅黑';
  1943. font-weight:700;
  1944. font-style:normal;
  1945. color:#FFFFFF;
  1946. }
  1947. #u157_img {
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:41px;
  1952. height:16px;
  1953. }
  1954. #u158 {
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:41px;
  1959. word-wrap:break-word;
  1960. }
  1961. #u159 {
  1962. position:absolute;
  1963. left:497px;
  1964. top:46px;
  1965. width:42px;
  1966. height:16px;
  1967. font-family:'微软雅黑 Bold', '微软雅黑';
  1968. font-weight:700;
  1969. font-style:normal;
  1970. color:#FFFFFF;
  1971. }
  1972. #u159_img {
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:42px;
  1977. height:16px;
  1978. }
  1979. #u160 {
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:42px;
  1984. word-wrap:break-word;
  1985. }
  1986. #u161 {
  1987. position:absolute;
  1988. left:619px;
  1989. top:46px;
  1990. width:40px;
  1991. height:16px;
  1992. font-family:'微软雅黑 Bold', '微软雅黑';
  1993. font-weight:700;
  1994. font-style:normal;
  1995. color:#FFFFFF;
  1996. }
  1997. #u161_img {
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:40px;
  2002. height:16px;
  2003. }
  2004. #u162 {
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:40px;
  2009. white-space:nowrap;
  2010. }
  2011. #u163 {
  2012. position:absolute;
  2013. left:700px;
  2014. top:46px;
  2015. width:66px;
  2016. height:1px;
  2017. font-family:'微软雅黑 Bold', '微软雅黑';
  2018. font-weight:700;
  2019. font-style:normal;
  2020. color:#FFFFFF;
  2021. }
  2022. #u163_img {
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:66px;
  2027. height:1px;
  2028. }
  2029. #u164 {
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:66px;
  2034. white-space:nowrap;
  2035. }
  2036. #u165 {
  2037. position:absolute;
  2038. left:111px;
  2039. top:9px;
  2040. width:60px;
  2041. height:20px;
  2042. font-family:'微软雅黑 Regular', '微软雅黑';
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:14px;
  2046. }
  2047. #u165_img {
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:60px;
  2052. height:20px;
  2053. }
  2054. #u166 {
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:60px;
  2059. word-wrap:break-word;
  2060. }
  2061. #u167 {
  2062. position:absolute;
  2063. left:170px;
  2064. top:46px;
  2065. width:27px;
  2066. height:19px;
  2067. font-family:'微软雅黑 Bold', '微软雅黑';
  2068. font-weight:700;
  2069. font-style:normal;
  2070. color:#FFFFFF;
  2071. }
  2072. #u167_img {
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:27px;
  2077. height:19px;
  2078. }
  2079. #u168 {
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:27px;
  2084. white-space:nowrap;
  2085. }
  2086. #u170 {
  2087. position:absolute;
  2088. left:-1px;
  2089. top:750px;
  2090. width:1000px;
  2091. height:50px;
  2092. color:#FFFFFF;
  2093. }
  2094. #u170_img {
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:1000px;
  2099. height:50px;
  2100. }
  2101. #u171 {
  2102. position:absolute;
  2103. left:2px;
  2104. top:17px;
  2105. width:996px;
  2106. word-wrap:break-word;
  2107. }
  2108. #u172 {
  2109. position:absolute;
  2110. left:124px;
  2111. top:838px;
  2112. visibility:hidden;
  2113. }
  2114. #u172_state0 {
  2115. position:relative;
  2116. left:0px;
  2117. top:0px;
  2118. background-image:none;
  2119. }
  2120. #u172_state0_content {
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:1px;
  2125. height:1px;
  2126. }
  2127. #u173 {
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:666px;
  2132. height:472px;
  2133. }
  2134. #u173_img {
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:666px;
  2139. height:472px;
  2140. }
  2141. #u174 {
  2142. position:absolute;
  2143. left:2px;
  2144. top:228px;
  2145. width:662px;
  2146. visibility:hidden;
  2147. word-wrap:break-word;
  2148. }
  2149. #u175 {
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:666px;
  2154. height:472px;
  2155. }
  2156. #u175_img {
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:666px;
  2161. height:472px;
  2162. }
  2163. #u176 {
  2164. position:absolute;
  2165. left:2px;
  2166. top:228px;
  2167. width:662px;
  2168. visibility:hidden;
  2169. word-wrap:break-word;
  2170. }
  2171. #u177 {
  2172. position:absolute;
  2173. left:462px;
  2174. top:436px;
  2175. width:90px;
  2176. height:22px;
  2177. overflow:hidden;
  2178. background-image:url('../../resources/images/transparent.gif');
  2179. }
  2180. #u178 {
  2181. position:absolute;
  2182. left:562px;
  2183. top:436px;
  2184. width:90px;
  2185. height:22px;
  2186. overflow:hidden;
  2187. background-image:url('../../resources/images/transparent.gif');
  2188. }
  2189. #u172_state1 {
  2190. position:relative;
  2191. left:0px;
  2192. top:0px;
  2193. visibility:hidden;
  2194. background-image:none;
  2195. }
  2196. #u172_state1_content {
  2197. position:absolute;
  2198. left:0px;
  2199. top:0px;
  2200. width:1px;
  2201. height:1px;
  2202. }
  2203. #u179 {
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:270px;
  2208. height:160px;
  2209. }
  2210. #u179_img {
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:270px;
  2215. height:160px;
  2216. }
  2217. #u180 {
  2218. position:absolute;
  2219. left:2px;
  2220. top:72px;
  2221. width:266px;
  2222. visibility:hidden;
  2223. word-wrap:break-word;
  2224. }
  2225. #u181 {
  2226. position:absolute;
  2227. left:63px;
  2228. top:44px;
  2229. width:157px;
  2230. height:16px;
  2231. }
  2232. #u181_img {
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:157px;
  2237. height:16px;
  2238. }
  2239. #u182 {
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:157px;
  2244. white-space:nowrap;
  2245. }
  2246. #u183 {
  2247. position:absolute;
  2248. left:30px;
  2249. top:100px;
  2250. width:70px;
  2251. height:30px;
  2252. }
  2253. #u183_img {
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:70px;
  2258. height:30px;
  2259. }
  2260. #u184 {
  2261. position:absolute;
  2262. left:2px;
  2263. top:7px;
  2264. width:66px;
  2265. word-wrap:break-word;
  2266. }
  2267. #u185 {
  2268. position:absolute;
  2269. left:150px;
  2270. top:100px;
  2271. width:70px;
  2272. height:30px;
  2273. }
  2274. #u185_img {
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:70px;
  2279. height:30px;
  2280. }
  2281. #u186 {
  2282. position:absolute;
  2283. left:2px;
  2284. top:7px;
  2285. width:66px;
  2286. word-wrap:break-word;
  2287. }
  2288. #u172_state2 {
  2289. position:relative;
  2290. left:0px;
  2291. top:0px;
  2292. visibility:hidden;
  2293. background-image:none;
  2294. }
  2295. #u172_state2_content {
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:1px;
  2300. height:1px;
  2301. }
  2302. #u187 {
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:270px;
  2307. height:160px;
  2308. }
  2309. #u187_img {
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:270px;
  2314. height:160px;
  2315. }
  2316. #u188 {
  2317. position:absolute;
  2318. left:2px;
  2319. top:72px;
  2320. width:266px;
  2321. visibility:hidden;
  2322. word-wrap:break-word;
  2323. }
  2324. #u189 {
  2325. position:absolute;
  2326. left:63px;
  2327. top:44px;
  2328. width:157px;
  2329. height:16px;
  2330. }
  2331. #u189_img {
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:157px;
  2336. height:16px;
  2337. }
  2338. #u190 {
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:157px;
  2343. white-space:nowrap;
  2344. }
  2345. #u191 {
  2346. position:absolute;
  2347. left:30px;
  2348. top:100px;
  2349. width:70px;
  2350. height:30px;
  2351. }
  2352. #u191_img {
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:70px;
  2357. height:30px;
  2358. }
  2359. #u192 {
  2360. position:absolute;
  2361. left:2px;
  2362. top:7px;
  2363. width:66px;
  2364. word-wrap:break-word;
  2365. }
  2366. #u193 {
  2367. position:absolute;
  2368. left:150px;
  2369. top:100px;
  2370. width:70px;
  2371. height:30px;
  2372. }
  2373. #u193_img {
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:70px;
  2378. height:30px;
  2379. }
  2380. #u194 {
  2381. position:absolute;
  2382. left:2px;
  2383. top:7px;
  2384. width:66px;
  2385. word-wrap:break-word;
  2386. }
  2387. #u172_state3 {
  2388. position:relative;
  2389. left:0px;
  2390. top:0px;
  2391. visibility:hidden;
  2392. background-image:none;
  2393. }
  2394. #u172_state3_content {
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:1px;
  2399. height:1px;
  2400. }
  2401. #u195 {
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:270px;
  2406. height:160px;
  2407. }
  2408. #u195_img {
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:270px;
  2413. height:160px;
  2414. }
  2415. #u196 {
  2416. position:absolute;
  2417. left:2px;
  2418. top:72px;
  2419. width:266px;
  2420. visibility:hidden;
  2421. word-wrap:break-word;
  2422. }
  2423. #u197 {
  2424. position:absolute;
  2425. left:56px;
  2426. top:44px;
  2427. width:79px;
  2428. height:16px;
  2429. }
  2430. #u197_img {
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:79px;
  2435. height:16px;
  2436. }
  2437. #u198 {
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:79px;
  2442. white-space:nowrap;
  2443. }
  2444. #u199 {
  2445. position:absolute;
  2446. left:100px;
  2447. top:100px;
  2448. width:70px;
  2449. height:30px;
  2450. }
  2451. #u199_img {
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:70px;
  2456. height:30px;
  2457. }
  2458. #u200 {
  2459. position:absolute;
  2460. left:2px;
  2461. top:7px;
  2462. width:66px;
  2463. word-wrap:break-word;
  2464. }
  2465. #u201 {
  2466. position:absolute;
  2467. left:53px;
  2468. top:70px;
  2469. width:180px;
  2470. height:16px;
  2471. }
  2472. #u201_img {
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:180px;
  2477. height:16px;
  2478. }
  2479. #u202 {
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:180px;
  2484. white-space:nowrap;
  2485. }
  2486. #u203 {
  2487. position:absolute;
  2488. left:171px;
  2489. top:44px;
  2490. width:53px;
  2491. height:16px;
  2492. }
  2493. #u203_img {
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:53px;
  2498. height:16px;
  2499. }
  2500. #u204 {
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:53px;
  2505. white-space:nowrap;
  2506. }
  2507. #u205 {
  2508. position:absolute;
  2509. left:145px;
  2510. top:40px;
  2511. width:12px;
  2512. height:24px;
  2513. font-family:'微软雅黑 Regular', '微软雅黑';
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:18px;
  2517. color:#FF0000;
  2518. }
  2519. #u205_img {
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:12px;
  2524. height:24px;
  2525. }
  2526. #u206 {
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:12px;
  2531. white-space:nowrap;
  2532. }
  2533. #u172_state4 {
  2534. position:relative;
  2535. left:0px;
  2536. top:0px;
  2537. visibility:hidden;
  2538. background-image:none;
  2539. }
  2540. #u172_state4_content {
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:1px;
  2545. height:1px;
  2546. }
  2547. #u207 {
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:270px;
  2552. height:160px;
  2553. }
  2554. #u207_img {
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:270px;
  2559. height:160px;
  2560. }
  2561. #u208 {
  2562. position:absolute;
  2563. left:2px;
  2564. top:72px;
  2565. width:266px;
  2566. visibility:hidden;
  2567. word-wrap:break-word;
  2568. }
  2569. #u209 {
  2570. position:absolute;
  2571. left:44px;
  2572. top:44px;
  2573. width:183px;
  2574. height:16px;
  2575. }
  2576. #u209_img {
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:183px;
  2581. height:16px;
  2582. }
  2583. #u210 {
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:183px;
  2588. white-space:nowrap;
  2589. }
  2590. #u211 {
  2591. position:absolute;
  2592. left:90px;
  2593. top:100px;
  2594. width:70px;
  2595. height:30px;
  2596. }
  2597. #u211_img {
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:70px;
  2602. height:30px;
  2603. }
  2604. #u212 {
  2605. position:absolute;
  2606. left:2px;
  2607. top:7px;
  2608. width:66px;
  2609. word-wrap:break-word;
  2610. }
  2611. #u172_state5 {
  2612. position:relative;
  2613. left:0px;
  2614. top:0px;
  2615. visibility:hidden;
  2616. background-image:none;
  2617. }
  2618. #u172_state5_content {
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:1px;
  2623. height:1px;
  2624. }
  2625. #u213 {
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:270px;
  2630. height:160px;
  2631. }
  2632. #u213_img {
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:270px;
  2637. height:160px;
  2638. }
  2639. #u214 {
  2640. position:absolute;
  2641. left:2px;
  2642. top:72px;
  2643. width:266px;
  2644. visibility:hidden;
  2645. word-wrap:break-word;
  2646. }
  2647. #u215 {
  2648. position:absolute;
  2649. left:44px;
  2650. top:44px;
  2651. width:157px;
  2652. height:16px;
  2653. }
  2654. #u215_img {
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:157px;
  2659. height:16px;
  2660. }
  2661. #u216 {
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:157px;
  2666. white-space:nowrap;
  2667. }
  2668. #u217 {
  2669. position:absolute;
  2670. left:90px;
  2671. top:100px;
  2672. width:70px;
  2673. height:30px;
  2674. }
  2675. #u217_img {
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:70px;
  2680. height:30px;
  2681. }
  2682. #u218 {
  2683. position:absolute;
  2684. left:2px;
  2685. top:7px;
  2686. width:66px;
  2687. word-wrap:break-word;
  2688. }
  2689. #u172_state6 {
  2690. position:relative;
  2691. left:0px;
  2692. top:0px;
  2693. visibility:hidden;
  2694. background-image:none;
  2695. }
  2696. #u172_state6_content {
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:1px;
  2701. height:1px;
  2702. }
  2703. #u219 {
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:270px;
  2708. height:160px;
  2709. }
  2710. #u219_img {
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:270px;
  2715. height:160px;
  2716. }
  2717. #u220 {
  2718. position:absolute;
  2719. left:2px;
  2720. top:72px;
  2721. width:266px;
  2722. visibility:hidden;
  2723. word-wrap:break-word;
  2724. }
  2725. #u221 {
  2726. position:absolute;
  2727. left:56px;
  2728. top:44px;
  2729. width:157px;
  2730. height:16px;
  2731. }
  2732. #u221_img {
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:157px;
  2737. height:16px;
  2738. }
  2739. #u222 {
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:157px;
  2744. white-space:nowrap;
  2745. }
  2746. #u223 {
  2747. position:absolute;
  2748. left:90px;
  2749. top:100px;
  2750. width:70px;
  2751. height:30px;
  2752. }
  2753. #u223_img {
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:70px;
  2758. height:30px;
  2759. }
  2760. #u224 {
  2761. position:absolute;
  2762. left:2px;
  2763. top:7px;
  2764. width:66px;
  2765. word-wrap:break-word;
  2766. }
  2767. #u225 {
  2768. position:absolute;
  2769. left:0px;
  2770. top:79px;
  2771. width:220px;
  2772. height:671px;
  2773. }
  2774. #u225_img {
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:220px;
  2779. height:671px;
  2780. }
  2781. #u226 {
  2782. position:absolute;
  2783. left:2px;
  2784. top:328px;
  2785. width:216px;
  2786. visibility:hidden;
  2787. word-wrap:break-word;
  2788. }
  2789. #u227 {
  2790. position:absolute;
  2791. left:60px;
  2792. top:121px;
  2793. width:100px;
  2794. height:60px;
  2795. font-family:'微软雅黑 Regular', '微软雅黑';
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:16px;
  2799. }
  2800. #u227_img {
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:100px;
  2805. height:60px;
  2806. }
  2807. #u228 {
  2808. position:absolute;
  2809. left:2px;
  2810. top:20px;
  2811. width:96px;
  2812. word-wrap:break-word;
  2813. }
  2814. #u229 {
  2815. position:absolute;
  2816. left:60px;
  2817. top:211px;
  2818. width:100px;
  2819. height:60px;
  2820. font-family:'微软雅黑 Regular', '微软雅黑';
  2821. font-weight:400;
  2822. font-style:normal;
  2823. font-size:16px;
  2824. }
  2825. #u229_img {
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:100px;
  2830. height:60px;
  2831. }
  2832. #u230 {
  2833. position:absolute;
  2834. left:2px;
  2835. top:20px;
  2836. width:96px;
  2837. word-wrap:break-word;
  2838. }
  2839. #u231 {
  2840. position:absolute;
  2841. left:60px;
  2842. top:383px;
  2843. width:100px;
  2844. height:60px;
  2845. font-family:'微软雅黑 Regular', '微软雅黑';
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:16px;
  2849. }
  2850. #u231_img {
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:100px;
  2855. height:60px;
  2856. }
  2857. #u232 {
  2858. position:absolute;
  2859. left:2px;
  2860. top:20px;
  2861. width:96px;
  2862. word-wrap:break-word;
  2863. }
  2864. #u233 {
  2865. position:absolute;
  2866. left:60px;
  2867. top:474px;
  2868. width:100px;
  2869. height:60px;
  2870. font-family:'微软雅黑 Regular', '微软雅黑';
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:16px;
  2874. }
  2875. #u233_img {
  2876. position:absolute;
  2877. left:0px;
  2878. top:0px;
  2879. width:100px;
  2880. height:60px;
  2881. }
  2882. #u234 {
  2883. position:absolute;
  2884. left:2px;
  2885. top:20px;
  2886. width:96px;
  2887. word-wrap:break-word;
  2888. }
  2889. #u235 {
  2890. position:absolute;
  2891. left:60px;
  2892. top:563px;
  2893. width:100px;
  2894. height:60px;
  2895. font-family:'微软雅黑 Regular', '微软雅黑';
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:16px;
  2899. }
  2900. #u235_img {
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:100px;
  2905. height:60px;
  2906. }
  2907. #u236 {
  2908. position:absolute;
  2909. left:2px;
  2910. top:20px;
  2911. width:96px;
  2912. word-wrap:break-word;
  2913. }
  2914. #u237 {
  2915. position:absolute;
  2916. left:230px;
  2917. top:175px;
  2918. width:40px;
  2919. height:16px;
  2920. }
  2921. #u237_img {
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:40px;
  2926. height:16px;
  2927. }
  2928. #u238 {
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:40px;
  2933. white-space:nowrap;
  2934. }
  2935. #u239 {
  2936. position:absolute;
  2937. left:280px;
  2938. top:171px;
  2939. width:111px;
  2940. height:25px;
  2941. }
  2942. #u239_input {
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:111px;
  2947. height:25px;
  2948. font-family:'Arial Normal', 'Arial';
  2949. font-weight:400;
  2950. font-style:normal;
  2951. font-size:13px;
  2952. text-decoration:none;
  2953. color:#000000;
  2954. text-align:left;
  2955. }
  2956. #u240 {
  2957. position:absolute;
  2958. left:247px;
  2959. top:624px;
  2960. width:353px;
  2961. height:57px;
  2962. font-family:'微软雅黑 Regular', '微软雅黑';
  2963. font-weight:400;
  2964. font-style:normal;
  2965. color:#FF0000;
  2966. }
  2967. #u240_img {
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:353px;
  2972. height:57px;
  2973. }
  2974. #u241 {
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:353px;
  2979. word-wrap:break-word;
  2980. }
  2981. #u242 {
  2982. position:absolute;
  2983. left:90px;
  2984. top:284px;
  2985. width:120px;
  2986. height:39px;
  2987. }
  2988. #u242_img {
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:120px;
  2993. height:39px;
  2994. }
  2995. #u243 {
  2996. position:absolute;
  2997. left:2px;
  2998. top:12px;
  2999. width:116px;
  3000. word-wrap:break-word;
  3001. }
  3002. #u244 {
  3003. position:absolute;
  3004. left:90px;
  3005. top:334px;
  3006. width:120px;
  3007. height:39px;
  3008. }
  3009. #u244_img {
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:120px;
  3014. height:39px;
  3015. }
  3016. #u245 {
  3017. position:absolute;
  3018. left:2px;
  3019. top:12px;
  3020. width:116px;
  3021. word-wrap:break-word;
  3022. }
  3023. #u246 {
  3024. position:absolute;
  3025. left:90px;
  3026. top:285px;
  3027. width:120px;
  3028. height:39px;
  3029. font-family:'微软雅黑 Bold', '微软雅黑';
  3030. font-weight:700;
  3031. font-style:normal;
  3032. font-size:16px;
  3033. color:#6699FF;
  3034. }
  3035. #u246_img {
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:120px;
  3040. height:39px;
  3041. }
  3042. #u247 {
  3043. position:absolute;
  3044. left:2px;
  3045. top:9px;
  3046. width:116px;
  3047. word-wrap:break-word;
  3048. }
  3049. #u248 {
  3050. position:absolute;
  3051. left:90px;
  3052. top:334px;
  3053. width:120px;
  3054. height:39px;
  3055. font-family:'微软雅黑 Bold', '微软雅黑';
  3056. font-weight:700;
  3057. font-style:normal;
  3058. font-size:16px;
  3059. color:#6699FF;
  3060. }
  3061. #u248_img {
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:120px;
  3066. height:39px;
  3067. }
  3068. #u249 {
  3069. position:absolute;
  3070. left:2px;
  3071. top:9px;
  3072. width:116px;
  3073. word-wrap:break-word;
  3074. }
  3075. #u250 {
  3076. position:absolute;
  3077. left:791px;
  3078. top:92px;
  3079. width:68px;
  3080. height:25px;
  3081. }
  3082. #u250_input {
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:68px;
  3087. height:25px;
  3088. font-family:'Arial Normal', 'Arial';
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:13px;
  3092. text-decoration:none;
  3093. color:#000000;
  3094. text-align:center;
  3095. }
  3096. #u251 {
  3097. position:absolute;
  3098. left:692px;
  3099. top:92px;
  3100. width:68px;
  3101. height:25px;
  3102. }
  3103. #u251_input {
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:68px;
  3108. height:25px;
  3109. font-family:'Arial Normal', 'Arial';
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:13px;
  3113. text-decoration:none;
  3114. color:#000000;
  3115. text-align:center;
  3116. }