styles.css 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2156px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u35509_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u35509 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u35509 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u35509_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u35510_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u35510 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u35510 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u35510_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u35511_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u35511 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u35511 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u35511_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u35512 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u35513_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u35513 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u35513 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u35513_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u35514_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u35514 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u35514 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u35514_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u35515_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u35515 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u35515 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u35515_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u35516 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u35517_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u35517 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u35517 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u35517_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u35518_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u35518 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u35518 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u35518_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u35519 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u35520_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u35520 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u35520 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u35520_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u35521_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u35521 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u35521 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u35521_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u35522 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u35523_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u35523 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u35523 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u35523_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u35524_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u35524 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u35524 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u35524_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u35525 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u35526_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u35526 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u35526 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u35526_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u35527_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u35527 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u35527 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u35527_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u35528 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u35529_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u35529 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u35529 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u35529_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u35530_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u35530 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u35530 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u35530_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u35531 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u35532_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u35532 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u35532 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u35532_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u35533_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u35533 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u35533 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u35533_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u35534 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u35535_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u35535 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u35535 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u35535_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u35536_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u35536 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u35536 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u35536_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u35537 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u35538_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u35538 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u35538 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u35538_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u35539_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u35539 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u35539 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u35539_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u35540 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u35541_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u35541 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u35541 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u35541_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u35542_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u35542 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u35542 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u35542_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u35543_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u35543 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u35543 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u35543_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u35544_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u35544 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u35544 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u35544_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u35545_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u35545 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u35545 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u35545_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u35546_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u35546 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u35546 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u35546_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u35547 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u35548_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u35548 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u35548 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u35548_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u35549_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u35549 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u35549 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u35549_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u35550 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u35551_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u35551 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u35551 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u35551_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u35552_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u35552 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u35552 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u35552_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u35553 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u35554_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u35554_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u35554_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u35554 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u35554 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u35554_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u35554.disabled {
  1428. }
  1429. .u35554_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u35555_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u35555 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u35555 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u35555_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u35556_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u35556 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u35556 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u35556_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u35557_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u35557 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u35557 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u35557_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u35558 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:0px;
  1544. height:0px;
  1545. }
  1546. #u35559_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:200px;
  1552. height:1187px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 1);
  1555. border:none;
  1556. border-radius:0px;
  1557. -moz-box-shadow:none;
  1558. -webkit-box-shadow:none;
  1559. box-shadow:none;
  1560. }
  1561. #u35559 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:120px;
  1565. top:50px;
  1566. width:200px;
  1567. height:1187px;
  1568. display:flex;
  1569. }
  1570. #u35559 .text {
  1571. position:absolute;
  1572. align-self:center;
  1573. padding:2px 2px 2px 2px;
  1574. box-sizing:border-box;
  1575. width:100%;
  1576. }
  1577. #u35559_text {
  1578. border-width:0px;
  1579. word-wrap:break-word;
  1580. text-transform:none;
  1581. visibility:hidden;
  1582. }
  1583. #u35560_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:200px;
  1589. height:60px;
  1590. background:inherit;
  1591. background-color:rgba(224, 231, 247, 1);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1598. font-weight:500;
  1599. font-style:normal;
  1600. font-size:18px;
  1601. }
  1602. #u35560 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:120px;
  1606. top:50px;
  1607. width:200px;
  1608. height:60px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1611. font-weight:500;
  1612. font-style:normal;
  1613. font-size:18px;
  1614. }
  1615. #u35560 .text {
  1616. position:absolute;
  1617. align-self:center;
  1618. padding:0px 0px 0px 20px;
  1619. box-sizing:border-box;
  1620. width:100%;
  1621. }
  1622. #u35560_text {
  1623. border-width:0px;
  1624. word-wrap:break-word;
  1625. text-transform:none;
  1626. }
  1627. #u35561_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:65px;
  1633. height:22px;
  1634. background:inherit;
  1635. background-color:rgba(255, 255, 255, 0);
  1636. border:none;
  1637. border-radius:0px;
  1638. -moz-box-shadow:none;
  1639. -webkit-box-shadow:none;
  1640. box-shadow:none;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:16px;
  1645. }
  1646. #u35561 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:147px;
  1650. top:204px;
  1651. width:65px;
  1652. height:22px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:16px;
  1658. }
  1659. #u35561 .text {
  1660. position:absolute;
  1661. align-self:flex-start;
  1662. padding:0px 0px 0px 0px;
  1663. box-sizing:border-box;
  1664. width:100%;
  1665. }
  1666. #u35561_text {
  1667. border-width:0px;
  1668. white-space:nowrap;
  1669. text-transform:none;
  1670. }
  1671. #u35562_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:49px;
  1677. height:17px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 0);
  1680. border:none;
  1681. border-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1686. font-weight:400;
  1687. font-style:normal;
  1688. font-size:12px;
  1689. color:#AAAAAA;
  1690. }
  1691. #u35562 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:147px;
  1695. top:125px;
  1696. width:49px;
  1697. height:17px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:12px;
  1703. color:#AAAAAA;
  1704. }
  1705. #u35562 .text {
  1706. position:absolute;
  1707. align-self:flex-start;
  1708. padding:0px 0px 0px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u35562_text {
  1713. border-width:0px;
  1714. white-space:nowrap;
  1715. text-transform:none;
  1716. }
  1717. #u35563_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:49px;
  1723. height:17px;
  1724. background:inherit;
  1725. background-color:rgba(255, 255, 255, 0);
  1726. border:none;
  1727. border-radius:0px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. color:#AAAAAA;
  1736. }
  1737. #u35563 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:147px;
  1741. top:461px;
  1742. width:49px;
  1743. height:17px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#AAAAAA;
  1750. }
  1751. #u35563 .text {
  1752. position:absolute;
  1753. align-self:flex-start;
  1754. padding:0px 0px 0px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u35563_text {
  1759. border-width:0px;
  1760. white-space:nowrap;
  1761. text-transform:none;
  1762. }
  1763. #u35564_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:201px;
  1769. height:2px;
  1770. }
  1771. #u35564 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:120px;
  1775. top:439px;
  1776. width:200px;
  1777. height:1px;
  1778. display:flex;
  1779. }
  1780. #u35564 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u35564_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. visibility:hidden;
  1792. }
  1793. #u35565_div {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:65px;
  1799. height:22px;
  1800. background:inherit;
  1801. background-color:rgba(255, 255, 255, 0);
  1802. border:none;
  1803. border-radius:0px;
  1804. -moz-box-shadow:none;
  1805. -webkit-box-shadow:none;
  1806. box-shadow:none;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:16px;
  1811. }
  1812. #u35565 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:147px;
  1816. top:309px;
  1817. width:65px;
  1818. height:22px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:16px;
  1824. }
  1825. #u35565 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:0px 0px 0px 0px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u35565_text {
  1833. border-width:0px;
  1834. white-space:nowrap;
  1835. text-transform:none;
  1836. }
  1837. #u35566_div {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:49px;
  1843. height:17px;
  1844. background:inherit;
  1845. background-color:rgba(255, 255, 255, 0);
  1846. border:none;
  1847. border-radius:0px;
  1848. -moz-box-shadow:none;
  1849. -webkit-box-shadow:none;
  1850. box-shadow:none;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:12px;
  1855. color:#AAAAAA;
  1856. }
  1857. #u35566 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:147px;
  1861. top:273px;
  1862. width:49px;
  1863. height:17px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#AAAAAA;
  1870. }
  1871. #u35566 .text {
  1872. position:absolute;
  1873. align-self:flex-start;
  1874. padding:0px 0px 0px 0px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u35566_text {
  1879. border-width:0px;
  1880. white-space:nowrap;
  1881. text-transform:none;
  1882. }
  1883. #u35567_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:201px;
  1889. height:2px;
  1890. }
  1891. #u35567 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:120px;
  1895. top:251px;
  1896. width:200px;
  1897. height:1px;
  1898. display:flex;
  1899. }
  1900. #u35567 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:2px 2px 2px 2px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u35567_text {
  1908. border-width:0px;
  1909. word-wrap:break-word;
  1910. text-transform:none;
  1911. visibility:hidden;
  1912. }
  1913. #u35568_div {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:65px;
  1919. height:22px;
  1920. background:inherit;
  1921. background-color:rgba(255, 255, 255, 0);
  1922. border:none;
  1923. border-radius:0px;
  1924. -moz-box-shadow:none;
  1925. -webkit-box-shadow:none;
  1926. box-shadow:none;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:16px;
  1931. }
  1932. #u35568 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:147px;
  1936. top:162px;
  1937. width:65px;
  1938. height:22px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:16px;
  1944. }
  1945. #u35568 .text {
  1946. position:absolute;
  1947. align-self:flex-start;
  1948. padding:0px 0px 0px 0px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u35568_text {
  1953. border-width:0px;
  1954. white-space:nowrap;
  1955. text-transform:none;
  1956. }
  1957. #u35569_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:65px;
  1963. height:22px;
  1964. background:inherit;
  1965. background-color:rgba(255, 255, 255, 0);
  1966. border:none;
  1967. border-radius:0px;
  1968. -moz-box-shadow:none;
  1969. -webkit-box-shadow:none;
  1970. box-shadow:none;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:16px;
  1975. }
  1976. #u35569 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:148px;
  1980. top:538px;
  1981. width:65px;
  1982. height:22px;
  1983. display:flex;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:16px;
  1988. }
  1989. #u35569 .text {
  1990. position:absolute;
  1991. align-self:flex-start;
  1992. padding:0px 0px 0px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u35569_text {
  1997. border-width:0px;
  1998. white-space:nowrap;
  1999. text-transform:none;
  2000. }
  2001. #u35570_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:65px;
  2007. height:22px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 0);
  2010. border:none;
  2011. border-radius:0px;
  2012. -moz-box-shadow:none;
  2013. -webkit-box-shadow:none;
  2014. box-shadow:none;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:16px;
  2019. }
  2020. #u35570 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:148px;
  2024. top:496px;
  2025. width:65px;
  2026. height:22px;
  2027. display:flex;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. font-size:16px;
  2032. }
  2033. #u35570 .text {
  2034. position:absolute;
  2035. align-self:flex-start;
  2036. padding:0px 0px 0px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u35570_text {
  2041. border-width:0px;
  2042. white-space:nowrap;
  2043. text-transform:none;
  2044. }
  2045. #u35571_div {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:65px;
  2051. height:22px;
  2052. background:inherit;
  2053. background-color:rgba(255, 255, 255, 0);
  2054. border:none;
  2055. border-radius:0px;
  2056. -moz-box-shadow:none;
  2057. -webkit-box-shadow:none;
  2058. box-shadow:none;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:16px;
  2063. }
  2064. #u35571 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:147px;
  2068. top:351px;
  2069. width:65px;
  2070. height:22px;
  2071. display:flex;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:16px;
  2076. }
  2077. #u35571 .text {
  2078. position:absolute;
  2079. align-self:flex-start;
  2080. padding:0px 0px 0px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u35571_text {
  2085. border-width:0px;
  2086. white-space:nowrap;
  2087. text-transform:none;
  2088. }
  2089. #u35572_div {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:65px;
  2095. height:22px;
  2096. background:inherit;
  2097. background-color:rgba(255, 255, 255, 0);
  2098. border:none;
  2099. border-radius:0px;
  2100. -moz-box-shadow:none;
  2101. -webkit-box-shadow:none;
  2102. box-shadow:none;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:16px;
  2107. }
  2108. #u35572 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:147px;
  2112. top:393px;
  2113. width:65px;
  2114. height:22px;
  2115. display:flex;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:16px;
  2120. }
  2121. #u35572 .text {
  2122. position:absolute;
  2123. align-self:flex-start;
  2124. padding:0px 0px 0px 0px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u35572_text {
  2129. border-width:0px;
  2130. white-space:nowrap;
  2131. text-transform:none;
  2132. }
  2133. #u35573_div {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:1262px;
  2139. height:1060px;
  2140. background:inherit;
  2141. background-color:rgba(255, 255, 255, 1);
  2142. border:none;
  2143. border-radius:0px;
  2144. -moz-box-shadow:none;
  2145. -webkit-box-shadow:none;
  2146. box-shadow:none;
  2147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2148. font-weight:400;
  2149. font-style:normal;
  2150. font-size:38px;
  2151. color:#D7D7D7;
  2152. }
  2153. #u35573 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:330px;
  2157. top:180px;
  2158. width:1262px;
  2159. height:1060px;
  2160. display:flex;
  2161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2162. font-weight:400;
  2163. font-style:normal;
  2164. font-size:38px;
  2165. color:#D7D7D7;
  2166. }
  2167. #u35573 .text {
  2168. position:absolute;
  2169. align-self:center;
  2170. padding:2px 2px 2px 50px;
  2171. box-sizing:border-box;
  2172. width:100%;
  2173. }
  2174. #u35573_text {
  2175. border-width:0px;
  2176. word-wrap:break-word;
  2177. text-transform:none;
  2178. }
  2179. #u35574_img {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:-1px;
  2183. top:-1px;
  2184. width:761px;
  2185. height:423px;
  2186. }
  2187. #u35574 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:726px;
  2191. top:260px;
  2192. width:758px;
  2193. height:420px;
  2194. display:flex;
  2195. }
  2196. #u35574 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u35574_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. visibility:hidden;
  2208. }
  2209. #u35575_div {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:1262px;
  2215. height:120px;
  2216. background:inherit;
  2217. background-color:rgba(255, 255, 255, 1);
  2218. border:none;
  2219. border-radius:0px;
  2220. -moz-box-shadow:none;
  2221. -webkit-box-shadow:none;
  2222. box-shadow:none;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:38px;
  2227. color:#D7D7D7;
  2228. }
  2229. #u35575 {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:330px;
  2233. top:50px;
  2234. width:1262px;
  2235. height:120px;
  2236. display:flex;
  2237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2238. font-weight:400;
  2239. font-style:normal;
  2240. font-size:38px;
  2241. color:#D7D7D7;
  2242. }
  2243. #u35575 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:2px 2px 2px 50px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u35575_text {
  2251. border-width:0px;
  2252. word-wrap:break-word;
  2253. text-transform:none;
  2254. visibility:hidden;
  2255. }
  2256. #u35576_div {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:73px;
  2262. height:50px;
  2263. background:inherit;
  2264. background-color:rgba(255, 255, 255, 0);
  2265. border:none;
  2266. border-left:0px;
  2267. border-top:0px;
  2268. border-right:0px;
  2269. border-radius:0px;
  2270. border-bottom-right-radius:0px;
  2271. border-bottom-left-radius:0px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:18px;
  2279. }
  2280. #u35576 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:349px;
  2284. top:50px;
  2285. width:73px;
  2286. height:50px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:18px;
  2292. }
  2293. #u35576 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u35576_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u35577 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:0px;
  2311. height:0px;
  2312. }
  2313. #u35578_div {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:140px;
  2319. height:30px;
  2320. background:inherit;
  2321. background-color:rgba(255, 255, 255, 1);
  2322. box-sizing:border-box;
  2323. border-width:1px;
  2324. border-style:solid;
  2325. border-color:rgba(215, 215, 215, 1);
  2326. border-radius:4px;
  2327. -moz-box-shadow:none;
  2328. -webkit-box-shadow:none;
  2329. box-shadow:none;
  2330. font-size:11px;
  2331. }
  2332. #u35578 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:349px;
  2336. top:110px;
  2337. width:140px;
  2338. height:30px;
  2339. display:flex;
  2340. font-size:11px;
  2341. }
  2342. #u35578 .text {
  2343. position:absolute;
  2344. align-self:center;
  2345. padding:2px 2px 2px 2px;
  2346. box-sizing:border-box;
  2347. width:100%;
  2348. }
  2349. #u35578_text {
  2350. border-width:0px;
  2351. word-wrap:break-word;
  2352. text-transform:none;
  2353. visibility:hidden;
  2354. }
  2355. #u35579_input {
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:126px;
  2360. height:23px;
  2361. padding:2px 2px 2px 2px;
  2362. font-family:'ArialMT', 'Arial', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:11px;
  2366. letter-spacing:normal;
  2367. color:#AAAAAA;
  2368. vertical-align:none;
  2369. text-align:left;
  2370. text-transform:none;
  2371. background-color:transparent;
  2372. border-color:transparent;
  2373. }
  2374. #u35579_input.disabled {
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:126px;
  2379. height:23px;
  2380. padding:2px 2px 2px 2px;
  2381. font-family:'ArialMT', 'Arial', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:11px;
  2385. letter-spacing:normal;
  2386. color:#AAAAAA;
  2387. vertical-align:none;
  2388. text-align:left;
  2389. text-transform:none;
  2390. background-color:transparent;
  2391. border-color:transparent;
  2392. }
  2393. #u35579_div {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:126px;
  2399. height:23px;
  2400. background:inherit;
  2401. background-color:rgba(255, 255, 255, 1);
  2402. border:none;
  2403. border-radius:0px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-size:11px;
  2408. color:#AAAAAA;
  2409. }
  2410. #u35579 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:356px;
  2414. top:112px;
  2415. width:126px;
  2416. height:23px;
  2417. display:flex;
  2418. font-size:11px;
  2419. color:#AAAAAA;
  2420. }
  2421. #u35579 .text {
  2422. position:absolute;
  2423. align-self:flex-start;
  2424. padding:2px 2px 2px 2px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u35579_div.disabled {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:126px;
  2434. height:23px;
  2435. background:inherit;
  2436. background-color:rgba(240, 240, 240, 1);
  2437. border:none;
  2438. border-radius:0px;
  2439. -moz-box-shadow:none;
  2440. -webkit-box-shadow:none;
  2441. box-shadow:none;
  2442. font-size:11px;
  2443. color:#AAAAAA;
  2444. }
  2445. #u35579.disabled {
  2446. }
  2447. .u35579_input_option {
  2448. font-size:11px;
  2449. }
  2450. #u35580 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:0px;
  2456. height:0px;
  2457. }
  2458. #u35581_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:59px;
  2464. height:30px;
  2465. background:inherit;
  2466. background-color:rgba(24, 144, 255, 1);
  2467. box-sizing:border-box;
  2468. border-width:1px;
  2469. border-style:solid;
  2470. border-color:rgba(0, 153, 255, 1);
  2471. border-radius:4px;
  2472. -moz-box-shadow:none;
  2473. -webkit-box-shadow:none;
  2474. box-shadow:none;
  2475. font-family:'Microsoft YaHei', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:14px;
  2479. color:#FFFFFF;
  2480. }
  2481. #u35581 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:1243px;
  2485. top:110px;
  2486. width:59px;
  2487. height:30px;
  2488. display:flex;
  2489. font-family:'Microsoft YaHei', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:14px;
  2493. color:#FFFFFF;
  2494. }
  2495. #u35581 .text {
  2496. position:absolute;
  2497. align-self:center;
  2498. padding:5px 15px 5px 15px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u35581_text {
  2503. border-width:0px;
  2504. white-space:nowrap;
  2505. text-transform:none;
  2506. }
  2507. #u35582_div {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:55px;
  2513. height:30px;
  2514. background:inherit;
  2515. background-color:rgba(255, 255, 255, 1);
  2516. box-sizing:border-box;
  2517. border-width:1px;
  2518. border-style:solid;
  2519. border-color:rgba(170, 170, 170, 1);
  2520. border-radius:4px;
  2521. -moz-box-shadow:none;
  2522. -webkit-box-shadow:none;
  2523. box-shadow:none;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:12px;
  2528. color:#555555;
  2529. }
  2530. #u35582 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:1312px;
  2534. top:110px;
  2535. width:55px;
  2536. height:30px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. color:#555555;
  2543. }
  2544. #u35582 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:5px 15px 5px 15px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u35582_text {
  2552. border-width:0px;
  2553. white-space:nowrap;
  2554. text-transform:none;
  2555. }
  2556. #u35583 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:0px;
  2562. height:0px;
  2563. }
  2564. #u35584_div {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:140px;
  2570. height:30px;
  2571. background:inherit;
  2572. background-color:rgba(255, 255, 255, 1);
  2573. box-sizing:border-box;
  2574. border-width:1px;
  2575. border-style:solid;
  2576. border-color:rgba(201, 201, 201, 1);
  2577. border-radius:4px;
  2578. -moz-box-shadow:none;
  2579. -webkit-box-shadow:none;
  2580. box-shadow:none;
  2581. font-family:'Microsoft YaHei', sans-serif;
  2582. font-weight:400;
  2583. font-style:normal;
  2584. font-size:14px;
  2585. color:#CCCCCC;
  2586. text-align:left;
  2587. }
  2588. #u35584 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:499px;
  2592. top:110px;
  2593. width:140px;
  2594. height:30px;
  2595. display:flex;
  2596. font-family:'Microsoft YaHei', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:14px;
  2600. color:#CCCCCC;
  2601. text-align:left;
  2602. }
  2603. #u35584 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 8px 2px 8px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u35584_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u35585_input {
  2617. position:absolute;
  2618. left:0px;
  2619. top:0px;
  2620. width:127px;
  2621. height:25px;
  2622. padding:2px 2px 2px 2px;
  2623. font-family:'Microsoft YaHei', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:10px;
  2627. letter-spacing:normal;
  2628. color:#000000;
  2629. vertical-align:none;
  2630. text-align:left;
  2631. text-transform:none;
  2632. background-color:transparent;
  2633. border-color:transparent;
  2634. }
  2635. #u35585_input.disabled {
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:127px;
  2640. height:25px;
  2641. padding:2px 2px 2px 2px;
  2642. font-family:'Microsoft YaHei', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:10px;
  2646. letter-spacing:normal;
  2647. color:#000000;
  2648. vertical-align:none;
  2649. text-align:left;
  2650. text-transform:none;
  2651. background-color:transparent;
  2652. border-color:transparent;
  2653. }
  2654. #u35585_div {
  2655. border-width:0px;
  2656. position:absolute;
  2657. left:0px;
  2658. top:0px;
  2659. width:127px;
  2660. height:25px;
  2661. background:inherit;
  2662. background-color:rgba(255, 255, 255, 1);
  2663. border:none;
  2664. border-radius:0px;
  2665. -moz-box-shadow:none;
  2666. -webkit-box-shadow:none;
  2667. box-shadow:none;
  2668. font-family:'Microsoft YaHei', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:10px;
  2672. }
  2673. #u35585 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:507px;
  2677. top:111px;
  2678. width:127px;
  2679. height:25px;
  2680. display:flex;
  2681. font-family:'Microsoft YaHei', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:10px;
  2685. }
  2686. #u35585 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 2px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u35585_div.disabled {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:127px;
  2699. height:25px;
  2700. background:inherit;
  2701. background-color:rgba(240, 240, 240, 1);
  2702. border:none;
  2703. border-radius:0px;
  2704. -moz-box-shadow:none;
  2705. -webkit-box-shadow:none;
  2706. box-shadow:none;
  2707. font-family:'Microsoft YaHei', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:10px;
  2711. }
  2712. #u35585.disabled {
  2713. }
  2714. #u35586_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:759px;
  2720. height:75px;
  2721. background:inherit;
  2722. background-color:rgba(255, 255, 255, 0);
  2723. border:none;
  2724. border-left:0px;
  2725. border-top:0px;
  2726. border-right:0px;
  2727. border-radius:0px;
  2728. border-bottom-right-radius:0px;
  2729. border-bottom-left-radius:0px;
  2730. -moz-box-shadow:none;
  2731. -webkit-box-shadow:none;
  2732. box-shadow:none;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:18px;
  2737. color:#D9001B;
  2738. }
  2739. #u35586 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:706px;
  2743. top:874px;
  2744. width:759px;
  2745. height:75px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:18px;
  2751. color:#D9001B;
  2752. }
  2753. #u35586 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:0px 0px 0px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u35586_text {
  2761. border-width:0px;
  2762. white-space:nowrap;
  2763. text-transform:none;
  2764. }
  2765. #u35587 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:0px;
  2771. height:0px;
  2772. }
  2773. #u35588_div {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:140px;
  2779. height:30px;
  2780. background:inherit;
  2781. background-color:rgba(255, 255, 255, 1);
  2782. box-sizing:border-box;
  2783. border-width:1px;
  2784. border-style:solid;
  2785. border-color:rgba(215, 215, 215, 1);
  2786. border-radius:4px;
  2787. -moz-box-shadow:none;
  2788. -webkit-box-shadow:none;
  2789. box-shadow:none;
  2790. font-size:11px;
  2791. }
  2792. #u35588 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:649px;
  2796. top:110px;
  2797. width:140px;
  2798. height:30px;
  2799. display:flex;
  2800. font-size:11px;
  2801. }
  2802. #u35588 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 2px 2px 2px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u35588_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u35589_input {
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:126px;
  2820. height:23px;
  2821. padding:2px 2px 2px 2px;
  2822. font-family:'ArialMT', 'Arial', sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:11px;
  2826. letter-spacing:normal;
  2827. color:#AAAAAA;
  2828. vertical-align:none;
  2829. text-align:left;
  2830. text-transform:none;
  2831. background-color:transparent;
  2832. border-color:transparent;
  2833. }
  2834. #u35589_input.disabled {
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:126px;
  2839. height:23px;
  2840. padding:2px 2px 2px 2px;
  2841. font-family:'ArialMT', 'Arial', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:11px;
  2845. letter-spacing:normal;
  2846. color:#AAAAAA;
  2847. vertical-align:none;
  2848. text-align:left;
  2849. text-transform:none;
  2850. background-color:transparent;
  2851. border-color:transparent;
  2852. }
  2853. #u35589_div {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:126px;
  2859. height:23px;
  2860. background:inherit;
  2861. background-color:rgba(255, 255, 255, 1);
  2862. border:none;
  2863. border-radius:0px;
  2864. -moz-box-shadow:none;
  2865. -webkit-box-shadow:none;
  2866. box-shadow:none;
  2867. font-size:11px;
  2868. color:#AAAAAA;
  2869. }
  2870. #u35589 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:656px;
  2874. top:112px;
  2875. width:126px;
  2876. height:23px;
  2877. display:flex;
  2878. font-size:11px;
  2879. color:#AAAAAA;
  2880. }
  2881. #u35589 .text {
  2882. position:absolute;
  2883. align-self:flex-start;
  2884. padding:2px 2px 2px 2px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u35589_div.disabled {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:126px;
  2894. height:23px;
  2895. background:inherit;
  2896. background-color:rgba(240, 240, 240, 1);
  2897. border:none;
  2898. border-radius:0px;
  2899. -moz-box-shadow:none;
  2900. -webkit-box-shadow:none;
  2901. box-shadow:none;
  2902. font-size:11px;
  2903. color:#AAAAAA;
  2904. }
  2905. #u35589.disabled {
  2906. }
  2907. .u35589_input_option {
  2908. font-size:11px;
  2909. }
  2910. #u35590_div {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:300px;
  2916. height:1008px;
  2917. background:inherit;
  2918. background-color:rgba(242, 242, 242, 1);
  2919. border:none;
  2920. border-radius:0px;
  2921. -moz-box-shadow:none;
  2922. -webkit-box-shadow:none;
  2923. box-shadow:none;
  2924. }
  2925. #u35590 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:349px;
  2929. top:206px;
  2930. width:300px;
  2931. height:1008px;
  2932. display:flex;
  2933. }
  2934. #u35590 .text {
  2935. position:absolute;
  2936. align-self:center;
  2937. padding:2px 2px 2px 2px;
  2938. box-sizing:border-box;
  2939. width:100%;
  2940. }
  2941. #u35590_text {
  2942. border-width:0px;
  2943. word-wrap:break-word;
  2944. text-transform:none;
  2945. visibility:hidden;
  2946. }
  2947. #u35591_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:86px;
  2953. height:30px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 1);
  2956. box-sizing:border-box;
  2957. border-width:1px;
  2958. border-style:solid;
  2959. border-color:rgba(170, 170, 170, 1);
  2960. border-radius:4px;
  2961. -moz-box-shadow:none;
  2962. -webkit-box-shadow:none;
  2963. box-shadow:none;
  2964. font-size:12px;
  2965. color:#555555;
  2966. }
  2967. #u35591 {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:803px;
  2971. top:111px;
  2972. width:86px;
  2973. height:30px;
  2974. display:flex;
  2975. font-size:12px;
  2976. color:#555555;
  2977. }
  2978. #u35591 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:5px 15px 5px 15px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u35591_text {
  2986. border-width:0px;
  2987. white-space:nowrap;
  2988. text-transform:none;
  2989. }
  2990. #u35592 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:0px;
  2996. height:0px;
  2997. }
  2998. #u35593_div {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:292px;
  3004. height:30px;
  3005. background:inherit;
  3006. background-color:rgba(255, 255, 255, 1);
  3007. border:none;
  3008. border-radius:4px;
  3009. -moz-box-shadow:none;
  3010. -webkit-box-shadow:none;
  3011. box-shadow:none;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. font-size:12px;
  3016. color:#555555;
  3017. text-align:left;
  3018. }
  3019. #u35593 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:931px;
  3023. top:110px;
  3024. width:292px;
  3025. height:30px;
  3026. display:flex;
  3027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. color:#555555;
  3032. text-align:left;
  3033. }
  3034. #u35593 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:5px 15px 5px 15px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u35593_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. }
  3046. #u35594 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:0px;
  3052. height:0px;
  3053. }
  3054. #u35595_img {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:-3px;
  3058. top:-3px;
  3059. width:146px;
  3060. height:11px;
  3061. }
  3062. #u35595 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:997px;
  3066. top:123px;
  3067. width:140px;
  3068. height:5px;
  3069. display:flex;
  3070. }
  3071. #u35595 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 2px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u35595_text {
  3079. border-width:0px;
  3080. word-wrap:break-word;
  3081. text-transform:none;
  3082. visibility:hidden;
  3083. }
  3084. #u35596_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:-3px;
  3088. top:-3px;
  3089. width:108px;
  3090. height:11px;
  3091. }
  3092. #u35596 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:997px;
  3096. top:123px;
  3097. width:102px;
  3098. height:5px;
  3099. display:flex;
  3100. }
  3101. #u35596 .text {
  3102. position:absolute;
  3103. align-self:center;
  3104. padding:2px 2px 2px 2px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u35596_text {
  3109. border-width:0px;
  3110. word-wrap:break-word;
  3111. text-transform:none;
  3112. visibility:hidden;
  3113. }
  3114. #u35597_img {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:12px;
  3120. height:12px;
  3121. }
  3122. #u35597 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:1095px;
  3126. top:119px;
  3127. width:12px;
  3128. height:12px;
  3129. display:flex;
  3130. }
  3131. #u35597 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 2px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u35597_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u35598 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:0px;
  3150. height:0px;
  3151. }
  3152. #u35599_div {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:30px;
  3158. height:23px;
  3159. background:inherit;
  3160. background-color:rgba(255, 255, 255, 1);
  3161. box-sizing:border-box;
  3162. border-width:1px;
  3163. border-style:solid;
  3164. border-color:rgba(170, 170, 170, 1);
  3165. border-right:0px;
  3166. border-radius:4px;
  3167. border-top-right-radius:0px;
  3168. border-bottom-right-radius:0px;
  3169. -moz-box-shadow:none;
  3170. -webkit-box-shadow:none;
  3171. box-shadow:none;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. color:#555555;
  3177. }
  3178. #u35599 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:1150px;
  3182. top:113px;
  3183. width:30px;
  3184. height:23px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:12px;
  3190. color:#555555;
  3191. }
  3192. #u35599 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:5px 0px 5px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u35599_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. }
  3204. #u35600_div {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:30px;
  3210. height:23px;
  3211. background:inherit;
  3212. background-color:rgba(215, 215, 215, 1);
  3213. box-sizing:border-box;
  3214. border-width:1px;
  3215. border-style:solid;
  3216. border-color:rgba(170, 170, 170, 1);
  3217. border-radius:4px;
  3218. border-top-left-radius:0px;
  3219. border-bottom-left-radius:0px;
  3220. -moz-box-shadow:none;
  3221. -webkit-box-shadow:none;
  3222. box-shadow:none;
  3223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:12px;
  3227. color:#555555;
  3228. }
  3229. #u35600 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:1180px;
  3233. top:113px;
  3234. width:30px;
  3235. height:23px;
  3236. display:flex;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:12px;
  3241. color:#555555;
  3242. }
  3243. #u35600 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:5px 0px 5px 0px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u35600_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. }
  3255. #u35601_div {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:135px;
  3261. height:50px;
  3262. background:inherit;
  3263. background-color:rgba(255, 255, 255, 0);
  3264. border:none;
  3265. border-left:0px;
  3266. border-top:0px;
  3267. border-right:0px;
  3268. border-radius:0px;
  3269. border-bottom-right-radius:0px;
  3270. border-bottom-left-radius:0px;
  3271. -moz-box-shadow:none;
  3272. -webkit-box-shadow:none;
  3273. box-shadow:none;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:14px;
  3278. }
  3279. #u35601 {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:365px;
  3283. top:220px;
  3284. width:135px;
  3285. height:50px;
  3286. display:flex;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:14px;
  3291. }
  3292. #u35601 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:0px 0px 0px 0px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u35601_text {
  3300. border-width:0px;
  3301. white-space:nowrap;
  3302. text-transform:none;
  3303. }
  3304. #u35602 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:0px;
  3310. height:0px;
  3311. }
  3312. #u35603 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:0px;
  3318. height:0px;
  3319. }
  3320. #u35604_div {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:0px;
  3325. width:124px;
  3326. height:50px;
  3327. background:inherit;
  3328. background-color:rgba(255, 255, 255, 0);
  3329. border:none;
  3330. border-left:0px;
  3331. border-top:0px;
  3332. border-right:0px;
  3333. border-radius:0px;
  3334. border-bottom-right-radius:0px;
  3335. border-bottom-left-radius:0px;
  3336. -moz-box-shadow:none;
  3337. -webkit-box-shadow:none;
  3338. box-shadow:none;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:12px;
  3343. color:#1890FF;
  3344. }
  3345. #u35604 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:376px;
  3349. top:276px;
  3350. width:124px;
  3351. height:50px;
  3352. display:flex;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:12px;
  3357. color:#1890FF;
  3358. }
  3359. #u35604 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:0px 0px 0px 0px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u35604_text {
  3367. border-width:0px;
  3368. white-space:nowrap;
  3369. text-transform:none;
  3370. }
  3371. #u35605_div {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:121px;
  3377. height:50px;
  3378. background:inherit;
  3379. background-color:rgba(255, 255, 255, 0);
  3380. border:none;
  3381. border-left:0px;
  3382. border-top:0px;
  3383. border-right:0px;
  3384. border-radius:0px;
  3385. border-bottom-right-radius:0px;
  3386. border-bottom-left-radius:0px;
  3387. -moz-box-shadow:none;
  3388. -webkit-box-shadow:none;
  3389. box-shadow:none;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:12px;
  3394. color:#1890FF;
  3395. }
  3396. #u35605 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:515px;
  3400. top:276px;
  3401. width:121px;
  3402. height:50px;
  3403. display:flex;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. color:#1890FF;
  3409. }
  3410. #u35605 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:0px 0px 0px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u35605_text {
  3418. border-width:0px;
  3419. white-space:nowrap;
  3420. text-transform:none;
  3421. }
  3422. #u35606_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:6px;
  3428. height:6px;
  3429. }
  3430. #u35606 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:362px;
  3434. top:298px;
  3435. width:6px;
  3436. height:6px;
  3437. display:flex;
  3438. }
  3439. #u35606 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 2px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u35606_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u35607 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:0px;
  3458. height:0px;
  3459. }
  3460. #u35608_div {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:124px;
  3466. height:50px;
  3467. background:inherit;
  3468. background-color:rgba(255, 255, 255, 0);
  3469. border:none;
  3470. border-left:0px;
  3471. border-top:0px;
  3472. border-right:0px;
  3473. border-radius:0px;
  3474. border-bottom-right-radius:0px;
  3475. border-bottom-left-radius:0px;
  3476. -moz-box-shadow:none;
  3477. -webkit-box-shadow:none;
  3478. box-shadow:none;
  3479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3480. font-weight:400;
  3481. font-style:normal;
  3482. font-size:12px;
  3483. }
  3484. #u35608 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:376px;
  3488. top:326px;
  3489. width:124px;
  3490. height:50px;
  3491. display:flex;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:12px;
  3496. }
  3497. #u35608 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:0px 0px 0px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u35608_text {
  3505. border-width:0px;
  3506. white-space:nowrap;
  3507. text-transform:none;
  3508. }
  3509. #u35609_div {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:121px;
  3515. height:50px;
  3516. background:inherit;
  3517. background-color:rgba(255, 255, 255, 0);
  3518. border:none;
  3519. border-left:0px;
  3520. border-top:0px;
  3521. border-right:0px;
  3522. border-radius:0px;
  3523. border-bottom-right-radius:0px;
  3524. border-bottom-left-radius:0px;
  3525. -moz-box-shadow:none;
  3526. -webkit-box-shadow:none;
  3527. box-shadow:none;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:12px;
  3532. }
  3533. #u35609 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:515px;
  3537. top:326px;
  3538. width:121px;
  3539. height:50px;
  3540. display:flex;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:12px;
  3545. }
  3546. #u35609 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:0px 0px 0px 0px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u35609_text {
  3554. border-width:0px;
  3555. white-space:nowrap;
  3556. text-transform:none;
  3557. }
  3558. #u35610_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:6px;
  3564. height:6px;
  3565. }
  3566. #u35610 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:362px;
  3570. top:348px;
  3571. width:6px;
  3572. height:6px;
  3573. display:flex;
  3574. }
  3575. #u35610 .text {
  3576. position:absolute;
  3577. align-self:center;
  3578. padding:2px 2px 2px 2px;
  3579. box-sizing:border-box;
  3580. width:100%;
  3581. }
  3582. #u35610_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. visibility:hidden;
  3587. }
  3588. #u35611 {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:0px;
  3594. height:0px;
  3595. }
  3596. #u35612_div {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:124px;
  3602. height:50px;
  3603. background:inherit;
  3604. background-color:rgba(255, 255, 255, 0);
  3605. border:none;
  3606. border-left:0px;
  3607. border-top:0px;
  3608. border-right:0px;
  3609. border-radius:0px;
  3610. border-bottom-right-radius:0px;
  3611. border-bottom-left-radius:0px;
  3612. -moz-box-shadow:none;
  3613. -webkit-box-shadow:none;
  3614. box-shadow:none;
  3615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:12px;
  3619. }
  3620. #u35612 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:376px;
  3624. top:376px;
  3625. width:124px;
  3626. height:50px;
  3627. display:flex;
  3628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3629. font-weight:400;
  3630. font-style:normal;
  3631. font-size:12px;
  3632. }
  3633. #u35612 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:0px 0px 0px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u35612_text {
  3641. border-width:0px;
  3642. white-space:nowrap;
  3643. text-transform:none;
  3644. }
  3645. #u35613_div {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:121px;
  3651. height:50px;
  3652. background:inherit;
  3653. background-color:rgba(255, 255, 255, 0);
  3654. border:none;
  3655. border-left:0px;
  3656. border-top:0px;
  3657. border-right:0px;
  3658. border-radius:0px;
  3659. border-bottom-right-radius:0px;
  3660. border-bottom-left-radius:0px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. }
  3669. #u35613 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:515px;
  3673. top:376px;
  3674. width:121px;
  3675. height:50px;
  3676. display:flex;
  3677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:12px;
  3681. }
  3682. #u35613 .text {
  3683. position:absolute;
  3684. align-self:center;
  3685. padding:0px 0px 0px 0px;
  3686. box-sizing:border-box;
  3687. width:100%;
  3688. }
  3689. #u35613_text {
  3690. border-width:0px;
  3691. white-space:nowrap;
  3692. text-transform:none;
  3693. }
  3694. #u35614_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:6px;
  3700. height:6px;
  3701. }
  3702. #u35614 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:362px;
  3706. top:398px;
  3707. width:6px;
  3708. height:6px;
  3709. display:flex;
  3710. }
  3711. #u35614 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 2px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u35614_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u35615_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:2px;
  3730. height:148px;
  3731. }
  3732. #u35615 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:365px;
  3736. top:304px;
  3737. width:1px;
  3738. height:147px;
  3739. display:flex;
  3740. }
  3741. #u35615 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u35615_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u35616 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:0px;
  3760. height:0px;
  3761. }
  3762. #u35617_img {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:6px;
  3768. height:6px;
  3769. }
  3770. #u35617 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:363px;
  3774. top:448px;
  3775. width:6px;
  3776. height:6px;
  3777. display:flex;
  3778. }
  3779. #u35617 .text {
  3780. position:absolute;
  3781. align-self:center;
  3782. padding:2px 2px 2px 2px;
  3783. box-sizing:border-box;
  3784. width:100%;
  3785. }
  3786. #u35617_text {
  3787. border-width:0px;
  3788. word-wrap:break-word;
  3789. text-transform:none;
  3790. visibility:hidden;
  3791. }
  3792. #u35618_img {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:30px;
  3798. height:30px;
  3799. }
  3800. #u35618 {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:719px;
  3804. top:248px;
  3805. width:30px;
  3806. height:30px;
  3807. display:flex;
  3808. }
  3809. #u35618 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 2px 2px 2px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u35618_text {
  3817. border-width:0px;
  3818. word-wrap:break-word;
  3819. text-transform:none;
  3820. visibility:hidden;
  3821. }
  3822. #u35619_img {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:30px;
  3828. height:30px;
  3829. }
  3830. #u35619 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:1095px;
  3834. top:318px;
  3835. width:30px;
  3836. height:30px;
  3837. display:flex;
  3838. }
  3839. #u35619 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 2px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u35619_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u35620_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:30px;
  3858. height:30px;
  3859. }
  3860. #u35620 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:832px;
  3864. top:580px;
  3865. width:30px;
  3866. height:30px;
  3867. display:flex;
  3868. }
  3869. #u35620 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 2px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u35620_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u35621_img {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:30px;
  3888. height:30px;
  3889. }
  3890. #u35621 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:1275px;
  3894. top:664px;
  3895. width:30px;
  3896. height:30px;
  3897. display:flex;
  3898. }
  3899. #u35621 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 2px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u35621_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. visibility:hidden;
  3911. }
  3912. #u35622_img {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:30px;
  3918. height:30px;
  3919. }
  3920. #u35622 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:1471px;
  3924. top:580px;
  3925. width:30px;
  3926. height:30px;
  3927. display:flex;
  3928. }
  3929. #u35622 .text {
  3930. position:absolute;
  3931. align-self:center;
  3932. padding:2px 2px 2px 2px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u35622_text {
  3937. border-width:0px;
  3938. word-wrap:break-word;
  3939. text-transform:none;
  3940. visibility:hidden;
  3941. }
  3942. #u35623 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:0px;
  3948. height:0px;
  3949. }
  3950. #u35624 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:0px;
  3956. height:0px;
  3957. }
  3958. #u35625_div {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:589px;
  3964. height:506px;
  3965. background:inherit;
  3966. background-color:rgba(255, 255, 255, 1);
  3967. box-sizing:border-box;
  3968. border-width:1px;
  3969. border-style:solid;
  3970. border-color:rgba(201, 201, 201, 1);
  3971. border-radius:4px;
  3972. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3973. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3974. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3975. font-family:'Microsoft YaHei', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:14px;
  3979. color:#CCCCCC;
  3980. text-align:left;
  3981. }
  3982. #u35625 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:1538px;
  3986. top:285px;
  3987. width:589px;
  3988. height:506px;
  3989. display:flex;
  3990. font-family:'Microsoft YaHei', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. color:#CCCCCC;
  3995. text-align:left;
  3996. }
  3997. #u35625 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 8px 2px 8px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u35625_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u35626_div {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:122px;
  4016. height:20px;
  4017. background:inherit;
  4018. background-color:rgba(255, 255, 255, 0);
  4019. border:none;
  4020. border-left:0px;
  4021. border-top:0px;
  4022. border-right:0px;
  4023. border-radius:0px;
  4024. border-bottom-right-radius:0px;
  4025. border-bottom-left-radius:0px;
  4026. -moz-box-shadow:none;
  4027. -webkit-box-shadow:none;
  4028. box-shadow:none;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:14px;
  4033. }
  4034. #u35626 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:1702px;
  4038. top:742px;
  4039. width:122px;
  4040. height:20px;
  4041. display:flex;
  4042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:14px;
  4046. }
  4047. #u35626 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:0px 0px 0px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u35626_text {
  4055. border-width:0px;
  4056. white-space:nowrap;
  4057. text-transform:none;
  4058. }
  4059. #u35627_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:124px;
  4065. height:17px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 0);
  4068. border:none;
  4069. border-left:0px;
  4070. border-top:0px;
  4071. border-right:0px;
  4072. border-radius:0px;
  4073. border-bottom-right-radius:0px;
  4074. border-bottom-left-radius:0px;
  4075. -moz-box-shadow:none;
  4076. -webkit-box-shadow:none;
  4077. box-shadow:none;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. }
  4083. #u35627 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:1557px;
  4087. top:742px;
  4088. width:124px;
  4089. height:17px;
  4090. display:flex;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. }
  4096. #u35627 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:0px 0px 0px 0px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u35627_text {
  4104. border-width:0px;
  4105. white-space:nowrap;
  4106. text-transform:none;
  4107. }
  4108. #u35628_img {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:551px;
  4114. height:424px;
  4115. }
  4116. #u35628 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:1557px;
  4120. top:303px;
  4121. width:551px;
  4122. height:424px;
  4123. display:flex;
  4124. }
  4125. #u35628 .text {
  4126. position:absolute;
  4127. align-self:center;
  4128. padding:2px 2px 2px 2px;
  4129. box-sizing:border-box;
  4130. width:100%;
  4131. }
  4132. #u35628_text {
  4133. border-width:0px;
  4134. word-wrap:break-word;
  4135. text-transform:none;
  4136. visibility:hidden;
  4137. }
  4138. #u35629_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:15px;
  4144. height:15px;
  4145. }
  4146. #u35629 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:2141px;
  4150. top:276px;
  4151. width:15px;
  4152. height:15px;
  4153. display:flex;
  4154. }
  4155. #u35629 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 2px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u35629_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. visibility:hidden;
  4167. }