styles.css 62 KB

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