styles.css 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1931px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u1362_img {
  16. border-width:0px;
  17. position:absolute;
  18. left:0px;
  19. top:0px;
  20. width:236px;
  21. height:73px;
  22. }
  23. #u1362 {
  24. border-width:0px;
  25. position:absolute;
  26. left:10px;
  27. top:10px;
  28. width:236px;
  29. height:73px;
  30. }
  31. #u1362_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. #u1363_img {
  41. border-width:0px;
  42. position:absolute;
  43. left:0px;
  44. top:0px;
  45. width:236px;
  46. height:49px;
  47. }
  48. #u1363 {
  49. border-width:0px;
  50. position:absolute;
  51. left:10px;
  52. top:83px;
  53. width:236px;
  54. height:49px;
  55. }
  56. #u1363_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. #u1364_img {
  66. border-width:0px;
  67. position:absolute;
  68. left:0px;
  69. top:0px;
  70. width:1685px;
  71. height:970px;
  72. }
  73. #u1364 {
  74. border-width:0px;
  75. position:absolute;
  76. left:246px;
  77. top:10px;
  78. width:1685px;
  79. height:970px;
  80. }
  81. #u1364_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. #u1365_img {
  91. border-width:0px;
  92. position:absolute;
  93. left:0px;
  94. top:0px;
  95. width:1000px;
  96. height:133px;
  97. }
  98. #u1365 {
  99. border-width:0px;
  100. position:absolute;
  101. left:287px;
  102. top:202px;
  103. width:1000px;
  104. height:133px;
  105. }
  106. #u1365_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. #u1366_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. #u1366 {
  135. border-width:0px;
  136. position:absolute;
  137. left:338px;
  138. top:223px;
  139. width:101px;
  140. height:27px;
  141. font-family:'微软雅黑';
  142. font-weight:400;
  143. font-style:normal;
  144. font-size:20px;
  145. }
  146. #u1366_text {
  147. border-width:0px;
  148. position:absolute;
  149. left:0px;
  150. top:0px;
  151. width:101px;
  152. white-space:nowrap;
  153. }
  154. #u1367_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. #u1367 {
  174. border-width:0px;
  175. position:absolute;
  176. left:338px;
  177. top:274px;
  178. width:101px;
  179. height:27px;
  180. font-family:'微软雅黑';
  181. font-weight:400;
  182. font-style:normal;
  183. font-size:20px;
  184. }
  185. #u1367_text {
  186. border-width:0px;
  187. position:absolute;
  188. left:0px;
  189. top:0px;
  190. width:101px;
  191. white-space:nowrap;
  192. }
  193. #u1368_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. #u1368 {
  213. border-width:0px;
  214. position:absolute;
  215. left:828px;
  216. top:274px;
  217. width:101px;
  218. height:27px;
  219. font-family:'微软雅黑';
  220. font-weight:400;
  221. font-style:normal;
  222. font-size:20px;
  223. }
  224. #u1368_text {
  225. border-width:0px;
  226. position:absolute;
  227. left:0px;
  228. top:0px;
  229. width:101px;
  230. white-space:nowrap;
  231. }
  232. #u1369_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. #u1369 {
  252. border-width:0px;
  253. position:absolute;
  254. left:338px;
  255. top:320px;
  256. width:101px;
  257. height:27px;
  258. font-family:'微软雅黑';
  259. font-weight:400;
  260. font-style:normal;
  261. font-size:20px;
  262. }
  263. #u1369_text {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:101px;
  269. white-space:nowrap;
  270. }
  271. #u1370_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. #u1370 {
  291. border-width:0px;
  292. position:absolute;
  293. left:828px;
  294. top:320px;
  295. width:101px;
  296. height:27px;
  297. font-family:'微软雅黑';
  298. font-weight:400;
  299. font-style:normal;
  300. font-size:20px;
  301. }
  302. #u1370_text {
  303. border-width:0px;
  304. position:absolute;
  305. left:0px;
  306. top:0px;
  307. width:101px;
  308. white-space:nowrap;
  309. }
  310. #u1371 {
  311. border-width:0px;
  312. position:absolute;
  313. left:448px;
  314. top:221px;
  315. width:312px;
  316. height:33px;
  317. }
  318. #u1371_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. #u1372_img {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:24px;
  338. height:25px;
  339. }
  340. #u1372 {
  341. border-width:0px;
  342. position:absolute;
  343. left:456px;
  344. top:226px;
  345. width:24px;
  346. height:25px;
  347. }
  348. #u1372_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. #u1373_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. #u1373 {
  379. border-width:0px;
  380. position:absolute;
  381. left:647px;
  382. top:224px;
  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. #u1373_text {
  393. border-width:0px;
  394. position:absolute;
  395. left:0px;
  396. top:0px;
  397. width:81px;
  398. white-space:nowrap;
  399. }
  400. #u1374_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. #u1374 {
  422. border-width:0px;
  423. position:absolute;
  424. left:608px;
  425. top:224px;
  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. #u1374_text {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:10px;
  441. white-space:nowrap;
  442. }
  443. #u1375_img {
  444. border-width:0px;
  445. position:absolute;
  446. left:0px;
  447. top:0px;
  448. width:75px;
  449. height:51px;
  450. }
  451. #u1375 {
  452. border-width:0px;
  453. position:absolute;
  454. left:1388px;
  455. top:297px;
  456. width:75px;
  457. height:51px;
  458. }
  459. #u1375_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. #u1376 {
  469. border-width:0px;
  470. position:absolute;
  471. left:449px;
  472. top:271px;
  473. width:188px;
  474. height:33px;
  475. }
  476. #u1376_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. #u1377 {
  491. border-width:0px;
  492. position:absolute;
  493. left:449px;
  494. top:314px;
  495. width:188px;
  496. height:33px;
  497. }
  498. #u1377_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. #u1378 {
  513. border-width:0px;
  514. position:absolute;
  515. left:934px;
  516. top:271px;
  517. width:188px;
  518. height:33px;
  519. }
  520. #u1378_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. #u1379_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. #u1379 {
  555. border-width:0px;
  556. position:absolute;
  557. left:464px;
  558. top:276px;
  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. #u1379_text {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:81px;
  573. white-space:nowrap;
  574. }
  575. #u1380_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. #u1380 {
  596. border-width:0px;
  597. position:absolute;
  598. left:464px;
  599. top:318px;
  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. #u1380_text {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:121px;
  614. white-space:nowrap;
  615. }
  616. #u1381_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. #u1381 {
  637. border-width:0px;
  638. position:absolute;
  639. left:953px;
  640. top:274px;
  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. #u1381_text {
  650. border-width:0px;
  651. position:absolute;
  652. left:0px;
  653. top:0px;
  654. width:81px;
  655. white-space:nowrap;
  656. }
  657. #u1382_img {
  658. border-width:0px;
  659. position:absolute;
  660. left:0px;
  661. top:0px;
  662. width:1683px;
  663. height:111px;
  664. }
  665. #u1382 {
  666. border-width:0px;
  667. position:absolute;
  668. left:248px;
  669. top:869px;
  670. width:1683px;
  671. height:111px;
  672. }
  673. #u1382_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. #u1383_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. #u1383 {
  704. border-width:0px;
  705. position:absolute;
  706. left:497px;
  707. top:224px;
  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. #u1383_text {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:81px;
  723. white-space:nowrap;
  724. }
  725. #u1384_img {
  726. border-width:0px;
  727. position:absolute;
  728. left:0px;
  729. top:0px;
  730. width:202px;
  731. height:38px;
  732. }
  733. #u1384 {
  734. border-width:0px;
  735. position:absolute;
  736. left:261px;
  737. top:88px;
  738. width:202px;
  739. height:38px;
  740. }
  741. #u1384_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. #u1385_div {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:81px;
  756. height:26px;
  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. #u1385 {
  770. border-width:0px;
  771. position:absolute;
  772. left:276px;
  773. top:94px;
  774. width:81px;
  775. height:26px;
  776. font-family:'微软雅黑';
  777. font-weight:400;
  778. font-style:normal;
  779. font-size:20px;
  780. }
  781. #u1385_text {
  782. border-width:0px;
  783. position:absolute;
  784. left:0px;
  785. top:0px;
  786. width:81px;
  787. white-space:nowrap;
  788. }
  789. #u1386_img {
  790. border-width:0px;
  791. position:absolute;
  792. left:0px;
  793. top:0px;
  794. width:1685px;
  795. height:994px;
  796. }
  797. #u1386 {
  798. border-width:0px;
  799. position:absolute;
  800. left:246px;
  801. top:142px;
  802. width:1685px;
  803. height:994px;
  804. }
  805. #u1386_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. #u1387 {
  815. border-width:0px;
  816. position:absolute;
  817. left:0px;
  818. top:0px;
  819. width:0px;
  820. height:0px;
  821. }
  822. #u1388_img {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:19px;
  828. height:18px;
  829. }
  830. #u1388 {
  831. border-width:0px;
  832. position:absolute;
  833. left:1726px;
  834. top:39px;
  835. width:19px;
  836. height:18px;
  837. }
  838. #u1388_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. #u1389_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. #u1389 {
  867. border-width:0px;
  868. position:absolute;
  869. left:1750px;
  870. top:37px;
  871. width:95px;
  872. height:20px;
  873. font-family:'微软雅黑';
  874. font-weight:400;
  875. font-style:normal;
  876. color:#FFFFFF;
  877. }
  878. #u1389_text {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:95px;
  884. white-space:nowrap;
  885. }
  886. #u1390 {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:0px;
  892. height:0px;
  893. }
  894. #u1391_img {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:181px;
  900. height:30px;
  901. }
  902. #u1391 {
  903. border-width:0px;
  904. position:absolute;
  905. left:1721px;
  906. top:92px;
  907. width:181px;
  908. height:30px;
  909. }
  910. #u1391_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. #u1392_div {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:124px;
  925. height:19px;
  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. #u1392 {
  940. border-width:0px;
  941. position:absolute;
  942. left:1776px;
  943. top:96px;
  944. width:124px;
  945. height:19px;
  946. font-family:'微软雅黑';
  947. font-weight:400;
  948. font-style:normal;
  949. color:#999999;
  950. text-align:right;
  951. }
  952. #u1392_text {
  953. border-width:0px;
  954. position:absolute;
  955. left:0px;
  956. top:0px;
  957. width:123px;
  958. white-space:nowrap;
  959. }
  960. #u1393 {
  961. border-width:0px;
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:0px;
  966. height:0px;
  967. }
  968. #u1394_img {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:110px;
  974. height:68px;
  975. }
  976. #u1394 {
  977. border-width:0px;
  978. position:absolute;
  979. left:32px;
  980. top:13px;
  981. width:110px;
  982. height:68px;
  983. }
  984. #u1394_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. #u1395_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:33px;
  999. height:33px;
  1000. }
  1001. #u1395 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:36px;
  1005. top:27px;
  1006. width:33px;
  1007. height:33px;
  1008. }
  1009. #u1395_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. #u1396_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. #u1396 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:75px;
  1042. top:32px;
  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. #u1396_text {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:73px;
  1057. white-space:nowrap;
  1058. }
  1059. #u1397_img {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:1620px;
  1065. height:194px;
  1066. }
  1067. #u1397 {
  1068. border-width:0px;
  1069. position:absolute;
  1070. left:280px;
  1071. top:170px;
  1072. width:1620px;
  1073. height:194px;
  1074. }
  1075. #u1397_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. #u1398_img {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:1620px;
  1090. height:698px;
  1091. }
  1092. #u1398 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:280px;
  1096. top:400px;
  1097. width:1620px;
  1098. height:698px;
  1099. }
  1100. #u1398_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. #u1399 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:298px;
  1113. top:502px;
  1114. width:1586px;
  1115. height:296px;
  1116. }
  1117. #u1400_img {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:49px;
  1123. height:48px;
  1124. }
  1125. #u1400 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:49px;
  1131. height:48px;
  1132. font-family:'微软雅黑';
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#666666;
  1137. }
  1138. #u1400_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. #u1401_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:287px;
  1153. height:48px;
  1154. }
  1155. #u1401 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:49px;
  1159. top:0px;
  1160. width:287px;
  1161. height:48px;
  1162. font-family:'微软雅黑';
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:16px;
  1166. color:#666666;
  1167. }
  1168. #u1401_text {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:2px;
  1172. top:14px;
  1173. width:283px;
  1174. word-wrap:break-word;
  1175. }
  1176. #u1402_img {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:556px;
  1182. height:48px;
  1183. }
  1184. #u1402 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:336px;
  1188. top:0px;
  1189. width:556px;
  1190. height:48px;
  1191. font-family:'微软雅黑';
  1192. font-weight:400;
  1193. font-style:normal;
  1194. font-size:16px;
  1195. color:#666666;
  1196. }
  1197. #u1402_text {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:2px;
  1201. top:14px;
  1202. width:552px;
  1203. word-wrap:break-word;
  1204. }
  1205. #u1403_img {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:208px;
  1211. height:48px;
  1212. }
  1213. #u1403 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:892px;
  1217. top:0px;
  1218. width:208px;
  1219. height:48px;
  1220. font-family:'微软雅黑';
  1221. font-weight:400;
  1222. font-style:normal;
  1223. font-size:16px;
  1224. color:#666666;
  1225. }
  1226. #u1403_text {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:2px;
  1230. top:14px;
  1231. width:204px;
  1232. word-wrap:break-word;
  1233. }
  1234. #u1404_img {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:222px;
  1240. height:48px;
  1241. }
  1242. #u1404 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:1100px;
  1246. top:0px;
  1247. width:222px;
  1248. height:48px;
  1249. font-family:'微软雅黑';
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:16px;
  1253. color:#666666;
  1254. }
  1255. #u1404_text {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:2px;
  1259. top:14px;
  1260. width:218px;
  1261. word-wrap:break-word;
  1262. }
  1263. #u1405_img {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:0px;
  1267. top:0px;
  1268. width:264px;
  1269. height:48px;
  1270. }
  1271. #u1405 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:1322px;
  1275. top:0px;
  1276. width:264px;
  1277. height:48px;
  1278. font-family:'微软雅黑';
  1279. font-weight:400;
  1280. font-style:normal;
  1281. font-size:16px;
  1282. color:#666666;
  1283. }
  1284. #u1405_text {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:2px;
  1288. top:14px;
  1289. width:260px;
  1290. word-wrap:break-word;
  1291. }
  1292. #u1406_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:49px;
  1298. height:51px;
  1299. }
  1300. #u1406 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:48px;
  1305. width:49px;
  1306. height:51px;
  1307. font-family:'微软雅黑';
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:16px;
  1311. color:#666666;
  1312. }
  1313. #u1406_text {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:0px;
  1319. visibility:hidden;
  1320. word-wrap:break-word;
  1321. }
  1322. #u1407_img {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:287px;
  1328. height:51px;
  1329. }
  1330. #u1407 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:49px;
  1334. top:48px;
  1335. width:287px;
  1336. height:51px;
  1337. font-family:'微软雅黑';
  1338. font-weight:400;
  1339. font-style:normal;
  1340. font-size:16px;
  1341. color:#666666;
  1342. }
  1343. #u1407_text {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:2px;
  1347. top:15px;
  1348. width:283px;
  1349. word-wrap:break-word;
  1350. }
  1351. #u1408_img {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:556px;
  1357. height:51px;
  1358. }
  1359. #u1408 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:336px;
  1363. top:48px;
  1364. width:556px;
  1365. height:51px;
  1366. font-family:'微软雅黑';
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:16px;
  1370. color:#666666;
  1371. }
  1372. #u1408_text {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:2px;
  1376. top:15px;
  1377. width:552px;
  1378. word-wrap:break-word;
  1379. }
  1380. #u1409_img {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:208px;
  1386. height:51px;
  1387. }
  1388. #u1409 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:892px;
  1392. top:48px;
  1393. width:208px;
  1394. height:51px;
  1395. font-family:'微软雅黑';
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:16px;
  1399. color:#666666;
  1400. }
  1401. #u1409_text {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:2px;
  1405. top:15px;
  1406. width:204px;
  1407. word-wrap:break-word;
  1408. }
  1409. #u1410_img {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:0px;
  1413. top:0px;
  1414. width:222px;
  1415. height:51px;
  1416. }
  1417. #u1410 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:1100px;
  1421. top:48px;
  1422. width:222px;
  1423. height:51px;
  1424. font-family:'微软雅黑';
  1425. font-weight:400;
  1426. font-style:normal;
  1427. font-size:16px;
  1428. color:#666666;
  1429. }
  1430. #u1410_text {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:2px;
  1434. top:15px;
  1435. width:218px;
  1436. word-wrap:break-word;
  1437. }
  1438. #u1411_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:264px;
  1444. height:51px;
  1445. }
  1446. #u1411 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:1322px;
  1450. top:48px;
  1451. width:264px;
  1452. height:51px;
  1453. font-family:'微软雅黑';
  1454. font-weight:400;
  1455. font-style:normal;
  1456. font-size:16px;
  1457. color:#0000FF;
  1458. }
  1459. #u1411_text {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:2px;
  1463. top:15px;
  1464. width:260px;
  1465. word-wrap:break-word;
  1466. }
  1467. #u1412_img {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:49px;
  1473. height:49px;
  1474. }
  1475. #u1412 {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:99px;
  1480. width:49px;
  1481. height:49px;
  1482. font-family:'微软雅黑';
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:16px;
  1486. color:#666666;
  1487. }
  1488. #u1412_text {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:0px;
  1494. visibility:hidden;
  1495. word-wrap:break-word;
  1496. }
  1497. #u1413_img {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:287px;
  1503. height:49px;
  1504. }
  1505. #u1413 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:49px;
  1509. top:99px;
  1510. width:287px;
  1511. height:49px;
  1512. font-family:'微软雅黑';
  1513. font-weight:400;
  1514. font-style:normal;
  1515. font-size:16px;
  1516. color:#666666;
  1517. }
  1518. #u1413_text {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:2px;
  1522. top:14px;
  1523. width:283px;
  1524. word-wrap:break-word;
  1525. }
  1526. #u1414_img {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:0px;
  1530. top:0px;
  1531. width:556px;
  1532. height:49px;
  1533. }
  1534. #u1414 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:336px;
  1538. top:99px;
  1539. width:556px;
  1540. height:49px;
  1541. font-family:'微软雅黑';
  1542. font-weight:400;
  1543. font-style:normal;
  1544. font-size:16px;
  1545. color:#666666;
  1546. }
  1547. #u1414_text {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:2px;
  1551. top:14px;
  1552. width:552px;
  1553. word-wrap:break-word;
  1554. }
  1555. #u1415_img {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:208px;
  1561. height:49px;
  1562. }
  1563. #u1415 {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:892px;
  1567. top:99px;
  1568. width:208px;
  1569. height:49px;
  1570. font-family:'微软雅黑';
  1571. font-weight:400;
  1572. font-style:normal;
  1573. font-size:16px;
  1574. color:#666666;
  1575. }
  1576. #u1415_text {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:2px;
  1580. top:14px;
  1581. width:204px;
  1582. word-wrap:break-word;
  1583. }
  1584. #u1416_img {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:0px;
  1588. top:0px;
  1589. width:222px;
  1590. height:49px;
  1591. }
  1592. #u1416 {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:1100px;
  1596. top:99px;
  1597. width:222px;
  1598. height:49px;
  1599. font-family:'微软雅黑';
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:16px;
  1603. color:#666666;
  1604. }
  1605. #u1416_text {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:2px;
  1609. top:14px;
  1610. width:218px;
  1611. word-wrap:break-word;
  1612. }
  1613. #u1417_img {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:0px;
  1617. top:0px;
  1618. width:264px;
  1619. height:49px;
  1620. }
  1621. #u1417 {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:1322px;
  1625. top:99px;
  1626. width:264px;
  1627. height:49px;
  1628. font-family:'微软雅黑';
  1629. font-weight:400;
  1630. font-style:normal;
  1631. font-size:16px;
  1632. color:#0000FF;
  1633. }
  1634. #u1417_text {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:2px;
  1638. top:14px;
  1639. width:260px;
  1640. word-wrap:break-word;
  1641. }
  1642. #u1418_img {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:49px;
  1648. height:50px;
  1649. }
  1650. #u1418 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:148px;
  1655. width:49px;
  1656. height:50px;
  1657. font-family:'微软雅黑';
  1658. font-weight:400;
  1659. font-style:normal;
  1660. font-size:16px;
  1661. color:#666666;
  1662. }
  1663. #u1418_text {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:0px;
  1669. visibility:hidden;
  1670. word-wrap:break-word;
  1671. }
  1672. #u1419_img {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:287px;
  1678. height:50px;
  1679. }
  1680. #u1419 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:49px;
  1684. top:148px;
  1685. width:287px;
  1686. height:50px;
  1687. font-family:'微软雅黑';
  1688. font-weight:400;
  1689. font-style:normal;
  1690. font-size:16px;
  1691. color:#666666;
  1692. }
  1693. #u1419_text {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:2px;
  1697. top:14px;
  1698. width:283px;
  1699. word-wrap:break-word;
  1700. }
  1701. #u1420_img {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:556px;
  1707. height:50px;
  1708. }
  1709. #u1420 {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:336px;
  1713. top:148px;
  1714. width:556px;
  1715. height:50px;
  1716. font-family:'微软雅黑';
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:16px;
  1720. color:#666666;
  1721. }
  1722. #u1420_text {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:2px;
  1726. top:14px;
  1727. width:552px;
  1728. word-wrap:break-word;
  1729. }
  1730. #u1421_img {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:208px;
  1736. height:50px;
  1737. }
  1738. #u1421 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:892px;
  1742. top:148px;
  1743. width:208px;
  1744. height:50px;
  1745. font-family:'微软雅黑';
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:16px;
  1749. color:#666666;
  1750. }
  1751. #u1421_text {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:2px;
  1755. top:14px;
  1756. width:204px;
  1757. word-wrap:break-word;
  1758. }
  1759. #u1422_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:222px;
  1765. height:50px;
  1766. }
  1767. #u1422 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:1100px;
  1771. top:148px;
  1772. width:222px;
  1773. height:50px;
  1774. font-family:'微软雅黑';
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:16px;
  1778. color:#666666;
  1779. }
  1780. #u1422_text {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:2px;
  1784. top:14px;
  1785. width:218px;
  1786. word-wrap:break-word;
  1787. }
  1788. #u1423_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:264px;
  1794. height:50px;
  1795. }
  1796. #u1423 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:1322px;
  1800. top:148px;
  1801. width:264px;
  1802. height:50px;
  1803. font-family:'微软雅黑';
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:16px;
  1807. color:#0000FF;
  1808. }
  1809. #u1423_text {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:2px;
  1813. top:14px;
  1814. width:260px;
  1815. word-wrap:break-word;
  1816. }
  1817. #u1424_img {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:49px;
  1823. height:51px;
  1824. }
  1825. #u1424 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:198px;
  1830. width:49px;
  1831. height:51px;
  1832. font-family:'微软雅黑';
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:16px;
  1836. color:#666666;
  1837. }
  1838. #u1424_text {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:0px;
  1844. visibility:hidden;
  1845. word-wrap:break-word;
  1846. }
  1847. #u1425_img {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:287px;
  1853. height:51px;
  1854. }
  1855. #u1425 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:49px;
  1859. top:198px;
  1860. width:287px;
  1861. height:51px;
  1862. font-family:'微软雅黑';
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:16px;
  1866. color:#666666;
  1867. }
  1868. #u1425_text {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:0px;
  1874. visibility:hidden;
  1875. word-wrap:break-word;
  1876. }
  1877. #u1426_img {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:556px;
  1883. height:51px;
  1884. }
  1885. #u1426 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:336px;
  1889. top:198px;
  1890. width:556px;
  1891. height:51px;
  1892. font-family:'微软雅黑';
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:16px;
  1896. color:#666666;
  1897. }
  1898. #u1426_text {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:0px;
  1904. visibility:hidden;
  1905. word-wrap:break-word;
  1906. }
  1907. #u1427_img {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:208px;
  1913. height:51px;
  1914. }
  1915. #u1427 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:892px;
  1919. top:198px;
  1920. width:208px;
  1921. height:51px;
  1922. font-family:'微软雅黑';
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:16px;
  1926. color:#666666;
  1927. }
  1928. #u1427_text {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:0px;
  1934. visibility:hidden;
  1935. word-wrap:break-word;
  1936. }
  1937. #u1428_img {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:222px;
  1943. height:51px;
  1944. }
  1945. #u1428 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:1100px;
  1949. top:198px;
  1950. width:222px;
  1951. height:51px;
  1952. font-family:'微软雅黑';
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:16px;
  1956. color:#666666;
  1957. }
  1958. #u1428_text {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:0px;
  1964. visibility:hidden;
  1965. word-wrap:break-word;
  1966. }
  1967. #u1429_img {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:264px;
  1973. height:51px;
  1974. }
  1975. #u1429 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:1322px;
  1979. top:198px;
  1980. width:264px;
  1981. height:51px;
  1982. font-family:'微软雅黑';
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:16px;
  1986. color:#666666;
  1987. }
  1988. #u1429_text {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:0px;
  1994. visibility:hidden;
  1995. word-wrap:break-word;
  1996. }
  1997. #u1430_img {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:49px;
  2003. height:47px;
  2004. }
  2005. #u1430 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:249px;
  2010. width:49px;
  2011. height:47px;
  2012. font-family:'微软雅黑';
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:16px;
  2016. color:#666666;
  2017. }
  2018. #u1430_text {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:0px;
  2024. visibility:hidden;
  2025. word-wrap:break-word;
  2026. }
  2027. #u1431_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:287px;
  2033. height:47px;
  2034. }
  2035. #u1431 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:49px;
  2039. top:249px;
  2040. width:287px;
  2041. height:47px;
  2042. font-family:'微软雅黑';
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:16px;
  2046. color:#666666;
  2047. }
  2048. #u1431_text {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:0px;
  2054. visibility:hidden;
  2055. word-wrap:break-word;
  2056. }
  2057. #u1432_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:556px;
  2063. height:47px;
  2064. }
  2065. #u1432 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:336px;
  2069. top:249px;
  2070. width:556px;
  2071. height:47px;
  2072. font-family:'微软雅黑';
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:16px;
  2076. color:#666666;
  2077. }
  2078. #u1432_text {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:0px;
  2084. visibility:hidden;
  2085. word-wrap:break-word;
  2086. }
  2087. #u1433_img {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:208px;
  2093. height:47px;
  2094. }
  2095. #u1433 {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:892px;
  2099. top:249px;
  2100. width:208px;
  2101. height:47px;
  2102. font-family:'微软雅黑';
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:16px;
  2106. color:#666666;
  2107. }
  2108. #u1433_text {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:0px;
  2114. visibility:hidden;
  2115. word-wrap:break-word;
  2116. }
  2117. #u1434_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:222px;
  2123. height:47px;
  2124. }
  2125. #u1434 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:1100px;
  2129. top:249px;
  2130. width:222px;
  2131. height:47px;
  2132. font-family:'微软雅黑';
  2133. font-weight:400;
  2134. font-style:normal;
  2135. font-size:16px;
  2136. color:#666666;
  2137. }
  2138. #u1434_text {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:0px;
  2144. visibility:hidden;
  2145. word-wrap:break-word;
  2146. }
  2147. #u1435_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:264px;
  2153. height:47px;
  2154. }
  2155. #u1435 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:1322px;
  2159. top:249px;
  2160. width:264px;
  2161. height:47px;
  2162. font-family:'微软雅黑';
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:16px;
  2166. color:#666666;
  2167. }
  2168. #u1435_text {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:0px;
  2174. visibility:hidden;
  2175. word-wrap:break-word;
  2176. }
  2177. #u1436_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:81px;
  2183. height:27px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 0);
  2186. border:none;
  2187. border-radius:0px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. font-family:'微软雅黑';
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:20px;
  2195. }
  2196. #u1436 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:337px;
  2200. top:224px;
  2201. width:81px;
  2202. height:27px;
  2203. font-family:'微软雅黑';
  2204. font-weight:400;
  2205. font-style:normal;
  2206. font-size:20px;
  2207. }
  2208. #u1436_text {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:81px;
  2214. white-space:nowrap;
  2215. }
  2216. #u1437 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:427px;
  2220. top:222px;
  2221. width:286px;
  2222. height:33px;
  2223. }
  2224. #u1437_input {
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:286px;
  2229. height:33px;
  2230. font-family:'Arial Normal', 'Arial';
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:13px;
  2234. text-decoration:none;
  2235. color:#000000;
  2236. text-align:left;
  2237. }
  2238. #u1438_div {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:117px;
  2244. height:40px;
  2245. background:inherit;
  2246. background-color:rgba(22, 155, 213, 1);
  2247. border:none;
  2248. border-radius:5px;
  2249. -moz-box-shadow:none;
  2250. -webkit-box-shadow:none;
  2251. box-shadow:none;
  2252. font-family:'微软雅黑';
  2253. font-weight:400;
  2254. font-style:normal;
  2255. font-size:18px;
  2256. }
  2257. #u1438 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:1388px;
  2261. top:216px;
  2262. width:117px;
  2263. height:40px;
  2264. font-family:'微软雅黑';
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:18px;
  2268. }
  2269. #u1438_text {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:2px;
  2273. top:8px;
  2274. width:113px;
  2275. word-wrap:break-word;
  2276. }
  2277. #u1439_div {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:117px;
  2283. height:40px;
  2284. background:inherit;
  2285. background-color:rgba(255, 255, 255, 1);
  2286. box-sizing:border-box;
  2287. border-width:1px;
  2288. border-style:solid;
  2289. border-color:rgba(121, 121, 121, 1);
  2290. border-radius:5px;
  2291. -moz-box-shadow:none;
  2292. -webkit-box-shadow:none;
  2293. box-shadow:none;
  2294. font-family:'微软雅黑';
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:18px;
  2298. }
  2299. #u1439 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:1532px;
  2303. top:216px;
  2304. width:117px;
  2305. height:40px;
  2306. font-family:'微软雅黑';
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:18px;
  2310. }
  2311. #u1439_text {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:2px;
  2315. top:8px;
  2316. width:113px;
  2317. word-wrap:break-word;
  2318. }
  2319. #u1440 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:317px;
  2323. top:521px;
  2324. width:21px;
  2325. height:16px;
  2326. font-size:20px;
  2327. }
  2328. #u1440_text {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:16px;
  2332. top:0px;
  2333. width:3px;
  2334. visibility:hidden;
  2335. word-wrap:break-word;
  2336. }
  2337. #u1440_input {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:-3px;
  2341. top:-2px;
  2342. }
  2343. #u1441 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:317px;
  2347. top:568px;
  2348. width:21px;
  2349. height:16px;
  2350. font-size:20px;
  2351. }
  2352. #u1441_text {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:16px;
  2356. top:0px;
  2357. width:3px;
  2358. visibility:hidden;
  2359. word-wrap:break-word;
  2360. }
  2361. #u1441_input {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:-3px;
  2365. top:-2px;
  2366. }
  2367. #u1442 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:317px;
  2371. top:617px;
  2372. width:21px;
  2373. height:16px;
  2374. font-size:20px;
  2375. }
  2376. #u1442_text {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:16px;
  2380. top:0px;
  2381. width:3px;
  2382. visibility:hidden;
  2383. word-wrap:break-word;
  2384. }
  2385. #u1442_input {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:-3px;
  2389. top:-2px;
  2390. }
  2391. #u1443 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:317px;
  2395. top:668px;
  2396. width:21px;
  2397. height:16px;
  2398. font-size:20px;
  2399. }
  2400. #u1443_text {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:16px;
  2404. top:0px;
  2405. width:3px;
  2406. visibility:hidden;
  2407. word-wrap:break-word;
  2408. }
  2409. #u1443_input {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:-3px;
  2413. top:-2px;
  2414. }
  2415. #u1444_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:568px;
  2421. height:38px;
  2422. }
  2423. #u1444 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:1316px;
  2427. top:1051px;
  2428. width:568px;
  2429. height:38px;
  2430. }
  2431. #u1444_text {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:0px;
  2437. visibility:hidden;
  2438. word-wrap:break-word;
  2439. }
  2440. #u1445_div {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:101px;
  2446. height:40px;
  2447. background:inherit;
  2448. background-color:rgba(255, 255, 255, 1);
  2449. box-sizing:border-box;
  2450. border-width:1px;
  2451. border-style:solid;
  2452. border-color:rgba(121, 121, 121, 1);
  2453. border-radius:5px;
  2454. -moz-box-shadow:none;
  2455. -webkit-box-shadow:none;
  2456. box-shadow:none;
  2457. font-family:'微软雅黑';
  2458. font-weight:400;
  2459. font-style:normal;
  2460. font-size:18px;
  2461. }
  2462. #u1445 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:317px;
  2466. top:427px;
  2467. width:101px;
  2468. height:40px;
  2469. font-family:'微软雅黑';
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:18px;
  2473. }
  2474. #u1445_text {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:2px;
  2478. top:8px;
  2479. width:97px;
  2480. word-wrap:break-word;
  2481. }
  2482. #u1446_div {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:101px;
  2488. height:40px;
  2489. background:inherit;
  2490. background-color:rgba(255, 255, 255, 1);
  2491. box-sizing:border-box;
  2492. border-width:1px;
  2493. border-style:solid;
  2494. border-color:rgba(121, 121, 121, 1);
  2495. border-radius:5px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'微软雅黑';
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:18px;
  2503. }
  2504. #u1446 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:438px;
  2508. top:427px;
  2509. width:101px;
  2510. height:40px;
  2511. font-family:'微软雅黑';
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:18px;
  2515. }
  2516. #u1446_text {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:2px;
  2520. top:8px;
  2521. width:97px;
  2522. word-wrap:break-word;
  2523. }
  2524. #u1447 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:408px;
  2528. top:280px;
  2529. width:1368px;
  2530. height:716px;
  2531. overflow:hidden;
  2532. visibility:hidden;
  2533. }
  2534. #u1447_state0 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:1368px;
  2540. height:716px;
  2541. -ms-overflow-x:hidden;
  2542. overflow-x:hidden;
  2543. -ms-overflow-y:hidden;
  2544. overflow-y:hidden;
  2545. background-image:none;
  2546. }
  2547. #u1447_state0_content {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:1px;
  2553. height:1px;
  2554. }
  2555. #u1448_div {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:1362px;
  2561. height:708px;
  2562. background:inherit;
  2563. background-color:rgba(255, 255, 255, 1);
  2564. box-sizing:border-box;
  2565. border-width:1px;
  2566. border-style:solid;
  2567. border-color:rgba(121, 121, 121, 1);
  2568. border-radius:0px;
  2569. -moz-box-shadow:none;
  2570. -webkit-box-shadow:none;
  2571. box-shadow:none;
  2572. }
  2573. #u1448 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:3px;
  2577. top:3px;
  2578. width:1362px;
  2579. height:708px;
  2580. }
  2581. #u1448_text {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:0px;
  2587. visibility:hidden;
  2588. word-wrap:break-word;
  2589. }
  2590. #u1449_div {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:1359px;
  2596. height:34px;
  2597. background:inherit;
  2598. background-color:rgba(242, 242, 242, 1);
  2599. border:none;
  2600. border-radius:0px;
  2601. -moz-box-shadow:none;
  2602. -webkit-box-shadow:none;
  2603. box-shadow:none;
  2604. }
  2605. #u1449 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:4px;
  2609. top:5px;
  2610. width:1359px;
  2611. height:34px;
  2612. }
  2613. #u1449_text {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:0px;
  2619. visibility:hidden;
  2620. word-wrap:break-word;
  2621. }
  2622. #u1450_div {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:65px;
  2628. height:21px;
  2629. background:inherit;
  2630. background-color:rgba(255, 255, 255, 0);
  2631. border:none;
  2632. border-radius:0px;
  2633. -moz-box-shadow:none;
  2634. -webkit-box-shadow:none;
  2635. box-shadow:none;
  2636. font-family:'微软雅黑';
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:16px;
  2640. }
  2641. #u1450 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:16px;
  2645. top:9px;
  2646. width:65px;
  2647. height:21px;
  2648. font-family:'微软雅黑';
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:16px;
  2652. }
  2653. #u1450_text {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:65px;
  2659. white-space:nowrap;
  2660. }
  2661. #u1451_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:26px;
  2667. height:27px;
  2668. }
  2669. #u1451 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:1335px;
  2673. top:8px;
  2674. width:26px;
  2675. height:27px;
  2676. }
  2677. #u1451_text {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:0px;
  2683. visibility:hidden;
  2684. word-wrap:break-word;
  2685. }
  2686. #u1452_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:33px;
  2692. height:21px;
  2693. background:inherit;
  2694. background-color:rgba(255, 255, 255, 0);
  2695. border:none;
  2696. border-radius:0px;
  2697. -moz-box-shadow:none;
  2698. -webkit-box-shadow:none;
  2699. box-shadow:none;
  2700. font-family:'微软雅黑';
  2701. font-weight:400;
  2702. font-style:normal;
  2703. font-size:16px;
  2704. color:#666666;
  2705. text-align:center;
  2706. }
  2707. #u1452 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:119px;
  2711. top:99px;
  2712. width:33px;
  2713. height:21px;
  2714. font-family:'微软雅黑';
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:16px;
  2718. color:#666666;
  2719. text-align:center;
  2720. }
  2721. #u1452_text {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:33px;
  2727. white-space:nowrap;
  2728. }
  2729. #u1453_div {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:33px;
  2735. height:21px;
  2736. background:inherit;
  2737. background-color:rgba(255, 255, 255, 0);
  2738. border:none;
  2739. border-radius:0px;
  2740. -moz-box-shadow:none;
  2741. -webkit-box-shadow:none;
  2742. box-shadow:none;
  2743. font-family:'微软雅黑';
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:16px;
  2747. color:#666666;
  2748. text-align:center;
  2749. }
  2750. #u1453 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:119px;
  2754. top:160px;
  2755. width:33px;
  2756. height:21px;
  2757. font-family:'微软雅黑';
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:16px;
  2761. color:#666666;
  2762. text-align:center;
  2763. }
  2764. #u1453_text {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:33px;
  2770. white-space:nowrap;
  2771. }
  2772. #u1454 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:174px;
  2776. top:96px;
  2777. width:322px;
  2778. height:25px;
  2779. }
  2780. #u1454_input {
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:322px;
  2785. height:25px;
  2786. font-family:'Arial Normal', 'Arial';
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:13px;
  2790. text-decoration:none;
  2791. color:#000000;
  2792. text-align:left;
  2793. }
  2794. #u1455_div {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:94px;
  2800. height:40px;
  2801. background:inherit;
  2802. background-color:rgba(25, 158, 216, 1);
  2803. box-sizing:border-box;
  2804. border-width:1px;
  2805. border-style:solid;
  2806. border-color:rgba(121, 121, 121, 1);
  2807. border-radius:5px;
  2808. -moz-box-shadow:none;
  2809. -webkit-box-shadow:none;
  2810. box-shadow:none;
  2811. font-family:'微软雅黑';
  2812. font-weight:400;
  2813. font-style:normal;
  2814. font-size:16px;
  2815. }
  2816. #u1455 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:580px;
  2820. top:530px;
  2821. width:94px;
  2822. height:40px;
  2823. font-family:'微软雅黑';
  2824. font-weight:400;
  2825. font-style:normal;
  2826. font-size:16px;
  2827. }
  2828. #u1455_text {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:2px;
  2832. top:10px;
  2833. width:90px;
  2834. word-wrap:break-word;
  2835. }
  2836. #u1456_div {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:94px;
  2842. height:40px;
  2843. background:inherit;
  2844. background-color:rgba(255, 255, 255, 1);
  2845. box-sizing:border-box;
  2846. border-width:1px;
  2847. border-style:solid;
  2848. border-color:rgba(121, 121, 121, 1);
  2849. border-radius:5px;
  2850. -moz-box-shadow:none;
  2851. -webkit-box-shadow:none;
  2852. box-shadow:none;
  2853. }
  2854. #u1456 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:701px;
  2858. top:530px;
  2859. width:94px;
  2860. height:40px;
  2861. }
  2862. #u1456_text {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:2px;
  2866. top:12px;
  2867. width:90px;
  2868. word-wrap:break-word;
  2869. }
  2870. #u1457 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:580px;
  2874. top:525px;
  2875. width:222px;
  2876. height:51px;
  2877. overflow:hidden;
  2878. background-image:url('../../resources/images/transparent.gif');
  2879. }
  2880. #u1458 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:174px;
  2884. top:160px;
  2885. width:673px;
  2886. height:219px;
  2887. }
  2888. #u1458_input {
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:673px;
  2893. height:219px;
  2894. font-family:'Arial Normal', 'Arial';
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:13px;
  2898. text-decoration:none;
  2899. color:#000000;
  2900. text-align:left;
  2901. }
  2902. #u1447_state1 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:1368px;
  2908. height:716px;
  2909. visibility:hidden;
  2910. -ms-overflow-x:hidden;
  2911. overflow-x:hidden;
  2912. -ms-overflow-y:hidden;
  2913. overflow-y:hidden;
  2914. background-image:none;
  2915. }
  2916. #u1447_state1_content {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:1px;
  2922. height:1px;
  2923. }
  2924. #u1459_div {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:1362px;
  2930. height:708px;
  2931. background:inherit;
  2932. background-color:rgba(255, 255, 255, 1);
  2933. box-sizing:border-box;
  2934. border-width:1px;
  2935. border-style:solid;
  2936. border-color:rgba(121, 121, 121, 1);
  2937. border-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. }
  2942. #u1459 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:13px;
  2946. top:13px;
  2947. width:1362px;
  2948. height:708px;
  2949. }
  2950. #u1459_text {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:0px;
  2956. visibility:hidden;
  2957. word-wrap:break-word;
  2958. }
  2959. #u1460_div {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:1359px;
  2965. height:34px;
  2966. background:inherit;
  2967. background-color:rgba(242, 242, 242, 1);
  2968. border:none;
  2969. border-radius:0px;
  2970. -moz-box-shadow:none;
  2971. -webkit-box-shadow:none;
  2972. box-shadow:none;
  2973. }
  2974. #u1460 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:14px;
  2978. top:15px;
  2979. width:1359px;
  2980. height:34px;
  2981. }
  2982. #u1460_text {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:0px;
  2988. visibility:hidden;
  2989. word-wrap:break-word;
  2990. }
  2991. #u1461_div {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:65px;
  2997. height:21px;
  2998. background:inherit;
  2999. background-color:rgba(255, 255, 255, 0);
  3000. border:none;
  3001. border-radius:0px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. font-family:'微软雅黑';
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:16px;
  3009. }
  3010. #u1461 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:26px;
  3014. top:19px;
  3015. width:65px;
  3016. height:21px;
  3017. font-family:'微软雅黑';
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:16px;
  3021. }
  3022. #u1461_text {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:65px;
  3028. white-space:nowrap;
  3029. }
  3030. #u1462_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:26px;
  3036. height:27px;
  3037. }
  3038. #u1462 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:1345px;
  3042. top:18px;
  3043. width:26px;
  3044. height:27px;
  3045. }
  3046. #u1462_text {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:0px;
  3052. visibility:hidden;
  3053. word-wrap:break-word;
  3054. }
  3055. #u1463_div {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:161px;
  3061. height:21px;
  3062. background:inherit;
  3063. background-color:rgba(255, 255, 255, 0);
  3064. border:none;
  3065. border-radius:0px;
  3066. -moz-box-shadow:none;
  3067. -webkit-box-shadow:none;
  3068. box-shadow:none;
  3069. font-family:'微软雅黑';
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:16px;
  3073. color:#666666;
  3074. text-align:center;
  3075. }
  3076. #u1463 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:614px;
  3080. top:254px;
  3081. width:161px;
  3082. height:21px;
  3083. font-family:'微软雅黑';
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:16px;
  3087. color:#666666;
  3088. text-align:center;
  3089. }
  3090. #u1463_text {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:161px;
  3096. white-space:nowrap;
  3097. }
  3098. #u1464_div {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:94px;
  3104. height:40px;
  3105. background:inherit;
  3106. background-color:rgba(25, 158, 216, 1);
  3107. box-sizing:border-box;
  3108. border-width:1px;
  3109. border-style:solid;
  3110. border-color:rgba(121, 121, 121, 1);
  3111. border-radius:5px;
  3112. -moz-box-shadow:none;
  3113. -webkit-box-shadow:none;
  3114. box-shadow:none;
  3115. font-family:'微软雅黑';
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:16px;
  3119. }
  3120. #u1464 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:582px;
  3124. top:600px;
  3125. width:94px;
  3126. height:40px;
  3127. font-family:'微软雅黑';
  3128. font-weight:400;
  3129. font-style:normal;
  3130. font-size:16px;
  3131. }
  3132. #u1464_text {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:2px;
  3136. top:10px;
  3137. width:90px;
  3138. word-wrap:break-word;
  3139. }
  3140. #u1465_div {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:94px;
  3146. height:40px;
  3147. background:inherit;
  3148. background-color:rgba(255, 255, 255, 1);
  3149. box-sizing:border-box;
  3150. border-width:1px;
  3151. border-style:solid;
  3152. border-color:rgba(121, 121, 121, 1);
  3153. border-radius:5px;
  3154. -moz-box-shadow:none;
  3155. -webkit-box-shadow:none;
  3156. box-shadow:none;
  3157. }
  3158. #u1465 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:703px;
  3162. top:600px;
  3163. width:94px;
  3164. height:40px;
  3165. }
  3166. #u1465_text {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:2px;
  3170. top:12px;
  3171. width:90px;
  3172. word-wrap:break-word;
  3173. }
  3174. #u1466 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:558px;
  3178. top:570px;
  3179. width:272px;
  3180. height:100px;
  3181. overflow:hidden;
  3182. background-image:url('../../resources/images/transparent.gif');
  3183. }
  3184. #u1447_state2 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:1368px;
  3190. height:716px;
  3191. visibility:hidden;
  3192. -ms-overflow-x:hidden;
  3193. overflow-x:hidden;
  3194. -ms-overflow-y:hidden;
  3195. overflow-y:hidden;
  3196. background-image:none;
  3197. }
  3198. #u1447_state2_content {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:1px;
  3204. height:1px;
  3205. }
  3206. #u1467_div {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:1362px;
  3212. height:708px;
  3213. background:inherit;
  3214. background-color:rgba(255, 255, 255, 1);
  3215. box-sizing:border-box;
  3216. border-width:1px;
  3217. border-style:solid;
  3218. border-color:rgba(121, 121, 121, 1);
  3219. border-radius:0px;
  3220. -moz-box-shadow:none;
  3221. -webkit-box-shadow:none;
  3222. box-shadow:none;
  3223. }
  3224. #u1467 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:3px;
  3228. top:3px;
  3229. width:1362px;
  3230. height:708px;
  3231. }
  3232. #u1467_text {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:0px;
  3236. top:0px;
  3237. width:0px;
  3238. visibility:hidden;
  3239. word-wrap:break-word;
  3240. }
  3241. #u1468_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:1359px;
  3247. height:34px;
  3248. background:inherit;
  3249. background-color:rgba(242, 242, 242, 1);
  3250. border:none;
  3251. border-radius:0px;
  3252. -moz-box-shadow:none;
  3253. -webkit-box-shadow:none;
  3254. box-shadow:none;
  3255. }
  3256. #u1468 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:4px;
  3260. top:5px;
  3261. width:1359px;
  3262. height:34px;
  3263. }
  3264. #u1468_text {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:0px;
  3270. visibility:hidden;
  3271. word-wrap:break-word;
  3272. }
  3273. #u1469_div {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:65px;
  3279. height:21px;
  3280. background:inherit;
  3281. background-color:rgba(255, 255, 255, 0);
  3282. border:none;
  3283. border-radius:0px;
  3284. -moz-box-shadow:none;
  3285. -webkit-box-shadow:none;
  3286. box-shadow:none;
  3287. font-family:'微软雅黑';
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:16px;
  3291. }
  3292. #u1469 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:16px;
  3296. top:9px;
  3297. width:65px;
  3298. height:21px;
  3299. font-family:'微软雅黑';
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:16px;
  3303. }
  3304. #u1469_text {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:65px;
  3310. white-space:nowrap;
  3311. }
  3312. #u1470_img {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:26px;
  3318. height:27px;
  3319. }
  3320. #u1470 {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:1335px;
  3324. top:8px;
  3325. width:26px;
  3326. height:27px;
  3327. }
  3328. #u1470_text {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:0px;
  3334. visibility:hidden;
  3335. word-wrap:break-word;
  3336. }
  3337. #u1471_div {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:33px;
  3343. height:21px;
  3344. background:inherit;
  3345. background-color:rgba(255, 255, 255, 0);
  3346. border:none;
  3347. border-radius:0px;
  3348. -moz-box-shadow:none;
  3349. -webkit-box-shadow:none;
  3350. box-shadow:none;
  3351. font-family:'微软雅黑';
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:16px;
  3355. color:#666666;
  3356. text-align:center;
  3357. }
  3358. #u1471 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:119px;
  3362. top:99px;
  3363. width:33px;
  3364. height:21px;
  3365. font-family:'微软雅黑';
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:16px;
  3369. color:#666666;
  3370. text-align:center;
  3371. }
  3372. #u1471_text {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:33px;
  3378. white-space:nowrap;
  3379. }
  3380. #u1472_div {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:33px;
  3386. height:21px;
  3387. background:inherit;
  3388. background-color:rgba(255, 255, 255, 0);
  3389. border:none;
  3390. border-radius:0px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. font-family:'微软雅黑';
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:16px;
  3398. color:#666666;
  3399. text-align:center;
  3400. }
  3401. #u1472 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:119px;
  3405. top:160px;
  3406. width:33px;
  3407. height:21px;
  3408. font-family:'微软雅黑';
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:16px;
  3412. color:#666666;
  3413. text-align:center;
  3414. }
  3415. #u1472_text {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:33px;
  3421. white-space:nowrap;
  3422. }
  3423. #u1473_div {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:94px;
  3429. height:40px;
  3430. background:inherit;
  3431. background-color:rgba(25, 158, 216, 1);
  3432. box-sizing:border-box;
  3433. border-width:1px;
  3434. border-style:solid;
  3435. border-color:rgba(121, 121, 121, 1);
  3436. border-radius:5px;
  3437. -moz-box-shadow:none;
  3438. -webkit-box-shadow:none;
  3439. box-shadow:none;
  3440. font-family:'微软雅黑';
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:16px;
  3444. }
  3445. #u1473 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:580px;
  3449. top:530px;
  3450. width:94px;
  3451. height:40px;
  3452. font-family:'微软雅黑';
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:16px;
  3456. }
  3457. #u1473_text {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:2px;
  3461. top:10px;
  3462. width:90px;
  3463. word-wrap:break-word;
  3464. }
  3465. #u1474_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:94px;
  3471. height:40px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 1);
  3474. box-sizing:border-box;
  3475. border-width:1px;
  3476. border-style:solid;
  3477. border-color:rgba(121, 121, 121, 1);
  3478. border-radius:5px;
  3479. -moz-box-shadow:none;
  3480. -webkit-box-shadow:none;
  3481. box-shadow:none;
  3482. }
  3483. #u1474 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:701px;
  3487. top:530px;
  3488. width:94px;
  3489. height:40px;
  3490. }
  3491. #u1474_text {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:2px;
  3495. top:12px;
  3496. width:90px;
  3497. word-wrap:break-word;
  3498. }
  3499. #u1475_div {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:33px;
  3505. height:21px;
  3506. background:inherit;
  3507. background-color:rgba(255, 255, 255, 0);
  3508. border:none;
  3509. border-radius:0px;
  3510. -moz-box-shadow:none;
  3511. -webkit-box-shadow:none;
  3512. box-shadow:none;
  3513. font-family:'微软雅黑';
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:16px;
  3517. color:#666666;
  3518. text-align:center;
  3519. }
  3520. #u1475 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:119px;
  3524. top:289px;
  3525. width:33px;
  3526. height:21px;
  3527. font-family:'微软雅黑';
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:16px;
  3531. color:#666666;
  3532. text-align:center;
  3533. }
  3534. #u1475_text {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:33px;
  3540. white-space:nowrap;
  3541. }
  3542. #u1476 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:174px;
  3546. top:289px;
  3547. width:673px;
  3548. height:219px;
  3549. }
  3550. #u1476_input {
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:673px;
  3555. height:219px;
  3556. font-family:'微软雅黑';
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:16px;
  3560. text-decoration:none;
  3561. color:#999999;
  3562. text-align:left;
  3563. }
  3564. #u1477_div {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:401px;
  3570. height:21px;
  3571. background:inherit;
  3572. background-color:rgba(255, 255, 255, 0);
  3573. border:none;
  3574. border-radius:0px;
  3575. -moz-box-shadow:none;
  3576. -webkit-box-shadow:none;
  3577. box-shadow:none;
  3578. font-family:'微软雅黑';
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:16px;
  3582. color:#666666;
  3583. }
  3584. #u1477 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:174px;
  3588. top:99px;
  3589. width:401px;
  3590. height:21px;
  3591. font-family:'微软雅黑';
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:16px;
  3595. color:#666666;
  3596. }
  3597. #u1477_text {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:401px;
  3603. white-space:nowrap;
  3604. }
  3605. #u1478_div {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:641px;
  3611. height:21px;
  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. font-size:16px;
  3623. color:#666666;
  3624. }
  3625. #u1478 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:174px;
  3629. top:160px;
  3630. width:641px;
  3631. height:21px;
  3632. font-family:'微软雅黑';
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:16px;
  3636. color:#666666;
  3637. }
  3638. #u1478_text {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:641px;
  3644. white-space:nowrap;
  3645. }
  3646. #u1479 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:580px;
  3650. top:525px;
  3651. width:222px;
  3652. height:51px;
  3653. overflow:hidden;
  3654. background-image:url('../../resources/images/transparent.gif');
  3655. }
  3656. #u1480_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:220px;
  3662. height:283px;
  3663. }
  3664. #u1480 {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:18px;
  3668. top:238px;
  3669. width:220px;
  3670. height:283px;
  3671. }
  3672. #u1480_text {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:0px;
  3678. visibility:hidden;
  3679. word-wrap:break-word;
  3680. }
  3681. #u1481_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:220px;
  3687. height:428px;
  3688. }
  3689. #u1481 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:18px;
  3693. top:152px;
  3694. width:220px;
  3695. height:428px;
  3696. }
  3697. #u1481_text {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:0px;
  3703. visibility:hidden;
  3704. word-wrap:break-word;
  3705. }
  3706. #u1482_div {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:29px;
  3712. height:20px;
  3713. background:inherit;
  3714. background-color:rgba(255, 255, 255, 0);
  3715. border:none;
  3716. border-radius:0px;
  3717. -moz-box-shadow:none;
  3718. -webkit-box-shadow:none;
  3719. box-shadow:none;
  3720. font-family:'微软雅黑';
  3721. font-weight:400;
  3722. font-style:normal;
  3723. color:#999999;
  3724. }
  3725. #u1482 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:87px;
  3729. top:162px;
  3730. width:29px;
  3731. height:20px;
  3732. font-family:'微软雅黑';
  3733. font-weight:400;
  3734. font-style:normal;
  3735. color:#999999;
  3736. }
  3737. #u1482_text {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:29px;
  3743. white-space:nowrap;
  3744. }
  3745. #u1483_div {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:57px;
  3751. height:20px;
  3752. background:inherit;
  3753. background-color:rgba(255, 255, 255, 0);
  3754. border:none;
  3755. border-radius:0px;
  3756. -moz-box-shadow:none;
  3757. -webkit-box-shadow:none;
  3758. box-shadow:none;
  3759. font-family:'微软雅黑';
  3760. font-weight:400;
  3761. font-style:normal;
  3762. color:#999999;
  3763. }
  3764. #u1483 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:87px;
  3768. top:260px;
  3769. width:57px;
  3770. height:20px;
  3771. font-family:'微软雅黑';
  3772. font-weight:400;
  3773. font-style:normal;
  3774. color:#999999;
  3775. }
  3776. #u1483_text {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:57px;
  3782. white-space:nowrap;
  3783. }
  3784. #u1484_div {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:57px;
  3790. height:20px;
  3791. background:inherit;
  3792. background-color:rgba(255, 255, 255, 0);
  3793. border:none;
  3794. border-radius:0px;
  3795. -moz-box-shadow:none;
  3796. -webkit-box-shadow:none;
  3797. box-shadow:none;
  3798. font-family:'微软雅黑';
  3799. font-weight:400;
  3800. font-style:normal;
  3801. color:#999999;
  3802. }
  3803. #u1484 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:86px;
  3807. top:364px;
  3808. width:57px;
  3809. height:20px;
  3810. font-family:'微软雅黑';
  3811. font-weight:400;
  3812. font-style:normal;
  3813. color:#999999;
  3814. }
  3815. #u1484_text {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:57px;
  3821. white-space:nowrap;
  3822. }
  3823. #u1485_div {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:57px;
  3829. height:20px;
  3830. background:inherit;
  3831. background-color:rgba(255, 255, 255, 0);
  3832. border:none;
  3833. border-radius:0px;
  3834. -moz-box-shadow:none;
  3835. -webkit-box-shadow:none;
  3836. box-shadow:none;
  3837. font-family:'微软雅黑';
  3838. font-weight:400;
  3839. font-style:normal;
  3840. color:#999999;
  3841. }
  3842. #u1485 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:87px;
  3846. top:227px;
  3847. width:57px;
  3848. height:20px;
  3849. font-family:'微软雅黑';
  3850. font-weight:400;
  3851. font-style:normal;
  3852. color:#999999;
  3853. }
  3854. #u1485_text {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:57px;
  3860. white-space:nowrap;
  3861. }
  3862. #u1486_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:57px;
  3868. height:20px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 0);
  3871. border:none;
  3872. border-radius:0px;
  3873. -moz-box-shadow:none;
  3874. -webkit-box-shadow:none;
  3875. box-shadow:none;
  3876. font-family:'微软雅黑';
  3877. font-weight:400;
  3878. font-style:normal;
  3879. color:#999999;
  3880. }
  3881. #u1486 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:87px;
  3885. top:294px;
  3886. width:57px;
  3887. height:20px;
  3888. font-family:'微软雅黑';
  3889. font-weight:400;
  3890. font-style:normal;
  3891. color:#999999;
  3892. }
  3893. #u1486_text {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:57px;
  3899. white-space:nowrap;
  3900. }
  3901. #u1487_div {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:57px;
  3907. height:20px;
  3908. background:inherit;
  3909. background-color:rgba(255, 255, 255, 0);
  3910. border:none;
  3911. border-radius:0px;
  3912. -moz-box-shadow:none;
  3913. -webkit-box-shadow:none;
  3914. box-shadow:none;
  3915. font-family:'微软雅黑';
  3916. font-weight:400;
  3917. font-style:normal;
  3918. color:#999999;
  3919. }
  3920. #u1487 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:86px;
  3924. top:427px;
  3925. width:57px;
  3926. height:20px;
  3927. font-family:'微软雅黑';
  3928. font-weight:400;
  3929. font-style:normal;
  3930. color:#999999;
  3931. }
  3932. #u1487_text {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:0px;
  3936. top:0px;
  3937. width:57px;
  3938. white-space:nowrap;
  3939. }
  3940. #u1488_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:29px;
  3946. height:30px;
  3947. }
  3948. #u1488 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:49px;
  3952. top:256px;
  3953. width:29px;
  3954. height:30px;
  3955. }
  3956. #u1488_text {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:0px;
  3962. visibility:hidden;
  3963. word-wrap:break-word;
  3964. }
  3965. #u1489_img {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:29px;
  3971. height:31px;
  3972. }
  3973. #u1489 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:48px;
  3977. top:358px;
  3978. width:29px;
  3979. height:31px;
  3980. }
  3981. #u1489_text {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:0px;
  3987. visibility:hidden;
  3988. word-wrap:break-word;
  3989. }
  3990. #u1490_img {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:0px;
  3994. top:0px;
  3995. width:29px;
  3996. height:33px;
  3997. }
  3998. #u1490 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:48px;
  4002. top:289px;
  4003. width:29px;
  4004. height:33px;
  4005. }
  4006. #u1490_text {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:0px;
  4012. visibility:hidden;
  4013. word-wrap:break-word;
  4014. }
  4015. #u1491_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:29px;
  4021. height:31px;
  4022. }
  4023. #u1491 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:49px;
  4027. top:223px;
  4028. width:29px;
  4029. height:31px;
  4030. }
  4031. #u1491_text {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:0px;
  4037. visibility:hidden;
  4038. word-wrap:break-word;
  4039. }
  4040. #u1492_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:29px;
  4046. height:32px;
  4047. }
  4048. #u1492 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:48px;
  4052. top:422px;
  4053. width:29px;
  4054. height:32px;
  4055. }
  4056. #u1492_text {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:0px;
  4062. visibility:hidden;
  4063. word-wrap:break-word;
  4064. }
  4065. #u1493_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:29px;
  4071. height:28px;
  4072. }
  4073. #u1493 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:50px;
  4077. top:160px;
  4078. width:29px;
  4079. height:28px;
  4080. }
  4081. #u1493_text {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:0px;
  4087. visibility:hidden;
  4088. word-wrap:break-word;
  4089. }
  4090. #u1494 {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:18px;
  4094. top:156px;
  4095. width:220px;
  4096. height:32px;
  4097. overflow:hidden;
  4098. background-image:url('../../resources/images/transparent.gif');
  4099. }
  4100. #u1495 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:18px;
  4104. top:257px;
  4105. width:220px;
  4106. height:29px;
  4107. overflow:hidden;
  4108. background-image:url('../../resources/images/transparent.gif');
  4109. }
  4110. #u1496 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:18px;
  4114. top:358px;
  4115. width:220px;
  4116. height:31px;
  4117. overflow:hidden;
  4118. background-image:url('../../resources/images/transparent.gif');
  4119. }
  4120. #u1497 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:18px;
  4124. top:224px;
  4125. width:220px;
  4126. height:30px;
  4127. overflow:hidden;
  4128. background-image:url('../../resources/images/transparent.gif');
  4129. }
  4130. #u1498 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:18px;
  4134. top:290px;
  4135. width:220px;
  4136. height:32px;
  4137. overflow:hidden;
  4138. background-image:url('../../resources/images/transparent.gif');
  4139. }
  4140. #u1499_div {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:57px;
  4146. height:20px;
  4147. background:inherit;
  4148. background-color:rgba(255, 255, 255, 0);
  4149. border:none;
  4150. border-radius:0px;
  4151. -moz-box-shadow:none;
  4152. -webkit-box-shadow:none;
  4153. box-shadow:none;
  4154. font-family:'微软雅黑';
  4155. font-weight:400;
  4156. font-style:normal;
  4157. color:#999999;
  4158. }
  4159. #u1499 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:87px;
  4163. top:328px;
  4164. width:57px;
  4165. height:20px;
  4166. font-family:'微软雅黑';
  4167. font-weight:400;
  4168. font-style:normal;
  4169. color:#999999;
  4170. }
  4171. #u1499_text {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:57px;
  4177. white-space:nowrap;
  4178. }
  4179. #u1500_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:23px;
  4185. height:20px;
  4186. }
  4187. #u1500 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:53px;
  4191. top:328px;
  4192. width:23px;
  4193. height:20px;
  4194. }
  4195. #u1500_text {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:0px;
  4201. visibility:hidden;
  4202. word-wrap:break-word;
  4203. }
  4204. #u1501 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:18px;
  4208. top:324px;
  4209. width:220px;
  4210. height:30px;
  4211. overflow:hidden;
  4212. background-image:url('../../resources/images/transparent.gif');
  4213. }
  4214. #u1502_div {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:57px;
  4220. height:20px;
  4221. background:inherit;
  4222. background-color:rgba(255, 255, 255, 0);
  4223. border:none;
  4224. border-radius:0px;
  4225. -moz-box-shadow:none;
  4226. -webkit-box-shadow:none;
  4227. box-shadow:none;
  4228. font-family:'微软雅黑';
  4229. font-weight:400;
  4230. font-style:normal;
  4231. color:#999999;
  4232. }
  4233. #u1502 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:118px;
  4237. top:457px;
  4238. width:57px;
  4239. height:20px;
  4240. font-family:'微软雅黑';
  4241. font-weight:400;
  4242. font-style:normal;
  4243. color:#999999;
  4244. }
  4245. #u1502_text {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:57px;
  4251. white-space:nowrap;
  4252. }
  4253. #u1503_div {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:57px;
  4259. height:20px;
  4260. background:inherit;
  4261. background-color:rgba(255, 255, 255, 0);
  4262. border:none;
  4263. border-radius:0px;
  4264. -moz-box-shadow:none;
  4265. -webkit-box-shadow:none;
  4266. box-shadow:none;
  4267. font-family:'微软雅黑';
  4268. font-weight:400;
  4269. font-style:normal;
  4270. color:#999999;
  4271. }
  4272. #u1503 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:118px;
  4276. top:489px;
  4277. width:57px;
  4278. height:20px;
  4279. font-family:'微软雅黑';
  4280. font-weight:400;
  4281. font-style:normal;
  4282. color:#999999;
  4283. }
  4284. #u1503_text {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:57px;
  4290. white-space:nowrap;
  4291. }
  4292. #u1504_img {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:0px;
  4296. top:0px;
  4297. width:17px;
  4298. height:17px;
  4299. }
  4300. #u1504 {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:86px;
  4304. top:462px;
  4305. width:17px;
  4306. height:17px;
  4307. }
  4308. #u1504_text {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:0px;
  4314. visibility:hidden;
  4315. word-wrap:break-word;
  4316. }
  4317. #u1505_img {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:17px;
  4323. height:17px;
  4324. }
  4325. #u1505 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:86px;
  4329. top:492px;
  4330. width:17px;
  4331. height:17px;
  4332. }
  4333. #u1505_text {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:0px;
  4339. visibility:hidden;
  4340. word-wrap:break-word;
  4341. }
  4342. #u1506 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:18px;
  4346. top:455px;
  4347. width:220px;
  4348. height:28px;
  4349. overflow:hidden;
  4350. background-image:url('../../resources/images/transparent.gif');
  4351. }
  4352. #u1507 {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:18px;
  4356. top:488px;
  4357. width:220px;
  4358. height:27px;
  4359. overflow:hidden;
  4360. background-image:url('../../resources/images/transparent.gif');
  4361. }
  4362. #u1508_div {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:57px;
  4368. height:19px;
  4369. background:inherit;
  4370. background-color:rgba(255, 255, 255, 0);
  4371. border:none;
  4372. border-radius:0px;
  4373. -moz-box-shadow:none;
  4374. -webkit-box-shadow:none;
  4375. box-shadow:none;
  4376. font-family:'微软雅黑';
  4377. font-weight:400;
  4378. font-style:normal;
  4379. color:#999999;
  4380. }
  4381. #u1508 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:86px;
  4385. top:394px;
  4386. width:57px;
  4387. height:19px;
  4388. font-family:'微软雅黑';
  4389. font-weight:400;
  4390. font-style:normal;
  4391. color:#999999;
  4392. }
  4393. #u1508_text {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:57px;
  4399. white-space:nowrap;
  4400. }
  4401. #u1509_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:15px;
  4407. height:15px;
  4408. }
  4409. #u1509 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:56px;
  4413. top:398px;
  4414. width:15px;
  4415. height:15px;
  4416. }
  4417. #u1509_text {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:0px;
  4421. top:0px;
  4422. width:0px;
  4423. visibility:hidden;
  4424. word-wrap:break-word;
  4425. }
  4426. #u1510 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:18px;
  4430. top:392px;
  4431. width:220px;
  4432. height:27px;
  4433. overflow:hidden;
  4434. background-image:url('../../resources/images/transparent.gif');
  4435. }
  4436. #u1511_img {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:18px;
  4442. height:18px;
  4443. }
  4444. #u1511 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:54px;
  4448. top:195px;
  4449. width:18px;
  4450. height:18px;
  4451. }
  4452. #u1511_text {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:0px;
  4458. visibility:hidden;
  4459. word-wrap:break-word;
  4460. }
  4461. #u1512_div {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:57px;
  4467. height:20px;
  4468. background:inherit;
  4469. background-color:rgba(255, 255, 255, 0);
  4470. border:none;
  4471. border-radius:0px;
  4472. -moz-box-shadow:none;
  4473. -webkit-box-shadow:none;
  4474. box-shadow:none;
  4475. font-family:'微软雅黑';
  4476. font-weight:400;
  4477. font-style:normal;
  4478. color:#999999;
  4479. }
  4480. #u1512 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:87px;
  4484. top:194px;
  4485. width:57px;
  4486. height:20px;
  4487. font-family:'微软雅黑';
  4488. font-weight:400;
  4489. font-style:normal;
  4490. color:#999999;
  4491. }
  4492. #u1512_text {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:57px;
  4498. white-space:nowrap;
  4499. }
  4500. #u1513 {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:18px;
  4504. top:190px;
  4505. width:220px;
  4506. height:30px;
  4507. overflow:hidden;
  4508. background-image:url('../../resources/images/transparent.gif');
  4509. }