styles.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:2864px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u1538_div {
  16. position:absolute;
  17. left:0px;
  18. top:0px;
  19. width:890px;
  20. height:994px;
  21. background:inherit;
  22. background-color:rgba(242, 242, 242, 1);
  23. box-sizing:border-box;
  24. border-width:1px;
  25. border-style:solid;
  26. border-color:rgba(121, 121, 121, 1);
  27. border-radius:0px;
  28. -moz-box-shadow:none;
  29. -webkit-box-shadow:none;
  30. box-shadow:none;
  31. }
  32. #u1538 {
  33. position:absolute;
  34. left:1015px;
  35. top:131px;
  36. width:890px;
  37. height:994px;
  38. }
  39. #u1539 {
  40. position:absolute;
  41. left:2px;
  42. top:489px;
  43. width:886px;
  44. visibility:hidden;
  45. word-wrap:break-word;
  46. }
  47. #u1540_div {
  48. position:absolute;
  49. left:0px;
  50. top:0px;
  51. width:200px;
  52. height:312px;
  53. background:inherit;
  54. background-color:rgba(255, 255, 255, 1);
  55. box-sizing:border-box;
  56. border-width:1px;
  57. border-style:solid;
  58. border-color:rgba(121, 121, 121, 1);
  59. border-radius:0px;
  60. -moz-box-shadow:none;
  61. -webkit-box-shadow:none;
  62. box-shadow:none;
  63. }
  64. #u1540 {
  65. position:absolute;
  66. left:1065px;
  67. top:186px;
  68. width:200px;
  69. height:312px;
  70. }
  71. #u1541 {
  72. position:absolute;
  73. left:2px;
  74. top:148px;
  75. width:196px;
  76. visibility:hidden;
  77. word-wrap:break-word;
  78. }
  79. #u1542_div {
  80. position:absolute;
  81. left:0px;
  82. top:0px;
  83. width:65px;
  84. height:20px;
  85. background:inherit;
  86. background-color:rgba(255, 255, 255, 0);
  87. border:none;
  88. border-radius:0px;
  89. -moz-box-shadow:none;
  90. -webkit-box-shadow:none;
  91. box-shadow:none;
  92. font-size:12px;
  93. text-align:center;
  94. line-height:20px;
  95. }
  96. #u1542 {
  97. position:absolute;
  98. left:1131px;
  99. top:322px;
  100. width:65px;
  101. height:20px;
  102. font-size:12px;
  103. text-align:center;
  104. line-height:20px;
  105. }
  106. #u1543 {
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:65px;
  111. white-space:nowrap;
  112. }
  113. #u1544_div {
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:42px;
  118. height:37px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 0);
  121. border:none;
  122. border-radius:0px;
  123. -moz-box-shadow:none;
  124. -webkit-box-shadow:none;
  125. box-shadow:none;
  126. color:#666666;
  127. }
  128. #u1544 {
  129. position:absolute;
  130. left:1023px;
  131. top:141px;
  132. width:42px;
  133. height:37px;
  134. color:#666666;
  135. }
  136. #u1545 {
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:42px;
  141. white-space:nowrap;
  142. }
  143. #u1546_div {
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:96px;
  148. height:22px;
  149. background:inherit;
  150. background-color:rgba(255, 255, 255, 1);
  151. box-sizing:border-box;
  152. border-width:1px;
  153. border-style:solid;
  154. border-color:rgba(121, 121, 121, 1);
  155. border-radius:0px;
  156. -moz-box-shadow:none;
  157. -webkit-box-shadow:none;
  158. box-shadow:none;
  159. }
  160. #u1546 {
  161. position:absolute;
  162. left:1336px;
  163. top:211px;
  164. width:96px;
  165. height:22px;
  166. }
  167. #u1547 {
  168. position:absolute;
  169. left:2px;
  170. top:2px;
  171. width:92px;
  172. word-wrap:break-word;
  173. }
  174. #u1548_div {
  175. position:absolute;
  176. left:0px;
  177. top:0px;
  178. width:290px;
  179. height:20px;
  180. background:inherit;
  181. background-color:rgba(255, 255, 255, 0);
  182. border:none;
  183. border-radius:0px;
  184. -moz-box-shadow:none;
  185. -webkit-box-shadow:none;
  186. box-shadow:none;
  187. font-size:12px;
  188. text-align:center;
  189. line-height:20px;
  190. }
  191. #u1548 {
  192. position:absolute;
  193. left:1442px;
  194. top:215px;
  195. width:290px;
  196. height:20px;
  197. font-size:12px;
  198. text-align:center;
  199. line-height:20px;
  200. }
  201. #u1549 {
  202. position:absolute;
  203. left:0px;
  204. top:0px;
  205. width:290px;
  206. word-wrap:break-word;
  207. }
  208. #u1550_div {
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:202px;
  213. height:20px;
  214. background:inherit;
  215. background-color:rgba(255, 255, 255, 0);
  216. border:none;
  217. border-radius:0px;
  218. -moz-box-shadow:none;
  219. -webkit-box-shadow:none;
  220. box-shadow:none;
  221. font-size:14px;
  222. }
  223. #u1550 {
  224. position:absolute;
  225. left:1340px;
  226. top:655px;
  227. width:202px;
  228. height:20px;
  229. font-size:14px;
  230. }
  231. #u1551 {
  232. position:absolute;
  233. left:0px;
  234. top:0px;
  235. width:202px;
  236. word-wrap:break-word;
  237. }
  238. #u1552_div {
  239. position:absolute;
  240. left:0px;
  241. top:0px;
  242. width:50px;
  243. height:70px;
  244. background:inherit;
  245. background-color:rgba(255, 255, 255, 1);
  246. box-sizing:border-box;
  247. border-width:1px;
  248. border-style:solid;
  249. border-color:rgba(121, 121, 121, 1);
  250. border-radius:0px;
  251. -moz-box-shadow:none;
  252. -webkit-box-shadow:none;
  253. box-shadow:none;
  254. }
  255. #u1552 {
  256. position:absolute;
  257. left:1340px;
  258. top:681px;
  259. width:50px;
  260. height:70px;
  261. }
  262. #u1553 {
  263. position:absolute;
  264. left:2px;
  265. top:27px;
  266. width:46px;
  267. visibility:hidden;
  268. word-wrap:break-word;
  269. }
  270. #u1554_div {
  271. position:absolute;
  272. left:0px;
  273. top:0px;
  274. width:50px;
  275. height:70px;
  276. background:inherit;
  277. background-color:rgba(255, 255, 255, 1);
  278. box-sizing:border-box;
  279. border-width:1px;
  280. border-style:solid;
  281. border-color:rgba(121, 121, 121, 1);
  282. border-radius:0px;
  283. -moz-box-shadow:none;
  284. -webkit-box-shadow:none;
  285. box-shadow:none;
  286. }
  287. #u1554 {
  288. position:absolute;
  289. left:1566px;
  290. top:681px;
  291. width:50px;
  292. height:70px;
  293. }
  294. #u1555 {
  295. position:absolute;
  296. left:2px;
  297. top:27px;
  298. width:46px;
  299. visibility:hidden;
  300. word-wrap:break-word;
  301. }
  302. #u1556_div {
  303. position:absolute;
  304. left:0px;
  305. top:0px;
  306. width:50px;
  307. height:70px;
  308. background:inherit;
  309. background-color:rgba(255, 255, 255, 1);
  310. box-sizing:border-box;
  311. border-width:1px;
  312. border-style:solid;
  313. border-color:rgba(121, 121, 121, 1);
  314. border-radius:0px;
  315. -moz-box-shadow:none;
  316. -webkit-box-shadow:none;
  317. box-shadow:none;
  318. }
  319. #u1556 {
  320. position:absolute;
  321. left:1642px;
  322. top:681px;
  323. width:50px;
  324. height:70px;
  325. }
  326. #u1557 {
  327. position:absolute;
  328. left:2px;
  329. top:27px;
  330. width:46px;
  331. visibility:hidden;
  332. word-wrap:break-word;
  333. }
  334. #u1558_div {
  335. position:absolute;
  336. left:0px;
  337. top:0px;
  338. width:50px;
  339. height:70px;
  340. background:inherit;
  341. background-color:rgba(255, 255, 255, 1);
  342. box-sizing:border-box;
  343. border-width:1px;
  344. border-style:solid;
  345. border-color:rgba(121, 121, 121, 1);
  346. border-radius:0px;
  347. -moz-box-shadow:none;
  348. -webkit-box-shadow:none;
  349. box-shadow:none;
  350. }
  351. #u1558 {
  352. position:absolute;
  353. left:1714px;
  354. top:681px;
  355. width:50px;
  356. height:70px;
  357. }
  358. #u1559 {
  359. position:absolute;
  360. left:2px;
  361. top:27px;
  362. width:46px;
  363. visibility:hidden;
  364. word-wrap:break-word;
  365. }
  366. #u1560_div {
  367. position:absolute;
  368. left:0px;
  369. top:0px;
  370. width:50px;
  371. height:70px;
  372. background:inherit;
  373. background-color:rgba(255, 255, 255, 1);
  374. box-sizing:border-box;
  375. border-width:1px;
  376. border-style:solid;
  377. border-color:rgba(121, 121, 121, 1);
  378. border-radius:0px;
  379. -moz-box-shadow:none;
  380. -webkit-box-shadow:none;
  381. box-shadow:none;
  382. }
  383. #u1560 {
  384. position:absolute;
  385. left:1790px;
  386. top:681px;
  387. width:50px;
  388. height:70px;
  389. }
  390. #u1561 {
  391. position:absolute;
  392. left:2px;
  393. top:27px;
  394. width:46px;
  395. visibility:hidden;
  396. word-wrap:break-word;
  397. }
  398. #u1562_div {
  399. position:absolute;
  400. left:0px;
  401. top:0px;
  402. width:40px;
  403. height:30px;
  404. background:inherit;
  405. background-color:rgba(242, 242, 242, 1);
  406. box-sizing:border-box;
  407. border-width:1px;
  408. border-style:solid;
  409. border-color:rgba(121, 121, 121, 1);
  410. border-radius:0px;
  411. -moz-box-shadow:none;
  412. -webkit-box-shadow:none;
  413. box-shadow:none;
  414. }
  415. #u1562 {
  416. position:absolute;
  417. left:1345px;
  418. top:701px;
  419. width:40px;
  420. height:30px;
  421. }
  422. #u1563 {
  423. position:absolute;
  424. left:2px;
  425. top:7px;
  426. width:36px;
  427. visibility:hidden;
  428. word-wrap:break-word;
  429. }
  430. #u1564_div {
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:29px;
  435. height:30px;
  436. background:inherit;
  437. background-color:rgba(242, 242, 242, 1);
  438. box-sizing:border-box;
  439. border-width:1px;
  440. border-style:solid;
  441. border-color:rgba(121, 121, 121, 1);
  442. border-radius:0px;
  443. -moz-box-shadow:none;
  444. -webkit-box-shadow:none;
  445. box-shadow:none;
  446. }
  447. #u1564 {
  448. position:absolute;
  449. left:1730px;
  450. top:686px;
  451. width:29px;
  452. height:30px;
  453. }
  454. #u1565 {
  455. position:absolute;
  456. left:2px;
  457. top:7px;
  458. width:25px;
  459. visibility:hidden;
  460. word-wrap:break-word;
  461. }
  462. #u1566_div {
  463. position:absolute;
  464. left:0px;
  465. top:0px;
  466. width:29px;
  467. height:30px;
  468. background:inherit;
  469. background-color:rgba(242, 242, 242, 1);
  470. box-sizing:border-box;
  471. border-width:1px;
  472. border-style:solid;
  473. border-color:rgba(121, 121, 121, 1);
  474. border-radius:0px;
  475. -moz-box-shadow:none;
  476. -webkit-box-shadow:none;
  477. box-shadow:none;
  478. }
  479. #u1566 {
  480. position:absolute;
  481. left:1646px;
  482. top:717px;
  483. width:29px;
  484. height:30px;
  485. }
  486. #u1567 {
  487. position:absolute;
  488. left:2px;
  489. top:7px;
  490. width:25px;
  491. visibility:hidden;
  492. word-wrap:break-word;
  493. }
  494. #u1568_div {
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:29px;
  499. height:30px;
  500. background:inherit;
  501. background-color:rgba(242, 242, 242, 1);
  502. box-sizing:border-box;
  503. border-width:1px;
  504. border-style:solid;
  505. border-color:rgba(121, 121, 121, 1);
  506. border-radius:0px;
  507. -moz-box-shadow:none;
  508. -webkit-box-shadow:none;
  509. box-shadow:none;
  510. }
  511. #u1568 {
  512. position:absolute;
  513. left:1580px;
  514. top:686px;
  515. width:29px;
  516. height:30px;
  517. }
  518. #u1569 {
  519. position:absolute;
  520. left:2px;
  521. top:7px;
  522. width:25px;
  523. visibility:hidden;
  524. word-wrap:break-word;
  525. }
  526. #u1570_div {
  527. position:absolute;
  528. left:0px;
  529. top:0px;
  530. width:29px;
  531. height:30px;
  532. background:inherit;
  533. background-color:rgba(242, 242, 242, 1);
  534. box-sizing:border-box;
  535. border-width:1px;
  536. border-style:solid;
  537. border-color:rgba(121, 121, 121, 1);
  538. border-radius:0px;
  539. -moz-box-shadow:none;
  540. -webkit-box-shadow:none;
  541. box-shadow:none;
  542. }
  543. #u1570 {
  544. position:absolute;
  545. left:1806px;
  546. top:717px;
  547. width:29px;
  548. height:30px;
  549. }
  550. #u1571 {
  551. position:absolute;
  552. left:2px;
  553. top:7px;
  554. width:25px;
  555. visibility:hidden;
  556. word-wrap:break-word;
  557. }
  558. #u1572 {
  559. position:absolute;
  560. left:1340px;
  561. top:761px;
  562. width:50px;
  563. height:18px;
  564. }
  565. #u1573 {
  566. position:absolute;
  567. left:16px;
  568. top:0px;
  569. width:32px;
  570. word-wrap:break-word;
  571. }
  572. #u1572_input {
  573. position:absolute;
  574. left:-3px;
  575. top:-2px;
  576. }
  577. #u1574 {
  578. position:absolute;
  579. left:1566px;
  580. top:761px;
  581. width:50px;
  582. height:18px;
  583. }
  584. #u1575 {
  585. position:absolute;
  586. left:16px;
  587. top:0px;
  588. width:32px;
  589. word-wrap:break-word;
  590. }
  591. #u1574_input {
  592. position:absolute;
  593. left:-3px;
  594. top:-2px;
  595. }
  596. #u1576 {
  597. position:absolute;
  598. left:1642px;
  599. top:761px;
  600. width:50px;
  601. height:18px;
  602. }
  603. #u1577 {
  604. position:absolute;
  605. left:16px;
  606. top:0px;
  607. width:32px;
  608. word-wrap:break-word;
  609. }
  610. #u1576_input {
  611. position:absolute;
  612. left:-3px;
  613. top:-2px;
  614. }
  615. #u1578 {
  616. position:absolute;
  617. left:1714px;
  618. top:761px;
  619. width:50px;
  620. height:18px;
  621. }
  622. #u1579 {
  623. position:absolute;
  624. left:16px;
  625. top:0px;
  626. width:32px;
  627. word-wrap:break-word;
  628. }
  629. #u1578_input {
  630. position:absolute;
  631. left:-3px;
  632. top:-2px;
  633. }
  634. #u1580 {
  635. position:absolute;
  636. left:1790px;
  637. top:761px;
  638. width:50px;
  639. height:18px;
  640. }
  641. #u1581 {
  642. position:absolute;
  643. left:16px;
  644. top:0px;
  645. width:32px;
  646. word-wrap:break-word;
  647. }
  648. #u1580_input {
  649. position:absolute;
  650. left:-3px;
  651. top:-2px;
  652. }
  653. #u1582_div {
  654. position:absolute;
  655. left:0px;
  656. top:0px;
  657. width:202px;
  658. height:20px;
  659. background:inherit;
  660. background-color:rgba(255, 255, 255, 0);
  661. border:none;
  662. border-radius:0px;
  663. -moz-box-shadow:none;
  664. -webkit-box-shadow:none;
  665. box-shadow:none;
  666. font-size:14px;
  667. }
  668. #u1582 {
  669. position:absolute;
  670. left:1340px;
  671. top:814px;
  672. width:202px;
  673. height:20px;
  674. font-size:14px;
  675. }
  676. #u1583 {
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:202px;
  681. word-wrap:break-word;
  682. }
  683. #u1584_div {
  684. position:absolute;
  685. left:0px;
  686. top:0px;
  687. width:33px;
  688. height:30px;
  689. background:inherit;
  690. background-color:rgba(242, 242, 242, 1);
  691. box-sizing:border-box;
  692. border-width:1px;
  693. border-style:solid;
  694. border-color:rgba(121, 121, 121, 1);
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. }
  700. #u1584 {
  701. position:absolute;
  702. left:1439px;
  703. top:856px;
  704. width:33px;
  705. height:30px;
  706. }
  707. #u1585 {
  708. position:absolute;
  709. left:2px;
  710. top:7px;
  711. width:29px;
  712. visibility:hidden;
  713. word-wrap:break-word;
  714. }
  715. #u1586_div {
  716. position:absolute;
  717. left:0px;
  718. top:0px;
  719. width:33px;
  720. height:30px;
  721. background:inherit;
  722. background-color:rgba(255, 255, 255, 1);
  723. box-sizing:border-box;
  724. border-width:1px;
  725. border-style:solid;
  726. border-color:rgba(121, 121, 121, 1);
  727. border-radius:0px;
  728. -moz-box-shadow:none;
  729. -webkit-box-shadow:none;
  730. box-shadow:none;
  731. }
  732. #u1586 {
  733. position:absolute;
  734. left:1471px;
  735. top:856px;
  736. width:33px;
  737. height:30px;
  738. }
  739. #u1587 {
  740. position:absolute;
  741. left:2px;
  742. top:8px;
  743. width:29px;
  744. word-wrap:break-word;
  745. }
  746. #u1588_div {
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:35px;
  751. height:27px;
  752. background:inherit;
  753. background-color:rgba(242, 242, 242, 1);
  754. box-sizing:border-box;
  755. border-width:1px;
  756. border-style:solid;
  757. border-color:rgba(121, 121, 121, 1);
  758. border-radius:0px;
  759. -moz-box-shadow:none;
  760. -webkit-box-shadow:none;
  761. box-shadow:none;
  762. }
  763. #u1588 {
  764. position:absolute;
  765. left:1671px;
  766. top:833px;
  767. width:35px;
  768. height:27px;
  769. }
  770. #u1589 {
  771. position:absolute;
  772. left:2px;
  773. top:6px;
  774. width:31px;
  775. visibility:hidden;
  776. word-wrap:break-word;
  777. }
  778. #u1590_div {
  779. position:absolute;
  780. left:0px;
  781. top:0px;
  782. width:35px;
  783. height:27px;
  784. background:inherit;
  785. background-color:rgba(255, 255, 255, 1);
  786. box-sizing:border-box;
  787. border-width:1px;
  788. border-style:solid;
  789. border-color:rgba(121, 121, 121, 1);
  790. border-radius:0px;
  791. -moz-box-shadow:none;
  792. -webkit-box-shadow:none;
  793. box-shadow:none;
  794. }
  795. #u1590 {
  796. position:absolute;
  797. left:1671px;
  798. top:859px;
  799. width:35px;
  800. height:27px;
  801. }
  802. #u1591 {
  803. position:absolute;
  804. left:2px;
  805. top:6px;
  806. width:31px;
  807. word-wrap:break-word;
  808. }
  809. #u1592 {
  810. position:absolute;
  811. left:1439px;
  812. top:894px;
  813. width:80px;
  814. height:18px;
  815. }
  816. #u1593 {
  817. position:absolute;
  818. left:16px;
  819. top:0px;
  820. width:62px;
  821. word-wrap:break-word;
  822. }
  823. #u1592_input {
  824. position:absolute;
  825. left:-3px;
  826. top:-2px;
  827. }
  828. #u1594 {
  829. position:absolute;
  830. left:1654px;
  831. top:894px;
  832. width:80px;
  833. height:18px;
  834. }
  835. #u1595 {
  836. position:absolute;
  837. left:16px;
  838. top:0px;
  839. width:62px;
  840. word-wrap:break-word;
  841. }
  842. #u1594_input {
  843. position:absolute;
  844. left:-3px;
  845. top:-2px;
  846. }
  847. #u1596_div {
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:96px;
  852. height:22px;
  853. background:inherit;
  854. background-color:rgba(255, 255, 255, 1);
  855. box-sizing:border-box;
  856. border-width:1px;
  857. border-style:solid;
  858. border-color:rgba(121, 121, 121, 1);
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. }
  864. #u1596 {
  865. position:absolute;
  866. left:1356px;
  867. top:392px;
  868. width:96px;
  869. height:22px;
  870. }
  871. #u1597 {
  872. position:absolute;
  873. left:2px;
  874. top:2px;
  875. width:92px;
  876. word-wrap:break-word;
  877. }
  878. #u1598_div {
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:202px;
  883. height:17px;
  884. background:inherit;
  885. background-color:rgba(255, 255, 255, 0);
  886. border:none;
  887. border-radius:0px;
  888. -moz-box-shadow:none;
  889. -webkit-box-shadow:none;
  890. box-shadow:none;
  891. font-size:12px;
  892. }
  893. #u1598 {
  894. position:absolute;
  895. left:1474px;
  896. top:396px;
  897. width:202px;
  898. height:17px;
  899. font-size:12px;
  900. }
  901. #u1599 {
  902. position:absolute;
  903. left:0px;
  904. top:0px;
  905. width:202px;
  906. word-wrap:break-word;
  907. }
  908. #u1600 {
  909. position:absolute;
  910. left:1474px;
  911. top:425px;
  912. width:371px;
  913. height:30px;
  914. }
  915. #u1600_input {
  916. position:absolute;
  917. left:0px;
  918. top:0px;
  919. width:371px;
  920. height:30px;
  921. font-family:'ArialMT', 'Arial';
  922. font-weight:400;
  923. font-style:normal;
  924. font-size:13px;
  925. text-decoration:none;
  926. color:#000000;
  927. text-align:left;
  928. }
  929. #u1601_div {
  930. position:absolute;
  931. left:0px;
  932. top:0px;
  933. width:50px;
  934. height:70px;
  935. background:inherit;
  936. background-color:rgba(255, 255, 255, 1);
  937. box-sizing:border-box;
  938. border-width:1px;
  939. border-style:solid;
  940. border-color:rgba(121, 121, 121, 1);
  941. border-radius:0px;
  942. -moz-box-shadow:none;
  943. -webkit-box-shadow:none;
  944. box-shadow:none;
  945. }
  946. #u1601 {
  947. position:absolute;
  948. left:1415px;
  949. top:681px;
  950. width:50px;
  951. height:70px;
  952. }
  953. #u1602 {
  954. position:absolute;
  955. left:2px;
  956. top:27px;
  957. width:46px;
  958. visibility:hidden;
  959. word-wrap:break-word;
  960. }
  961. #u1603_div {
  962. position:absolute;
  963. left:0px;
  964. top:0px;
  965. width:40px;
  966. height:30px;
  967. background:inherit;
  968. background-color:rgba(242, 242, 242, 1);
  969. box-sizing:border-box;
  970. border-width:1px;
  971. border-style:solid;
  972. border-color:rgba(121, 121, 121, 1);
  973. border-radius:0px;
  974. -moz-box-shadow:none;
  975. -webkit-box-shadow:none;
  976. box-shadow:none;
  977. }
  978. #u1603 {
  979. position:absolute;
  980. left:1420px;
  981. top:687px;
  982. width:40px;
  983. height:30px;
  984. }
  985. #u1604 {
  986. position:absolute;
  987. left:2px;
  988. top:7px;
  989. width:36px;
  990. visibility:hidden;
  991. word-wrap:break-word;
  992. }
  993. #u1605 {
  994. position:absolute;
  995. left:1415px;
  996. top:761px;
  997. width:50px;
  998. height:18px;
  999. }
  1000. #u1606 {
  1001. position:absolute;
  1002. left:16px;
  1003. top:0px;
  1004. width:32px;
  1005. word-wrap:break-word;
  1006. }
  1007. #u1605_input {
  1008. position:absolute;
  1009. left:-3px;
  1010. top:-2px;
  1011. }
  1012. #u1607_div {
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:50px;
  1017. height:70px;
  1018. background:inherit;
  1019. background-color:rgba(255, 255, 255, 1);
  1020. box-sizing:border-box;
  1021. border-width:1px;
  1022. border-style:solid;
  1023. border-color:rgba(121, 121, 121, 1);
  1024. border-radius:0px;
  1025. -moz-box-shadow:none;
  1026. -webkit-box-shadow:none;
  1027. box-shadow:none;
  1028. }
  1029. #u1607 {
  1030. position:absolute;
  1031. left:1492px;
  1032. top:681px;
  1033. width:50px;
  1034. height:70px;
  1035. }
  1036. #u1608 {
  1037. position:absolute;
  1038. left:2px;
  1039. top:27px;
  1040. width:46px;
  1041. visibility:hidden;
  1042. word-wrap:break-word;
  1043. }
  1044. #u1609_div {
  1045. position:absolute;
  1046. left:0px;
  1047. top:0px;
  1048. width:40px;
  1049. height:30px;
  1050. background:inherit;
  1051. background-color:rgba(242, 242, 242, 1);
  1052. box-sizing:border-box;
  1053. border-width:1px;
  1054. border-style:solid;
  1055. border-color:rgba(121, 121, 121, 1);
  1056. border-radius:0px;
  1057. -moz-box-shadow:none;
  1058. -webkit-box-shadow:none;
  1059. box-shadow:none;
  1060. }
  1061. #u1609 {
  1062. position:absolute;
  1063. left:1497px;
  1064. top:717px;
  1065. width:40px;
  1066. height:30px;
  1067. }
  1068. #u1610 {
  1069. position:absolute;
  1070. left:2px;
  1071. top:7px;
  1072. width:36px;
  1073. visibility:hidden;
  1074. word-wrap:break-word;
  1075. }
  1076. #u1611 {
  1077. position:absolute;
  1078. left:1492px;
  1079. top:761px;
  1080. width:50px;
  1081. height:18px;
  1082. }
  1083. #u1612 {
  1084. position:absolute;
  1085. left:16px;
  1086. top:0px;
  1087. width:32px;
  1088. word-wrap:break-word;
  1089. }
  1090. #u1611_input {
  1091. position:absolute;
  1092. left:-3px;
  1093. top:-2px;
  1094. }
  1095. #u1613 {
  1096. position:absolute;
  1097. left:1394px;
  1098. top:1062px;
  1099. width:132px;
  1100. height:40px;
  1101. }
  1102. #u1613_input {
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:132px;
  1107. height:40px;
  1108. font-family:'ArialMT', 'Arial';
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:13px;
  1112. text-decoration:none;
  1113. color:#000000;
  1114. text-align:center;
  1115. }
  1116. #u1614_img {
  1117. position:absolute;
  1118. left:0px;
  1119. top:0px;
  1120. width:891px;
  1121. height:2px;
  1122. }
  1123. #u1614 {
  1124. position:absolute;
  1125. left:1015px;
  1126. top:1042px;
  1127. width:890px;
  1128. height:1px;
  1129. }
  1130. #u1615 {
  1131. position:absolute;
  1132. left:2px;
  1133. top:-8px;
  1134. width:886px;
  1135. visibility:hidden;
  1136. word-wrap:break-word;
  1137. }
  1138. #u1616 {
  1139. position:absolute;
  1140. left:1316px;
  1141. top:186px;
  1142. width:163px;
  1143. height:18px;
  1144. }
  1145. #u1617 {
  1146. position:absolute;
  1147. left:16px;
  1148. top:0px;
  1149. width:145px;
  1150. word-wrap:break-word;
  1151. }
  1152. #u1616_input {
  1153. position:absolute;
  1154. left:-3px;
  1155. top:-2px;
  1156. }
  1157. #u1618_img {
  1158. position:absolute;
  1159. left:0px;
  1160. top:0px;
  1161. width:551px;
  1162. height:2px;
  1163. }
  1164. #u1618 {
  1165. position:absolute;
  1166. left:1316px;
  1167. top:270px;
  1168. width:550px;
  1169. height:1px;
  1170. }
  1171. #u1619 {
  1172. position:absolute;
  1173. left:2px;
  1174. top:-8px;
  1175. width:546px;
  1176. visibility:hidden;
  1177. word-wrap:break-word;
  1178. }
  1179. #u1620_div {
  1180. position:absolute;
  1181. left:0px;
  1182. top:0px;
  1183. width:53px;
  1184. height:44px;
  1185. background:inherit;
  1186. background-color:rgba(242, 242, 242, 1);
  1187. box-sizing:border-box;
  1188. border-width:1px;
  1189. border-style:solid;
  1190. border-color:rgba(121, 121, 121, 1);
  1191. border-radius:0px;
  1192. -moz-box-shadow:none;
  1193. -webkit-box-shadow:none;
  1194. box-shadow:none;
  1195. }
  1196. #u1620 {
  1197. position:absolute;
  1198. left:1340px;
  1199. top:842px;
  1200. width:53px;
  1201. height:44px;
  1202. }
  1203. #u1621 {
  1204. position:absolute;
  1205. left:2px;
  1206. top:14px;
  1207. width:49px;
  1208. visibility:hidden;
  1209. word-wrap:break-word;
  1210. }
  1211. #u1622 {
  1212. position:absolute;
  1213. left:1340px;
  1214. top:894px;
  1215. width:80px;
  1216. height:18px;
  1217. }
  1218. #u1623 {
  1219. position:absolute;
  1220. left:16px;
  1221. top:0px;
  1222. width:62px;
  1223. word-wrap:break-word;
  1224. }
  1225. #u1622_input {
  1226. position:absolute;
  1227. left:-3px;
  1228. top:-2px;
  1229. }
  1230. #u1624 {
  1231. position:absolute;
  1232. left:1459px;
  1233. top:491px;
  1234. width:56px;
  1235. height:30px;
  1236. }
  1237. #u1624_input {
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:56px;
  1242. height:30px;
  1243. font-family:'ArialMT', 'Arial';
  1244. font-style:normal;
  1245. font-size:13px;
  1246. text-decoration:none;
  1247. color:#000000;
  1248. text-align:left;
  1249. }
  1250. #u1625 {
  1251. position:absolute;
  1252. left:1525px;
  1253. top:491px;
  1254. width:56px;
  1255. height:30px;
  1256. }
  1257. #u1625_input {
  1258. position:absolute;
  1259. left:0px;
  1260. top:0px;
  1261. width:56px;
  1262. height:30px;
  1263. font-family:'ArialMT', 'Arial';
  1264. font-style:normal;
  1265. font-size:13px;
  1266. text-decoration:none;
  1267. color:#000000;
  1268. text-align:left;
  1269. }
  1270. #u1626_img {
  1271. position:absolute;
  1272. left:0px;
  1273. top:0px;
  1274. width:412px;
  1275. height:2px;
  1276. }
  1277. #u1626 {
  1278. position:absolute;
  1279. left:1434px;
  1280. top:969px;
  1281. width:411px;
  1282. height:1px;
  1283. }
  1284. #u1627 {
  1285. position:absolute;
  1286. left:2px;
  1287. top:-8px;
  1288. width:407px;
  1289. visibility:hidden;
  1290. word-wrap:break-word;
  1291. }
  1292. #u1628 {
  1293. position:absolute;
  1294. left:1316px;
  1295. top:956px;
  1296. width:108px;
  1297. height:26px;
  1298. }
  1299. #u1628_input {
  1300. position:absolute;
  1301. left:0px;
  1302. top:0px;
  1303. width:108px;
  1304. height:26px;
  1305. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1306. font-weight:200;
  1307. font-style:normal;
  1308. font-size:13px;
  1309. text-decoration:none;
  1310. color:#000000;
  1311. text-align:center;
  1312. }
  1313. #u1629 {
  1314. position:absolute;
  1315. left:1340px;
  1316. top:607px;
  1317. width:387px;
  1318. height:18px;
  1319. }
  1320. #u1630 {
  1321. position:absolute;
  1322. left:16px;
  1323. top:0px;
  1324. width:369px;
  1325. word-wrap:break-word;
  1326. }
  1327. #u1629_input {
  1328. position:absolute;
  1329. left:-3px;
  1330. top:-2px;
  1331. }
  1332. #u1631 {
  1333. position:absolute;
  1334. left:1336px;
  1335. top:395px;
  1336. width:80px;
  1337. height:16px;
  1338. }
  1339. #u1632 {
  1340. position:absolute;
  1341. left:16px;
  1342. top:0px;
  1343. width:62px;
  1344. visibility:hidden;
  1345. word-wrap:break-word;
  1346. }
  1347. #u1631_input {
  1348. position:absolute;
  1349. left:-3px;
  1350. top:-2px;
  1351. }
  1352. #u1633 {
  1353. position:absolute;
  1354. left:1340px;
  1355. top:468px;
  1356. width:130px;
  1357. height:20px;
  1358. font-size:14px;
  1359. }
  1360. #u1634 {
  1361. position:absolute;
  1362. left:16px;
  1363. top:0px;
  1364. width:112px;
  1365. word-wrap:break-word;
  1366. }
  1367. #u1633_input {
  1368. position:absolute;
  1369. left:-3px;
  1370. top:-2px;
  1371. }
  1372. #u1635 {
  1373. position:absolute;
  1374. left:1336px;
  1375. top:360px;
  1376. width:80px;
  1377. height:18px;
  1378. }
  1379. #u1636 {
  1380. position:absolute;
  1381. left:16px;
  1382. top:0px;
  1383. width:62px;
  1384. word-wrap:break-word;
  1385. }
  1386. #u1635_input {
  1387. position:absolute;
  1388. left:-3px;
  1389. top:-2px;
  1390. }
  1391. #u1637 {
  1392. position:absolute;
  1393. left:1788px;
  1394. top:288px;
  1395. width:78px;
  1396. height:26px;
  1397. }
  1398. #u1637_input {
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:78px;
  1403. height:26px;
  1404. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1405. font-weight:200;
  1406. font-style:normal;
  1407. font-size:13px;
  1408. text-decoration:none;
  1409. color:#000000;
  1410. text-align:center;
  1411. }
  1412. #u1638_div {
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:35px;
  1417. height:27px;
  1418. background:inherit;
  1419. background-color:rgba(242, 242, 242, 1);
  1420. box-sizing:border-box;
  1421. border-width:1px;
  1422. border-style:solid;
  1423. border-color:rgba(121, 121, 121, 1);
  1424. border-radius:0px;
  1425. -moz-box-shadow:none;
  1426. -webkit-box-shadow:none;
  1427. box-shadow:none;
  1428. }
  1429. #u1638 {
  1430. position:absolute;
  1431. left:1784px;
  1432. top:859px;
  1433. width:35px;
  1434. height:27px;
  1435. }
  1436. #u1639 {
  1437. position:absolute;
  1438. left:2px;
  1439. top:6px;
  1440. width:31px;
  1441. visibility:hidden;
  1442. word-wrap:break-word;
  1443. }
  1444. #u1640_div {
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:35px;
  1449. height:27px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 1);
  1452. box-sizing:border-box;
  1453. border-width:1px;
  1454. border-style:solid;
  1455. border-color:rgba(121, 121, 121, 1);
  1456. border-radius:0px;
  1457. -moz-box-shadow:none;
  1458. -webkit-box-shadow:none;
  1459. box-shadow:none;
  1460. }
  1461. #u1640 {
  1462. position:absolute;
  1463. left:1784px;
  1464. top:833px;
  1465. width:35px;
  1466. height:27px;
  1467. -webkit-transform:rotate(180deg);
  1468. -moz-transform:rotate(180deg);
  1469. -ms-transform:rotate(180deg);
  1470. transform:rotate(180deg);
  1471. }
  1472. #u1641 {
  1473. position:absolute;
  1474. left:2px;
  1475. top:6px;
  1476. width:31px;
  1477. word-wrap:break-word;
  1478. }
  1479. #u1642 {
  1480. position:absolute;
  1481. left:1767px;
  1482. top:894px;
  1483. width:80px;
  1484. height:18px;
  1485. }
  1486. #u1643 {
  1487. position:absolute;
  1488. left:16px;
  1489. top:0px;
  1490. width:62px;
  1491. word-wrap:break-word;
  1492. }
  1493. #u1642_input {
  1494. position:absolute;
  1495. left:-3px;
  1496. top:-2px;
  1497. }
  1498. #u1644_div {
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:33px;
  1503. height:30px;
  1504. background:inherit;
  1505. background-color:rgba(242, 242, 242, 1);
  1506. box-sizing:border-box;
  1507. border-width:1px;
  1508. border-style:solid;
  1509. border-color:rgba(121, 121, 121, 1);
  1510. border-radius:0px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. }
  1515. #u1644 {
  1516. position:absolute;
  1517. left:1570px;
  1518. top:856px;
  1519. width:33px;
  1520. height:30px;
  1521. }
  1522. #u1645 {
  1523. position:absolute;
  1524. left:2px;
  1525. top:7px;
  1526. width:29px;
  1527. visibility:hidden;
  1528. word-wrap:break-word;
  1529. }
  1530. #u1646_div {
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:33px;
  1535. height:30px;
  1536. background:inherit;
  1537. background-color:rgba(255, 255, 255, 1);
  1538. box-sizing:border-box;
  1539. border-width:1px;
  1540. border-style:solid;
  1541. border-color:rgba(121, 121, 121, 1);
  1542. border-radius:0px;
  1543. -moz-box-shadow:none;
  1544. -webkit-box-shadow:none;
  1545. box-shadow:none;
  1546. }
  1547. #u1646 {
  1548. position:absolute;
  1549. left:1538px;
  1550. top:856px;
  1551. width:33px;
  1552. height:30px;
  1553. -webkit-transform:rotate(180deg);
  1554. -moz-transform:rotate(180deg);
  1555. -ms-transform:rotate(180deg);
  1556. transform:rotate(180deg);
  1557. }
  1558. #u1647 {
  1559. position:absolute;
  1560. left:2px;
  1561. top:8px;
  1562. width:29px;
  1563. word-wrap:break-word;
  1564. }
  1565. #u1648 {
  1566. position:absolute;
  1567. left:1536px;
  1568. top:894px;
  1569. width:80px;
  1570. height:18px;
  1571. }
  1572. #u1649 {
  1573. position:absolute;
  1574. left:16px;
  1575. top:0px;
  1576. width:62px;
  1577. word-wrap:break-word;
  1578. }
  1579. #u1648_input {
  1580. position:absolute;
  1581. left:-3px;
  1582. top:-2px;
  1583. }
  1584. #u1650_div {
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:89px;
  1589. height:30px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 1);
  1592. box-sizing:border-box;
  1593. border-width:1px;
  1594. border-style:solid;
  1595. border-color:rgba(121, 121, 121, 1);
  1596. border-radius:5px;
  1597. -moz-box-shadow:none;
  1598. -webkit-box-shadow:none;
  1599. box-shadow:none;
  1600. }
  1601. #u1650 {
  1602. position:absolute;
  1603. left:1360px;
  1604. top:491px;
  1605. width:89px;
  1606. height:30px;
  1607. }
  1608. #u1651 {
  1609. position:absolute;
  1610. left:2px;
  1611. top:6px;
  1612. width:85px;
  1613. word-wrap:break-word;
  1614. }
  1615. #u1652_div {
  1616. position:absolute;
  1617. left:0px;
  1618. top:0px;
  1619. width:50px;
  1620. height:25px;
  1621. background:inherit;
  1622. background-color:rgba(255, 255, 255, 0);
  1623. border:none;
  1624. border-radius:0px;
  1625. -moz-box-shadow:none;
  1626. -webkit-box-shadow:none;
  1627. box-shadow:none;
  1628. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  1629. font-weight:650;
  1630. font-style:normal;
  1631. }
  1632. #u1652 {
  1633. position:absolute;
  1634. left:1316px;
  1635. top:289px;
  1636. width:50px;
  1637. height:25px;
  1638. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  1639. font-weight:650;
  1640. font-style:normal;
  1641. }
  1642. #u1653 {
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:50px;
  1647. white-space:nowrap;
  1648. }
  1649. #u1654_div {
  1650. position:absolute;
  1651. left:0px;
  1652. top:0px;
  1653. width:202px;
  1654. height:20px;
  1655. background:inherit;
  1656. background-color:rgba(255, 255, 255, 0);
  1657. border:none;
  1658. border-radius:0px;
  1659. -moz-box-shadow:none;
  1660. -webkit-box-shadow:none;
  1661. box-shadow:none;
  1662. font-size:14px;
  1663. }
  1664. #u1654 {
  1665. position:absolute;
  1666. left:1336px;
  1667. top:330px;
  1668. width:202px;
  1669. height:20px;
  1670. font-size:14px;
  1671. }
  1672. #u1655 {
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:202px;
  1677. word-wrap:break-word;
  1678. }
  1679. #u1656_img {
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:83px;
  1684. height:18px;
  1685. }
  1686. #u1656 {
  1687. position:absolute;
  1688. left:1591px;
  1689. top:497px;
  1690. width:83px;
  1691. height:18px;
  1692. font-family:'PingFangSC-Regular', 'PingFang SC';
  1693. font-weight:400;
  1694. font-style:normal;
  1695. color:#000000;
  1696. }
  1697. #u1657 {
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:83px;
  1702. white-space:nowrap;
  1703. }
  1704. #u1658 {
  1705. position:absolute;
  1706. left:1360px;
  1707. top:431px;
  1708. width:100px;
  1709. height:18px;
  1710. }
  1711. #u1659 {
  1712. position:absolute;
  1713. left:16px;
  1714. top:0px;
  1715. width:82px;
  1716. word-wrap:break-word;
  1717. }
  1718. #u1658_input {
  1719. position:absolute;
  1720. left:-3px;
  1721. top:-2px;
  1722. }
  1723. #u1660_div {
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:89px;
  1728. height:30px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. box-sizing:border-box;
  1732. border-width:1px;
  1733. border-style:solid;
  1734. border-color:rgba(121, 121, 121, 1);
  1735. border-radius:5px;
  1736. -moz-box-shadow:none;
  1737. -webkit-box-shadow:none;
  1738. box-shadow:none;
  1739. }
  1740. #u1660 {
  1741. position:absolute;
  1742. left:1623px;
  1743. top:601px;
  1744. width:89px;
  1745. height:30px;
  1746. }
  1747. #u1661 {
  1748. position:absolute;
  1749. left:2px;
  1750. top:6px;
  1751. width:85px;
  1752. word-wrap:break-word;
  1753. }
  1754. #u1662_div {
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:890px;
  1759. height:367px;
  1760. background:inherit;
  1761. background-color:rgba(242, 242, 242, 1);
  1762. box-sizing:border-box;
  1763. border-width:1px;
  1764. border-style:solid;
  1765. border-color:rgba(121, 121, 121, 1);
  1766. border-radius:0px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. }
  1771. #u1662 {
  1772. position:absolute;
  1773. left:1974px;
  1774. top:131px;
  1775. width:890px;
  1776. height:367px;
  1777. }
  1778. #u1663 {
  1779. position:absolute;
  1780. left:2px;
  1781. top:176px;
  1782. width:886px;
  1783. visibility:hidden;
  1784. word-wrap:break-word;
  1785. }
  1786. #u1664_div {
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:73px;
  1791. height:25px;
  1792. background:inherit;
  1793. background-color:rgba(255, 255, 255, 0);
  1794. border:none;
  1795. border-radius:0px;
  1796. -moz-box-shadow:none;
  1797. -webkit-box-shadow:none;
  1798. box-shadow:none;
  1799. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  1800. font-weight:650;
  1801. font-style:normal;
  1802. }
  1803. #u1664 {
  1804. position:absolute;
  1805. left:2002px;
  1806. top:163px;
  1807. width:73px;
  1808. height:25px;
  1809. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  1810. font-weight:650;
  1811. font-style:normal;
  1812. }
  1813. #u1665 {
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:73px;
  1818. white-space:nowrap;
  1819. }
  1820. #u1666_div {
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:208px;
  1825. height:50px;
  1826. background:inherit;
  1827. background-color:rgba(255, 255, 255, 1);
  1828. box-sizing:border-box;
  1829. border-width:1px;
  1830. border-style:solid;
  1831. border-color:rgba(121, 121, 121, 1);
  1832. border-radius:0px;
  1833. -moz-box-shadow:none;
  1834. -webkit-box-shadow:none;
  1835. box-shadow:none;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC';
  1837. font-weight:400;
  1838. font-style:normal;
  1839. }
  1840. #u1666 {
  1841. position:absolute;
  1842. left:1998px;
  1843. top:245px;
  1844. width:208px;
  1845. height:50px;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC';
  1847. font-weight:400;
  1848. font-style:normal;
  1849. }
  1850. #u1667 {
  1851. position:absolute;
  1852. left:2px;
  1853. top:16px;
  1854. width:204px;
  1855. word-wrap:break-word;
  1856. }
  1857. #u1668_div {
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:208px;
  1862. height:50px;
  1863. background:inherit;
  1864. background-color:rgba(255, 255, 255, 1);
  1865. box-sizing:border-box;
  1866. border-width:1px;
  1867. border-style:solid;
  1868. border-color:rgba(121, 121, 121, 1);
  1869. border-radius:0px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC';
  1874. font-weight:400;
  1875. font-style:normal;
  1876. }
  1877. #u1668 {
  1878. position:absolute;
  1879. left:2205px;
  1880. top:245px;
  1881. width:208px;
  1882. height:50px;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC';
  1884. font-weight:400;
  1885. font-style:normal;
  1886. }
  1887. #u1669 {
  1888. position:absolute;
  1889. left:2px;
  1890. top:16px;
  1891. width:204px;
  1892. word-wrap:break-word;
  1893. }
  1894. #u1670_div {
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:205px;
  1899. height:50px;
  1900. background:inherit;
  1901. background-color:rgba(255, 255, 255, 1);
  1902. box-sizing:border-box;
  1903. border-width:1px;
  1904. border-style:solid;
  1905. border-color:rgba(121, 121, 121, 1);
  1906. border-radius:0px;
  1907. -moz-box-shadow:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC';
  1911. font-weight:400;
  1912. font-style:normal;
  1913. }
  1914. #u1670 {
  1915. position:absolute;
  1916. left:2523px;
  1917. top:245px;
  1918. width:205px;
  1919. height:50px;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC';
  1921. font-weight:400;
  1922. font-style:normal;
  1923. }
  1924. #u1671 {
  1925. position:absolute;
  1926. left:2px;
  1927. top:16px;
  1928. width:201px;
  1929. word-wrap:break-word;
  1930. }
  1931. #u1672 {
  1932. position:absolute;
  1933. left:1998px;
  1934. top:295px;
  1935. width:208px;
  1936. height:49px;
  1937. }
  1938. #u1672_input {
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:208px;
  1943. height:49px;
  1944. font-family:'ArialMT', 'Arial';
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:13px;
  1948. text-decoration:none;
  1949. color:#000000;
  1950. text-align:left;
  1951. }
  1952. #u1673 {
  1953. position:absolute;
  1954. left:2205px;
  1955. top:295px;
  1956. width:207px;
  1957. height:49px;
  1958. }
  1959. #u1673_input {
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:207px;
  1964. height:49px;
  1965. font-family:'ArialMT', 'Arial';
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:13px;
  1969. text-decoration:none;
  1970. color:#000000;
  1971. }
  1972. #u1673_input:disabled {
  1973. color:grayText;
  1974. }
  1975. #u1674 {
  1976. position:absolute;
  1977. left:2523px;
  1978. top:295px;
  1979. width:205px;
  1980. height:49px;
  1981. }
  1982. #u1674_input {
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:205px;
  1987. height:49px;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC';
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:13px;
  1992. text-decoration:none;
  1993. color:#AEAEAE;
  1994. text-align:left;
  1995. }
  1996. #u1675 {
  1997. position:absolute;
  1998. left:2002px;
  1999. top:354px;
  2000. width:78px;
  2001. height:26px;
  2002. }
  2003. #u1675_input {
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:78px;
  2008. height:26px;
  2009. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2010. font-weight:200;
  2011. font-style:normal;
  2012. font-size:13px;
  2013. text-decoration:none;
  2014. color:#000000;
  2015. text-align:center;
  2016. }
  2017. #u1676_div {
  2018. position:absolute;
  2019. left:0px;
  2020. top:0px;
  2021. width:110px;
  2022. height:50px;
  2023. background:inherit;
  2024. background-color:rgba(255, 255, 255, 1);
  2025. box-sizing:border-box;
  2026. border-width:1px;
  2027. border-style:solid;
  2028. border-color:rgba(121, 121, 121, 1);
  2029. border-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. font-family:'PingFangSC-Regular', 'PingFang SC';
  2034. font-weight:400;
  2035. font-style:normal;
  2036. }
  2037. #u1676 {
  2038. position:absolute;
  2039. left:2728px;
  2040. top:245px;
  2041. width:110px;
  2042. height:50px;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC';
  2044. font-weight:400;
  2045. font-style:normal;
  2046. }
  2047. #u1677 {
  2048. position:absolute;
  2049. left:2px;
  2050. top:16px;
  2051. width:106px;
  2052. word-wrap:break-word;
  2053. }
  2054. #u1678 {
  2055. position:absolute;
  2056. left:2728px;
  2057. top:295px;
  2058. width:110px;
  2059. height:49px;
  2060. }
  2061. #u1678_input {
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:110px;
  2066. height:49px;
  2067. font-family:'ArialMT', 'Arial';
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:13px;
  2071. text-decoration:none;
  2072. color:#000000;
  2073. text-align:left;
  2074. }
  2075. #u1679 {
  2076. position:absolute;
  2077. left:2353px;
  2078. top:434px;
  2079. width:132px;
  2080. height:40px;
  2081. }
  2082. #u1679_input {
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:132px;
  2087. height:40px;
  2088. font-family:'ArialMT', 'Arial';
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:13px;
  2092. text-decoration:none;
  2093. color:#000000;
  2094. text-align:center;
  2095. }
  2096. #u1680_img {
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:891px;
  2101. height:2px;
  2102. }
  2103. #u1680 {
  2104. position:absolute;
  2105. left:1974px;
  2106. top:414px;
  2107. width:890px;
  2108. height:1px;
  2109. }
  2110. #u1681 {
  2111. position:absolute;
  2112. left:2px;
  2113. top:-8px;
  2114. width:886px;
  2115. visibility:hidden;
  2116. word-wrap:break-word;
  2117. }
  2118. #u1682_div {
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:17px;
  2123. height:28px;
  2124. background:inherit;
  2125. background-color:rgba(255, 255, 255, 0);
  2126. border:none;
  2127. border-radius:0px;
  2128. -moz-box-shadow:none;
  2129. -webkit-box-shadow:none;
  2130. box-shadow:none;
  2131. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2132. font-weight:700;
  2133. font-style:normal;
  2134. }
  2135. #u1682 {
  2136. position:absolute;
  2137. left:2833px;
  2138. top:141px;
  2139. width:17px;
  2140. height:28px;
  2141. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2142. font-weight:700;
  2143. font-style:normal;
  2144. }
  2145. #u1683 {
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:17px;
  2150. white-space:nowrap;
  2151. }
  2152. #u1684 {
  2153. position:absolute;
  2154. left:1459px;
  2155. top:561px;
  2156. width:56px;
  2157. height:30px;
  2158. }
  2159. #u1684_input {
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:56px;
  2164. height:30px;
  2165. font-family:'ArialMT', 'Arial';
  2166. font-style:normal;
  2167. font-size:13px;
  2168. text-decoration:none;
  2169. color:#000000;
  2170. text-align:left;
  2171. }
  2172. #u1685 {
  2173. position:absolute;
  2174. left:1525px;
  2175. top:561px;
  2176. width:56px;
  2177. height:30px;
  2178. }
  2179. #u1685_input {
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:56px;
  2184. height:30px;
  2185. font-family:'ArialMT', 'Arial';
  2186. font-style:normal;
  2187. font-size:13px;
  2188. text-decoration:none;
  2189. color:#000000;
  2190. text-align:left;
  2191. }
  2192. #u1686 {
  2193. position:absolute;
  2194. left:1340px;
  2195. top:538px;
  2196. width:130px;
  2197. height:20px;
  2198. font-size:14px;
  2199. }
  2200. #u1687 {
  2201. position:absolute;
  2202. left:16px;
  2203. top:0px;
  2204. width:112px;
  2205. word-wrap:break-word;
  2206. }
  2207. #u1686_input {
  2208. position:absolute;
  2209. left:-3px;
  2210. top:-2px;
  2211. }
  2212. #u1688_div {
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:89px;
  2217. height:30px;
  2218. background:inherit;
  2219. background-color:rgba(255, 255, 255, 1);
  2220. box-sizing:border-box;
  2221. border-width:1px;
  2222. border-style:solid;
  2223. border-color:rgba(121, 121, 121, 1);
  2224. border-radius:5px;
  2225. -moz-box-shadow:none;
  2226. -webkit-box-shadow:none;
  2227. box-shadow:none;
  2228. }
  2229. #u1688 {
  2230. position:absolute;
  2231. left:1360px;
  2232. top:561px;
  2233. width:89px;
  2234. height:30px;
  2235. }
  2236. #u1689 {
  2237. position:absolute;
  2238. left:2px;
  2239. top:6px;
  2240. width:85px;
  2241. word-wrap:break-word;
  2242. }
  2243. #u1690_img {
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:83px;
  2248. height:18px;
  2249. }
  2250. #u1690 {
  2251. position:absolute;
  2252. left:1591px;
  2253. top:567px;
  2254. width:83px;
  2255. height:18px;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC';
  2257. font-weight:400;
  2258. font-style:normal;
  2259. color:#000000;
  2260. }
  2261. #u1691 {
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:83px;
  2266. white-space:nowrap;
  2267. }
  2268. #u1692 {
  2269. position:absolute;
  2270. left:1642px;
  2271. top:390px;
  2272. width:56px;
  2273. height:30px;
  2274. }
  2275. #u1692_input {
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:56px;
  2280. height:30px;
  2281. font-family:'ArialMT', 'Arial';
  2282. font-style:normal;
  2283. font-size:13px;
  2284. text-decoration:none;
  2285. color:#000000;
  2286. text-align:left;
  2287. }
  2288. #u1693 {
  2289. position:absolute;
  2290. left:1708px;
  2291. top:390px;
  2292. width:56px;
  2293. height:30px;
  2294. }
  2295. #u1693_input {
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:56px;
  2300. height:30px;
  2301. font-family:'ArialMT', 'Arial';
  2302. font-style:normal;
  2303. font-size:13px;
  2304. text-decoration:none;
  2305. color:#000000;
  2306. text-align:left;
  2307. }
  2308. #u1694_div {
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:110px;
  2313. height:50px;
  2314. background:inherit;
  2315. background-color:rgba(255, 255, 255, 1);
  2316. box-sizing:border-box;
  2317. border-width:1px;
  2318. border-style:solid;
  2319. border-color:rgba(121, 121, 121, 1);
  2320. border-radius:0px;
  2321. -moz-box-shadow:none;
  2322. -webkit-box-shadow:none;
  2323. box-shadow:none;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC';
  2325. font-weight:400;
  2326. font-style:normal;
  2327. }
  2328. #u1694 {
  2329. position:absolute;
  2330. left:2413px;
  2331. top:245px;
  2332. width:110px;
  2333. height:50px;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC';
  2335. font-weight:400;
  2336. font-style:normal;
  2337. }
  2338. #u1695 {
  2339. position:absolute;
  2340. left:2px;
  2341. top:16px;
  2342. width:106px;
  2343. word-wrap:break-word;
  2344. }
  2345. #u1696 {
  2346. position:absolute;
  2347. left:2412px;
  2348. top:295px;
  2349. width:111px;
  2350. height:49px;
  2351. }
  2352. #u1696_input {
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:111px;
  2357. height:49px;
  2358. font-family:'ArialMT', 'Arial';
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:13px;
  2362. text-decoration:none;
  2363. color:#000000;
  2364. }
  2365. #u1696_input:disabled {
  2366. color:grayText;
  2367. }
  2368. #u1697_div {
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:319px;
  2373. height:165px;
  2374. background:inherit;
  2375. background-color:rgba(208, 225, 125, 1);
  2376. border:none;
  2377. border-radius:0px;
  2378. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2379. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2380. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2381. font-family:'PingFangSC-Regular', 'PingFang SC';
  2382. font-weight:400;
  2383. font-style:normal;
  2384. }
  2385. #u1697 {
  2386. position:absolute;
  2387. left:2422px;
  2388. top:525px;
  2389. width:319px;
  2390. height:165px;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC';
  2392. font-weight:400;
  2393. font-style:normal;
  2394. }
  2395. #u1698 {
  2396. position:absolute;
  2397. left:10px;
  2398. top:10px;
  2399. width:299px;
  2400. word-wrap:break-word;
  2401. }
  2402. #u1699_div {
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:919px;
  2407. height:600px;
  2408. background:inherit;
  2409. background-color:rgba(242, 242, 242, 1);
  2410. box-sizing:border-box;
  2411. border-width:1px;
  2412. border-style:solid;
  2413. border-color:rgba(121, 121, 121, 1);
  2414. border-radius:0px;
  2415. -moz-box-shadow:none;
  2416. -webkit-box-shadow:none;
  2417. box-shadow:none;
  2418. }
  2419. #u1699 {
  2420. position:absolute;
  2421. left:58px;
  2422. top:131px;
  2423. width:919px;
  2424. height:600px;
  2425. }
  2426. #u1700 {
  2427. position:absolute;
  2428. left:2px;
  2429. top:292px;
  2430. width:915px;
  2431. visibility:hidden;
  2432. word-wrap:break-word;
  2433. }
  2434. #u1701_img {
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:894px;
  2439. height:322px;
  2440. }
  2441. #u1701 {
  2442. position:absolute;
  2443. left:71px;
  2444. top:152px;
  2445. width:894px;
  2446. height:322px;
  2447. }
  2448. #u1702 {
  2449. position:absolute;
  2450. left:2px;
  2451. top:153px;
  2452. width:890px;
  2453. visibility:hidden;
  2454. word-wrap:break-word;
  2455. }
  2456. #u1703_div {
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:259px;
  2461. height:41px;
  2462. background:inherit;
  2463. background-color:rgba(255, 255, 255, 1);
  2464. border:none;
  2465. border-radius:0px;
  2466. -moz-box-shadow:none;
  2467. -webkit-box-shadow:none;
  2468. box-shadow:none;
  2469. }
  2470. #u1703 {
  2471. position:absolute;
  2472. left:312px;
  2473. top:163px;
  2474. width:259px;
  2475. height:41px;
  2476. }
  2477. #u1704 {
  2478. position:absolute;
  2479. left:2px;
  2480. top:12px;
  2481. width:255px;
  2482. visibility:hidden;
  2483. word-wrap:break-word;
  2484. }
  2485. #u1705_div {
  2486. position:absolute;
  2487. left:0px;
  2488. top:0px;
  2489. width:79px;
  2490. height:41px;
  2491. background:inherit;
  2492. background-color:rgba(1, 148, 137, 1);
  2493. border:none;
  2494. border-radius:3px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC';
  2499. font-weight:400;
  2500. font-style:normal;
  2501. color:#FFFFFF;
  2502. }
  2503. #u1705 {
  2504. position:absolute;
  2505. left:312px;
  2506. top:163px;
  2507. width:79px;
  2508. height:41px;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC';
  2510. font-weight:400;
  2511. font-style:normal;
  2512. color:#FFFFFF;
  2513. }
  2514. #u1706 {
  2515. position:absolute;
  2516. left:2px;
  2517. top:12px;
  2518. width:75px;
  2519. word-wrap:break-word;
  2520. }
  2521. #u1707_div {
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:52px;
  2526. height:27px;
  2527. background:inherit;
  2528. background-color:rgba(255, 255, 255, 1);
  2529. border:none;
  2530. border-radius:0px;
  2531. -moz-box-shadow:none;
  2532. -webkit-box-shadow:none;
  2533. box-shadow:none;
  2534. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2535. font-weight:700;
  2536. font-style:normal;
  2537. }
  2538. #u1707 {
  2539. position:absolute;
  2540. left:145px;
  2541. top:390px;
  2542. width:52px;
  2543. height:27px;
  2544. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2545. font-weight:700;
  2546. font-style:normal;
  2547. }
  2548. #u1708 {
  2549. position:absolute;
  2550. left:2px;
  2551. top:6px;
  2552. width:48px;
  2553. word-wrap:break-word;
  2554. }
  2555. #u1709_div {
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:52px;
  2560. height:27px;
  2561. background:inherit;
  2562. background-color:rgba(255, 255, 255, 1);
  2563. border:none;
  2564. border-radius:0px;
  2565. -moz-box-shadow:none;
  2566. -webkit-box-shadow:none;
  2567. box-shadow:none;
  2568. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2569. font-weight:700;
  2570. font-style:normal;
  2571. }
  2572. #u1709 {
  2573. position:absolute;
  2574. left:312px;
  2575. top:390px;
  2576. width:52px;
  2577. height:27px;
  2578. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2579. font-weight:700;
  2580. font-style:normal;
  2581. }
  2582. #u1710 {
  2583. position:absolute;
  2584. left:2px;
  2585. top:6px;
  2586. width:48px;
  2587. word-wrap:break-word;
  2588. }
  2589. #u1711_div {
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:52px;
  2594. height:27px;
  2595. background:inherit;
  2596. background-color:rgba(255, 255, 255, 1);
  2597. border:none;
  2598. border-radius:0px;
  2599. -moz-box-shadow:none;
  2600. -webkit-box-shadow:none;
  2601. box-shadow:none;
  2602. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2603. font-weight:700;
  2604. font-style:normal;
  2605. }
  2606. #u1711 {
  2607. position:absolute;
  2608. left:492px;
  2609. top:390px;
  2610. width:52px;
  2611. height:27px;
  2612. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2613. font-weight:700;
  2614. font-style:normal;
  2615. }
  2616. #u1712 {
  2617. position:absolute;
  2618. left:2px;
  2619. top:6px;
  2620. width:48px;
  2621. word-wrap:break-word;
  2622. }
  2623. #u1713_div {
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:52px;
  2628. height:27px;
  2629. background:inherit;
  2630. background-color:rgba(255, 255, 255, 1);
  2631. border:none;
  2632. border-radius:0px;
  2633. -moz-box-shadow:none;
  2634. -webkit-box-shadow:none;
  2635. box-shadow:none;
  2636. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2637. font-weight:700;
  2638. font-style:normal;
  2639. }
  2640. #u1713 {
  2641. position:absolute;
  2642. left:662px;
  2643. top:392px;
  2644. width:52px;
  2645. height:27px;
  2646. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2647. font-weight:700;
  2648. font-style:normal;
  2649. }
  2650. #u1714 {
  2651. position:absolute;
  2652. left:2px;
  2653. top:6px;
  2654. width:48px;
  2655. word-wrap:break-word;
  2656. }
  2657. #u1715_div {
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:52px;
  2662. height:27px;
  2663. background:inherit;
  2664. background-color:rgba(255, 255, 255, 1);
  2665. border:none;
  2666. border-radius:0px;
  2667. -moz-box-shadow:none;
  2668. -webkit-box-shadow:none;
  2669. box-shadow:none;
  2670. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2671. font-weight:700;
  2672. font-style:normal;
  2673. }
  2674. #u1715 {
  2675. position:absolute;
  2676. left:835px;
  2677. top:391px;
  2678. width:52px;
  2679. height:27px;
  2680. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2681. font-weight:700;
  2682. font-style:normal;
  2683. }
  2684. #u1716 {
  2685. position:absolute;
  2686. left:2px;
  2687. top:6px;
  2688. width:48px;
  2689. word-wrap:break-word;
  2690. }
  2691. #u1717_div {
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:244px;
  2696. height:25px;
  2697. background:inherit;
  2698. background-color:rgba(255, 255, 255, 0);
  2699. border:none;
  2700. border-radius:0px;
  2701. -moz-box-shadow:none;
  2702. -webkit-box-shadow:none;
  2703. box-shadow:none;
  2704. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2705. font-weight:700;
  2706. font-style:normal;
  2707. }
  2708. #u1717 {
  2709. position:absolute;
  2710. left:71px;
  2711. top:81px;
  2712. width:244px;
  2713. height:25px;
  2714. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2715. font-weight:700;
  2716. font-style:normal;
  2717. }
  2718. #u1718 {
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:244px;
  2723. word-wrap:break-word;
  2724. }
  2725. #u1719_div {
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:244px;
  2730. height:25px;
  2731. background:inherit;
  2732. background-color:rgba(255, 255, 255, 0);
  2733. border:none;
  2734. border-radius:0px;
  2735. -moz-box-shadow:none;
  2736. -webkit-box-shadow:none;
  2737. box-shadow:none;
  2738. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2739. font-weight:700;
  2740. font-style:normal;
  2741. }
  2742. #u1719 {
  2743. position:absolute;
  2744. left:1065px;
  2745. top:81px;
  2746. width:244px;
  2747. height:25px;
  2748. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2749. font-weight:700;
  2750. font-style:normal;
  2751. }
  2752. #u1720 {
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:244px;
  2757. word-wrap:break-word;
  2758. }
  2759. #u1721_div {
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:244px;
  2764. height:25px;
  2765. background:inherit;
  2766. background-color:rgba(255, 255, 255, 0);
  2767. border:none;
  2768. border-radius:0px;
  2769. -moz-box-shadow:none;
  2770. -webkit-box-shadow:none;
  2771. box-shadow:none;
  2772. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2773. font-weight:650;
  2774. font-style:normal;
  2775. }
  2776. #u1721 {
  2777. position:absolute;
  2778. left:2002px;
  2779. top:81px;
  2780. width:244px;
  2781. height:25px;
  2782. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2783. font-weight:650;
  2784. font-style:normal;
  2785. }
  2786. #u1722 {
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:244px;
  2791. word-wrap:break-word;
  2792. }
  2793. #u1723_div {
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:320px;
  2798. height:86px;
  2799. background:inherit;
  2800. background-color:rgba(208, 225, 125, 1);
  2801. border:none;
  2802. border-radius:0px;
  2803. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2804. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2805. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2806. }
  2807. #u1723 {
  2808. position:absolute;
  2809. left:71px;
  2810. top:774px;
  2811. width:320px;
  2812. height:86px;
  2813. }
  2814. #u1724 {
  2815. position:absolute;
  2816. left:10px;
  2817. top:10px;
  2818. width:300px;
  2819. word-wrap:break-word;
  2820. }