styles.css 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:1472px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u253 {
  16. position:absolute;
  17. left:0px;
  18. top:0px;
  19. width:0px;
  20. height:0px;
  21. }
  22. #u254_div {
  23. position:absolute;
  24. left:0px;
  25. top:0px;
  26. width:320px;
  27. height:578px;
  28. background:inherit;
  29. background-color:rgba(242, 242, 242, 1);
  30. box-sizing:border-box;
  31. border-width:1px;
  32. border-style:solid;
  33. border-color:rgba(0, 0, 0, 1);
  34. border-radius:0px;
  35. -moz-box-shadow:none;
  36. -webkit-box-shadow:none;
  37. box-shadow:none;
  38. }
  39. #u254 {
  40. position:absolute;
  41. left:420px;
  42. top:104px;
  43. width:320px;
  44. height:578px;
  45. }
  46. #u255 {
  47. position:absolute;
  48. left:2px;
  49. top:281px;
  50. width:316px;
  51. visibility:hidden;
  52. word-wrap:break-word;
  53. }
  54. #u256 {
  55. position:absolute;
  56. left:0px;
  57. top:0px;
  58. width:0px;
  59. height:0px;
  60. }
  61. #u257_div {
  62. position:absolute;
  63. left:0px;
  64. top:0px;
  65. width:318px;
  66. height:17px;
  67. background:inherit;
  68. background-color:rgba(255, 255, 255, 1);
  69. border:none;
  70. border-radius:0px;
  71. -moz-box-shadow:none;
  72. -webkit-box-shadow:none;
  73. box-shadow:none;
  74. }
  75. #u257 {
  76. position:absolute;
  77. left:421px;
  78. top:105px;
  79. width:318px;
  80. height:17px;
  81. }
  82. #u258 {
  83. position:absolute;
  84. left:2px;
  85. top:0px;
  86. width:314px;
  87. visibility:hidden;
  88. word-wrap:break-word;
  89. }
  90. #u259_img {
  91. position:absolute;
  92. left:0px;
  93. top:0px;
  94. width:318px;
  95. height:17px;
  96. }
  97. #u259 {
  98. position:absolute;
  99. left:421px;
  100. top:105px;
  101. width:318px;
  102. height:17px;
  103. }
  104. #u260 {
  105. position:absolute;
  106. left:2px;
  107. top:0px;
  108. width:314px;
  109. visibility:hidden;
  110. word-wrap:break-word;
  111. }
  112. #u261 {
  113. position:absolute;
  114. left:0px;
  115. top:0px;
  116. width:0px;
  117. height:0px;
  118. }
  119. #u262_div {
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:318px;
  124. height:40px;
  125. background:inherit;
  126. background-color:rgba(255, 255, 255, 1);
  127. box-sizing:border-box;
  128. border-width:1px;
  129. border-style:solid;
  130. border-color:rgba(228, 228, 228, 1);
  131. border-left:0px;
  132. border-top:0px;
  133. border-right:0px;
  134. border-radius:0px;
  135. border-top-left-radius:0px;
  136. border-top-right-radius:0px;
  137. border-bottom-right-radius:0px;
  138. border-bottom-left-radius:0px;
  139. -moz-box-shadow:none;
  140. -webkit-box-shadow:none;
  141. box-shadow:none;
  142. font-family:'PingFangSC-Regular', 'PingFang SC';
  143. font-weight:400;
  144. font-style:normal;
  145. font-size:14px;
  146. text-align:left;
  147. }
  148. #u262 {
  149. position:absolute;
  150. left:421px;
  151. top:122px;
  152. width:318px;
  153. height:40px;
  154. font-family:'PingFangSC-Regular', 'PingFang SC';
  155. font-weight:400;
  156. font-style:normal;
  157. font-size:14px;
  158. text-align:left;
  159. }
  160. #u263 {
  161. position:absolute;
  162. left:0px;
  163. top:10px;
  164. width:318px;
  165. word-wrap:break-word;
  166. }
  167. #u264_img {
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:10px;
  172. height:16px;
  173. }
  174. #u264 {
  175. position:absolute;
  176. left:431px;
  177. top:134px;
  178. width:10px;
  179. height:16px;
  180. }
  181. #u265 {
  182. position:absolute;
  183. left:2px;
  184. top:0px;
  185. width:6px;
  186. visibility:hidden;
  187. word-wrap:break-word;
  188. }
  189. #u266 {
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:0px;
  194. height:0px;
  195. }
  196. #u267_div {
  197. position:absolute;
  198. left:0px;
  199. top:0px;
  200. width:320px;
  201. height:580px;
  202. background:inherit;
  203. background-color:rgba(242, 242, 242, 1);
  204. box-sizing:border-box;
  205. border-width:1px;
  206. border-style:solid;
  207. border-color:rgba(0, 0, 0, 1);
  208. border-radius:0px;
  209. -moz-box-shadow:none;
  210. -webkit-box-shadow:none;
  211. box-shadow:none;
  212. }
  213. #u267 {
  214. position:absolute;
  215. left:70px;
  216. top:104px;
  217. width:320px;
  218. height:580px;
  219. }
  220. #u268 {
  221. position:absolute;
  222. left:2px;
  223. top:282px;
  224. width:316px;
  225. visibility:hidden;
  226. word-wrap:break-word;
  227. }
  228. #u269 {
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:0px;
  233. height:0px;
  234. }
  235. #u270_div {
  236. position:absolute;
  237. left:0px;
  238. top:0px;
  239. width:318px;
  240. height:17px;
  241. background:inherit;
  242. background-color:rgba(255, 255, 255, 1);
  243. border:none;
  244. border-radius:0px;
  245. -moz-box-shadow:none;
  246. -webkit-box-shadow:none;
  247. box-shadow:none;
  248. }
  249. #u270 {
  250. position:absolute;
  251. left:71px;
  252. top:105px;
  253. width:318px;
  254. height:17px;
  255. }
  256. #u271 {
  257. position:absolute;
  258. left:2px;
  259. top:0px;
  260. width:314px;
  261. visibility:hidden;
  262. word-wrap:break-word;
  263. }
  264. #u272_img {
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:318px;
  269. height:17px;
  270. }
  271. #u272 {
  272. position:absolute;
  273. left:71px;
  274. top:105px;
  275. width:318px;
  276. height:17px;
  277. }
  278. #u273 {
  279. position:absolute;
  280. left:2px;
  281. top:0px;
  282. width:314px;
  283. visibility:hidden;
  284. word-wrap:break-word;
  285. }
  286. #u274 {
  287. position:absolute;
  288. left:0px;
  289. top:0px;
  290. width:0px;
  291. height:0px;
  292. }
  293. #u275_div {
  294. position:absolute;
  295. left:0px;
  296. top:0px;
  297. width:318px;
  298. height:40px;
  299. background:inherit;
  300. background-color:rgba(255, 255, 255, 1);
  301. box-sizing:border-box;
  302. border-width:1px;
  303. border-style:solid;
  304. border-color:rgba(228, 228, 228, 1);
  305. border-left:0px;
  306. border-top:0px;
  307. border-right:0px;
  308. border-radius:0px;
  309. border-top-left-radius:0px;
  310. border-top-right-radius:0px;
  311. border-bottom-right-radius:0px;
  312. border-bottom-left-radius:0px;
  313. -moz-box-shadow:none;
  314. -webkit-box-shadow:none;
  315. box-shadow:none;
  316. font-family:'PingFangSC-Regular', 'PingFang SC';
  317. font-weight:400;
  318. font-style:normal;
  319. font-size:14px;
  320. text-align:left;
  321. }
  322. #u275 {
  323. position:absolute;
  324. left:71px;
  325. top:122px;
  326. width:318px;
  327. height:40px;
  328. font-family:'PingFangSC-Regular', 'PingFang SC';
  329. font-weight:400;
  330. font-style:normal;
  331. font-size:14px;
  332. text-align:left;
  333. }
  334. #u276 {
  335. position:absolute;
  336. left:0px;
  337. top:10px;
  338. width:318px;
  339. word-wrap:break-word;
  340. }
  341. #u277_img {
  342. position:absolute;
  343. left:0px;
  344. top:0px;
  345. width:10px;
  346. height:16px;
  347. }
  348. #u277 {
  349. position:absolute;
  350. left:81px;
  351. top:134px;
  352. width:10px;
  353. height:16px;
  354. }
  355. #u278 {
  356. position:absolute;
  357. left:2px;
  358. top:0px;
  359. width:6px;
  360. visibility:hidden;
  361. word-wrap:break-word;
  362. }
  363. #u279_div {
  364. position:absolute;
  365. left:0px;
  366. top:0px;
  367. width:320px;
  368. height:523px;
  369. background:inherit;
  370. background-color:rgba(242, 242, 242, 1);
  371. box-sizing:border-box;
  372. border-width:1px;
  373. border-style:solid;
  374. border-color:rgba(121, 121, 121, 1);
  375. border-radius:0px;
  376. -moz-box-shadow:none;
  377. -webkit-box-shadow:none;
  378. box-shadow:none;
  379. }
  380. #u279 {
  381. position:absolute;
  382. left:70px;
  383. top:161px;
  384. width:320px;
  385. height:523px;
  386. }
  387. #u280 {
  388. position:absolute;
  389. left:2px;
  390. top:254px;
  391. width:316px;
  392. visibility:hidden;
  393. word-wrap:break-word;
  394. }
  395. #u281_img {
  396. position:absolute;
  397. left:0px;
  398. top:0px;
  399. width:19px;
  400. height:19px;
  401. }
  402. #u281 {
  403. position:absolute;
  404. left:221px;
  405. top:646px;
  406. width:19px;
  407. height:19px;
  408. -webkit-transform:rotate(270deg);
  409. -moz-transform:rotate(270deg);
  410. -ms-transform:rotate(270deg);
  411. transform:rotate(270deg);
  412. }
  413. #u282 {
  414. position:absolute;
  415. left:2px;
  416. top:2px;
  417. width:15px;
  418. visibility:hidden;
  419. word-wrap:break-word;
  420. }
  421. #u283_div {
  422. position:absolute;
  423. left:0px;
  424. top:0px;
  425. width:320px;
  426. height:521px;
  427. background:inherit;
  428. background-color:rgba(242, 242, 242, 1);
  429. box-sizing:border-box;
  430. border-width:1px;
  431. border-style:solid;
  432. border-color:rgba(121, 121, 121, 1);
  433. border-radius:0px;
  434. -moz-box-shadow:none;
  435. -webkit-box-shadow:none;
  436. box-shadow:none;
  437. }
  438. #u283 {
  439. position:absolute;
  440. left:420px;
  441. top:161px;
  442. width:320px;
  443. height:521px;
  444. }
  445. #u284 {
  446. position:absolute;
  447. left:2px;
  448. top:252px;
  449. width:316px;
  450. visibility:hidden;
  451. word-wrap:break-word;
  452. }
  453. #u285_div {
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:101px;
  458. height:14px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  467. font-weight:200;
  468. font-style:normal;
  469. font-size:14px;
  470. text-align:center;
  471. }
  472. #u285 {
  473. position:absolute;
  474. left:530px;
  475. top:396px;
  476. width:101px;
  477. height:14px;
  478. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  479. font-weight:200;
  480. font-style:normal;
  481. font-size:14px;
  482. text-align:center;
  483. }
  484. #u286 {
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:101px;
  489. word-wrap:break-word;
  490. }
  491. #u287_img {
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:19px;
  496. height:19px;
  497. }
  498. #u287 {
  499. position:absolute;
  500. left:710px;
  501. top:394px;
  502. width:19px;
  503. height:19px;
  504. -webkit-transform:rotate(180deg);
  505. -moz-transform:rotate(180deg);
  506. -ms-transform:rotate(180deg);
  507. transform:rotate(180deg);
  508. }
  509. #u288 {
  510. position:absolute;
  511. left:2px;
  512. top:2px;
  513. width:15px;
  514. visibility:hidden;
  515. word-wrap:break-word;
  516. }
  517. #u289 {
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u290_img {
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:30px;
  529. height:30px;
  530. }
  531. #u290 {
  532. position:absolute;
  533. left:350px;
  534. top:174px;
  535. width:30px;
  536. height:30px;
  537. }
  538. #u291 {
  539. position:absolute;
  540. left:2px;
  541. top:7px;
  542. width:26px;
  543. visibility:hidden;
  544. word-wrap:break-word;
  545. }
  546. #u292_img {
  547. position:absolute;
  548. left:0px;
  549. top:0px;
  550. width:16px;
  551. height:16px;
  552. }
  553. #u292 {
  554. position:absolute;
  555. left:356px;
  556. top:181px;
  557. width:16px;
  558. height:16px;
  559. }
  560. #u293 {
  561. position:absolute;
  562. left:2px;
  563. top:0px;
  564. width:12px;
  565. visibility:hidden;
  566. word-wrap:break-word;
  567. }
  568. #u294_div {
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:101px;
  573. height:14px;
  574. background:inherit;
  575. background-color:rgba(255, 255, 255, 0);
  576. border:none;
  577. border-radius:0px;
  578. -moz-box-shadow:none;
  579. -webkit-box-shadow:none;
  580. box-shadow:none;
  581. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  582. font-weight:200;
  583. font-style:normal;
  584. font-size:14px;
  585. text-align:center;
  586. }
  587. #u294 {
  588. position:absolute;
  589. left:180px;
  590. top:394px;
  591. width:101px;
  592. height:14px;
  593. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  594. font-weight:200;
  595. font-style:normal;
  596. font-size:14px;
  597. text-align:center;
  598. }
  599. #u295 {
  600. position:absolute;
  601. left:0px;
  602. top:0px;
  603. width:101px;
  604. word-wrap:break-word;
  605. }
  606. #u296 {
  607. position:absolute;
  608. left:0px;
  609. top:0px;
  610. width:0px;
  611. height:0px;
  612. }
  613. #u297_img {
  614. position:absolute;
  615. left:0px;
  616. top:0px;
  617. width:30px;
  618. height:30px;
  619. }
  620. #u297 {
  621. position:absolute;
  622. left:703px;
  623. top:172px;
  624. width:30px;
  625. height:30px;
  626. }
  627. #u298 {
  628. position:absolute;
  629. left:2px;
  630. top:7px;
  631. width:26px;
  632. visibility:hidden;
  633. word-wrap:break-word;
  634. }
  635. #u299_img {
  636. position:absolute;
  637. left:0px;
  638. top:0px;
  639. width:16px;
  640. height:16px;
  641. }
  642. #u299 {
  643. position:absolute;
  644. left:709px;
  645. top:179px;
  646. width:16px;
  647. height:16px;
  648. }
  649. #u300 {
  650. position:absolute;
  651. left:2px;
  652. top:0px;
  653. width:12px;
  654. visibility:hidden;
  655. word-wrap:break-word;
  656. }
  657. #u301 {
  658. position:absolute;
  659. left:0px;
  660. top:0px;
  661. width:0px;
  662. height:0px;
  663. }
  664. #u302_div {
  665. position:absolute;
  666. left:0px;
  667. top:0px;
  668. width:320px;
  669. height:580px;
  670. background:inherit;
  671. background-color:rgba(242, 242, 242, 1);
  672. box-sizing:border-box;
  673. border-width:1px;
  674. border-style:solid;
  675. border-color:rgba(0, 0, 0, 1);
  676. border-radius:0px;
  677. -moz-box-shadow:none;
  678. -webkit-box-shadow:none;
  679. box-shadow:none;
  680. }
  681. #u302 {
  682. position:absolute;
  683. left:786px;
  684. top:104px;
  685. width:320px;
  686. height:580px;
  687. }
  688. #u303 {
  689. position:absolute;
  690. left:2px;
  691. top:282px;
  692. width:316px;
  693. visibility:hidden;
  694. word-wrap:break-word;
  695. }
  696. #u304 {
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:0px;
  701. height:0px;
  702. }
  703. #u305_div {
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:318px;
  708. height:17px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 1);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u305 {
  718. position:absolute;
  719. left:787px;
  720. top:105px;
  721. width:318px;
  722. height:17px;
  723. }
  724. #u306 {
  725. position:absolute;
  726. left:2px;
  727. top:0px;
  728. width:314px;
  729. visibility:hidden;
  730. word-wrap:break-word;
  731. }
  732. #u307_img {
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:318px;
  737. height:17px;
  738. }
  739. #u307 {
  740. position:absolute;
  741. left:787px;
  742. top:105px;
  743. width:318px;
  744. height:17px;
  745. }
  746. #u308 {
  747. position:absolute;
  748. left:2px;
  749. top:0px;
  750. width:314px;
  751. visibility:hidden;
  752. word-wrap:break-word;
  753. }
  754. #u309 {
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:0px;
  759. height:0px;
  760. }
  761. #u310_div {
  762. position:absolute;
  763. left:0px;
  764. top:0px;
  765. width:318px;
  766. height:40px;
  767. background:inherit;
  768. background-color:rgba(255, 255, 255, 1);
  769. box-sizing:border-box;
  770. border-width:1px;
  771. border-style:solid;
  772. border-color:rgba(228, 228, 228, 1);
  773. border-left:0px;
  774. border-top:0px;
  775. border-right:0px;
  776. border-radius:0px;
  777. border-top-left-radius:0px;
  778. border-top-right-radius:0px;
  779. border-bottom-right-radius:0px;
  780. border-bottom-left-radius:0px;
  781. -moz-box-shadow:none;
  782. -webkit-box-shadow:none;
  783. box-shadow:none;
  784. font-family:'PingFangSC-Regular', 'PingFang SC';
  785. font-weight:400;
  786. font-style:normal;
  787. font-size:14px;
  788. text-align:left;
  789. }
  790. #u310 {
  791. position:absolute;
  792. left:787px;
  793. top:123px;
  794. width:318px;
  795. height:40px;
  796. font-family:'PingFangSC-Regular', 'PingFang SC';
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:14px;
  800. text-align:left;
  801. }
  802. #u311 {
  803. position:absolute;
  804. left:0px;
  805. top:10px;
  806. width:318px;
  807. word-wrap:break-word;
  808. }
  809. #u312_img {
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:10px;
  814. height:16px;
  815. }
  816. #u312 {
  817. position:absolute;
  818. left:797px;
  819. top:135px;
  820. width:10px;
  821. height:16px;
  822. }
  823. #u313 {
  824. position:absolute;
  825. left:2px;
  826. top:0px;
  827. width:6px;
  828. visibility:hidden;
  829. word-wrap:break-word;
  830. }
  831. #u314_div {
  832. position:absolute;
  833. left:0px;
  834. top:0px;
  835. width:300px;
  836. height:151px;
  837. background:inherit;
  838. background-color:rgba(255, 255, 255, 1);
  839. box-sizing:border-box;
  840. border-width:1px;
  841. border-style:solid;
  842. border-color:rgba(121, 121, 121, 1);
  843. border-radius:0px;
  844. -moz-box-shadow:none;
  845. -webkit-box-shadow:none;
  846. box-shadow:none;
  847. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  848. font-weight:200;
  849. font-style:normal;
  850. }
  851. #u314 {
  852. position:absolute;
  853. left:797px;
  854. top:328px;
  855. width:300px;
  856. height:151px;
  857. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  858. font-weight:200;
  859. font-style:normal;
  860. }
  861. #u315 {
  862. position:absolute;
  863. left:2px;
  864. top:2px;
  865. width:296px;
  866. word-wrap:break-word;
  867. }
  868. #u316_div {
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:98px;
  873. height:91px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 1);
  876. box-sizing:border-box;
  877. border-width:1px;
  878. border-style:solid;
  879. border-color:rgba(121, 121, 121, 1);
  880. border-radius:0px;
  881. -moz-box-shadow:none;
  882. -webkit-box-shadow:none;
  883. box-shadow:none;
  884. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  885. font-weight:200;
  886. font-style:normal;
  887. }
  888. #u316 {
  889. position:absolute;
  890. left:787px;
  891. top:163px;
  892. width:98px;
  893. height:91px;
  894. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  895. font-weight:200;
  896. font-style:normal;
  897. }
  898. #u317 {
  899. position:absolute;
  900. left:2px;
  901. top:39px;
  902. width:94px;
  903. word-wrap:break-word;
  904. }
  905. #u318_div {
  906. position:absolute;
  907. left:0px;
  908. top:0px;
  909. width:82px;
  910. height:91px;
  911. background:inherit;
  912. background-color:rgba(255, 255, 255, 1);
  913. box-sizing:border-box;
  914. border-width:1px;
  915. border-style:solid;
  916. border-color:rgba(121, 121, 121, 1);
  917. border-radius:0px;
  918. -moz-box-shadow:none;
  919. -webkit-box-shadow:none;
  920. box-shadow:none;
  921. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  922. font-weight:200;
  923. font-style:normal;
  924. }
  925. #u318 {
  926. position:absolute;
  927. left:786px;
  928. top:593px;
  929. width:82px;
  930. height:91px;
  931. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  932. font-weight:200;
  933. font-style:normal;
  934. }
  935. #u319 {
  936. position:absolute;
  937. left:2px;
  938. top:39px;
  939. width:78px;
  940. word-wrap:break-word;
  941. }
  942. #u320 {
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:0px;
  947. height:0px;
  948. }
  949. #u321_div {
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:320px;
  954. height:580px;
  955. background:inherit;
  956. background-color:rgba(242, 242, 242, 1);
  957. box-sizing:border-box;
  958. border-width:1px;
  959. border-style:solid;
  960. border-color:rgba(0, 0, 0, 1);
  961. border-radius:0px;
  962. -moz-box-shadow:none;
  963. -webkit-box-shadow:none;
  964. box-shadow:none;
  965. }
  966. #u321 {
  967. position:absolute;
  968. left:1150px;
  969. top:104px;
  970. width:320px;
  971. height:580px;
  972. }
  973. #u322 {
  974. position:absolute;
  975. left:2px;
  976. top:282px;
  977. width:316px;
  978. visibility:hidden;
  979. word-wrap:break-word;
  980. }
  981. #u323 {
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:0px;
  986. height:0px;
  987. }
  988. #u324_div {
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:318px;
  993. height:17px;
  994. background:inherit;
  995. background-color:rgba(255, 255, 255, 1);
  996. border:none;
  997. border-radius:0px;
  998. -moz-box-shadow:none;
  999. -webkit-box-shadow:none;
  1000. box-shadow:none;
  1001. }
  1002. #u324 {
  1003. position:absolute;
  1004. left:1151px;
  1005. top:105px;
  1006. width:318px;
  1007. height:17px;
  1008. }
  1009. #u325 {
  1010. position:absolute;
  1011. left:2px;
  1012. top:0px;
  1013. width:314px;
  1014. visibility:hidden;
  1015. word-wrap:break-word;
  1016. }
  1017. #u326_img {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:318px;
  1022. height:17px;
  1023. }
  1024. #u326 {
  1025. position:absolute;
  1026. left:1151px;
  1027. top:105px;
  1028. width:318px;
  1029. height:17px;
  1030. }
  1031. #u327 {
  1032. position:absolute;
  1033. left:2px;
  1034. top:0px;
  1035. width:314px;
  1036. visibility:hidden;
  1037. word-wrap:break-word;
  1038. }
  1039. #u328 {
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:0px;
  1044. height:0px;
  1045. }
  1046. #u329_div {
  1047. position:absolute;
  1048. left:0px;
  1049. top:0px;
  1050. width:318px;
  1051. height:40px;
  1052. background:inherit;
  1053. background-color:rgba(255, 255, 255, 1);
  1054. box-sizing:border-box;
  1055. border-width:1px;
  1056. border-style:solid;
  1057. border-color:rgba(228, 228, 228, 1);
  1058. border-left:0px;
  1059. border-top:0px;
  1060. border-right:0px;
  1061. border-radius:0px;
  1062. border-top-left-radius:0px;
  1063. border-top-right-radius:0px;
  1064. border-bottom-right-radius:0px;
  1065. border-bottom-left-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-family:'PingFangSC-Regular', 'PingFang SC';
  1070. font-weight:400;
  1071. font-style:normal;
  1072. font-size:14px;
  1073. text-align:left;
  1074. }
  1075. #u329 {
  1076. position:absolute;
  1077. left:1151px;
  1078. top:123px;
  1079. width:318px;
  1080. height:40px;
  1081. font-family:'PingFangSC-Regular', 'PingFang SC';
  1082. font-weight:400;
  1083. font-style:normal;
  1084. font-size:14px;
  1085. text-align:left;
  1086. }
  1087. #u330 {
  1088. position:absolute;
  1089. left:0px;
  1090. top:10px;
  1091. width:318px;
  1092. word-wrap:break-word;
  1093. }
  1094. #u331_img {
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:10px;
  1099. height:16px;
  1100. }
  1101. #u331 {
  1102. position:absolute;
  1103. left:1161px;
  1104. top:135px;
  1105. width:10px;
  1106. height:16px;
  1107. }
  1108. #u332 {
  1109. position:absolute;
  1110. left:2px;
  1111. top:0px;
  1112. width:6px;
  1113. visibility:hidden;
  1114. word-wrap:break-word;
  1115. }
  1116. #u333 {
  1117. position:absolute;
  1118. left:1160px;
  1119. top:489px;
  1120. width:300px;
  1121. height:34px;
  1122. }
  1123. #u333_input {
  1124. position:absolute;
  1125. left:0px;
  1126. top:0px;
  1127. width:300px;
  1128. height:34px;
  1129. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1130. font-weight:200;
  1131. font-style:normal;
  1132. font-size:13px;
  1133. text-decoration:none;
  1134. color:#000000;
  1135. text-align:center;
  1136. }
  1137. #u334 {
  1138. position:absolute;
  1139. left:1160px;
  1140. top:309px;
  1141. width:300px;
  1142. height:34px;
  1143. }
  1144. #u334_input {
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:300px;
  1149. height:34px;
  1150. font-family:'ArialMT', 'Arial';
  1151. font-weight:400;
  1152. font-style:normal;
  1153. font-size:13px;
  1154. text-decoration:none;
  1155. color:#000000;
  1156. text-align:left;
  1157. }
  1158. #u335 {
  1159. position:absolute;
  1160. left:1160px;
  1161. top:401px;
  1162. width:300px;
  1163. height:34px;
  1164. }
  1165. #u335_input {
  1166. position:absolute;
  1167. left:0px;
  1168. top:0px;
  1169. width:300px;
  1170. height:34px;
  1171. font-family:'ArialMT', 'Arial';
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:13px;
  1175. text-decoration:none;
  1176. color:#000000;
  1177. text-align:left;
  1178. }
  1179. #u336 {
  1180. position:absolute;
  1181. left:1160px;
  1182. top:445px;
  1183. width:300px;
  1184. height:34px;
  1185. }
  1186. #u336_input {
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:300px;
  1191. height:34px;
  1192. font-family:'ArialMT', 'Arial';
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:13px;
  1196. text-decoration:none;
  1197. color:#000000;
  1198. text-align:left;
  1199. }
  1200. #u337 {
  1201. position:absolute;
  1202. left:1160px;
  1203. top:357px;
  1204. width:300px;
  1205. height:34px;
  1206. }
  1207. #u337_input {
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:300px;
  1212. height:34px;
  1213. font-family:'ArialMT', 'Arial';
  1214. font-weight:400;
  1215. font-style:normal;
  1216. font-size:13px;
  1217. text-decoration:none;
  1218. color:#000000;
  1219. }
  1220. #u337_input:disabled {
  1221. color:grayText;
  1222. }
  1223. #u338_div {
  1224. position:absolute;
  1225. left:0px;
  1226. top:0px;
  1227. width:200px;
  1228. height:14px;
  1229. background:inherit;
  1230. background-color:rgba(255, 255, 255, 0);
  1231. border:none;
  1232. border-radius:0px;
  1233. -moz-box-shadow:none;
  1234. -webkit-box-shadow:none;
  1235. box-shadow:none;
  1236. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1237. font-weight:200;
  1238. font-style:normal;
  1239. font-size:14px;
  1240. text-align:center;
  1241. }
  1242. #u338 {
  1243. position:absolute;
  1244. left:1210px;
  1245. top:265px;
  1246. width:200px;
  1247. height:14px;
  1248. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1249. font-weight:200;
  1250. font-style:normal;
  1251. font-size:14px;
  1252. text-align:center;
  1253. }
  1254. #u339 {
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:200px;
  1259. word-wrap:break-word;
  1260. }
  1261. #u340_img {
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:34px;
  1266. height:34px;
  1267. }
  1268. #u340 {
  1269. position:absolute;
  1270. left:929px;
  1271. top:387px;
  1272. width:34px;
  1273. height:34px;
  1274. }
  1275. #u341 {
  1276. position:absolute;
  1277. left:2px;
  1278. top:9px;
  1279. width:30px;
  1280. visibility:hidden;
  1281. word-wrap:break-word;
  1282. }
  1283. #u342_div {
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:81px;
  1288. height:91px;
  1289. background:inherit;
  1290. background-color:rgba(255, 255, 255, 1);
  1291. box-sizing:border-box;
  1292. border-width:1px;
  1293. border-style:solid;
  1294. border-color:rgba(121, 121, 121, 1);
  1295. border-radius:0px;
  1296. -moz-box-shadow:none;
  1297. -webkit-box-shadow:none;
  1298. box-shadow:none;
  1299. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1300. font-weight:200;
  1301. font-style:normal;
  1302. }
  1303. #u342 {
  1304. position:absolute;
  1305. left:906px;
  1306. top:163px;
  1307. width:81px;
  1308. height:91px;
  1309. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1310. font-weight:200;
  1311. font-style:normal;
  1312. }
  1313. #u343 {
  1314. position:absolute;
  1315. left:2px;
  1316. top:39px;
  1317. width:77px;
  1318. word-wrap:break-word;
  1319. }
  1320. #u344_div {
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:99px;
  1325. height:91px;
  1326. background:inherit;
  1327. background-color:rgba(255, 255, 255, 1);
  1328. box-sizing:border-box;
  1329. border-width:1px;
  1330. border-style:solid;
  1331. border-color:rgba(121, 121, 121, 1);
  1332. border-radius:0px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1337. font-weight:200;
  1338. font-style:normal;
  1339. }
  1340. #u344 {
  1341. position:absolute;
  1342. left:1006px;
  1343. top:163px;
  1344. width:99px;
  1345. height:91px;
  1346. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1347. font-weight:200;
  1348. font-style:normal;
  1349. }
  1350. #u345 {
  1351. position:absolute;
  1352. left:2px;
  1353. top:39px;
  1354. width:95px;
  1355. word-wrap:break-word;
  1356. }
  1357. #u346_div {
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:136px;
  1362. height:91px;
  1363. background:inherit;
  1364. background-color:rgba(255, 255, 255, 1);
  1365. box-sizing:border-box;
  1366. border-width:1px;
  1367. border-style:solid;
  1368. border-color:rgba(121, 121, 121, 1);
  1369. border-radius:0px;
  1370. -moz-box-shadow:none;
  1371. -webkit-box-shadow:none;
  1372. box-shadow:none;
  1373. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1374. font-weight:200;
  1375. font-style:normal;
  1376. }
  1377. #u346 {
  1378. position:absolute;
  1379. left:878px;
  1380. top:593px;
  1381. width:136px;
  1382. height:91px;
  1383. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1384. font-weight:200;
  1385. font-style:normal;
  1386. }
  1387. #u347 {
  1388. position:absolute;
  1389. left:2px;
  1390. top:39px;
  1391. width:132px;
  1392. word-wrap:break-word;
  1393. }
  1394. #u348_div {
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:82px;
  1399. height:91px;
  1400. background:inherit;
  1401. background-color:rgba(255, 255, 255, 1);
  1402. box-sizing:border-box;
  1403. border-width:1px;
  1404. border-style:solid;
  1405. border-color:rgba(121, 121, 121, 1);
  1406. border-radius:0px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1411. font-weight:200;
  1412. font-style:normal;
  1413. }
  1414. #u348 {
  1415. position:absolute;
  1416. left:1024px;
  1417. top:593px;
  1418. width:82px;
  1419. height:91px;
  1420. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  1421. font-weight:200;
  1422. font-style:normal;
  1423. }
  1424. #u349 {
  1425. position:absolute;
  1426. left:2px;
  1427. top:39px;
  1428. width:78px;
  1429. word-wrap:break-word;
  1430. }
  1431. #u350_div {
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:320px;
  1436. height:137px;
  1437. background:inherit;
  1438. background-color:rgba(208, 225, 125, 1);
  1439. border:none;
  1440. border-radius:0px;
  1441. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1442. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1443. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1444. }
  1445. #u350 {
  1446. position:absolute;
  1447. left:70px;
  1448. top:705px;
  1449. width:320px;
  1450. height:137px;
  1451. }
  1452. #u351 {
  1453. position:absolute;
  1454. left:10px;
  1455. top:10px;
  1456. width:300px;
  1457. word-wrap:break-word;
  1458. }
  1459. #u352_div {
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:244px;
  1464. height:25px;
  1465. background:inherit;
  1466. background-color:rgba(255, 255, 255, 0);
  1467. border:none;
  1468. border-radius:0px;
  1469. -moz-box-shadow:none;
  1470. -webkit-box-shadow:none;
  1471. box-shadow:none;
  1472. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  1473. font-weight:700;
  1474. font-style:normal;
  1475. }
  1476. #u352 {
  1477. position:absolute;
  1478. left:71px;
  1479. top:58px;
  1480. width:244px;
  1481. height:25px;
  1482. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  1483. font-weight:700;
  1484. font-style:normal;
  1485. }
  1486. #u353 {
  1487. position:absolute;
  1488. left:0px;
  1489. top:0px;
  1490. width:244px;
  1491. word-wrap:break-word;
  1492. }
  1493. #u354 {
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:0px;
  1498. height:0px;
  1499. }
  1500. #u355_img {
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:30px;
  1505. height:30px;
  1506. }
  1507. #u355 {
  1508. position:absolute;
  1509. left:1067px;
  1510. top:170px;
  1511. width:30px;
  1512. height:30px;
  1513. }
  1514. #u356 {
  1515. position:absolute;
  1516. left:2px;
  1517. top:7px;
  1518. width:26px;
  1519. visibility:hidden;
  1520. word-wrap:break-word;
  1521. }
  1522. #u357_img {
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:16px;
  1527. height:16px;
  1528. }
  1529. #u357 {
  1530. position:absolute;
  1531. left:1073px;
  1532. top:177px;
  1533. width:16px;
  1534. height:16px;
  1535. }
  1536. #u358 {
  1537. position:absolute;
  1538. left:2px;
  1539. top:0px;
  1540. width:12px;
  1541. visibility:hidden;
  1542. word-wrap:break-word;
  1543. }
  1544. #u359 {
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:0px;
  1549. height:0px;
  1550. }
  1551. #u360_img {
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:30px;
  1556. height:30px;
  1557. }
  1558. #u360 {
  1559. position:absolute;
  1560. left:1430px;
  1561. top:170px;
  1562. width:30px;
  1563. height:30px;
  1564. }
  1565. #u361 {
  1566. position:absolute;
  1567. left:2px;
  1568. top:7px;
  1569. width:26px;
  1570. visibility:hidden;
  1571. word-wrap:break-word;
  1572. }
  1573. #u362_img {
  1574. position:absolute;
  1575. left:0px;
  1576. top:0px;
  1577. width:16px;
  1578. height:16px;
  1579. }
  1580. #u362 {
  1581. position:absolute;
  1582. left:1436px;
  1583. top:177px;
  1584. width:16px;
  1585. height:16px;
  1586. }
  1587. #u363 {
  1588. position:absolute;
  1589. left:2px;
  1590. top:0px;
  1591. width:12px;
  1592. visibility:hidden;
  1593. word-wrap:break-word;
  1594. }
  1595. #u364_div {
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:320px;
  1600. height:175px;
  1601. background:inherit;
  1602. background-color:rgba(208, 225, 125, 1);
  1603. border:none;
  1604. border-radius:0px;
  1605. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1606. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1607. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1608. }
  1609. #u364 {
  1610. position:absolute;
  1611. left:786px;
  1612. top:705px;
  1613. width:320px;
  1614. height:175px;
  1615. }
  1616. #u365 {
  1617. position:absolute;
  1618. left:10px;
  1619. top:10px;
  1620. width:300px;
  1621. word-wrap:break-word;
  1622. }
  1623. #u366 {
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:0px;
  1628. height:0px;
  1629. }
  1630. #u367_div {
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:320px;
  1635. height:578px;
  1636. background:inherit;
  1637. background-color:rgba(242, 242, 242, 1);
  1638. box-sizing:border-box;
  1639. border-width:1px;
  1640. border-style:solid;
  1641. border-color:rgba(0, 0, 0, 1);
  1642. border-radius:0px;
  1643. -moz-box-shadow:none;
  1644. -webkit-box-shadow:none;
  1645. box-shadow:none;
  1646. }
  1647. #u367 {
  1648. position:absolute;
  1649. left:418px;
  1650. top:1075px;
  1651. width:320px;
  1652. height:578px;
  1653. }
  1654. #u368 {
  1655. position:absolute;
  1656. left:2px;
  1657. top:281px;
  1658. width:316px;
  1659. visibility:hidden;
  1660. word-wrap:break-word;
  1661. }
  1662. #u369 {
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:0px;
  1667. height:0px;
  1668. }
  1669. #u370_div {
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:318px;
  1674. height:17px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 1);
  1677. border:none;
  1678. border-radius:0px;
  1679. -moz-box-shadow:none;
  1680. -webkit-box-shadow:none;
  1681. box-shadow:none;
  1682. }
  1683. #u370 {
  1684. position:absolute;
  1685. left:419px;
  1686. top:1076px;
  1687. width:318px;
  1688. height:17px;
  1689. }
  1690. #u371 {
  1691. position:absolute;
  1692. left:2px;
  1693. top:0px;
  1694. width:314px;
  1695. visibility:hidden;
  1696. word-wrap:break-word;
  1697. }
  1698. #u372_img {
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:318px;
  1703. height:17px;
  1704. }
  1705. #u372 {
  1706. position:absolute;
  1707. left:419px;
  1708. top:1076px;
  1709. width:318px;
  1710. height:17px;
  1711. }
  1712. #u373 {
  1713. position:absolute;
  1714. left:2px;
  1715. top:0px;
  1716. width:314px;
  1717. visibility:hidden;
  1718. word-wrap:break-word;
  1719. }
  1720. #u374 {
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:0px;
  1725. height:0px;
  1726. }
  1727. #u375_div {
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:318px;
  1732. height:40px;
  1733. background:inherit;
  1734. background-color:rgba(255, 255, 255, 1);
  1735. box-sizing:border-box;
  1736. border-width:1px;
  1737. border-style:solid;
  1738. border-color:rgba(228, 228, 228, 1);
  1739. border-left:0px;
  1740. border-top:0px;
  1741. border-right:0px;
  1742. border-radius:0px;
  1743. border-top-left-radius:0px;
  1744. border-top-right-radius:0px;
  1745. border-bottom-right-radius:0px;
  1746. border-bottom-left-radius:0px;
  1747. -moz-box-shadow:none;
  1748. -webkit-box-shadow:none;
  1749. box-shadow:none;
  1750. font-size:14px;
  1751. text-align:left;
  1752. }
  1753. #u375 {
  1754. position:absolute;
  1755. left:419px;
  1756. top:1093px;
  1757. width:318px;
  1758. height:40px;
  1759. font-size:14px;
  1760. text-align:left;
  1761. }
  1762. #u376 {
  1763. position:absolute;
  1764. left:0px;
  1765. top:10px;
  1766. width:318px;
  1767. word-wrap:break-word;
  1768. }
  1769. #u377 {
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:0px;
  1774. height:0px;
  1775. }
  1776. #u378_div {
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:320px;
  1781. height:580px;
  1782. background:inherit;
  1783. background-color:rgba(242, 242, 242, 1);
  1784. box-sizing:border-box;
  1785. border-width:1px;
  1786. border-style:solid;
  1787. border-color:rgba(0, 0, 0, 1);
  1788. border-radius:0px;
  1789. -moz-box-shadow:none;
  1790. -webkit-box-shadow:none;
  1791. box-shadow:none;
  1792. }
  1793. #u378 {
  1794. position:absolute;
  1795. left:68px;
  1796. top:1075px;
  1797. width:320px;
  1798. height:580px;
  1799. }
  1800. #u379 {
  1801. position:absolute;
  1802. left:2px;
  1803. top:282px;
  1804. width:316px;
  1805. visibility:hidden;
  1806. word-wrap:break-word;
  1807. }
  1808. #u380 {
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:0px;
  1813. height:0px;
  1814. }
  1815. #u381_div {
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:318px;
  1820. height:17px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 1);
  1823. border:none;
  1824. border-radius:0px;
  1825. -moz-box-shadow:none;
  1826. -webkit-box-shadow:none;
  1827. box-shadow:none;
  1828. }
  1829. #u381 {
  1830. position:absolute;
  1831. left:69px;
  1832. top:1076px;
  1833. width:318px;
  1834. height:17px;
  1835. }
  1836. #u382 {
  1837. position:absolute;
  1838. left:2px;
  1839. top:0px;
  1840. width:314px;
  1841. visibility:hidden;
  1842. word-wrap:break-word;
  1843. }
  1844. #u383_img {
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:318px;
  1849. height:17px;
  1850. }
  1851. #u383 {
  1852. position:absolute;
  1853. left:69px;
  1854. top:1076px;
  1855. width:318px;
  1856. height:17px;
  1857. }
  1858. #u384 {
  1859. position:absolute;
  1860. left:2px;
  1861. top:0px;
  1862. width:314px;
  1863. visibility:hidden;
  1864. word-wrap:break-word;
  1865. }
  1866. #u385 {
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:0px;
  1871. height:0px;
  1872. }
  1873. #u386_div {
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:318px;
  1878. height:40px;
  1879. background:inherit;
  1880. background-color:rgba(255, 255, 255, 1);
  1881. box-sizing:border-box;
  1882. border-width:1px;
  1883. border-style:solid;
  1884. border-color:rgba(228, 228, 228, 1);
  1885. border-left:0px;
  1886. border-top:0px;
  1887. border-right:0px;
  1888. border-radius:0px;
  1889. border-top-left-radius:0px;
  1890. border-top-right-radius:0px;
  1891. border-bottom-right-radius:0px;
  1892. border-bottom-left-radius:0px;
  1893. -moz-box-shadow:none;
  1894. -webkit-box-shadow:none;
  1895. box-shadow:none;
  1896. font-size:14px;
  1897. text-align:left;
  1898. }
  1899. #u386 {
  1900. position:absolute;
  1901. left:69px;
  1902. top:1093px;
  1903. width:318px;
  1904. height:40px;
  1905. font-size:14px;
  1906. text-align:left;
  1907. }
  1908. #u387 {
  1909. position:absolute;
  1910. left:0px;
  1911. top:10px;
  1912. width:318px;
  1913. word-wrap:break-word;
  1914. }
  1915. #u388_div {
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:320px;
  1920. height:523px;
  1921. background:inherit;
  1922. background-color:rgba(242, 242, 242, 1);
  1923. box-sizing:border-box;
  1924. border-width:1px;
  1925. border-style:solid;
  1926. border-color:rgba(121, 121, 121, 1);
  1927. border-radius:0px;
  1928. -moz-box-shadow:none;
  1929. -webkit-box-shadow:none;
  1930. box-shadow:none;
  1931. }
  1932. #u388 {
  1933. position:absolute;
  1934. left:68px;
  1935. top:1132px;
  1936. width:320px;
  1937. height:523px;
  1938. }
  1939. #u389 {
  1940. position:absolute;
  1941. left:2px;
  1942. top:254px;
  1943. width:316px;
  1944. visibility:hidden;
  1945. word-wrap:break-word;
  1946. }
  1947. #u390_img {
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:19px;
  1952. height:19px;
  1953. }
  1954. #u390 {
  1955. position:absolute;
  1956. left:219px;
  1957. top:1617px;
  1958. width:19px;
  1959. height:19px;
  1960. -webkit-transform:rotate(270deg);
  1961. -moz-transform:rotate(270deg);
  1962. -ms-transform:rotate(270deg);
  1963. transform:rotate(270deg);
  1964. }
  1965. #u391 {
  1966. position:absolute;
  1967. left:2px;
  1968. top:2px;
  1969. width:15px;
  1970. visibility:hidden;
  1971. word-wrap:break-word;
  1972. }
  1973. #u392_div {
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:320px;
  1978. height:521px;
  1979. background:inherit;
  1980. background-color:rgba(242, 242, 242, 1);
  1981. box-sizing:border-box;
  1982. border-width:1px;
  1983. border-style:solid;
  1984. border-color:rgba(121, 121, 121, 1);
  1985. border-radius:0px;
  1986. -moz-box-shadow:none;
  1987. -webkit-box-shadow:none;
  1988. box-shadow:none;
  1989. }
  1990. #u392 {
  1991. position:absolute;
  1992. left:418px;
  1993. top:1132px;
  1994. width:320px;
  1995. height:521px;
  1996. }
  1997. #u393 {
  1998. position:absolute;
  1999. left:2px;
  2000. top:252px;
  2001. width:316px;
  2002. visibility:hidden;
  2003. word-wrap:break-word;
  2004. }
  2005. #u394_div {
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:101px;
  2010. height:14px;
  2011. background:inherit;
  2012. background-color:rgba(255, 255, 255, 0);
  2013. border:none;
  2014. border-radius:0px;
  2015. -moz-box-shadow:none;
  2016. -webkit-box-shadow:none;
  2017. box-shadow:none;
  2018. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2019. font-weight:200;
  2020. font-style:normal;
  2021. font-size:14px;
  2022. text-align:center;
  2023. }
  2024. #u394 {
  2025. position:absolute;
  2026. left:528px;
  2027. top:1367px;
  2028. width:101px;
  2029. height:14px;
  2030. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2031. font-weight:200;
  2032. font-style:normal;
  2033. font-size:14px;
  2034. text-align:center;
  2035. }
  2036. #u395 {
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:101px;
  2041. word-wrap:break-word;
  2042. }
  2043. #u396_img {
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:19px;
  2048. height:19px;
  2049. }
  2050. #u396 {
  2051. position:absolute;
  2052. left:708px;
  2053. top:1365px;
  2054. width:19px;
  2055. height:19px;
  2056. -webkit-transform:rotate(180deg);
  2057. -moz-transform:rotate(180deg);
  2058. -ms-transform:rotate(180deg);
  2059. transform:rotate(180deg);
  2060. }
  2061. #u397 {
  2062. position:absolute;
  2063. left:2px;
  2064. top:2px;
  2065. width:15px;
  2066. visibility:hidden;
  2067. word-wrap:break-word;
  2068. }
  2069. #u398 {
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:0px;
  2074. height:0px;
  2075. }
  2076. #u399_img {
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:30px;
  2081. height:30px;
  2082. }
  2083. #u399 {
  2084. position:absolute;
  2085. left:348px;
  2086. top:1145px;
  2087. width:30px;
  2088. height:30px;
  2089. }
  2090. #u400 {
  2091. position:absolute;
  2092. left:2px;
  2093. top:7px;
  2094. width:26px;
  2095. visibility:hidden;
  2096. word-wrap:break-word;
  2097. }
  2098. #u401_img {
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:16px;
  2103. height:16px;
  2104. }
  2105. #u401 {
  2106. position:absolute;
  2107. left:354px;
  2108. top:1152px;
  2109. width:16px;
  2110. height:16px;
  2111. }
  2112. #u402 {
  2113. position:absolute;
  2114. left:2px;
  2115. top:0px;
  2116. width:12px;
  2117. visibility:hidden;
  2118. word-wrap:break-word;
  2119. }
  2120. #u403_div {
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:101px;
  2125. height:14px;
  2126. background:inherit;
  2127. background-color:rgba(255, 255, 255, 0);
  2128. border:none;
  2129. border-radius:0px;
  2130. -moz-box-shadow:none;
  2131. -webkit-box-shadow:none;
  2132. box-shadow:none;
  2133. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2134. font-weight:200;
  2135. font-style:normal;
  2136. font-size:14px;
  2137. text-align:center;
  2138. }
  2139. #u403 {
  2140. position:absolute;
  2141. left:178px;
  2142. top:1365px;
  2143. width:101px;
  2144. height:14px;
  2145. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2146. font-weight:200;
  2147. font-style:normal;
  2148. font-size:14px;
  2149. text-align:center;
  2150. }
  2151. #u404 {
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:101px;
  2156. word-wrap:break-word;
  2157. }
  2158. #u405 {
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:0px;
  2163. height:0px;
  2164. }
  2165. #u406_img {
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:30px;
  2170. height:30px;
  2171. }
  2172. #u406 {
  2173. position:absolute;
  2174. left:701px;
  2175. top:1143px;
  2176. width:30px;
  2177. height:30px;
  2178. }
  2179. #u407 {
  2180. position:absolute;
  2181. left:2px;
  2182. top:7px;
  2183. width:26px;
  2184. visibility:hidden;
  2185. word-wrap:break-word;
  2186. }
  2187. #u408_img {
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:16px;
  2192. height:16px;
  2193. }
  2194. #u408 {
  2195. position:absolute;
  2196. left:707px;
  2197. top:1150px;
  2198. width:16px;
  2199. height:16px;
  2200. }
  2201. #u409 {
  2202. position:absolute;
  2203. left:2px;
  2204. top:0px;
  2205. width:12px;
  2206. visibility:hidden;
  2207. word-wrap:break-word;
  2208. }
  2209. #u410_div {
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:181px;
  2214. height:25px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2223. font-weight:700;
  2224. font-style:normal;
  2225. }
  2226. #u410 {
  2227. position:absolute;
  2228. left:69px;
  2229. top:1029px;
  2230. width:181px;
  2231. height:25px;
  2232. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2233. font-weight:700;
  2234. font-style:normal;
  2235. }
  2236. #u411 {
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:181px;
  2241. white-space:nowrap;
  2242. }
  2243. #u412_div {
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:320px;
  2248. height:86px;
  2249. background:inherit;
  2250. background-color:rgba(208, 225, 125, 1);
  2251. border:none;
  2252. border-radius:0px;
  2253. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2254. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2255. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2256. }
  2257. #u412 {
  2258. position:absolute;
  2259. left:420px;
  2260. top:705px;
  2261. width:320px;
  2262. height:86px;
  2263. }
  2264. #u413 {
  2265. position:absolute;
  2266. left:10px;
  2267. top:10px;
  2268. width:300px;
  2269. word-wrap:break-word;
  2270. }
  2271. #u414_img {
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:318px;
  2276. height:126px;
  2277. }
  2278. #u414 {
  2279. position:absolute;
  2280. left:420px;
  2281. top:801px;
  2282. width:318px;
  2283. height:126px;
  2284. }
  2285. #u415 {
  2286. position:absolute;
  2287. left:2px;
  2288. top:55px;
  2289. width:314px;
  2290. visibility:hidden;
  2291. word-wrap:break-word;
  2292. }
  2293. #u416_img {
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:20px;
  2298. height:18px;
  2299. }
  2300. #u416 {
  2301. position:absolute;
  2302. left:356px;
  2303. top:133px;
  2304. width:20px;
  2305. height:18px;
  2306. }
  2307. #u417 {
  2308. position:absolute;
  2309. left:2px;
  2310. top:1px;
  2311. width:16px;
  2312. visibility:hidden;
  2313. word-wrap:break-word;
  2314. }
  2315. #u418_img {
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:20px;
  2320. height:18px;
  2321. }
  2322. #u418 {
  2323. position:absolute;
  2324. left:708px;
  2325. top:132px;
  2326. width:20px;
  2327. height:18px;
  2328. }
  2329. #u419 {
  2330. position:absolute;
  2331. left:2px;
  2332. top:1px;
  2333. width:16px;
  2334. visibility:hidden;
  2335. word-wrap:break-word;
  2336. }
  2337. #u420_img {
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:20px;
  2342. height:18px;
  2343. }
  2344. #u420 {
  2345. position:absolute;
  2346. left:1077px;
  2347. top:135px;
  2348. width:20px;
  2349. height:18px;
  2350. }
  2351. #u421 {
  2352. position:absolute;
  2353. left:2px;
  2354. top:1px;
  2355. width:16px;
  2356. visibility:hidden;
  2357. word-wrap:break-word;
  2358. }
  2359. #u422_img {
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:20px;
  2364. height:18px;
  2365. }
  2366. #u422 {
  2367. position:absolute;
  2368. left:1440px;
  2369. top:132px;
  2370. width:20px;
  2371. height:18px;
  2372. }
  2373. #u423 {
  2374. position:absolute;
  2375. left:2px;
  2376. top:1px;
  2377. width:16px;
  2378. visibility:hidden;
  2379. word-wrap:break-word;
  2380. }
  2381. #u424_div {
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:244px;
  2386. height:25px;
  2387. background:inherit;
  2388. background-color:rgba(255, 255, 255, 0);
  2389. border:none;
  2390. border-radius:0px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2395. font-weight:700;
  2396. font-style:normal;
  2397. }
  2398. #u424 {
  2399. position:absolute;
  2400. left:421px;
  2401. top:58px;
  2402. width:244px;
  2403. height:25px;
  2404. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2405. font-weight:700;
  2406. font-style:normal;
  2407. }
  2408. #u425 {
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:244px;
  2413. word-wrap:break-word;
  2414. }
  2415. #u426_div {
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:244px;
  2420. height:27px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 0);
  2423. border:none;
  2424. border-radius:0px;
  2425. -moz-box-shadow:none;
  2426. -webkit-box-shadow:none;
  2427. box-shadow:none;
  2428. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2429. font-weight:700;
  2430. font-style:normal;
  2431. }
  2432. #u426 {
  2433. position:absolute;
  2434. left:787px;
  2435. top:58px;
  2436. width:244px;
  2437. height:27px;
  2438. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2439. font-weight:700;
  2440. font-style:normal;
  2441. }
  2442. #u427 {
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:244px;
  2447. word-wrap:break-word;
  2448. }
  2449. #u428_div {
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:301px;
  2454. height:27px;
  2455. background:inherit;
  2456. background-color:rgba(255, 255, 255, 0);
  2457. border:none;
  2458. border-radius:0px;
  2459. -moz-box-shadow:none;
  2460. -webkit-box-shadow:none;
  2461. box-shadow:none;
  2462. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2463. font-weight:700;
  2464. font-style:normal;
  2465. }
  2466. #u428 {
  2467. position:absolute;
  2468. left:1151px;
  2469. top:56px;
  2470. width:301px;
  2471. height:27px;
  2472. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  2473. font-weight:700;
  2474. font-style:normal;
  2475. }
  2476. #u429 {
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:301px;
  2481. word-wrap:break-word;
  2482. }
  2483. #u430_div {
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:320px;
  2488. height:57px;
  2489. background:inherit;
  2490. background-color:rgba(208, 225, 125, 1);
  2491. border:none;
  2492. border-radius:0px;
  2493. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2494. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2495. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  2496. font-family:'PingFangSC-Regular', 'PingFang SC';
  2497. font-weight:400;
  2498. font-style:normal;
  2499. }
  2500. #u430 {
  2501. position:absolute;
  2502. left:1150px;
  2503. top:705px;
  2504. width:320px;
  2505. height:57px;
  2506. font-family:'PingFangSC-Regular', 'PingFang SC';
  2507. font-weight:400;
  2508. font-style:normal;
  2509. }
  2510. #u431 {
  2511. position:absolute;
  2512. left:10px;
  2513. top:10px;
  2514. width:300px;
  2515. word-wrap:break-word;
  2516. }
  2517. #u432 {
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:0px;
  2522. height:0px;
  2523. }
  2524. #u433_div {
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:320px;
  2529. height:580px;
  2530. background:inherit;
  2531. background-color:rgba(242, 242, 242, 1);
  2532. box-sizing:border-box;
  2533. border-width:1px;
  2534. border-style:solid;
  2535. border-color:rgba(0, 0, 0, 1);
  2536. border-radius:0px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. }
  2541. #u433 {
  2542. position:absolute;
  2543. left:787px;
  2544. top:1073px;
  2545. width:320px;
  2546. height:580px;
  2547. }
  2548. #u434 {
  2549. position:absolute;
  2550. left:2px;
  2551. top:282px;
  2552. width:316px;
  2553. visibility:hidden;
  2554. word-wrap:break-word;
  2555. }
  2556. #u435 {
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:0px;
  2561. height:0px;
  2562. }
  2563. #u436_div {
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:318px;
  2568. height:17px;
  2569. background:inherit;
  2570. background-color:rgba(255, 255, 255, 1);
  2571. border:none;
  2572. border-radius:0px;
  2573. -moz-box-shadow:none;
  2574. -webkit-box-shadow:none;
  2575. box-shadow:none;
  2576. }
  2577. #u436 {
  2578. position:absolute;
  2579. left:788px;
  2580. top:1074px;
  2581. width:318px;
  2582. height:17px;
  2583. }
  2584. #u437 {
  2585. position:absolute;
  2586. left:2px;
  2587. top:0px;
  2588. width:314px;
  2589. visibility:hidden;
  2590. word-wrap:break-word;
  2591. }
  2592. #u438_img {
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:318px;
  2597. height:17px;
  2598. }
  2599. #u438 {
  2600. position:absolute;
  2601. left:788px;
  2602. top:1074px;
  2603. width:318px;
  2604. height:17px;
  2605. }
  2606. #u439 {
  2607. position:absolute;
  2608. left:2px;
  2609. top:0px;
  2610. width:314px;
  2611. visibility:hidden;
  2612. word-wrap:break-word;
  2613. }
  2614. #u440_div {
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:300px;
  2619. height:151px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 1);
  2622. box-sizing:border-box;
  2623. border-width:1px;
  2624. border-style:solid;
  2625. border-color:rgba(121, 121, 121, 1);
  2626. border-radius:0px;
  2627. -moz-box-shadow:none;
  2628. -webkit-box-shadow:none;
  2629. box-shadow:none;
  2630. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2631. font-weight:200;
  2632. font-style:normal;
  2633. }
  2634. #u440 {
  2635. position:absolute;
  2636. left:798px;
  2637. top:1297px;
  2638. width:300px;
  2639. height:151px;
  2640. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2641. font-weight:200;
  2642. font-style:normal;
  2643. }
  2644. #u441 {
  2645. position:absolute;
  2646. left:2px;
  2647. top:2px;
  2648. width:296px;
  2649. word-wrap:break-word;
  2650. }
  2651. #u442_div {
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:98px;
  2656. height:91px;
  2657. background:inherit;
  2658. background-color:rgba(255, 255, 255, 1);
  2659. box-sizing:border-box;
  2660. border-width:1px;
  2661. border-style:solid;
  2662. border-color:rgba(121, 121, 121, 1);
  2663. border-radius:0px;
  2664. -moz-box-shadow:none;
  2665. -webkit-box-shadow:none;
  2666. box-shadow:none;
  2667. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2668. font-weight:200;
  2669. font-style:normal;
  2670. }
  2671. #u442 {
  2672. position:absolute;
  2673. left:788px;
  2674. top:1132px;
  2675. width:98px;
  2676. height:91px;
  2677. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2678. font-weight:200;
  2679. font-style:normal;
  2680. }
  2681. #u443 {
  2682. position:absolute;
  2683. left:2px;
  2684. top:39px;
  2685. width:94px;
  2686. word-wrap:break-word;
  2687. }
  2688. #u444_div {
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:82px;
  2693. height:91px;
  2694. background:inherit;
  2695. background-color:rgba(255, 255, 255, 1);
  2696. box-sizing:border-box;
  2697. border-width:1px;
  2698. border-style:solid;
  2699. border-color:rgba(121, 121, 121, 1);
  2700. border-radius:0px;
  2701. -moz-box-shadow:none;
  2702. -webkit-box-shadow:none;
  2703. box-shadow:none;
  2704. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2705. font-weight:200;
  2706. font-style:normal;
  2707. }
  2708. #u444 {
  2709. position:absolute;
  2710. left:787px;
  2711. top:1562px;
  2712. width:82px;
  2713. height:91px;
  2714. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2715. font-weight:200;
  2716. font-style:normal;
  2717. }
  2718. #u445 {
  2719. position:absolute;
  2720. left:2px;
  2721. top:39px;
  2722. width:78px;
  2723. word-wrap:break-word;
  2724. }
  2725. #u446 {
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:0px;
  2730. height:0px;
  2731. }
  2732. #u447_div {
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:320px;
  2737. height:580px;
  2738. background:inherit;
  2739. background-color:rgba(242, 242, 242, 1);
  2740. box-sizing:border-box;
  2741. border-width:1px;
  2742. border-style:solid;
  2743. border-color:rgba(0, 0, 0, 1);
  2744. border-radius:0px;
  2745. -moz-box-shadow:none;
  2746. -webkit-box-shadow:none;
  2747. box-shadow:none;
  2748. }
  2749. #u447 {
  2750. position:absolute;
  2751. left:1151px;
  2752. top:1073px;
  2753. width:320px;
  2754. height:580px;
  2755. }
  2756. #u448 {
  2757. position:absolute;
  2758. left:2px;
  2759. top:282px;
  2760. width:316px;
  2761. visibility:hidden;
  2762. word-wrap:break-word;
  2763. }
  2764. #u449 {
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:0px;
  2769. height:0px;
  2770. }
  2771. #u450_div {
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:318px;
  2776. height:17px;
  2777. background:inherit;
  2778. background-color:rgba(255, 255, 255, 1);
  2779. border:none;
  2780. border-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. }
  2785. #u450 {
  2786. position:absolute;
  2787. left:1152px;
  2788. top:1074px;
  2789. width:318px;
  2790. height:17px;
  2791. }
  2792. #u451 {
  2793. position:absolute;
  2794. left:2px;
  2795. top:0px;
  2796. width:314px;
  2797. visibility:hidden;
  2798. word-wrap:break-word;
  2799. }
  2800. #u452_img {
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:318px;
  2805. height:17px;
  2806. }
  2807. #u452 {
  2808. position:absolute;
  2809. left:1152px;
  2810. top:1074px;
  2811. width:318px;
  2812. height:17px;
  2813. }
  2814. #u453 {
  2815. position:absolute;
  2816. left:2px;
  2817. top:0px;
  2818. width:314px;
  2819. visibility:hidden;
  2820. word-wrap:break-word;
  2821. }
  2822. #u454 {
  2823. position:absolute;
  2824. left:1161px;
  2825. top:1458px;
  2826. width:300px;
  2827. height:34px;
  2828. }
  2829. #u454_input {
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:300px;
  2834. height:34px;
  2835. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2836. font-weight:200;
  2837. font-style:normal;
  2838. font-size:13px;
  2839. text-decoration:none;
  2840. color:#000000;
  2841. text-align:center;
  2842. }
  2843. #u455 {
  2844. position:absolute;
  2845. left:1161px;
  2846. top:1278px;
  2847. width:300px;
  2848. height:34px;
  2849. }
  2850. #u455_input {
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:300px;
  2855. height:34px;
  2856. font-family:'ArialMT', 'Arial';
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:13px;
  2860. text-decoration:none;
  2861. color:#000000;
  2862. text-align:left;
  2863. }
  2864. #u456 {
  2865. position:absolute;
  2866. left:1161px;
  2867. top:1370px;
  2868. width:300px;
  2869. height:34px;
  2870. }
  2871. #u456_input {
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:300px;
  2876. height:34px;
  2877. font-family:'ArialMT', 'Arial';
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:13px;
  2881. text-decoration:none;
  2882. color:#000000;
  2883. text-align:left;
  2884. }
  2885. #u457 {
  2886. position:absolute;
  2887. left:1161px;
  2888. top:1414px;
  2889. width:300px;
  2890. height:34px;
  2891. }
  2892. #u457_input {
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:300px;
  2897. height:34px;
  2898. font-family:'ArialMT', 'Arial';
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:13px;
  2902. text-decoration:none;
  2903. color:#000000;
  2904. text-align:left;
  2905. }
  2906. #u458 {
  2907. position:absolute;
  2908. left:1161px;
  2909. top:1326px;
  2910. width:300px;
  2911. height:34px;
  2912. }
  2913. #u458_input {
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:300px;
  2918. height:34px;
  2919. font-family:'ArialMT', 'Arial';
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:13px;
  2923. text-decoration:none;
  2924. color:#000000;
  2925. }
  2926. #u458_input:disabled {
  2927. color:grayText;
  2928. }
  2929. #u459_div {
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:200px;
  2934. height:14px;
  2935. background:inherit;
  2936. background-color:rgba(255, 255, 255, 0);
  2937. border:none;
  2938. border-radius:0px;
  2939. -moz-box-shadow:none;
  2940. -webkit-box-shadow:none;
  2941. box-shadow:none;
  2942. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2943. font-weight:200;
  2944. font-style:normal;
  2945. font-size:14px;
  2946. text-align:center;
  2947. }
  2948. #u459 {
  2949. position:absolute;
  2950. left:1211px;
  2951. top:1234px;
  2952. width:200px;
  2953. height:14px;
  2954. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  2955. font-weight:200;
  2956. font-style:normal;
  2957. font-size:14px;
  2958. text-align:center;
  2959. }
  2960. #u460 {
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:200px;
  2965. word-wrap:break-word;
  2966. }
  2967. #u461_img {
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:34px;
  2972. height:34px;
  2973. }
  2974. #u461 {
  2975. position:absolute;
  2976. left:930px;
  2977. top:1356px;
  2978. width:34px;
  2979. height:34px;
  2980. }
  2981. #u462 {
  2982. position:absolute;
  2983. left:2px;
  2984. top:9px;
  2985. width:30px;
  2986. visibility:hidden;
  2987. word-wrap:break-word;
  2988. }
  2989. #u463_div {
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:81px;
  2994. height:91px;
  2995. background:inherit;
  2996. background-color:rgba(255, 255, 255, 1);
  2997. box-sizing:border-box;
  2998. border-width:1px;
  2999. border-style:solid;
  3000. border-color:rgba(121, 121, 121, 1);
  3001. border-radius:0px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3006. font-weight:200;
  3007. font-style:normal;
  3008. }
  3009. #u463 {
  3010. position:absolute;
  3011. left:907px;
  3012. top:1132px;
  3013. width:81px;
  3014. height:91px;
  3015. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3016. font-weight:200;
  3017. font-style:normal;
  3018. }
  3019. #u464 {
  3020. position:absolute;
  3021. left:2px;
  3022. top:39px;
  3023. width:77px;
  3024. word-wrap:break-word;
  3025. }
  3026. #u465_div {
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:99px;
  3031. height:91px;
  3032. background:inherit;
  3033. background-color:rgba(255, 255, 255, 1);
  3034. box-sizing:border-box;
  3035. border-width:1px;
  3036. border-style:solid;
  3037. border-color:rgba(121, 121, 121, 1);
  3038. border-radius:0px;
  3039. -moz-box-shadow:none;
  3040. -webkit-box-shadow:none;
  3041. box-shadow:none;
  3042. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3043. font-weight:200;
  3044. font-style:normal;
  3045. }
  3046. #u465 {
  3047. position:absolute;
  3048. left:1007px;
  3049. top:1132px;
  3050. width:99px;
  3051. height:91px;
  3052. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3053. font-weight:200;
  3054. font-style:normal;
  3055. }
  3056. #u466 {
  3057. position:absolute;
  3058. left:2px;
  3059. top:39px;
  3060. width:95px;
  3061. word-wrap:break-word;
  3062. }
  3063. #u467_div {
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:136px;
  3068. height:91px;
  3069. background:inherit;
  3070. background-color:rgba(255, 255, 255, 1);
  3071. box-sizing:border-box;
  3072. border-width:1px;
  3073. border-style:solid;
  3074. border-color:rgba(121, 121, 121, 1);
  3075. border-radius:0px;
  3076. -moz-box-shadow:none;
  3077. -webkit-box-shadow:none;
  3078. box-shadow:none;
  3079. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3080. font-weight:200;
  3081. font-style:normal;
  3082. }
  3083. #u467 {
  3084. position:absolute;
  3085. left:879px;
  3086. top:1562px;
  3087. width:136px;
  3088. height:91px;
  3089. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3090. font-weight:200;
  3091. font-style:normal;
  3092. }
  3093. #u468 {
  3094. position:absolute;
  3095. left:2px;
  3096. top:39px;
  3097. width:132px;
  3098. word-wrap:break-word;
  3099. }
  3100. #u469_div {
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:82px;
  3105. height:91px;
  3106. background:inherit;
  3107. background-color:rgba(255, 255, 255, 1);
  3108. box-sizing:border-box;
  3109. border-width:1px;
  3110. border-style:solid;
  3111. border-color:rgba(121, 121, 121, 1);
  3112. border-radius:0px;
  3113. -moz-box-shadow:none;
  3114. -webkit-box-shadow:none;
  3115. box-shadow:none;
  3116. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3117. font-weight:200;
  3118. font-style:normal;
  3119. }
  3120. #u469 {
  3121. position:absolute;
  3122. left:1025px;
  3123. top:1562px;
  3124. width:82px;
  3125. height:91px;
  3126. font-family:'STHeitiSC-Light', 'Heiti SC Light', 'Heiti SC';
  3127. font-weight:200;
  3128. font-style:normal;
  3129. }
  3130. #u470 {
  3131. position:absolute;
  3132. left:2px;
  3133. top:39px;
  3134. width:78px;
  3135. word-wrap:break-word;
  3136. }
  3137. #u471 {
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:0px;
  3142. height:0px;
  3143. }
  3144. #u472_img {
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:30px;
  3149. height:30px;
  3150. }
  3151. #u472 {
  3152. position:absolute;
  3153. left:1068px;
  3154. top:1139px;
  3155. width:30px;
  3156. height:30px;
  3157. }
  3158. #u473 {
  3159. position:absolute;
  3160. left:2px;
  3161. top:7px;
  3162. width:26px;
  3163. visibility:hidden;
  3164. word-wrap:break-word;
  3165. }
  3166. #u474_img {
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:16px;
  3171. height:16px;
  3172. }
  3173. #u474 {
  3174. position:absolute;
  3175. left:1074px;
  3176. top:1146px;
  3177. width:16px;
  3178. height:16px;
  3179. }
  3180. #u475 {
  3181. position:absolute;
  3182. left:2px;
  3183. top:0px;
  3184. width:12px;
  3185. visibility:hidden;
  3186. word-wrap:break-word;
  3187. }
  3188. #u476 {
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:0px;
  3193. height:0px;
  3194. }
  3195. #u477_img {
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:30px;
  3200. height:30px;
  3201. }
  3202. #u477 {
  3203. position:absolute;
  3204. left:1431px;
  3205. top:1139px;
  3206. width:30px;
  3207. height:30px;
  3208. }
  3209. #u478 {
  3210. position:absolute;
  3211. left:2px;
  3212. top:7px;
  3213. width:26px;
  3214. visibility:hidden;
  3215. word-wrap:break-word;
  3216. }
  3217. #u479_img {
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:16px;
  3222. height:16px;
  3223. }
  3224. #u479 {
  3225. position:absolute;
  3226. left:1437px;
  3227. top:1146px;
  3228. width:16px;
  3229. height:16px;
  3230. }
  3231. #u480 {
  3232. position:absolute;
  3233. left:2px;
  3234. top:0px;
  3235. width:12px;
  3236. visibility:hidden;
  3237. word-wrap:break-word;
  3238. }
  3239. #u481_div {
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:244px;
  3244. height:27px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3253. font-weight:700;
  3254. font-style:normal;
  3255. }
  3256. #u481 {
  3257. position:absolute;
  3258. left:788px;
  3259. top:1027px;
  3260. width:244px;
  3261. height:27px;
  3262. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3263. font-weight:700;
  3264. font-style:normal;
  3265. }
  3266. #u482 {
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:244px;
  3271. word-wrap:break-word;
  3272. }
  3273. #u483_div {
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:301px;
  3278. height:27px;
  3279. background:inherit;
  3280. background-color:rgba(255, 255, 255, 0);
  3281. border:none;
  3282. border-radius:0px;
  3283. -moz-box-shadow:none;
  3284. -webkit-box-shadow:none;
  3285. box-shadow:none;
  3286. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3287. font-weight:700;
  3288. font-style:normal;
  3289. }
  3290. #u483 {
  3291. position:absolute;
  3292. left:1152px;
  3293. top:1025px;
  3294. width:301px;
  3295. height:27px;
  3296. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3297. font-weight:700;
  3298. font-style:normal;
  3299. }
  3300. #u484 {
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:301px;
  3305. word-wrap:break-word;
  3306. }
  3307. #u485_div {
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:320px;
  3312. height:57px;
  3313. background:inherit;
  3314. background-color:rgba(208, 225, 125, 1);
  3315. border:none;
  3316. border-radius:0px;
  3317. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3318. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3319. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3320. font-family:'PingFangSC-Regular', 'PingFang SC';
  3321. font-weight:400;
  3322. font-style:normal;
  3323. }
  3324. #u485 {
  3325. position:absolute;
  3326. left:1152px;
  3327. top:1678px;
  3328. width:320px;
  3329. height:57px;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC';
  3331. font-weight:400;
  3332. font-style:normal;
  3333. }
  3334. #u486 {
  3335. position:absolute;
  3336. left:10px;
  3337. top:10px;
  3338. width:300px;
  3339. word-wrap:break-word;
  3340. }
  3341. #u487 {
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:0px;
  3346. height:0px;
  3347. }
  3348. #u488_div {
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:318px;
  3353. height:40px;
  3354. background:inherit;
  3355. background-color:rgba(255, 255, 255, 1);
  3356. box-sizing:border-box;
  3357. border-width:1px;
  3358. border-style:solid;
  3359. border-color:rgba(228, 228, 228, 1);
  3360. border-left:0px;
  3361. border-top:0px;
  3362. border-right:0px;
  3363. border-radius:0px;
  3364. border-top-left-radius:0px;
  3365. border-top-right-radius:0px;
  3366. border-bottom-right-radius:0px;
  3367. border-bottom-left-radius:0px;
  3368. -moz-box-shadow:none;
  3369. -webkit-box-shadow:none;
  3370. box-shadow:none;
  3371. font-size:14px;
  3372. text-align:left;
  3373. }
  3374. #u488 {
  3375. position:absolute;
  3376. left:788px;
  3377. top:1091px;
  3378. width:318px;
  3379. height:40px;
  3380. font-size:14px;
  3381. text-align:left;
  3382. }
  3383. #u489 {
  3384. position:absolute;
  3385. left:0px;
  3386. top:10px;
  3387. width:318px;
  3388. word-wrap:break-word;
  3389. }
  3390. #u490 {
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:0px;
  3395. height:0px;
  3396. }
  3397. #u491_div {
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:318px;
  3402. height:40px;
  3403. background:inherit;
  3404. background-color:rgba(255, 255, 255, 1);
  3405. box-sizing:border-box;
  3406. border-width:1px;
  3407. border-style:solid;
  3408. border-color:rgba(228, 228, 228, 1);
  3409. border-left:0px;
  3410. border-top:0px;
  3411. border-right:0px;
  3412. border-radius:0px;
  3413. border-top-left-radius:0px;
  3414. border-top-right-radius:0px;
  3415. border-bottom-right-radius:0px;
  3416. border-bottom-left-radius:0px;
  3417. -moz-box-shadow:none;
  3418. -webkit-box-shadow:none;
  3419. box-shadow:none;
  3420. font-size:14px;
  3421. text-align:left;
  3422. }
  3423. #u491 {
  3424. position:absolute;
  3425. left:1152px;
  3426. top:1091px;
  3427. width:318px;
  3428. height:40px;
  3429. font-size:14px;
  3430. text-align:left;
  3431. }
  3432. #u492 {
  3433. position:absolute;
  3434. left:0px;
  3435. top:10px;
  3436. width:318px;
  3437. word-wrap:break-word;
  3438. }