styles.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1921px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u128_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:236px;
  21. height:73px;
  22. }
  23. #u128 {
  24. border-width:0px;
  25. position:absolute;
  26. left:0px;
  27. top:0px;
  28. width:236px;
  29. height:73px;
  30. }
  31. #u128_text {
  32. border-width:0px;
  33. position:absolute;
  34. left:0px;
  35. top:0px;
  36. width:0px;
  37. visibility:hidden;
  38. word-wrap:break-word;
  39. }
  40. #u129_img {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:236px;
  46. height:49px;
  47. }
  48. #u129 {
  49. border-width:0px;
  50. position:absolute;
  51. left:0px;
  52. top:73px;
  53. width:236px;
  54. height:49px;
  55. }
  56. #u129_text {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:0px;
  62. visibility:hidden;
  63. word-wrap:break-word;
  64. }
  65. #u130_img {
  66. border-width:0px;
  67. position:absolute;
  68. left:0px;
  69. top:0px;
  70. width:1685px;
  71. height:970px;
  72. }
  73. #u130 {
  74. border-width:0px;
  75. position:absolute;
  76. left:236px;
  77. top:0px;
  78. width:1685px;
  79. height:970px;
  80. }
  81. #u130_text {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:0px;
  87. visibility:hidden;
  88. word-wrap:break-word;
  89. }
  90. #u131_img {
  91. border-width:0px;
  92. position:absolute;
  93. left:0px;
  94. top:0px;
  95. width:1000px;
  96. height:133px;
  97. }
  98. #u131 {
  99. border-width:0px;
  100. position:absolute;
  101. left:277px;
  102. top:192px;
  103. width:1000px;
  104. height:133px;
  105. }
  106. #u131_text {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:0px;
  112. visibility:hidden;
  113. word-wrap:break-word;
  114. }
  115. #u132_div {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:101px;
  121. height:27px;
  122. background:inherit;
  123. background-color:rgba(255, 255, 255, 0);
  124. border:none;
  125. border-radius:0px;
  126. -moz-box-shadow:none;
  127. -webkit-box-shadow:none;
  128. box-shadow:none;
  129. font-family:'微软雅黑';
  130. font-weight:400;
  131. font-style:normal;
  132. font-size:20px;
  133. }
  134. #u132 {
  135. border-width:0px;
  136. position:absolute;
  137. left:328px;
  138. top:213px;
  139. width:101px;
  140. height:27px;
  141. font-family:'微软雅黑';
  142. font-weight:400;
  143. font-style:normal;
  144. font-size:20px;
  145. }
  146. #u132_text {
  147. border-width:0px;
  148. position:absolute;
  149. left:0px;
  150. top:0px;
  151. width:101px;
  152. white-space:nowrap;
  153. }
  154. #u133_div {
  155. border-width:0px;
  156. position:absolute;
  157. left:0px;
  158. top:0px;
  159. width:101px;
  160. height:27px;
  161. background:inherit;
  162. background-color:rgba(255, 255, 255, 0);
  163. border:none;
  164. border-radius:0px;
  165. -moz-box-shadow:none;
  166. -webkit-box-shadow:none;
  167. box-shadow:none;
  168. font-family:'微软雅黑';
  169. font-weight:400;
  170. font-style:normal;
  171. font-size:20px;
  172. }
  173. #u133 {
  174. border-width:0px;
  175. position:absolute;
  176. left:328px;
  177. top:264px;
  178. width:101px;
  179. height:27px;
  180. font-family:'微软雅黑';
  181. font-weight:400;
  182. font-style:normal;
  183. font-size:20px;
  184. }
  185. #u133_text {
  186. border-width:0px;
  187. position:absolute;
  188. left:0px;
  189. top:0px;
  190. width:101px;
  191. white-space:nowrap;
  192. }
  193. #u134_div {
  194. border-width:0px;
  195. position:absolute;
  196. left:0px;
  197. top:0px;
  198. width:101px;
  199. height:27px;
  200. background:inherit;
  201. background-color:rgba(255, 255, 255, 0);
  202. border:none;
  203. border-radius:0px;
  204. -moz-box-shadow:none;
  205. -webkit-box-shadow:none;
  206. box-shadow:none;
  207. font-family:'微软雅黑';
  208. font-weight:400;
  209. font-style:normal;
  210. font-size:20px;
  211. }
  212. #u134 {
  213. border-width:0px;
  214. position:absolute;
  215. left:818px;
  216. top:264px;
  217. width:101px;
  218. height:27px;
  219. font-family:'微软雅黑';
  220. font-weight:400;
  221. font-style:normal;
  222. font-size:20px;
  223. }
  224. #u134_text {
  225. border-width:0px;
  226. position:absolute;
  227. left:0px;
  228. top:0px;
  229. width:101px;
  230. white-space:nowrap;
  231. }
  232. #u135_div {
  233. border-width:0px;
  234. position:absolute;
  235. left:0px;
  236. top:0px;
  237. width:101px;
  238. height:27px;
  239. background:inherit;
  240. background-color:rgba(255, 255, 255, 0);
  241. border:none;
  242. border-radius:0px;
  243. -moz-box-shadow:none;
  244. -webkit-box-shadow:none;
  245. box-shadow:none;
  246. font-family:'微软雅黑';
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:20px;
  250. }
  251. #u135 {
  252. border-width:0px;
  253. position:absolute;
  254. left:328px;
  255. top:310px;
  256. width:101px;
  257. height:27px;
  258. font-family:'微软雅黑';
  259. font-weight:400;
  260. font-style:normal;
  261. font-size:20px;
  262. }
  263. #u135_text {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:101px;
  269. white-space:nowrap;
  270. }
  271. #u136_div {
  272. border-width:0px;
  273. position:absolute;
  274. left:0px;
  275. top:0px;
  276. width:101px;
  277. height:27px;
  278. background:inherit;
  279. background-color:rgba(255, 255, 255, 0);
  280. border:none;
  281. border-radius:0px;
  282. -moz-box-shadow:none;
  283. -webkit-box-shadow:none;
  284. box-shadow:none;
  285. font-family:'微软雅黑';
  286. font-weight:400;
  287. font-style:normal;
  288. font-size:20px;
  289. }
  290. #u136 {
  291. border-width:0px;
  292. position:absolute;
  293. left:818px;
  294. top:310px;
  295. width:101px;
  296. height:27px;
  297. font-family:'微软雅黑';
  298. font-weight:400;
  299. font-style:normal;
  300. font-size:20px;
  301. }
  302. #u136_text {
  303. border-width:0px;
  304. position:absolute;
  305. left:0px;
  306. top:0px;
  307. width:101px;
  308. white-space:nowrap;
  309. }
  310. #u137 {
  311. border-width:0px;
  312. position:absolute;
  313. left:438px;
  314. top:211px;
  315. width:312px;
  316. height:33px;
  317. }
  318. #u137_input {
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:312px;
  323. height:33px;
  324. font-family:'Arial Normal', 'Arial';
  325. font-weight:400;
  326. font-style:normal;
  327. font-size:13px;
  328. text-decoration:none;
  329. color:#000000;
  330. text-align:left;
  331. }
  332. #u138_img {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:24px;
  338. height:25px;
  339. }
  340. #u138 {
  341. border-width:0px;
  342. position:absolute;
  343. left:446px;
  344. top:216px;
  345. width:24px;
  346. height:25px;
  347. }
  348. #u138_text {
  349. border-width:0px;
  350. position:absolute;
  351. left:0px;
  352. top:0px;
  353. width:0px;
  354. visibility:hidden;
  355. word-wrap:break-word;
  356. }
  357. #u139_div {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:81px;
  363. height:27px;
  364. background:inherit;
  365. background-color:rgba(255, 255, 255, 0);
  366. border:none;
  367. border-radius:0px;
  368. -moz-box-shadow:none;
  369. -webkit-box-shadow:none;
  370. box-shadow:none;
  371. font-family:'微软雅黑';
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:20px;
  375. color:#CAC9C3;
  376. text-align:center;
  377. }
  378. #u139 {
  379. border-width:0px;
  380. position:absolute;
  381. left:637px;
  382. top:214px;
  383. width:81px;
  384. height:27px;
  385. font-family:'微软雅黑';
  386. font-weight:400;
  387. font-style:normal;
  388. font-size:20px;
  389. color:#CAC9C3;
  390. text-align:center;
  391. }
  392. #u139_text {
  393. border-width:0px;
  394. position:absolute;
  395. left:0px;
  396. top:0px;
  397. width:81px;
  398. white-space:nowrap;
  399. }
  400. #u140_div {
  401. border-width:0px;
  402. position:absolute;
  403. left:0px;
  404. top:0px;
  405. width:10px;
  406. height:27px;
  407. background:inherit;
  408. background-color:rgba(255, 255, 255, 0);
  409. border:none;
  410. border-radius:0px;
  411. -moz-box-shadow:none;
  412. -webkit-box-shadow:none;
  413. box-shadow:none;
  414. font-family:'微软雅黑';
  415. font-weight:400;
  416. font-style:normal;
  417. font-size:20px;
  418. color:#CAC9C3;
  419. text-align:center;
  420. }
  421. #u140 {
  422. border-width:0px;
  423. position:absolute;
  424. left:598px;
  425. top:214px;
  426. width:10px;
  427. height:27px;
  428. font-family:'微软雅黑';
  429. font-weight:400;
  430. font-style:normal;
  431. font-size:20px;
  432. color:#CAC9C3;
  433. text-align:center;
  434. }
  435. #u140_text {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:10px;
  441. white-space:nowrap;
  442. }
  443. #u141_img {
  444. border-width:0px;
  445. position:absolute;
  446. left:0px;
  447. top:0px;
  448. width:75px;
  449. height:51px;
  450. }
  451. #u141 {
  452. border-width:0px;
  453. position:absolute;
  454. left:1378px;
  455. top:287px;
  456. width:75px;
  457. height:51px;
  458. }
  459. #u141_text {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:0px;
  465. visibility:hidden;
  466. word-wrap:break-word;
  467. }
  468. #u142 {
  469. border-width:0px;
  470. position:absolute;
  471. left:439px;
  472. top:261px;
  473. width:188px;
  474. height:33px;
  475. }
  476. #u142_input {
  477. position:absolute;
  478. left:0px;
  479. top:0px;
  480. width:188px;
  481. height:33px;
  482. font-family:'Arial Normal', 'Arial';
  483. font-weight:400;
  484. font-style:normal;
  485. font-size:13px;
  486. text-decoration:none;
  487. color:#000000;
  488. text-align:left;
  489. }
  490. #u143 {
  491. border-width:0px;
  492. position:absolute;
  493. left:439px;
  494. top:304px;
  495. width:188px;
  496. height:33px;
  497. }
  498. #u143_input {
  499. position:absolute;
  500. left:0px;
  501. top:0px;
  502. width:188px;
  503. height:33px;
  504. font-family:'Arial Normal', 'Arial';
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:13px;
  508. text-decoration:none;
  509. color:#000000;
  510. text-align:left;
  511. }
  512. #u144 {
  513. border-width:0px;
  514. position:absolute;
  515. left:924px;
  516. top:261px;
  517. width:188px;
  518. height:33px;
  519. }
  520. #u144_input {
  521. position:absolute;
  522. left:0px;
  523. top:0px;
  524. width:188px;
  525. height:33px;
  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. #u145_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:81px;
  540. height:27px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'微软雅黑';
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:20px;
  552. color:#CAC9C3;
  553. }
  554. #u145 {
  555. border-width:0px;
  556. position:absolute;
  557. left:454px;
  558. top:266px;
  559. width:81px;
  560. height:27px;
  561. font-family:'微软雅黑';
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:20px;
  565. color:#CAC9C3;
  566. }
  567. #u145_text {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:81px;
  573. white-space:nowrap;
  574. }
  575. #u146_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:121px;
  581. height:27px;
  582. background:inherit;
  583. background-color:rgba(255, 255, 255, 0);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. font-family:'微软雅黑';
  590. font-weight:400;
  591. font-style:normal;
  592. font-size:20px;
  593. color:#CAC9C3;
  594. }
  595. #u146 {
  596. border-width:0px;
  597. position:absolute;
  598. left:454px;
  599. top:308px;
  600. width:121px;
  601. height:27px;
  602. font-family:'微软雅黑';
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:20px;
  606. color:#CAC9C3;
  607. }
  608. #u146_text {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:121px;
  614. white-space:nowrap;
  615. }
  616. #u147_div {
  617. border-width:0px;
  618. position:absolute;
  619. left:0px;
  620. top:0px;
  621. width:81px;
  622. height:27px;
  623. background:inherit;
  624. background-color:rgba(255, 255, 255, 0);
  625. border:none;
  626. border-radius:0px;
  627. -moz-box-shadow:none;
  628. -webkit-box-shadow:none;
  629. box-shadow:none;
  630. font-family:'微软雅黑';
  631. font-weight:400;
  632. font-style:normal;
  633. font-size:20px;
  634. color:#CAC9C3;
  635. }
  636. #u147 {
  637. border-width:0px;
  638. position:absolute;
  639. left:943px;
  640. top:264px;
  641. width:81px;
  642. height:27px;
  643. font-family:'微软雅黑';
  644. font-weight:400;
  645. font-style:normal;
  646. font-size:20px;
  647. color:#CAC9C3;
  648. }
  649. #u147_text {
  650. border-width:0px;
  651. position:absolute;
  652. left:0px;
  653. top:0px;
  654. width:81px;
  655. white-space:nowrap;
  656. }
  657. #u148_img {
  658. border-width:0px;
  659. position:absolute;
  660. left:0px;
  661. top:0px;
  662. width:1683px;
  663. height:111px;
  664. }
  665. #u148 {
  666. border-width:0px;
  667. position:absolute;
  668. left:238px;
  669. top:859px;
  670. width:1683px;
  671. height:111px;
  672. }
  673. #u148_text {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. visibility:hidden;
  680. word-wrap:break-word;
  681. }
  682. #u149_div {
  683. border-width:0px;
  684. position:absolute;
  685. left:0px;
  686. top:0px;
  687. width:81px;
  688. height:27px;
  689. background:inherit;
  690. background-color:rgba(255, 255, 255, 0);
  691. border:none;
  692. border-radius:0px;
  693. -moz-box-shadow:none;
  694. -webkit-box-shadow:none;
  695. box-shadow:none;
  696. font-family:'微软雅黑';
  697. font-weight:400;
  698. font-style:normal;
  699. font-size:20px;
  700. color:#CAC9C3;
  701. text-align:center;
  702. }
  703. #u149 {
  704. border-width:0px;
  705. position:absolute;
  706. left:487px;
  707. top:214px;
  708. width:81px;
  709. height:27px;
  710. font-family:'微软雅黑';
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:20px;
  714. color:#CAC9C3;
  715. text-align:center;
  716. }
  717. #u149_text {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:81px;
  723. white-space:nowrap;
  724. }
  725. #u150_img {
  726. border-width:0px;
  727. position:absolute;
  728. left:0px;
  729. top:0px;
  730. width:202px;
  731. height:38px;
  732. }
  733. #u150 {
  734. border-width:0px;
  735. position:absolute;
  736. left:251px;
  737. top:78px;
  738. width:202px;
  739. height:38px;
  740. }
  741. #u150_text {
  742. border-width:0px;
  743. position:absolute;
  744. left:0px;
  745. top:0px;
  746. width:0px;
  747. visibility:hidden;
  748. word-wrap:break-word;
  749. }
  750. #u151_div {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:81px;
  756. height:27px;
  757. background:inherit;
  758. background-color:rgba(255, 255, 255, 0);
  759. border:none;
  760. border-radius:0px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-family:'微软雅黑';
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:20px;
  768. }
  769. #u151 {
  770. border-width:0px;
  771. position:absolute;
  772. left:266px;
  773. top:84px;
  774. width:81px;
  775. height:27px;
  776. font-family:'微软雅黑';
  777. font-weight:400;
  778. font-style:normal;
  779. font-size:20px;
  780. }
  781. #u151_text {
  782. border-width:0px;
  783. position:absolute;
  784. left:0px;
  785. top:0px;
  786. width:81px;
  787. white-space:nowrap;
  788. }
  789. #u152_img {
  790. border-width:0px;
  791. position:absolute;
  792. left:0px;
  793. top:0px;
  794. width:1685px;
  795. height:994px;
  796. }
  797. #u152 {
  798. border-width:0px;
  799. position:absolute;
  800. left:236px;
  801. top:132px;
  802. width:1685px;
  803. height:994px;
  804. }
  805. #u152_text {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:0px;
  811. visibility:hidden;
  812. word-wrap:break-word;
  813. }
  814. #u153 {
  815. border-width:0px;
  816. position:absolute;
  817. left:0px;
  818. top:0px;
  819. width:0px;
  820. height:0px;
  821. }
  822. #u154_img {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:19px;
  828. height:18px;
  829. }
  830. #u154 {
  831. border-width:0px;
  832. position:absolute;
  833. left:1716px;
  834. top:29px;
  835. width:19px;
  836. height:18px;
  837. }
  838. #u154_text {
  839. border-width:0px;
  840. position:absolute;
  841. left:0px;
  842. top:0px;
  843. width:0px;
  844. visibility:hidden;
  845. word-wrap:break-word;
  846. }
  847. #u155_div {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:95px;
  853. height:20px;
  854. background:inherit;
  855. background-color:rgba(255, 255, 255, 0);
  856. border:none;
  857. border-radius:0px;
  858. -moz-box-shadow:none;
  859. -webkit-box-shadow:none;
  860. box-shadow:none;
  861. font-family:'微软雅黑';
  862. font-weight:400;
  863. font-style:normal;
  864. color:#FFFFFF;
  865. }
  866. #u155 {
  867. border-width:0px;
  868. position:absolute;
  869. left:1740px;
  870. top:27px;
  871. width:95px;
  872. height:20px;
  873. font-family:'微软雅黑';
  874. font-weight:400;
  875. font-style:normal;
  876. color:#FFFFFF;
  877. }
  878. #u155_text {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:95px;
  884. white-space:nowrap;
  885. }
  886. #u156 {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:0px;
  892. height:0px;
  893. }
  894. #u157_img {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:181px;
  900. height:30px;
  901. }
  902. #u157 {
  903. border-width:0px;
  904. position:absolute;
  905. left:1711px;
  906. top:82px;
  907. width:181px;
  908. height:30px;
  909. }
  910. #u157_text {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:0px;
  916. visibility:hidden;
  917. word-wrap:break-word;
  918. }
  919. #u158_div {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:123px;
  925. height:20px;
  926. background:inherit;
  927. background-color:rgba(255, 255, 255, 0);
  928. border:none;
  929. border-radius:0px;
  930. -moz-box-shadow:none;
  931. -webkit-box-shadow:none;
  932. box-shadow:none;
  933. font-family:'微软雅黑';
  934. font-weight:400;
  935. font-style:normal;
  936. color:#999999;
  937. text-align:right;
  938. }
  939. #u158 {
  940. border-width:0px;
  941. position:absolute;
  942. left:1767px;
  943. top:86px;
  944. width:123px;
  945. height:20px;
  946. font-family:'微软雅黑';
  947. font-weight:400;
  948. font-style:normal;
  949. color:#999999;
  950. text-align:right;
  951. }
  952. #u158_text {
  953. border-width:0px;
  954. position:absolute;
  955. left:0px;
  956. top:0px;
  957. width:123px;
  958. white-space:nowrap;
  959. }
  960. #u159 {
  961. border-width:0px;
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:0px;
  966. height:0px;
  967. }
  968. #u160_img {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:110px;
  974. height:68px;
  975. }
  976. #u160 {
  977. border-width:0px;
  978. position:absolute;
  979. left:22px;
  980. top:3px;
  981. width:110px;
  982. height:68px;
  983. }
  984. #u160_text {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:0px;
  990. visibility:hidden;
  991. word-wrap:break-word;
  992. }
  993. #u161_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:33px;
  999. height:33px;
  1000. }
  1001. #u161 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:26px;
  1005. top:17px;
  1006. width:33px;
  1007. height:33px;
  1008. }
  1009. #u161_text {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. visibility:hidden;
  1016. word-wrap:break-word;
  1017. }
  1018. #u162_div {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:73px;
  1024. height:24px;
  1025. background:inherit;
  1026. background-color:rgba(255, 255, 255, 0);
  1027. border:none;
  1028. border-radius:0px;
  1029. -moz-box-shadow:none;
  1030. -webkit-box-shadow:none;
  1031. box-shadow:none;
  1032. font-family:'微软雅黑';
  1033. font-weight:400;
  1034. font-style:normal;
  1035. font-size:18px;
  1036. color:#FFFFFF;
  1037. }
  1038. #u162 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:65px;
  1042. top:22px;
  1043. width:73px;
  1044. height:24px;
  1045. font-family:'微软雅黑';
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:18px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u162_text {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:73px;
  1057. white-space:nowrap;
  1058. }
  1059. #u163_img {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:1620px;
  1065. height:194px;
  1066. }
  1067. #u163 {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:270px;
  1071. top:160px;
  1072. width:1620px;
  1073. height:194px;
  1074. }
  1075. #u163_text {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:0px;
  1081. visibility:hidden;
  1082. word-wrap:break-word;
  1083. }
  1084. #u164_img {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:1620px;
  1090. height:698px;
  1091. }
  1092. #u164 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:270px;
  1096. top:390px;
  1097. width:1620px;
  1098. height:698px;
  1099. }
  1100. #u164_text {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:0px;
  1104. top:0px;
  1105. width:0px;
  1106. visibility:hidden;
  1107. word-wrap:break-word;
  1108. }
  1109. #u165 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:288px;
  1113. top:492px;
  1114. width:1586px;
  1115. height:296px;
  1116. }
  1117. #u166_img {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:120px;
  1123. height:48px;
  1124. }
  1125. #u166 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:120px;
  1131. height:48px;
  1132. font-family:'微软雅黑';
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#666666;
  1137. }
  1138. #u166_text {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:0px;
  1144. visibility:hidden;
  1145. word-wrap:break-word;
  1146. }
  1147. #u167_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:286px;
  1153. height:48px;
  1154. }
  1155. #u167 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:120px;
  1159. top:0px;
  1160. width:286px;
  1161. height:48px;
  1162. font-family:'微软雅黑';
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:16px;
  1166. color:#666666;
  1167. }
  1168. #u167_text {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:2px;
  1172. top:14px;
  1173. width:282px;
  1174. word-wrap:break-word;
  1175. }
  1176. #u168_img {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:302px;
  1182. height:48px;
  1183. }
  1184. #u168 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:406px;
  1188. top:0px;
  1189. width:302px;
  1190. height:48px;
  1191. font-family:'微软雅黑';
  1192. font-weight:400;
  1193. font-style:normal;
  1194. font-size:16px;
  1195. color:#666666;
  1196. }
  1197. #u168_text {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:2px;
  1201. top:14px;
  1202. width:298px;
  1203. word-wrap:break-word;
  1204. }
  1205. #u169_img {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:314px;
  1211. height:48px;
  1212. }
  1213. #u169 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:708px;
  1217. top:0px;
  1218. width:314px;
  1219. height:48px;
  1220. font-family:'微软雅黑';
  1221. font-weight:400;
  1222. font-style:normal;
  1223. font-size:16px;
  1224. color:#666666;
  1225. }
  1226. #u169_text {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:2px;
  1230. top:14px;
  1231. width:310px;
  1232. word-wrap:break-word;
  1233. }
  1234. #u170_img {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:564px;
  1240. height:48px;
  1241. }
  1242. #u170 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:1022px;
  1246. top:0px;
  1247. width:564px;
  1248. height:48px;
  1249. font-family:'微软雅黑';
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:16px;
  1253. color:#666666;
  1254. }
  1255. #u170_text {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:2px;
  1259. top:14px;
  1260. width:560px;
  1261. word-wrap:break-word;
  1262. }
  1263. #u171_img {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:0px;
  1267. top:0px;
  1268. width:120px;
  1269. height:51px;
  1270. }
  1271. #u171 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:48px;
  1276. width:120px;
  1277. height:51px;
  1278. font-family:'微软雅黑';
  1279. font-weight:400;
  1280. font-style:normal;
  1281. font-size:16px;
  1282. color:#666666;
  1283. }
  1284. #u171_text {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:0px;
  1290. visibility:hidden;
  1291. word-wrap:break-word;
  1292. }
  1293. #u172_img {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:286px;
  1299. height:51px;
  1300. }
  1301. #u172 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:120px;
  1305. top:48px;
  1306. width:286px;
  1307. height:51px;
  1308. font-family:'微软雅黑';
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:16px;
  1312. color:#666666;
  1313. }
  1314. #u172_text {
  1315. border-width:0px;
  1316. position:absolute;
  1317. left:2px;
  1318. top:15px;
  1319. width:282px;
  1320. word-wrap:break-word;
  1321. }
  1322. #u173_img {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:302px;
  1328. height:51px;
  1329. }
  1330. #u173 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:406px;
  1334. top:48px;
  1335. width:302px;
  1336. height:51px;
  1337. font-family:'微软雅黑';
  1338. font-weight:400;
  1339. font-style:normal;
  1340. font-size:16px;
  1341. color:#666666;
  1342. }
  1343. #u173_text {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:2px;
  1347. top:15px;
  1348. width:298px;
  1349. word-wrap:break-word;
  1350. }
  1351. #u174_img {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:314px;
  1357. height:51px;
  1358. }
  1359. #u174 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:708px;
  1363. top:48px;
  1364. width:314px;
  1365. height:51px;
  1366. font-family:'微软雅黑';
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:16px;
  1370. color:#666666;
  1371. }
  1372. #u174_text {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:2px;
  1376. top:15px;
  1377. width:310px;
  1378. word-wrap:break-word;
  1379. }
  1380. #u175_img {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:564px;
  1386. height:51px;
  1387. }
  1388. #u175 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:1022px;
  1392. top:48px;
  1393. width:564px;
  1394. height:51px;
  1395. font-family:'微软雅黑';
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:16px;
  1399. color:#666666;
  1400. }
  1401. #u175_text {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:2px;
  1405. top:15px;
  1406. width:560px;
  1407. word-wrap:break-word;
  1408. }
  1409. #u176_img {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:0px;
  1413. top:0px;
  1414. width:120px;
  1415. height:49px;
  1416. }
  1417. #u176 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:0px;
  1421. top:99px;
  1422. width:120px;
  1423. height:49px;
  1424. font-family:'微软雅黑';
  1425. font-weight:400;
  1426. font-style:normal;
  1427. font-size:16px;
  1428. color:#666666;
  1429. }
  1430. #u176_text {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:0px;
  1436. visibility:hidden;
  1437. word-wrap:break-word;
  1438. }
  1439. #u177_img {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:286px;
  1445. height:49px;
  1446. }
  1447. #u177 {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:120px;
  1451. top:99px;
  1452. width:286px;
  1453. height:49px;
  1454. font-family:'微软雅黑';
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:16px;
  1458. color:#666666;
  1459. }
  1460. #u177_text {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:2px;
  1464. top:14px;
  1465. width:282px;
  1466. word-wrap:break-word;
  1467. }
  1468. #u178_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:302px;
  1474. height:49px;
  1475. }
  1476. #u178 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:406px;
  1480. top:99px;
  1481. width:302px;
  1482. height:49px;
  1483. font-family:'微软雅黑';
  1484. font-weight:400;
  1485. font-style:normal;
  1486. font-size:16px;
  1487. color:#666666;
  1488. }
  1489. #u178_text {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:2px;
  1493. top:14px;
  1494. width:298px;
  1495. word-wrap:break-word;
  1496. }
  1497. #u179_img {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:314px;
  1503. height:49px;
  1504. }
  1505. #u179 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:708px;
  1509. top:99px;
  1510. width:314px;
  1511. height:49px;
  1512. font-family:'微软雅黑';
  1513. font-weight:400;
  1514. font-style:normal;
  1515. font-size:16px;
  1516. color:#666666;
  1517. }
  1518. #u179_text {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:2px;
  1522. top:14px;
  1523. width:310px;
  1524. word-wrap:break-word;
  1525. }
  1526. #u180_img {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:564px;
  1532. height:49px;
  1533. }
  1534. #u180 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:1022px;
  1538. top:99px;
  1539. width:564px;
  1540. height:49px;
  1541. font-family:'微软雅黑';
  1542. font-weight:400;
  1543. font-style:normal;
  1544. font-size:16px;
  1545. color:#666666;
  1546. }
  1547. #u180_text {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:2px;
  1551. top:14px;
  1552. width:560px;
  1553. word-wrap:break-word;
  1554. }
  1555. #u181_img {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:120px;
  1561. height:50px;
  1562. }
  1563. #u181 {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:0px;
  1567. top:148px;
  1568. width:120px;
  1569. height:50px;
  1570. font-family:'微软雅黑';
  1571. font-weight:400;
  1572. font-style:normal;
  1573. font-size:16px;
  1574. color:#666666;
  1575. }
  1576. #u181_text {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:0px;
  1582. visibility:hidden;
  1583. word-wrap:break-word;
  1584. }
  1585. #u182_img {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:286px;
  1591. height:50px;
  1592. }
  1593. #u182 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:120px;
  1597. top:148px;
  1598. width:286px;
  1599. height:50px;
  1600. font-family:'微软雅黑';
  1601. font-weight:400;
  1602. font-style:normal;
  1603. font-size:16px;
  1604. color:#666666;
  1605. }
  1606. #u182_text {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:2px;
  1610. top:14px;
  1611. width:282px;
  1612. word-wrap:break-word;
  1613. }
  1614. #u183_img {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:302px;
  1620. height:50px;
  1621. }
  1622. #u183 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:406px;
  1626. top:148px;
  1627. width:302px;
  1628. height:50px;
  1629. font-family:'微软雅黑';
  1630. font-weight:400;
  1631. font-style:normal;
  1632. font-size:16px;
  1633. color:#666666;
  1634. }
  1635. #u183_text {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:2px;
  1639. top:14px;
  1640. width:298px;
  1641. word-wrap:break-word;
  1642. }
  1643. #u184_img {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:314px;
  1649. height:50px;
  1650. }
  1651. #u184 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:708px;
  1655. top:148px;
  1656. width:314px;
  1657. height:50px;
  1658. font-family:'微软雅黑';
  1659. font-weight:400;
  1660. font-style:normal;
  1661. font-size:16px;
  1662. color:#666666;
  1663. }
  1664. #u184_text {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:2px;
  1668. top:14px;
  1669. width:310px;
  1670. word-wrap:break-word;
  1671. }
  1672. #u185_img {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:564px;
  1678. height:50px;
  1679. }
  1680. #u185 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:1022px;
  1684. top:148px;
  1685. width:564px;
  1686. height:50px;
  1687. font-family:'微软雅黑';
  1688. font-weight:400;
  1689. font-style:normal;
  1690. font-size:16px;
  1691. color:#666666;
  1692. }
  1693. #u185_text {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:2px;
  1697. top:14px;
  1698. width:560px;
  1699. word-wrap:break-word;
  1700. }
  1701. #u186_img {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:120px;
  1707. height:51px;
  1708. }
  1709. #u186 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:198px;
  1714. width:120px;
  1715. height:51px;
  1716. font-family:'微软雅黑';
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:16px;
  1720. color:#666666;
  1721. }
  1722. #u186_text {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:0px;
  1728. visibility:hidden;
  1729. word-wrap:break-word;
  1730. }
  1731. #u187_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:286px;
  1737. height:51px;
  1738. }
  1739. #u187 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:120px;
  1743. top:198px;
  1744. width:286px;
  1745. height:51px;
  1746. font-family:'微软雅黑';
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:16px;
  1750. color:#666666;
  1751. }
  1752. #u187_text {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:0px;
  1758. visibility:hidden;
  1759. word-wrap:break-word;
  1760. }
  1761. #u188_img {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:302px;
  1767. height:51px;
  1768. }
  1769. #u188 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:406px;
  1773. top:198px;
  1774. width:302px;
  1775. height:51px;
  1776. font-family:'微软雅黑';
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:16px;
  1780. color:#666666;
  1781. }
  1782. #u188_text {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:0px;
  1788. visibility:hidden;
  1789. word-wrap:break-word;
  1790. }
  1791. #u189_img {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:314px;
  1797. height:51px;
  1798. }
  1799. #u189 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:708px;
  1803. top:198px;
  1804. width:314px;
  1805. height:51px;
  1806. font-family:'微软雅黑';
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:16px;
  1810. color:#666666;
  1811. }
  1812. #u189_text {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:0px;
  1818. visibility:hidden;
  1819. word-wrap:break-word;
  1820. }
  1821. #u190_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:564px;
  1827. height:51px;
  1828. }
  1829. #u190 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:1022px;
  1833. top:198px;
  1834. width:564px;
  1835. height:51px;
  1836. font-family:'微软雅黑';
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:16px;
  1840. color:#666666;
  1841. }
  1842. #u190_text {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:0px;
  1848. visibility:hidden;
  1849. word-wrap:break-word;
  1850. }
  1851. #u191_img {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:0px;
  1855. top:0px;
  1856. width:120px;
  1857. height:47px;
  1858. }
  1859. #u191 {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:249px;
  1864. width:120px;
  1865. height:47px;
  1866. font-family:'微软雅黑';
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:16px;
  1870. color:#666666;
  1871. }
  1872. #u191_text {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:0px;
  1878. visibility:hidden;
  1879. word-wrap:break-word;
  1880. }
  1881. #u192_img {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:286px;
  1887. height:47px;
  1888. }
  1889. #u192 {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:120px;
  1893. top:249px;
  1894. width:286px;
  1895. height:47px;
  1896. font-family:'微软雅黑';
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:16px;
  1900. color:#666666;
  1901. }
  1902. #u192_text {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:0px;
  1908. visibility:hidden;
  1909. word-wrap:break-word;
  1910. }
  1911. #u193_img {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:302px;
  1917. height:47px;
  1918. }
  1919. #u193 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:406px;
  1923. top:249px;
  1924. width:302px;
  1925. height:47px;
  1926. font-family:'微软雅黑';
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:16px;
  1930. color:#666666;
  1931. }
  1932. #u193_text {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:0px;
  1938. visibility:hidden;
  1939. word-wrap:break-word;
  1940. }
  1941. #u194_img {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:314px;
  1947. height:47px;
  1948. }
  1949. #u194 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:708px;
  1953. top:249px;
  1954. width:314px;
  1955. height:47px;
  1956. font-family:'微软雅黑';
  1957. font-weight:400;
  1958. font-style:normal;
  1959. font-size:16px;
  1960. color:#666666;
  1961. }
  1962. #u194_text {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:0px;
  1968. visibility:hidden;
  1969. word-wrap:break-word;
  1970. }
  1971. #u195_img {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:564px;
  1977. height:47px;
  1978. }
  1979. #u195 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:1022px;
  1983. top:249px;
  1984. width:564px;
  1985. height:47px;
  1986. font-family:'微软雅黑';
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:16px;
  1990. color:#666666;
  1991. }
  1992. #u195_text {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:0px;
  1998. visibility:hidden;
  1999. word-wrap:break-word;
  2000. }
  2001. #u196_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:81px;
  2007. height:27px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 0);
  2010. border:none;
  2011. border-radius:0px;
  2012. -moz-box-shadow:none;
  2013. -webkit-box-shadow:none;
  2014. box-shadow:none;
  2015. font-family:'微软雅黑';
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:20px;
  2019. }
  2020. #u196 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:327px;
  2024. top:214px;
  2025. width:81px;
  2026. height:27px;
  2027. font-family:'微软雅黑';
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:20px;
  2031. }
  2032. #u196_text {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:81px;
  2038. white-space:nowrap;
  2039. }
  2040. #u197 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:417px;
  2044. top:212px;
  2045. width:286px;
  2046. height:33px;
  2047. }
  2048. #u197_input {
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:286px;
  2053. height:33px;
  2054. font-family:'Arial Normal', 'Arial';
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:13px;
  2058. text-decoration:none;
  2059. color:#000000;
  2060. text-align:left;
  2061. }
  2062. #u198_div {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:117px;
  2068. height:40px;
  2069. background:inherit;
  2070. background-color:rgba(22, 155, 213, 1);
  2071. border:none;
  2072. border-radius:5px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'微软雅黑';
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:18px;
  2080. }
  2081. #u198 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:1378px;
  2085. top:206px;
  2086. width:117px;
  2087. height:40px;
  2088. font-family:'微软雅黑';
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:18px;
  2092. }
  2093. #u198_text {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:2px;
  2097. top:8px;
  2098. width:113px;
  2099. word-wrap:break-word;
  2100. }
  2101. #u199_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:117px;
  2107. height:40px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 1);
  2110. box-sizing:border-box;
  2111. border-width:1px;
  2112. border-style:solid;
  2113. border-color:rgba(121, 121, 121, 1);
  2114. border-radius:5px;
  2115. -moz-box-shadow:none;
  2116. -webkit-box-shadow:none;
  2117. box-shadow:none;
  2118. font-family:'微软雅黑';
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:18px;
  2122. }
  2123. #u199 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:1522px;
  2127. top:206px;
  2128. width:117px;
  2129. height:40px;
  2130. font-family:'微软雅黑';
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:18px;
  2134. }
  2135. #u199_text {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:2px;
  2139. top:8px;
  2140. width:113px;
  2141. word-wrap:break-word;
  2142. }
  2143. #u200 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:307px;
  2147. top:511px;
  2148. width:21px;
  2149. height:16px;
  2150. font-size:20px;
  2151. }
  2152. #u200_text {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:16px;
  2156. top:0px;
  2157. width:3px;
  2158. visibility:hidden;
  2159. word-wrap:break-word;
  2160. }
  2161. #u200_input {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:-3px;
  2165. top:-2px;
  2166. }
  2167. #u201 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:307px;
  2171. top:558px;
  2172. width:21px;
  2173. height:16px;
  2174. font-size:20px;
  2175. }
  2176. #u201_text {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:16px;
  2180. top:0px;
  2181. width:3px;
  2182. visibility:hidden;
  2183. word-wrap:break-word;
  2184. }
  2185. #u201_input {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:-3px;
  2189. top:-2px;
  2190. }
  2191. #u202 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:307px;
  2195. top:607px;
  2196. width:21px;
  2197. height:16px;
  2198. font-size:20px;
  2199. }
  2200. #u202_text {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:16px;
  2204. top:0px;
  2205. width:3px;
  2206. visibility:hidden;
  2207. word-wrap:break-word;
  2208. }
  2209. #u202_input {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:-3px;
  2213. top:-2px;
  2214. }
  2215. #u203 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:307px;
  2219. top:658px;
  2220. width:21px;
  2221. height:16px;
  2222. font-size:20px;
  2223. }
  2224. #u203_text {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:16px;
  2228. top:0px;
  2229. width:3px;
  2230. visibility:hidden;
  2231. word-wrap:break-word;
  2232. }
  2233. #u203_input {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:-3px;
  2237. top:-2px;
  2238. }
  2239. #u204_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:568px;
  2245. height:38px;
  2246. }
  2247. #u204 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:1306px;
  2251. top:1041px;
  2252. width:568px;
  2253. height:38px;
  2254. }
  2255. #u204_text {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:0px;
  2261. visibility:hidden;
  2262. word-wrap:break-word;
  2263. }
  2264. #u205_div {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:101px;
  2270. height:40px;
  2271. background:inherit;
  2272. background-color:rgba(255, 255, 255, 1);
  2273. box-sizing:border-box;
  2274. border-width:1px;
  2275. border-style:solid;
  2276. border-color:rgba(121, 121, 121, 1);
  2277. border-radius:5px;
  2278. -moz-box-shadow:none;
  2279. -webkit-box-shadow:none;
  2280. box-shadow:none;
  2281. font-family:'微软雅黑';
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:18px;
  2285. }
  2286. #u205 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:307px;
  2290. top:417px;
  2291. width:101px;
  2292. height:40px;
  2293. font-family:'微软雅黑';
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:18px;
  2297. }
  2298. #u205_text {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:2px;
  2302. top:8px;
  2303. width:97px;
  2304. word-wrap:break-word;
  2305. }
  2306. #u206_div {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:101px;
  2312. height:40px;
  2313. background:inherit;
  2314. background-color:rgba(255, 255, 255, 1);
  2315. box-sizing:border-box;
  2316. border-width:1px;
  2317. border-style:solid;
  2318. border-color:rgba(121, 121, 121, 1);
  2319. border-radius:5px;
  2320. -moz-box-shadow:none;
  2321. -webkit-box-shadow:none;
  2322. box-shadow:none;
  2323. font-family:'微软雅黑';
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:18px;
  2327. }
  2328. #u206 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:428px;
  2332. top:417px;
  2333. width:101px;
  2334. height:40px;
  2335. font-family:'微软雅黑';
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:18px;
  2339. }
  2340. #u206_text {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:2px;
  2344. top:8px;
  2345. width:97px;
  2346. word-wrap:break-word;
  2347. }
  2348. #u207 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:622px;
  2352. top:417px;
  2353. width:917px;
  2354. height:519px;
  2355. overflow:hidden;
  2356. visibility:hidden;
  2357. }
  2358. #u207_state0 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:917px;
  2364. height:519px;
  2365. -ms-overflow-x:hidden;
  2366. overflow-x:hidden;
  2367. -ms-overflow-y:hidden;
  2368. overflow-y:hidden;
  2369. background-image:none;
  2370. }
  2371. #u207_state0_content {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:1px;
  2377. height:1px;
  2378. }
  2379. #u208_div {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:912px;
  2385. height:512px;
  2386. background:inherit;
  2387. background-color:rgba(255, 255, 255, 1);
  2388. box-sizing:border-box;
  2389. border-width:1px;
  2390. border-style:solid;
  2391. border-color:rgba(121, 121, 121, 1);
  2392. border-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. }
  2397. #u208 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:3px;
  2401. top:3px;
  2402. width:912px;
  2403. height:512px;
  2404. }
  2405. #u208_text {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:0px;
  2411. visibility:hidden;
  2412. word-wrap:break-word;
  2413. }
  2414. #u209_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:906px;
  2420. height:34px;
  2421. background:inherit;
  2422. background-color:rgba(242, 242, 242, 1);
  2423. border:none;
  2424. border-radius:0px;
  2425. -moz-box-shadow:none;
  2426. -webkit-box-shadow:none;
  2427. box-shadow:none;
  2428. }
  2429. #u209 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:4px;
  2433. top:5px;
  2434. width:906px;
  2435. height:34px;
  2436. }
  2437. #u209_text {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:0px;
  2443. visibility:hidden;
  2444. word-wrap:break-word;
  2445. }
  2446. #u210_div {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:65px;
  2452. height:21px;
  2453. background:inherit;
  2454. background-color:rgba(255, 255, 255, 0);
  2455. border:none;
  2456. border-radius:0px;
  2457. -moz-box-shadow:none;
  2458. -webkit-box-shadow:none;
  2459. box-shadow:none;
  2460. font-family:'微软雅黑';
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:16px;
  2464. }
  2465. #u210 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:16px;
  2469. top:9px;
  2470. width:65px;
  2471. height:21px;
  2472. font-family:'微软雅黑';
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:16px;
  2476. }
  2477. #u210_text {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:65px;
  2483. white-space:nowrap;
  2484. }
  2485. #u211_img {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:26px;
  2491. height:27px;
  2492. }
  2493. #u211 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:884px;
  2497. top:7px;
  2498. width:26px;
  2499. height:27px;
  2500. }
  2501. #u211_text {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:0px;
  2507. visibility:hidden;
  2508. word-wrap:break-word;
  2509. }
  2510. #u212_div {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:65px;
  2516. height:21px;
  2517. background:inherit;
  2518. background-color:rgba(255, 255, 255, 0);
  2519. border:none;
  2520. border-radius:0px;
  2521. -moz-box-shadow:none;
  2522. -webkit-box-shadow:none;
  2523. box-shadow:none;
  2524. font-family:'微软雅黑';
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:16px;
  2528. color:#666666;
  2529. text-align:center;
  2530. }
  2531. #u212 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:276px;
  2535. top:182px;
  2536. width:65px;
  2537. height:21px;
  2538. font-family:'微软雅黑';
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:16px;
  2542. color:#666666;
  2543. text-align:center;
  2544. }
  2545. #u212_text {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:65px;
  2551. white-space:nowrap;
  2552. }
  2553. #u213_div {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:65px;
  2559. height:21px;
  2560. background:inherit;
  2561. background-color:rgba(255, 255, 255, 0);
  2562. border:none;
  2563. border-radius:0px;
  2564. -moz-box-shadow:none;
  2565. -webkit-box-shadow:none;
  2566. box-shadow:none;
  2567. font-family:'微软雅黑';
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:16px;
  2571. color:#666666;
  2572. text-align:center;
  2573. }
  2574. #u213 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:275px;
  2578. top:232px;
  2579. width:65px;
  2580. height:21px;
  2581. font-family:'微软雅黑';
  2582. font-weight:400;
  2583. font-style:normal;
  2584. font-size:16px;
  2585. color:#666666;
  2586. text-align:center;
  2587. }
  2588. #u213_text {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:65px;
  2594. white-space:nowrap;
  2595. }
  2596. #u214 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:353px;
  2600. top:181px;
  2601. width:300px;
  2602. height:25px;
  2603. }
  2604. #u214_input {
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:300px;
  2609. height:25px;
  2610. font-family:'Arial Normal', 'Arial';
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:13px;
  2614. text-decoration:none;
  2615. color:#000000;
  2616. text-align:left;
  2617. }
  2618. #u215 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:353px;
  2622. top:232px;
  2623. width:300px;
  2624. height:25px;
  2625. }
  2626. #u215_input {
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:300px;
  2631. height:25px;
  2632. font-family:'Arial Normal', 'Arial';
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:13px;
  2636. text-decoration:none;
  2637. color:#000000;
  2638. text-align:left;
  2639. }
  2640. #u216_div {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:94px;
  2646. height:40px;
  2647. background:inherit;
  2648. background-color:rgba(25, 158, 216, 1);
  2649. box-sizing:border-box;
  2650. border-width:1px;
  2651. border-style:solid;
  2652. border-color:rgba(121, 121, 121, 1);
  2653. border-radius:5px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'微软雅黑';
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:16px;
  2661. }
  2662. #u216 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:350px;
  2666. top:447px;
  2667. width:94px;
  2668. height:40px;
  2669. font-family:'微软雅黑';
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:16px;
  2673. }
  2674. #u216_text {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:2px;
  2678. top:10px;
  2679. width:90px;
  2680. word-wrap:break-word;
  2681. }
  2682. #u217_div {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:94px;
  2688. height:40px;
  2689. background:inherit;
  2690. background-color:rgba(255, 255, 255, 1);
  2691. box-sizing:border-box;
  2692. border-width:1px;
  2693. border-style:solid;
  2694. border-color:rgba(121, 121, 121, 1);
  2695. border-radius:5px;
  2696. -moz-box-shadow:none;
  2697. -webkit-box-shadow:none;
  2698. box-shadow:none;
  2699. }
  2700. #u217 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:471px;
  2704. top:447px;
  2705. width:94px;
  2706. height:40px;
  2707. }
  2708. #u217_text {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:2px;
  2712. top:12px;
  2713. width:90px;
  2714. word-wrap:break-word;
  2715. }
  2716. #u218 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:345px;
  2720. top:440px;
  2721. width:222px;
  2722. height:51px;
  2723. overflow:hidden;
  2724. background-image:url('../../resources/images/transparent.gif');
  2725. }
  2726. #u207_state1 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:917px;
  2732. height:519px;
  2733. visibility:hidden;
  2734. -ms-overflow-x:hidden;
  2735. overflow-x:hidden;
  2736. -ms-overflow-y:hidden;
  2737. overflow-y:hidden;
  2738. background-image:none;
  2739. }
  2740. #u207_state1_content {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:1px;
  2746. height:1px;
  2747. }
  2748. #u219_div {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:912px;
  2754. height:512px;
  2755. background:inherit;
  2756. background-color:rgba(255, 255, 255, 1);
  2757. box-sizing:border-box;
  2758. border-width:1px;
  2759. border-style:solid;
  2760. border-color:rgba(121, 121, 121, 1);
  2761. border-radius:0px;
  2762. -moz-box-shadow:none;
  2763. -webkit-box-shadow:none;
  2764. box-shadow:none;
  2765. }
  2766. #u219 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:3px;
  2770. top:3px;
  2771. width:912px;
  2772. height:512px;
  2773. }
  2774. #u219_text {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:0px;
  2780. visibility:hidden;
  2781. word-wrap:break-word;
  2782. }
  2783. #u220_div {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:906px;
  2789. height:34px;
  2790. background:inherit;
  2791. background-color:rgba(242, 242, 242, 1);
  2792. border:none;
  2793. border-radius:0px;
  2794. -moz-box-shadow:none;
  2795. -webkit-box-shadow:none;
  2796. box-shadow:none;
  2797. }
  2798. #u220 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:4px;
  2802. top:5px;
  2803. width:906px;
  2804. height:34px;
  2805. }
  2806. #u220_text {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:0px;
  2812. visibility:hidden;
  2813. word-wrap:break-word;
  2814. }
  2815. #u221_div {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:33px;
  2821. height:21px;
  2822. background:inherit;
  2823. background-color:rgba(255, 255, 255, 0);
  2824. border:none;
  2825. border-radius:0px;
  2826. -moz-box-shadow:none;
  2827. -webkit-box-shadow:none;
  2828. box-shadow:none;
  2829. font-family:'微软雅黑';
  2830. font-weight:400;
  2831. font-style:normal;
  2832. font-size:16px;
  2833. }
  2834. #u221 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:16px;
  2838. top:9px;
  2839. width:33px;
  2840. height:21px;
  2841. font-family:'微软雅黑';
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:16px;
  2845. }
  2846. #u221_text {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:0px;
  2851. width:33px;
  2852. white-space:nowrap;
  2853. }
  2854. #u222_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:26px;
  2860. height:27px;
  2861. }
  2862. #u222 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:884px;
  2866. top:7px;
  2867. width:26px;
  2868. height:27px;
  2869. }
  2870. #u222_text {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:0px;
  2876. visibility:hidden;
  2877. word-wrap:break-word;
  2878. }
  2879. #u223_div {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:209px;
  2885. height:21px;
  2886. background:inherit;
  2887. background-color:rgba(255, 255, 255, 0);
  2888. border:none;
  2889. border-radius:0px;
  2890. -moz-box-shadow:none;
  2891. -webkit-box-shadow:none;
  2892. box-shadow:none;
  2893. font-family:'微软雅黑';
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:16px;
  2897. color:#666666;
  2898. text-align:center;
  2899. }
  2900. #u223 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:355px;
  2904. top:200px;
  2905. width:209px;
  2906. height:21px;
  2907. font-family:'微软雅黑';
  2908. font-weight:400;
  2909. font-style:normal;
  2910. font-size:16px;
  2911. color:#666666;
  2912. text-align:center;
  2913. }
  2914. #u223_text {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:209px;
  2920. white-space:nowrap;
  2921. }
  2922. #u224_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:94px;
  2928. height:40px;
  2929. background:inherit;
  2930. background-color:rgba(25, 158, 216, 1);
  2931. box-sizing:border-box;
  2932. border-width:1px;
  2933. border-style:solid;
  2934. border-color:rgba(121, 121, 121, 1);
  2935. border-radius:5px;
  2936. -moz-box-shadow:none;
  2937. -webkit-box-shadow:none;
  2938. box-shadow:none;
  2939. font-family:'微软雅黑';
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:16px;
  2943. }
  2944. #u224 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:349px;
  2948. top:352px;
  2949. width:94px;
  2950. height:40px;
  2951. font-family:'微软雅黑';
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:16px;
  2955. }
  2956. #u224_text {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:2px;
  2960. top:10px;
  2961. width:90px;
  2962. word-wrap:break-word;
  2963. }
  2964. #u225_div {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:94px;
  2970. height:40px;
  2971. background:inherit;
  2972. background-color:rgba(255, 255, 255, 1);
  2973. box-sizing:border-box;
  2974. border-width:1px;
  2975. border-style:solid;
  2976. border-color:rgba(121, 121, 121, 1);
  2977. border-radius:5px;
  2978. -moz-box-shadow:none;
  2979. -webkit-box-shadow:none;
  2980. box-shadow:none;
  2981. }
  2982. #u225 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:470px;
  2986. top:352px;
  2987. width:94px;
  2988. height:40px;
  2989. }
  2990. #u225_text {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:2px;
  2994. top:12px;
  2995. width:90px;
  2996. word-wrap:break-word;
  2997. }
  2998. #u226 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:346px;
  3002. top:347px;
  3003. width:222px;
  3004. height:51px;
  3005. overflow:hidden;
  3006. background-image:url('../../resources/images/transparent.gif');
  3007. }
  3008. #u227_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:220px;
  3014. height:283px;
  3015. }
  3016. #u227 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:18px;
  3020. top:238px;
  3021. width:220px;
  3022. height:283px;
  3023. }
  3024. #u227_text {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:0px;
  3030. visibility:hidden;
  3031. word-wrap:break-word;
  3032. }
  3033. #u228_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:220px;
  3039. height:428px;
  3040. }
  3041. #u228 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:18px;
  3045. top:152px;
  3046. width:220px;
  3047. height:428px;
  3048. }
  3049. #u228_text {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:0px;
  3055. visibility:hidden;
  3056. word-wrap:break-word;
  3057. }
  3058. #u229_div {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:29px;
  3064. height:20px;
  3065. background:inherit;
  3066. background-color:rgba(255, 255, 255, 0);
  3067. border:none;
  3068. border-radius:0px;
  3069. -moz-box-shadow:none;
  3070. -webkit-box-shadow:none;
  3071. box-shadow:none;
  3072. font-family:'微软雅黑';
  3073. font-weight:400;
  3074. font-style:normal;
  3075. color:#999999;
  3076. }
  3077. #u229 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:87px;
  3081. top:162px;
  3082. width:29px;
  3083. height:20px;
  3084. font-family:'微软雅黑';
  3085. font-weight:400;
  3086. font-style:normal;
  3087. color:#999999;
  3088. }
  3089. #u229_text {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:29px;
  3095. white-space:nowrap;
  3096. }
  3097. #u230_div {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:57px;
  3103. height:20px;
  3104. background:inherit;
  3105. background-color:rgba(255, 255, 255, 0);
  3106. border:none;
  3107. border-radius:0px;
  3108. -moz-box-shadow:none;
  3109. -webkit-box-shadow:none;
  3110. box-shadow:none;
  3111. font-family:'微软雅黑';
  3112. font-weight:400;
  3113. font-style:normal;
  3114. color:#999999;
  3115. }
  3116. #u230 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:87px;
  3120. top:260px;
  3121. width:57px;
  3122. height:20px;
  3123. font-family:'微软雅黑';
  3124. font-weight:400;
  3125. font-style:normal;
  3126. color:#999999;
  3127. }
  3128. #u230_text {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:57px;
  3134. white-space:nowrap;
  3135. }
  3136. #u231_div {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:57px;
  3142. height:20px;
  3143. background:inherit;
  3144. background-color:rgba(255, 255, 255, 0);
  3145. border:none;
  3146. border-radius:0px;
  3147. -moz-box-shadow:none;
  3148. -webkit-box-shadow:none;
  3149. box-shadow:none;
  3150. font-family:'微软雅黑';
  3151. font-weight:400;
  3152. font-style:normal;
  3153. color:#999999;
  3154. }
  3155. #u231 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:86px;
  3159. top:364px;
  3160. width:57px;
  3161. height:20px;
  3162. font-family:'微软雅黑';
  3163. font-weight:400;
  3164. font-style:normal;
  3165. color:#999999;
  3166. }
  3167. #u231_text {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:57px;
  3173. white-space:nowrap;
  3174. }
  3175. #u232_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:57px;
  3181. height:20px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 0);
  3184. border:none;
  3185. border-radius:0px;
  3186. -moz-box-shadow:none;
  3187. -webkit-box-shadow:none;
  3188. box-shadow:none;
  3189. font-family:'微软雅黑';
  3190. font-weight:400;
  3191. font-style:normal;
  3192. color:#999999;
  3193. }
  3194. #u232 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:87px;
  3198. top:227px;
  3199. width:57px;
  3200. height:20px;
  3201. font-family:'微软雅黑';
  3202. font-weight:400;
  3203. font-style:normal;
  3204. color:#999999;
  3205. }
  3206. #u232_text {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:57px;
  3212. white-space:nowrap;
  3213. }
  3214. #u233_div {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:57px;
  3220. height:20px;
  3221. background:inherit;
  3222. background-color:rgba(255, 255, 255, 0);
  3223. border:none;
  3224. border-radius:0px;
  3225. -moz-box-shadow:none;
  3226. -webkit-box-shadow:none;
  3227. box-shadow:none;
  3228. font-family:'微软雅黑';
  3229. font-weight:400;
  3230. font-style:normal;
  3231. color:#999999;
  3232. }
  3233. #u233 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:87px;
  3237. top:294px;
  3238. width:57px;
  3239. height:20px;
  3240. font-family:'微软雅黑';
  3241. font-weight:400;
  3242. font-style:normal;
  3243. color:#999999;
  3244. }
  3245. #u233_text {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:57px;
  3251. white-space:nowrap;
  3252. }
  3253. #u234_div {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:57px;
  3259. height:20px;
  3260. background:inherit;
  3261. background-color:rgba(255, 255, 255, 0);
  3262. border:none;
  3263. border-radius:0px;
  3264. -moz-box-shadow:none;
  3265. -webkit-box-shadow:none;
  3266. box-shadow:none;
  3267. font-family:'微软雅黑';
  3268. font-weight:400;
  3269. font-style:normal;
  3270. color:#999999;
  3271. }
  3272. #u234 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:86px;
  3276. top:427px;
  3277. width:57px;
  3278. height:20px;
  3279. font-family:'微软雅黑';
  3280. font-weight:400;
  3281. font-style:normal;
  3282. color:#999999;
  3283. }
  3284. #u234_text {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:57px;
  3290. white-space:nowrap;
  3291. }
  3292. #u235_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:29px;
  3298. height:30px;
  3299. }
  3300. #u235 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:49px;
  3304. top:256px;
  3305. width:29px;
  3306. height:30px;
  3307. }
  3308. #u235_text {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:0px;
  3314. visibility:hidden;
  3315. word-wrap:break-word;
  3316. }
  3317. #u236_img {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:29px;
  3323. height:31px;
  3324. }
  3325. #u236 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:48px;
  3329. top:358px;
  3330. width:29px;
  3331. height:31px;
  3332. }
  3333. #u236_text {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:0px;
  3339. visibility:hidden;
  3340. word-wrap:break-word;
  3341. }
  3342. #u237_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:29px;
  3348. height:33px;
  3349. }
  3350. #u237 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:48px;
  3354. top:289px;
  3355. width:29px;
  3356. height:33px;
  3357. }
  3358. #u237_text {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:0px;
  3362. top:0px;
  3363. width:0px;
  3364. visibility:hidden;
  3365. word-wrap:break-word;
  3366. }
  3367. #u238_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:29px;
  3373. height:31px;
  3374. }
  3375. #u238 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:49px;
  3379. top:223px;
  3380. width:29px;
  3381. height:31px;
  3382. }
  3383. #u238_text {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:0px;
  3389. visibility:hidden;
  3390. word-wrap:break-word;
  3391. }
  3392. #u239_img {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:29px;
  3398. height:32px;
  3399. }
  3400. #u239 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:48px;
  3404. top:422px;
  3405. width:29px;
  3406. height:32px;
  3407. }
  3408. #u239_text {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:0px;
  3414. visibility:hidden;
  3415. word-wrap:break-word;
  3416. }
  3417. #u240_img {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:0px;
  3421. top:0px;
  3422. width:29px;
  3423. height:28px;
  3424. }
  3425. #u240 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:50px;
  3429. top:160px;
  3430. width:29px;
  3431. height:28px;
  3432. }
  3433. #u240_text {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:0px;
  3439. visibility:hidden;
  3440. word-wrap:break-word;
  3441. }
  3442. #u241 {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:18px;
  3446. top:156px;
  3447. width:220px;
  3448. height:32px;
  3449. overflow:hidden;
  3450. background-image:url('../../resources/images/transparent.gif');
  3451. }
  3452. #u242 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:18px;
  3456. top:257px;
  3457. width:220px;
  3458. height:29px;
  3459. overflow:hidden;
  3460. background-image:url('../../resources/images/transparent.gif');
  3461. }
  3462. #u243 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:18px;
  3466. top:358px;
  3467. width:220px;
  3468. height:31px;
  3469. overflow:hidden;
  3470. background-image:url('../../resources/images/transparent.gif');
  3471. }
  3472. #u244 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:18px;
  3476. top:224px;
  3477. width:220px;
  3478. height:30px;
  3479. overflow:hidden;
  3480. background-image:url('../../resources/images/transparent.gif');
  3481. }
  3482. #u245 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:18px;
  3486. top:290px;
  3487. width:220px;
  3488. height:32px;
  3489. overflow:hidden;
  3490. background-image:url('../../resources/images/transparent.gif');
  3491. }
  3492. #u246_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:57px;
  3498. height:20px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 0);
  3501. border:none;
  3502. border-radius:0px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. font-family:'微软雅黑';
  3507. font-weight:400;
  3508. font-style:normal;
  3509. color:#999999;
  3510. }
  3511. #u246 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:87px;
  3515. top:328px;
  3516. width:57px;
  3517. height:20px;
  3518. font-family:'微软雅黑';
  3519. font-weight:400;
  3520. font-style:normal;
  3521. color:#999999;
  3522. }
  3523. #u246_text {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:57px;
  3529. white-space:nowrap;
  3530. }
  3531. #u247_img {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:23px;
  3537. height:20px;
  3538. }
  3539. #u247 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:53px;
  3543. top:328px;
  3544. width:23px;
  3545. height:20px;
  3546. }
  3547. #u247_text {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:0px;
  3553. visibility:hidden;
  3554. word-wrap:break-word;
  3555. }
  3556. #u248 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:18px;
  3560. top:324px;
  3561. width:220px;
  3562. height:30px;
  3563. overflow:hidden;
  3564. background-image:url('../../resources/images/transparent.gif');
  3565. }
  3566. #u249_div {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:57px;
  3572. height:20px;
  3573. background:inherit;
  3574. background-color:rgba(255, 255, 255, 0);
  3575. border:none;
  3576. border-radius:0px;
  3577. -moz-box-shadow:none;
  3578. -webkit-box-shadow:none;
  3579. box-shadow:none;
  3580. font-family:'微软雅黑';
  3581. font-weight:400;
  3582. font-style:normal;
  3583. color:#999999;
  3584. }
  3585. #u249 {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:118px;
  3589. top:457px;
  3590. width:57px;
  3591. height:20px;
  3592. font-family:'微软雅黑';
  3593. font-weight:400;
  3594. font-style:normal;
  3595. color:#999999;
  3596. }
  3597. #u249_text {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:57px;
  3603. white-space:nowrap;
  3604. }
  3605. #u250_div {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:57px;
  3611. height:20px;
  3612. background:inherit;
  3613. background-color:rgba(255, 255, 255, 0);
  3614. border:none;
  3615. border-radius:0px;
  3616. -moz-box-shadow:none;
  3617. -webkit-box-shadow:none;
  3618. box-shadow:none;
  3619. font-family:'微软雅黑';
  3620. font-weight:400;
  3621. font-style:normal;
  3622. color:#999999;
  3623. }
  3624. #u250 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:118px;
  3628. top:489px;
  3629. width:57px;
  3630. height:20px;
  3631. font-family:'微软雅黑';
  3632. font-weight:400;
  3633. font-style:normal;
  3634. color:#999999;
  3635. }
  3636. #u250_text {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:57px;
  3642. white-space:nowrap;
  3643. }
  3644. #u251_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:17px;
  3650. height:17px;
  3651. }
  3652. #u251 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:86px;
  3656. top:462px;
  3657. width:17px;
  3658. height:17px;
  3659. }
  3660. #u251_text {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:0px;
  3666. visibility:hidden;
  3667. word-wrap:break-word;
  3668. }
  3669. #u252_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:17px;
  3675. height:17px;
  3676. }
  3677. #u252 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:86px;
  3681. top:492px;
  3682. width:17px;
  3683. height:17px;
  3684. }
  3685. #u252_text {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:0px;
  3691. visibility:hidden;
  3692. word-wrap:break-word;
  3693. }
  3694. #u253 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:18px;
  3698. top:455px;
  3699. width:220px;
  3700. height:28px;
  3701. overflow:hidden;
  3702. background-image:url('../../resources/images/transparent.gif');
  3703. }
  3704. #u254 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:18px;
  3708. top:488px;
  3709. width:220px;
  3710. height:27px;
  3711. overflow:hidden;
  3712. background-image:url('../../resources/images/transparent.gif');
  3713. }
  3714. #u255_div {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:0px;
  3719. width:57px;
  3720. height:19px;
  3721. background:inherit;
  3722. background-color:rgba(255, 255, 255, 0);
  3723. border:none;
  3724. border-radius:0px;
  3725. -moz-box-shadow:none;
  3726. -webkit-box-shadow:none;
  3727. box-shadow:none;
  3728. font-family:'微软雅黑';
  3729. font-weight:400;
  3730. font-style:normal;
  3731. color:#999999;
  3732. }
  3733. #u255 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:86px;
  3737. top:394px;
  3738. width:57px;
  3739. height:19px;
  3740. font-family:'微软雅黑';
  3741. font-weight:400;
  3742. font-style:normal;
  3743. color:#999999;
  3744. }
  3745. #u255_text {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:57px;
  3751. white-space:nowrap;
  3752. }
  3753. #u256_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:15px;
  3759. height:15px;
  3760. }
  3761. #u256 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:56px;
  3765. top:398px;
  3766. width:15px;
  3767. height:15px;
  3768. }
  3769. #u256_text {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:0px;
  3775. visibility:hidden;
  3776. word-wrap:break-word;
  3777. }
  3778. #u257 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:18px;
  3782. top:392px;
  3783. width:220px;
  3784. height:27px;
  3785. overflow:hidden;
  3786. background-image:url('../../resources/images/transparent.gif');
  3787. }
  3788. #u258_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:18px;
  3794. height:18px;
  3795. }
  3796. #u258 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:54px;
  3800. top:195px;
  3801. width:18px;
  3802. height:18px;
  3803. }
  3804. #u258_text {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:0px;
  3810. visibility:hidden;
  3811. word-wrap:break-word;
  3812. }
  3813. #u259_div {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:0px;
  3818. width:57px;
  3819. height:20px;
  3820. background:inherit;
  3821. background-color:rgba(255, 255, 255, 0);
  3822. border:none;
  3823. border-radius:0px;
  3824. -moz-box-shadow:none;
  3825. -webkit-box-shadow:none;
  3826. box-shadow:none;
  3827. font-family:'微软雅黑';
  3828. font-weight:400;
  3829. font-style:normal;
  3830. color:#999999;
  3831. }
  3832. #u259 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:87px;
  3836. top:194px;
  3837. width:57px;
  3838. height:20px;
  3839. font-family:'微软雅黑';
  3840. font-weight:400;
  3841. font-style:normal;
  3842. color:#999999;
  3843. }
  3844. #u259_text {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:57px;
  3850. white-space:nowrap;
  3851. }
  3852. #u260 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:18px;
  3856. top:190px;
  3857. width:220px;
  3858. height:30px;
  3859. overflow:hidden;
  3860. background-image:url('../../resources/images/transparent.gif');
  3861. }