styles.css 71 KB

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