styles.css 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1339px;
  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. #u208882_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u208882 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u208882 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u208882_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u208883_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. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u208883 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u208883 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u208883_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u208884 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u208885_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u208885 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u208885 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u208885_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u208886 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u208887_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u208887 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u208887 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u208887_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u208888_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u208888 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u208888 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u208888_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u208889 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u208890_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u208890 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u208890 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u208890_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u208891_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u208891 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u208891 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u208891_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u208892_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u208892 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u208892 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u208892_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u208893_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u208893 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u208893 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u208893_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u208894_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u208894 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u208894 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u208894_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u208895_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u208895 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u208895 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u208895_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u208896 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u208897_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u208897 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u208897 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u208897_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u208898_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u208898 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u208898 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u208898_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u208899 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u208900_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u208900 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u208900 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u208900_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u208901_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u208901 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u208901 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u208901_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u208902_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u208902 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u208902 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u208902_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u208903 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u208904_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u208904 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u208904 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u208904_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u208905_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u208905 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u208905 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u208905_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u208906 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u208907_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u208907 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u208907 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u208907_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u208908_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u208908 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u208908 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u208908_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u208909_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:739px;
  786. }
  787. #u208909 {
  788. border-width:0px;
  789. position:absolute;
  790. left:29px;
  791. top:106px;
  792. width:375px;
  793. height:739px;
  794. display:flex;
  795. }
  796. #u208909 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u208909_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u208910_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:11px;
  815. height:18px;
  816. }
  817. #u208910 {
  818. border-width:0px;
  819. position:absolute;
  820. left:40px;
  821. top:79px;
  822. width:11px;
  823. height:18px;
  824. display:flex;
  825. }
  826. #u208910 .text {
  827. position:absolute;
  828. align-self:center;
  829. padding:2px 2px 2px 2px;
  830. box-sizing:border-box;
  831. width:100%;
  832. }
  833. #u208910_text {
  834. border-width:0px;
  835. word-wrap:break-word;
  836. text-transform:none;
  837. visibility:hidden;
  838. }
  839. #u208911_div {
  840. border-width:0px;
  841. position:absolute;
  842. left:0px;
  843. top:0px;
  844. width:73px;
  845. height:25px;
  846. background:inherit;
  847. background-color:rgba(255, 255, 255, 0);
  848. border:none;
  849. border-radius:0px;
  850. -moz-box-shadow:none;
  851. -webkit-box-shadow:none;
  852. box-shadow:none;
  853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  854. font-weight:400;
  855. font-style:normal;
  856. font-size:18px;
  857. }
  858. #u208911 {
  859. border-width:0px;
  860. position:absolute;
  861. left:182px;
  862. top:75px;
  863. width:73px;
  864. height:25px;
  865. display:flex;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:18px;
  870. }
  871. #u208911 .text {
  872. position:absolute;
  873. align-self:flex-start;
  874. padding:0px 0px 0px 0px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u208911_text {
  879. border-width:0px;
  880. white-space:nowrap;
  881. text-transform:none;
  882. }
  883. #u208912 {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:0px;
  889. height:0px;
  890. }
  891. #u208913_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:375px;
  897. height:50px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 1);
  900. border:none;
  901. border-left:0px;
  902. border-top:0px;
  903. border-right:0px;
  904. border-radius:0px;
  905. border-bottom-right-radius:0px;
  906. border-bottom-left-radius:0px;
  907. -moz-box-shadow:none;
  908. -webkit-box-shadow:none;
  909. box-shadow:none;
  910. }
  911. #u208913 {
  912. border-width:0px;
  913. position:absolute;
  914. left:29px;
  915. top:502px;
  916. width:375px;
  917. height:50px;
  918. display:flex;
  919. }
  920. #u208913 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u208913_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u208914_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:64px;
  939. height:30px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-left:0px;
  944. border-top:0px;
  945. border-right:0px;
  946. border-radius:0px;
  947. border-bottom-right-radius:0px;
  948. border-bottom-left-radius:0px;
  949. -moz-box-shadow:none;
  950. -webkit-box-shadow:none;
  951. box-shadow:none;
  952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  953. font-weight:400;
  954. font-style:normal;
  955. font-size:14px;
  956. line-height:30px;
  957. }
  958. #u208914 {
  959. border-width:0px;
  960. position:absolute;
  961. left:49px;
  962. top:512px;
  963. width:64px;
  964. height:30px;
  965. display:flex;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. font-size:14px;
  970. line-height:30px;
  971. }
  972. #u208914 .text {
  973. position:absolute;
  974. align-self:center;
  975. padding:0px 0px 0px 0px;
  976. box-sizing:border-box;
  977. width:100%;
  978. }
  979. #u208914_text {
  980. border-width:0px;
  981. white-space:nowrap;
  982. text-transform:none;
  983. }
  984. #u208915_div {
  985. border-width:0px;
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:8px;
  990. height:8px;
  991. background:inherit;
  992. background-color:rgba(255, 255, 255, 0);
  993. box-sizing:border-box;
  994. border-width:1px;
  995. border-style:solid;
  996. border-color:rgba(127, 127, 127, 1);
  997. border-right:0px;
  998. border-bottom:0px;
  999. border-radius:0px;
  1000. border-top-right-radius:0px;
  1001. border-bottom-left-radius:0px;
  1002. -moz-box-shadow:none;
  1003. -webkit-box-shadow:none;
  1004. box-shadow:none;
  1005. }
  1006. #u208915 {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:379px;
  1010. top:523px;
  1011. width:8px;
  1012. height:8px;
  1013. display:flex;
  1014. -webkit-transform:rotate(135deg);
  1015. -moz-transform:rotate(135deg);
  1016. -ms-transform:rotate(135deg);
  1017. transform:rotate(135deg);
  1018. }
  1019. #u208915 .text {
  1020. position:absolute;
  1021. align-self:center;
  1022. padding:2px 2px 2px 2px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u208915_text {
  1027. border-width:0px;
  1028. word-wrap:break-word;
  1029. text-transform:none;
  1030. visibility:hidden;
  1031. }
  1032. #u208916_div {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:85px;
  1038. height:30px;
  1039. background:inherit;
  1040. background-color:rgba(255, 255, 255, 0);
  1041. border:none;
  1042. border-left:0px;
  1043. border-top:0px;
  1044. border-right:0px;
  1045. border-radius:0px;
  1046. border-bottom-right-radius:0px;
  1047. border-bottom-left-radius:0px;
  1048. -moz-box-shadow:none;
  1049. -webkit-box-shadow:none;
  1050. box-shadow:none;
  1051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1052. font-weight:400;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. text-align:right;
  1056. line-height:30px;
  1057. }
  1058. #u208916 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:287px;
  1062. top:512px;
  1063. width:85px;
  1064. height:30px;
  1065. display:flex;
  1066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1067. font-weight:400;
  1068. font-style:normal;
  1069. font-size:14px;
  1070. text-align:right;
  1071. line-height:30px;
  1072. }
  1073. #u208916 .text {
  1074. position:absolute;
  1075. align-self:center;
  1076. padding:0px 0px 0px 0px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u208916_text {
  1081. border-width:0px;
  1082. white-space:nowrap;
  1083. text-transform:none;
  1084. }
  1085. #u208917_div {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:49px;
  1091. height:30px;
  1092. background:inherit;
  1093. background-color:rgba(255, 255, 255, 0);
  1094. border:none;
  1095. border-left:0px;
  1096. border-top:0px;
  1097. border-right:0px;
  1098. border-radius:0px;
  1099. border-bottom-right-radius:0px;
  1100. border-bottom-left-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1105. font-weight:400;
  1106. font-style:normal;
  1107. font-size:12px;
  1108. color:#7F7F7F;
  1109. line-height:30px;
  1110. }
  1111. #u208917 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:49px;
  1115. top:472px;
  1116. width:49px;
  1117. height:30px;
  1118. display:flex;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:12px;
  1123. color:#7F7F7F;
  1124. line-height:30px;
  1125. }
  1126. #u208917 .text {
  1127. position:absolute;
  1128. align-self:center;
  1129. padding:0px 0px 0px 0px;
  1130. box-sizing:border-box;
  1131. width:100%;
  1132. }
  1133. #u208917_text {
  1134. border-width:0px;
  1135. white-space:nowrap;
  1136. text-transform:none;
  1137. }
  1138. #u208918_div {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:375px;
  1144. height:50px;
  1145. background:inherit;
  1146. background-color:rgba(255, 255, 255, 1);
  1147. border:none;
  1148. border-left:0px;
  1149. border-top:0px;
  1150. border-right:0px;
  1151. border-radius:0px;
  1152. border-bottom-right-radius:0px;
  1153. border-bottom-left-radius:0px;
  1154. -moz-box-shadow:none;
  1155. -webkit-box-shadow:none;
  1156. box-shadow:none;
  1157. }
  1158. #u208918 {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:29px;
  1162. top:553px;
  1163. width:375px;
  1164. height:50px;
  1165. display:flex;
  1166. }
  1167. #u208918 .text {
  1168. position:absolute;
  1169. align-self:center;
  1170. padding:2px 2px 2px 2px;
  1171. box-sizing:border-box;
  1172. width:100%;
  1173. }
  1174. #u208918_text {
  1175. border-width:0px;
  1176. word-wrap:break-word;
  1177. text-transform:none;
  1178. visibility:hidden;
  1179. }
  1180. #u208919_div {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:57px;
  1186. height:30px;
  1187. background:inherit;
  1188. background-color:rgba(255, 255, 255, 0);
  1189. border:none;
  1190. border-left:0px;
  1191. border-top:0px;
  1192. border-right:0px;
  1193. border-radius:0px;
  1194. border-bottom-right-radius:0px;
  1195. border-bottom-left-radius:0px;
  1196. -moz-box-shadow:none;
  1197. -webkit-box-shadow:none;
  1198. box-shadow:none;
  1199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1200. font-weight:400;
  1201. font-style:normal;
  1202. font-size:14px;
  1203. line-height:30px;
  1204. }
  1205. #u208919 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:49px;
  1209. top:563px;
  1210. width:57px;
  1211. height:30px;
  1212. display:flex;
  1213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1214. font-weight:400;
  1215. font-style:normal;
  1216. font-size:14px;
  1217. line-height:30px;
  1218. }
  1219. #u208919 .text {
  1220. position:absolute;
  1221. align-self:center;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u208919_text {
  1227. border-width:0px;
  1228. white-space:nowrap;
  1229. text-transform:none;
  1230. }
  1231. #u208920_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:8px;
  1237. height:8px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 0);
  1240. box-sizing:border-box;
  1241. border-width:1px;
  1242. border-style:solid;
  1243. border-color:rgba(127, 127, 127, 1);
  1244. border-right:0px;
  1245. border-bottom:0px;
  1246. border-radius:0px;
  1247. border-top-right-radius:0px;
  1248. border-bottom-left-radius:0px;
  1249. -moz-box-shadow:none;
  1250. -webkit-box-shadow:none;
  1251. box-shadow:none;
  1252. }
  1253. #u208920 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:379px;
  1257. top:574px;
  1258. width:8px;
  1259. height:8px;
  1260. display:flex;
  1261. -webkit-transform:rotate(135deg);
  1262. -moz-transform:rotate(135deg);
  1263. -ms-transform:rotate(135deg);
  1264. transform:rotate(135deg);
  1265. }
  1266. #u208920 .text {
  1267. position:absolute;
  1268. align-self:center;
  1269. padding:2px 2px 2px 2px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u208920_text {
  1274. border-width:0px;
  1275. word-wrap:break-word;
  1276. text-transform:none;
  1277. visibility:hidden;
  1278. }
  1279. #u208921_div {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:0px;
  1283. top:0px;
  1284. width:68px;
  1285. height:30px;
  1286. background:inherit;
  1287. background-color:rgba(255, 255, 255, 0);
  1288. border:none;
  1289. border-left:0px;
  1290. border-top:0px;
  1291. border-right:0px;
  1292. border-radius:0px;
  1293. border-bottom-right-radius:0px;
  1294. border-bottom-left-radius:0px;
  1295. -moz-box-shadow:none;
  1296. -webkit-box-shadow:none;
  1297. box-shadow:none;
  1298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1299. font-weight:400;
  1300. font-style:normal;
  1301. font-size:14px;
  1302. text-align:right;
  1303. line-height:30px;
  1304. }
  1305. #u208921 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:304px;
  1309. top:563px;
  1310. width:68px;
  1311. height:30px;
  1312. display:flex;
  1313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1314. font-weight:400;
  1315. font-style:normal;
  1316. font-size:14px;
  1317. text-align:right;
  1318. line-height:30px;
  1319. }
  1320. #u208921 .text {
  1321. position:absolute;
  1322. align-self:center;
  1323. padding:0px 0px 0px 0px;
  1324. box-sizing:border-box;
  1325. width:100%;
  1326. }
  1327. #u208921_text {
  1328. border-width:0px;
  1329. white-space:nowrap;
  1330. text-transform:none;
  1331. }
  1332. #u208922_div {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:375px;
  1338. height:124px;
  1339. background:inherit;
  1340. background-color:rgba(255, 255, 255, 1);
  1341. border:none;
  1342. border-left:0px;
  1343. border-top:0px;
  1344. border-right:0px;
  1345. border-radius:0px;
  1346. border-bottom-right-radius:0px;
  1347. border-bottom-left-radius:0px;
  1348. -moz-box-shadow:none;
  1349. -webkit-box-shadow:none;
  1350. box-shadow:none;
  1351. }
  1352. #u208922 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:29px;
  1356. top:604px;
  1357. width:375px;
  1358. height:124px;
  1359. display:flex;
  1360. }
  1361. #u208922 .text {
  1362. position:absolute;
  1363. align-self:center;
  1364. padding:2px 2px 2px 2px;
  1365. box-sizing:border-box;
  1366. width:100%;
  1367. }
  1368. #u208922_text {
  1369. border-width:0px;
  1370. word-wrap:break-word;
  1371. text-transform:none;
  1372. visibility:hidden;
  1373. }
  1374. #u208923_div {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:64px;
  1380. height:30px;
  1381. background:inherit;
  1382. background-color:rgba(255, 255, 255, 0);
  1383. border:none;
  1384. border-left:0px;
  1385. border-top:0px;
  1386. border-right:0px;
  1387. border-radius:0px;
  1388. border-bottom-right-radius:0px;
  1389. border-bottom-left-radius:0px;
  1390. -moz-box-shadow:none;
  1391. -webkit-box-shadow:none;
  1392. box-shadow:none;
  1393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1394. font-weight:400;
  1395. font-style:normal;
  1396. font-size:14px;
  1397. line-height:30px;
  1398. }
  1399. #u208923 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:49px;
  1403. top:614px;
  1404. width:64px;
  1405. height:30px;
  1406. display:flex;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:14px;
  1411. line-height:30px;
  1412. }
  1413. #u208923 .text {
  1414. position:absolute;
  1415. align-self:center;
  1416. padding:0px 0px 0px 0px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u208923_text {
  1421. border-width:0px;
  1422. white-space:nowrap;
  1423. text-transform:none;
  1424. }
  1425. #u208924_div {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:345px;
  1431. height:60px;
  1432. background:inherit;
  1433. background-color:rgba(255, 255, 255, 0);
  1434. border:none;
  1435. border-left:0px;
  1436. border-top:0px;
  1437. border-right:0px;
  1438. border-radius:0px;
  1439. border-bottom-right-radius:0px;
  1440. border-bottom-left-radius:0px;
  1441. -moz-box-shadow:none;
  1442. -webkit-box-shadow:none;
  1443. box-shadow:none;
  1444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1445. font-weight:400;
  1446. font-style:normal;
  1447. font-size:14px;
  1448. color:#AAAAAA;
  1449. line-height:30px;
  1450. }
  1451. #u208924 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:54px;
  1455. top:644px;
  1456. width:345px;
  1457. height:60px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:14px;
  1463. color:#AAAAAA;
  1464. line-height:30px;
  1465. }
  1466. #u208924 .text {
  1467. position:absolute;
  1468. align-self:center;
  1469. padding:0px 0px 0px 0px;
  1470. box-sizing:border-box;
  1471. width:100%;
  1472. }
  1473. #u208924_text {
  1474. border-width:0px;
  1475. word-wrap:break-word;
  1476. text-transform:none;
  1477. }
  1478. #u208925_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:375px;
  1484. height:50px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 1);
  1487. border:none;
  1488. border-left:0px;
  1489. border-top:0px;
  1490. border-right:0px;
  1491. border-radius:0px;
  1492. border-bottom-right-radius:0px;
  1493. border-bottom-left-radius:0px;
  1494. -moz-box-shadow:none;
  1495. -webkit-box-shadow:none;
  1496. box-shadow:none;
  1497. }
  1498. #u208925 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:29px;
  1502. top:167px;
  1503. width:375px;
  1504. height:50px;
  1505. display:flex;
  1506. }
  1507. #u208925 .text {
  1508. position:absolute;
  1509. align-self:center;
  1510. padding:2px 2px 2px 2px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u208925_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u208926_div {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:64px;
  1526. height:30px;
  1527. background:inherit;
  1528. background-color:rgba(255, 255, 255, 0);
  1529. border:none;
  1530. border-left:0px;
  1531. border-top:0px;
  1532. border-right:0px;
  1533. border-radius:0px;
  1534. border-bottom-right-radius:0px;
  1535. border-bottom-left-radius:0px;
  1536. -moz-box-shadow:none;
  1537. -webkit-box-shadow:none;
  1538. box-shadow:none;
  1539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1540. font-weight:400;
  1541. font-style:normal;
  1542. font-size:14px;
  1543. line-height:30px;
  1544. }
  1545. #u208926 {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:49px;
  1549. top:177px;
  1550. width:64px;
  1551. height:30px;
  1552. display:flex;
  1553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1554. font-weight:400;
  1555. font-style:normal;
  1556. font-size:14px;
  1557. line-height:30px;
  1558. }
  1559. #u208926 .text {
  1560. position:absolute;
  1561. align-self:center;
  1562. padding:0px 0px 0px 0px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u208926_text {
  1567. border-width:0px;
  1568. white-space:nowrap;
  1569. text-transform:none;
  1570. }
  1571. #u208927_div {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:99px;
  1577. height:30px;
  1578. background:inherit;
  1579. background-color:rgba(255, 255, 255, 0);
  1580. border:none;
  1581. border-left:0px;
  1582. border-top:0px;
  1583. border-right:0px;
  1584. border-radius:0px;
  1585. border-bottom-right-radius:0px;
  1586. border-bottom-left-radius:0px;
  1587. -moz-box-shadow:none;
  1588. -webkit-box-shadow:none;
  1589. box-shadow:none;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:14px;
  1594. color:#AAAAAA;
  1595. text-align:right;
  1596. line-height:30px;
  1597. }
  1598. #u208927 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:285px;
  1602. top:177px;
  1603. width:99px;
  1604. height:30px;
  1605. display:flex;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:14px;
  1610. color:#AAAAAA;
  1611. text-align:right;
  1612. line-height:30px;
  1613. }
  1614. #u208927 .text {
  1615. position:absolute;
  1616. align-self:center;
  1617. padding:0px 0px 0px 0px;
  1618. box-sizing:border-box;
  1619. width:100%;
  1620. }
  1621. #u208927_text {
  1622. border-width:0px;
  1623. white-space:nowrap;
  1624. text-transform:none;
  1625. }
  1626. #u208928_div {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:375px;
  1632. height:50px;
  1633. background:inherit;
  1634. background-color:rgba(255, 255, 255, 1);
  1635. border:none;
  1636. border-left:0px;
  1637. border-top:0px;
  1638. border-right:0px;
  1639. border-radius:0px;
  1640. border-bottom-right-radius:0px;
  1641. border-bottom-left-radius:0px;
  1642. -moz-box-shadow:none;
  1643. -webkit-box-shadow:none;
  1644. box-shadow:none;
  1645. }
  1646. #u208928 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:29px;
  1650. top:218px;
  1651. width:375px;
  1652. height:50px;
  1653. display:flex;
  1654. }
  1655. #u208928 .text {
  1656. position:absolute;
  1657. align-self:center;
  1658. padding:2px 2px 2px 2px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u208928_text {
  1663. border-width:0px;
  1664. word-wrap:break-word;
  1665. text-transform:none;
  1666. visibility:hidden;
  1667. }
  1668. #u208929_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:64px;
  1674. height:30px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 0);
  1677. border:none;
  1678. border-left:0px;
  1679. border-top:0px;
  1680. border-right:0px;
  1681. border-radius:0px;
  1682. border-bottom-right-radius:0px;
  1683. border-bottom-left-radius:0px;
  1684. -moz-box-shadow:none;
  1685. -webkit-box-shadow:none;
  1686. box-shadow:none;
  1687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1688. font-weight:400;
  1689. font-style:normal;
  1690. font-size:14px;
  1691. line-height:30px;
  1692. }
  1693. #u208929 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:49px;
  1697. top:228px;
  1698. width:64px;
  1699. height:30px;
  1700. display:flex;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:14px;
  1705. line-height:30px;
  1706. }
  1707. #u208929 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:0px 0px 0px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u208929_text {
  1715. border-width:0px;
  1716. white-space:nowrap;
  1717. text-transform:none;
  1718. }
  1719. #u208930 {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:0px;
  1725. height:0px;
  1726. }
  1727. #u208931_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:8px;
  1733. height:8px;
  1734. background:inherit;
  1735. background-color:rgba(255, 255, 255, 0);
  1736. box-sizing:border-box;
  1737. border-width:1px;
  1738. border-style:solid;
  1739. border-color:rgba(127, 127, 127, 1);
  1740. border-right:0px;
  1741. border-bottom:0px;
  1742. border-radius:0px;
  1743. border-top-right-radius:0px;
  1744. border-bottom-left-radius:0px;
  1745. -moz-box-shadow:none;
  1746. -webkit-box-shadow:none;
  1747. box-shadow:none;
  1748. }
  1749. #u208931 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:379px;
  1753. top:239px;
  1754. width:8px;
  1755. height:8px;
  1756. display:flex;
  1757. -webkit-transform:rotate(135deg);
  1758. -moz-transform:rotate(135deg);
  1759. -ms-transform:rotate(135deg);
  1760. transform:rotate(135deg);
  1761. }
  1762. #u208931 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 2px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u208931_text {
  1770. border-width:0px;
  1771. word-wrap:break-word;
  1772. text-transform:none;
  1773. visibility:hidden;
  1774. }
  1775. #u208932_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:43px;
  1781. height:30px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-left:0px;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-radius:0px;
  1789. border-bottom-right-radius:0px;
  1790. border-bottom-left-radius:0px;
  1791. -moz-box-shadow:none;
  1792. -webkit-box-shadow:none;
  1793. box-shadow:none;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:14px;
  1798. color:#AAAAAA;
  1799. text-align:right;
  1800. line-height:30px;
  1801. }
  1802. #u208932 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:329px;
  1806. top:228px;
  1807. width:43px;
  1808. height:30px;
  1809. display:flex;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:14px;
  1814. color:#AAAAAA;
  1815. text-align:right;
  1816. line-height:30px;
  1817. }
  1818. #u208932 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:0px 0px 0px 0px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u208932_text {
  1826. border-width:0px;
  1827. white-space:nowrap;
  1828. text-transform:none;
  1829. }
  1830. #u208933_div {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:375px;
  1836. height:50px;
  1837. background:inherit;
  1838. background-color:rgba(255, 255, 255, 1);
  1839. border:none;
  1840. border-left:0px;
  1841. border-top:0px;
  1842. border-right:0px;
  1843. border-radius:0px;
  1844. border-bottom-right-radius:0px;
  1845. border-bottom-left-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. }
  1850. #u208933 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:29px;
  1854. top:269px;
  1855. width:375px;
  1856. height:50px;
  1857. display:flex;
  1858. }
  1859. #u208933 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u208933_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u208934_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:64px;
  1878. height:30px;
  1879. background:inherit;
  1880. background-color:rgba(255, 255, 255, 0);
  1881. border:none;
  1882. border-left:0px;
  1883. border-top:0px;
  1884. border-right:0px;
  1885. border-radius:0px;
  1886. border-bottom-right-radius:0px;
  1887. border-bottom-left-radius:0px;
  1888. -moz-box-shadow:none;
  1889. -webkit-box-shadow:none;
  1890. box-shadow:none;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:14px;
  1895. line-height:30px;
  1896. }
  1897. #u208934 {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:49px;
  1901. top:279px;
  1902. width:64px;
  1903. height:30px;
  1904. display:flex;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:14px;
  1909. line-height:30px;
  1910. }
  1911. #u208934 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:0px 0px 0px 0px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u208934_text {
  1919. border-width:0px;
  1920. white-space:nowrap;
  1921. text-transform:none;
  1922. }
  1923. #u208935 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:0px;
  1927. top:0px;
  1928. width:0px;
  1929. height:0px;
  1930. }
  1931. #u208936_div {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:8px;
  1937. height:8px;
  1938. background:inherit;
  1939. background-color:rgba(255, 255, 255, 0);
  1940. box-sizing:border-box;
  1941. border-width:1px;
  1942. border-style:solid;
  1943. border-color:rgba(127, 127, 127, 1);
  1944. border-right:0px;
  1945. border-bottom:0px;
  1946. border-radius:0px;
  1947. border-top-right-radius:0px;
  1948. border-bottom-left-radius:0px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. }
  1953. #u208936 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:379px;
  1957. top:290px;
  1958. width:8px;
  1959. height:8px;
  1960. display:flex;
  1961. -webkit-transform:rotate(135deg);
  1962. -moz-transform:rotate(135deg);
  1963. -ms-transform:rotate(135deg);
  1964. transform:rotate(135deg);
  1965. }
  1966. #u208936 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 2px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u208936_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. visibility:hidden;
  1978. }
  1979. #u208937_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:43px;
  1985. height:30px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 0);
  1988. border:none;
  1989. border-left:0px;
  1990. border-top:0px;
  1991. border-right:0px;
  1992. border-radius:0px;
  1993. border-bottom-right-radius:0px;
  1994. border-bottom-left-radius:0px;
  1995. -moz-box-shadow:none;
  1996. -webkit-box-shadow:none;
  1997. box-shadow:none;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:14px;
  2002. color:#AAAAAA;
  2003. text-align:right;
  2004. line-height:30px;
  2005. }
  2006. #u208937 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:329px;
  2010. top:279px;
  2011. width:43px;
  2012. height:30px;
  2013. display:flex;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:14px;
  2018. color:#AAAAAA;
  2019. text-align:right;
  2020. line-height:30px;
  2021. }
  2022. #u208937 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:0px 0px 0px 0px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u208937_text {
  2030. border-width:0px;
  2031. white-space:nowrap;
  2032. text-transform:none;
  2033. }
  2034. #u208938_div {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:0px;
  2038. top:0px;
  2039. width:375px;
  2040. height:50px;
  2041. background:inherit;
  2042. background-color:rgba(255, 255, 255, 1);
  2043. border:none;
  2044. border-left:0px;
  2045. border-top:0px;
  2046. border-right:0px;
  2047. border-radius:0px;
  2048. border-bottom-right-radius:0px;
  2049. border-bottom-left-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. }
  2054. #u208938 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:29px;
  2058. top:320px;
  2059. width:375px;
  2060. height:50px;
  2061. display:flex;
  2062. }
  2063. #u208938 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u208938_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u208939_div {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:64px;
  2082. height:30px;
  2083. background:inherit;
  2084. background-color:rgba(255, 255, 255, 0);
  2085. border:none;
  2086. border-left:0px;
  2087. border-top:0px;
  2088. border-right:0px;
  2089. border-radius:0px;
  2090. border-bottom-right-radius:0px;
  2091. border-bottom-left-radius:0px;
  2092. -moz-box-shadow:none;
  2093. -webkit-box-shadow:none;
  2094. box-shadow:none;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:14px;
  2099. line-height:30px;
  2100. }
  2101. #u208939 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:49px;
  2105. top:330px;
  2106. width:64px;
  2107. height:30px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. line-height:30px;
  2114. }
  2115. #u208939 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:0px 0px 0px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u208939_text {
  2123. border-width:0px;
  2124. white-space:nowrap;
  2125. text-transform:none;
  2126. }
  2127. #u208940 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:0px;
  2133. height:0px;
  2134. }
  2135. #u208941_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:8px;
  2141. height:8px;
  2142. background:inherit;
  2143. background-color:rgba(255, 255, 255, 0);
  2144. box-sizing:border-box;
  2145. border-width:1px;
  2146. border-style:solid;
  2147. border-color:rgba(127, 127, 127, 1);
  2148. border-right:0px;
  2149. border-bottom:0px;
  2150. border-radius:0px;
  2151. border-top-right-radius:0px;
  2152. border-bottom-left-radius:0px;
  2153. -moz-box-shadow:none;
  2154. -webkit-box-shadow:none;
  2155. box-shadow:none;
  2156. }
  2157. #u208941 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:379px;
  2161. top:341px;
  2162. width:8px;
  2163. height:8px;
  2164. display:flex;
  2165. -webkit-transform:rotate(135deg);
  2166. -moz-transform:rotate(135deg);
  2167. -ms-transform:rotate(135deg);
  2168. transform:rotate(135deg);
  2169. }
  2170. #u208941 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 2px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u208941_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u208942_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:43px;
  2189. height:30px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border:none;
  2193. border-left:0px;
  2194. border-top:0px;
  2195. border-right:0px;
  2196. border-radius:0px;
  2197. border-bottom-right-radius:0px;
  2198. border-bottom-left-radius:0px;
  2199. -moz-box-shadow:none;
  2200. -webkit-box-shadow:none;
  2201. box-shadow:none;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:14px;
  2206. color:#AAAAAA;
  2207. text-align:right;
  2208. line-height:30px;
  2209. }
  2210. #u208942 {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:329px;
  2214. top:330px;
  2215. width:43px;
  2216. height:30px;
  2217. display:flex;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:14px;
  2222. color:#AAAAAA;
  2223. text-align:right;
  2224. line-height:30px;
  2225. }
  2226. #u208942 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:0px 0px 0px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u208942_text {
  2234. border-width:0px;
  2235. white-space:nowrap;
  2236. text-transform:none;
  2237. }
  2238. #u208943_div {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:375px;
  2244. height:50px;
  2245. background:inherit;
  2246. background-color:rgba(255, 255, 255, 1);
  2247. border:none;
  2248. border-left:0px;
  2249. border-top:0px;
  2250. border-right:0px;
  2251. border-radius:0px;
  2252. border-bottom-right-radius:0px;
  2253. border-bottom-left-radius:0px;
  2254. -moz-box-shadow:none;
  2255. -webkit-box-shadow:none;
  2256. box-shadow:none;
  2257. }
  2258. #u208943 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:29px;
  2262. top:371px;
  2263. width:375px;
  2264. height:50px;
  2265. display:flex;
  2266. }
  2267. #u208943 .text {
  2268. position:absolute;
  2269. align-self:center;
  2270. padding:2px 2px 2px 2px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u208943_text {
  2275. border-width:0px;
  2276. word-wrap:break-word;
  2277. text-transform:none;
  2278. visibility:hidden;
  2279. }
  2280. #u208944_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:50px;
  2286. height:30px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 0);
  2289. border:none;
  2290. border-left:0px;
  2291. border-top:0px;
  2292. border-right:0px;
  2293. border-radius:0px;
  2294. border-bottom-right-radius:0px;
  2295. border-bottom-left-radius:0px;
  2296. -moz-box-shadow:none;
  2297. -webkit-box-shadow:none;
  2298. box-shadow:none;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:14px;
  2303. line-height:30px;
  2304. }
  2305. #u208944 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:49px;
  2309. top:381px;
  2310. width:50px;
  2311. height:30px;
  2312. display:flex;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:14px;
  2317. line-height:30px;
  2318. }
  2319. #u208944 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:0px 0px 0px 0px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u208944_text {
  2327. border-width:0px;
  2328. white-space:nowrap;
  2329. text-transform:none;
  2330. }
  2331. #u208945_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:375px;
  2337. height:50px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 1);
  2340. border:none;
  2341. border-left:0px;
  2342. border-top:0px;
  2343. border-right:0px;
  2344. border-radius:0px;
  2345. border-bottom-right-radius:0px;
  2346. border-bottom-left-radius:0px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. }
  2351. #u208945 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:29px;
  2355. top:422px;
  2356. width:375px;
  2357. height:50px;
  2358. display:flex;
  2359. }
  2360. #u208945 .text {
  2361. position:absolute;
  2362. align-self:center;
  2363. padding:2px 2px 2px 2px;
  2364. box-sizing:border-box;
  2365. width:100%;
  2366. }
  2367. #u208945_text {
  2368. border-width:0px;
  2369. word-wrap:break-word;
  2370. text-transform:none;
  2371. visibility:hidden;
  2372. }
  2373. #u208946_div {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:64px;
  2379. height:30px;
  2380. background:inherit;
  2381. background-color:rgba(255, 255, 255, 0);
  2382. border:none;
  2383. border-left:0px;
  2384. border-top:0px;
  2385. border-right:0px;
  2386. border-radius:0px;
  2387. border-bottom-right-radius:0px;
  2388. border-bottom-left-radius:0px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. line-height:30px;
  2397. }
  2398. #u208946 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:49px;
  2402. top:432px;
  2403. width:64px;
  2404. height:30px;
  2405. display:flex;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:14px;
  2410. line-height:30px;
  2411. }
  2412. #u208946 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:0px 0px 0px 0px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u208946_text {
  2420. border-width:0px;
  2421. white-space:nowrap;
  2422. text-transform:none;
  2423. }
  2424. #u208947_div {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:113px;
  2430. height:30px;
  2431. background:inherit;
  2432. background-color:rgba(255, 255, 255, 0);
  2433. border:none;
  2434. border-left:0px;
  2435. border-top:0px;
  2436. border-right:0px;
  2437. border-radius:0px;
  2438. border-bottom-right-radius:0px;
  2439. border-bottom-left-radius:0px;
  2440. -moz-box-shadow:none;
  2441. -webkit-box-shadow:none;
  2442. box-shadow:none;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. font-size:14px;
  2447. color:#AAAAAA;
  2448. text-align:right;
  2449. line-height:30px;
  2450. }
  2451. #u208947 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:271px;
  2455. top:381px;
  2456. width:113px;
  2457. height:30px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:14px;
  2463. color:#AAAAAA;
  2464. text-align:right;
  2465. line-height:30px;
  2466. }
  2467. #u208947 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:0px 0px 0px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u208947_text {
  2475. border-width:0px;
  2476. white-space:nowrap;
  2477. text-transform:none;
  2478. }
  2479. #u208948_div {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:127px;
  2485. height:30px;
  2486. background:inherit;
  2487. background-color:rgba(255, 255, 255, 0);
  2488. border:none;
  2489. border-left:0px;
  2490. border-top:0px;
  2491. border-right:0px;
  2492. border-radius:0px;
  2493. border-bottom-right-radius:0px;
  2494. border-bottom-left-radius:0px;
  2495. -moz-box-shadow:none;
  2496. -webkit-box-shadow:none;
  2497. box-shadow:none;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:14px;
  2502. color:#AAAAAA;
  2503. text-align:right;
  2504. line-height:30px;
  2505. }
  2506. #u208948 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:257px;
  2510. top:432px;
  2511. width:127px;
  2512. height:30px;
  2513. display:flex;
  2514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:14px;
  2518. color:#AAAAAA;
  2519. text-align:right;
  2520. line-height:30px;
  2521. }
  2522. #u208948 .text {
  2523. position:absolute;
  2524. align-self:center;
  2525. padding:0px 0px 0px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u208948_text {
  2530. border-width:0px;
  2531. white-space:nowrap;
  2532. text-transform:none;
  2533. }
  2534. #u208949_div {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:344px;
  2540. height:40px;
  2541. background:inherit;
  2542. background-color:rgba(24, 144, 255, 1);
  2543. border:none;
  2544. border-radius:81px;
  2545. -moz-box-shadow:none;
  2546. -webkit-box-shadow:none;
  2547. box-shadow:none;
  2548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:14px;
  2552. color:#FFFFFF;
  2553. }
  2554. #u208949 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:49px;
  2558. top:797px;
  2559. width:344px;
  2560. height:40px;
  2561. display:flex;
  2562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2563. font-weight:400;
  2564. font-style:normal;
  2565. font-size:14px;
  2566. color:#FFFFFF;
  2567. }
  2568. #u208949 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 2px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u208949_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. }
  2580. #u208950_div {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:375px;
  2586. height:50px;
  2587. background:inherit;
  2588. background-color:rgba(255, 255, 0, 0.105882352941176);
  2589. border:none;
  2590. border-bottom:0px;
  2591. border-radius:3px;
  2592. border-bottom-right-radius:0px;
  2593. border-bottom-left-radius:0px;
  2594. -moz-box-shadow:none;
  2595. -webkit-box-shadow:none;
  2596. box-shadow:none;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. color:rgba(184, 116, 26, 0.76078431372549);
  2602. text-align:left;
  2603. }
  2604. #u208950 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:29px;
  2608. top:728px;
  2609. width:375px;
  2610. height:50px;
  2611. display:flex;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. color:rgba(184, 116, 26, 0.76078431372549);
  2617. text-align:left;
  2618. }
  2619. #u208950 .text {
  2620. position:absolute;
  2621. align-self:flex-start;
  2622. padding:10px 10px 10px 10px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u208950_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. }
  2631. #u208952_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:433px;
  2637. height:865px;
  2638. }
  2639. #u208952 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:906px;
  2643. top:0px;
  2644. width:433px;
  2645. height:865px;
  2646. display:flex;
  2647. }
  2648. #u208952 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u208952_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u208953_div {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:375px;
  2667. height:40px;
  2668. background:inherit;
  2669. background-color:rgba(255, 255, 255, 1);
  2670. box-sizing:border-box;
  2671. border-width:1px;
  2672. border-style:solid;
  2673. border-color:rgba(215, 215, 215, 1);
  2674. border-left:0px;
  2675. border-top:0px;
  2676. border-right:0px;
  2677. border-radius:0px;
  2678. border-bottom-right-radius:0px;
  2679. border-bottom-left-radius:0px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. }
  2684. #u208953 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:935px;
  2688. top:67px;
  2689. width:375px;
  2690. height:40px;
  2691. display:flex;
  2692. }
  2693. #u208953 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u208953_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u208954 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:0px;
  2712. height:0px;
  2713. }
  2714. #u208955_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:88px;
  2720. height:32px;
  2721. background:inherit;
  2722. background-color:rgba(255, 255, 255, 1);
  2723. box-sizing:border-box;
  2724. border-width:1px;
  2725. border-style:solid;
  2726. border-color:rgba(242, 242, 242, 1);
  2727. border-radius:33px;
  2728. -moz-box-shadow:none;
  2729. -webkit-box-shadow:none;
  2730. box-shadow:none;
  2731. }
  2732. #u208955 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:1215px;
  2736. top:71px;
  2737. width:88px;
  2738. height:32px;
  2739. display:flex;
  2740. }
  2741. #u208955 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 2px 2px 2px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u208955_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. visibility:hidden;
  2753. }
  2754. #u208956 {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:0px;
  2760. height:0px;
  2761. }
  2762. #u208957_img {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:18px;
  2768. height:18px;
  2769. }
  2770. #u208957 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:1278px;
  2774. top:78px;
  2775. width:18px;
  2776. height:18px;
  2777. display:flex;
  2778. }
  2779. #u208957 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:2px 2px 2px 2px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u208957_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. visibility:hidden;
  2791. }
  2792. #u208958_img {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:6px;
  2798. height:6px;
  2799. }
  2800. #u208958 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:1284px;
  2804. top:84px;
  2805. width:6px;
  2806. height:6px;
  2807. display:flex;
  2808. }
  2809. #u208958 .text {
  2810. position:absolute;
  2811. align-self:center;
  2812. padding:2px 2px 2px 2px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u208958_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. visibility:hidden;
  2821. }
  2822. #u208959 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:0px;
  2828. height:0px;
  2829. }
  2830. #u208960_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:5px;
  2836. height:5px;
  2837. }
  2838. #u208960 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:1229px;
  2842. top:85px;
  2843. width:5px;
  2844. height:5px;
  2845. display:flex;
  2846. }
  2847. #u208960 .text {
  2848. position:absolute;
  2849. align-self:center;
  2850. padding:2px 2px 2px 2px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u208960_text {
  2855. border-width:0px;
  2856. word-wrap:break-word;
  2857. text-transform:none;
  2858. visibility:hidden;
  2859. }
  2860. #u208961_img {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:5px;
  2866. height:5px;
  2867. }
  2868. #u208961 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:1245px;
  2872. top:85px;
  2873. width:5px;
  2874. height:5px;
  2875. display:flex;
  2876. }
  2877. #u208961 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 2px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u208961_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. visibility:hidden;
  2889. }
  2890. #u208962_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:7px;
  2896. height:7px;
  2897. }
  2898. #u208962 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:1236px;
  2902. top:84px;
  2903. width:7px;
  2904. height:7px;
  2905. display:flex;
  2906. }
  2907. #u208962 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 2px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u208962_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u208963_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:19px;
  2926. height:2px;
  2927. }
  2928. #u208963 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:1253px;
  2932. top:87px;
  2933. width:18px;
  2934. height:1px;
  2935. display:flex;
  2936. -webkit-transform:rotate(90deg);
  2937. -moz-transform:rotate(90deg);
  2938. -ms-transform:rotate(90deg);
  2939. transform:rotate(90deg);
  2940. }
  2941. #u208963 .text {
  2942. position:absolute;
  2943. align-self:center;
  2944. padding:2px 2px 2px 2px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u208963_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u208964_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:375px;
  2960. height:44px;
  2961. }
  2962. #u208964 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:935px;
  2966. top:24px;
  2967. width:375px;
  2968. height:44px;
  2969. display:flex;
  2970. }
  2971. #u208964 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 2px 2px 2px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u208964_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u208965_div {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:375px;
  2990. height:50px;
  2991. background:inherit;
  2992. background-color:rgba(255, 255, 255, 1);
  2993. box-sizing:border-box;
  2994. border-width:1px;
  2995. border-style:solid;
  2996. border-color:rgba(242, 242, 242, 1);
  2997. border-radius:26px;
  2998. border-top-left-radius:0px;
  2999. border-top-right-radius:0px;
  3000. -moz-box-shadow:none;
  3001. -webkit-box-shadow:none;
  3002. box-shadow:none;
  3003. }
  3004. #u208965 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:935px;
  3008. top:788px;
  3009. width:375px;
  3010. height:50px;
  3011. display:flex;
  3012. }
  3013. #u208965 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:2px 2px 2px 2px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u208965_text {
  3021. border-width:0px;
  3022. word-wrap:break-word;
  3023. text-transform:none;
  3024. visibility:hidden;
  3025. }
  3026. #u208966 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:0px;
  3032. height:0px;
  3033. }
  3034. #u208967_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:24px;
  3040. height:24px;
  3041. }
  3042. #u208967 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:975px;
  3046. top:792px;
  3047. width:24px;
  3048. height:24px;
  3049. display:flex;
  3050. font-size:8px;
  3051. }
  3052. #u208967 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 2px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u208967_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. }
  3064. #u208968_div {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:25px;
  3070. height:17px;
  3071. background:inherit;
  3072. background-color:rgba(255, 255, 255, 0);
  3073. border:none;
  3074. border-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. }
  3083. #u208968 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:975px;
  3087. top:817px;
  3088. width:25px;
  3089. height:17px;
  3090. display:flex;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:12px;
  3095. }
  3096. #u208968 .text {
  3097. position:absolute;
  3098. align-self:flex-start;
  3099. padding:0px 0px 0px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u208968_text {
  3104. border-width:0px;
  3105. white-space:nowrap;
  3106. text-transform:none;
  3107. }
  3108. #u208969 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:0px;
  3114. height:0px;
  3115. }
  3116. #u208970_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:24px;
  3122. height:24px;
  3123. }
  3124. #u208970 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:1245px;
  3128. top:794px;
  3129. width:24px;
  3130. height:24px;
  3131. display:flex;
  3132. font-size:8px;
  3133. }
  3134. #u208970 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 2px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u208970_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. }
  3146. #u208971_div {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:25px;
  3152. height:17px;
  3153. background:inherit;
  3154. background-color:rgba(255, 255, 255, 0);
  3155. border:none;
  3156. border-radius:0px;
  3157. -moz-box-shadow:none;
  3158. -webkit-box-shadow:none;
  3159. box-shadow:none;
  3160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3161. font-weight:400;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. }
  3165. #u208971 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1245px;
  3169. top:819px;
  3170. width:25px;
  3171. height:17px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:12px;
  3177. }
  3178. #u208971 .text {
  3179. position:absolute;
  3180. align-self:flex-start;
  3181. padding:0px 0px 0px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u208971_text {
  3186. border-width:0px;
  3187. white-space:nowrap;
  3188. text-transform:none;
  3189. }
  3190. #u208972_div {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:375px;
  3196. height:681px;
  3197. background:inherit;
  3198. background-color:rgba(242, 242, 242, 0.462745098039216);
  3199. border:none;
  3200. border-radius:0px;
  3201. -moz-box-shadow:none;
  3202. -webkit-box-shadow:none;
  3203. box-shadow:none;
  3204. }
  3205. #u208972 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:935px;
  3209. top:107px;
  3210. width:375px;
  3211. height:681px;
  3212. display:flex;
  3213. }
  3214. #u208972 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 2px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u208972_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u208973 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:0px;
  3233. height:0px;
  3234. }
  3235. #u208974_img {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:24px;
  3241. height:24px;
  3242. }
  3243. #u208974 {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:1157px;
  3247. top:792px;
  3248. width:24px;
  3249. height:24px;
  3250. display:flex;
  3251. font-size:8px;
  3252. }
  3253. #u208974 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u208974_text {
  3261. border-width:0px;
  3262. word-wrap:break-word;
  3263. text-transform:none;
  3264. }
  3265. #u208975_div {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:37px;
  3271. height:17px;
  3272. background:inherit;
  3273. background-color:rgba(255, 255, 255, 0);
  3274. border:none;
  3275. border-radius:0px;
  3276. -moz-box-shadow:none;
  3277. -webkit-box-shadow:none;
  3278. box-shadow:none;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. }
  3284. #u208975 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:1151px;
  3288. top:817px;
  3289. width:37px;
  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. }
  3297. #u208975 .text {
  3298. position:absolute;
  3299. align-self:flex-start;
  3300. padding:0px 0px 0px 0px;
  3301. box-sizing:border-box;
  3302. width:100%;
  3303. }
  3304. #u208975_text {
  3305. border-width:0px;
  3306. white-space:nowrap;
  3307. text-transform:none;
  3308. }
  3309. #u208976 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:0px;
  3315. height:0px;
  3316. }
  3317. #u208977_img {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:24px;
  3323. height:24px;
  3324. }
  3325. #u208977 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:1063px;
  3329. top:792px;
  3330. width:24px;
  3331. height:24px;
  3332. display:flex;
  3333. font-size:8px;
  3334. }
  3335. #u208977 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 2px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u208977_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. }
  3347. #u208978_div {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:37px;
  3353. height:17px;
  3354. background:inherit;
  3355. background-color:rgba(255, 255, 255, 0);
  3356. border:none;
  3357. border-radius:0px;
  3358. -moz-box-shadow:none;
  3359. -webkit-box-shadow:none;
  3360. box-shadow:none;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. }
  3366. #u208978 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:1057px;
  3370. top:817px;
  3371. width:37px;
  3372. height:17px;
  3373. display:flex;
  3374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:12px;
  3378. }
  3379. #u208978 .text {
  3380. position:absolute;
  3381. align-self:flex-start;
  3382. padding:0px 0px 0px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u208978_text {
  3387. border-width:0px;
  3388. white-space:nowrap;
  3389. text-transform:none;
  3390. }
  3391. #u208979_div {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:375px;
  3397. height:735px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 1);
  3400. border:none;
  3401. border-top:0px;
  3402. border-radius:25px;
  3403. border-top-left-radius:0px;
  3404. border-top-right-radius:0px;
  3405. -moz-box-shadow:none;
  3406. -webkit-box-shadow:none;
  3407. box-shadow:none;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. }
  3412. #u208979 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:935px;
  3416. top:106px;
  3417. width:375px;
  3418. height:735px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. }
  3424. #u208979 .text {
  3425. position:absolute;
  3426. align-self:center;
  3427. padding:2px 2px 2px 2px;
  3428. box-sizing:border-box;
  3429. width:100%;
  3430. }
  3431. #u208979_text {
  3432. border-width:0px;
  3433. word-wrap:break-word;
  3434. text-transform:none;
  3435. visibility:hidden;
  3436. }
  3437. #u208980 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:0px;
  3443. height:0px;
  3444. }
  3445. #u208981_img {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:11px;
  3451. height:18px;
  3452. }
  3453. #u208981 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:952px;
  3457. top:80px;
  3458. width:11px;
  3459. height:18px;
  3460. display:flex;
  3461. }
  3462. #u208981 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 2px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u208981_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. visibility:hidden;
  3474. }
  3475. #u208982_div {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:73px;
  3481. height:40px;
  3482. background:inherit;
  3483. background-color:rgba(255, 255, 255, 0);
  3484. border:none;
  3485. border-left:0px;
  3486. border-top:0px;
  3487. border-right:0px;
  3488. border-radius:0px;
  3489. border-bottom-right-radius:0px;
  3490. border-bottom-left-radius:0px;
  3491. -moz-box-shadow:none;
  3492. -webkit-box-shadow:none;
  3493. box-shadow:none;
  3494. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3495. font-weight:500;
  3496. font-style:normal;
  3497. font-size:18px;
  3498. line-height:30px;
  3499. }
  3500. #u208982 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:1086px;
  3504. top:66px;
  3505. width:73px;
  3506. height:40px;
  3507. display:flex;
  3508. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3509. font-weight:500;
  3510. font-style:normal;
  3511. font-size:18px;
  3512. line-height:30px;
  3513. }
  3514. #u208982 .text {
  3515. position:absolute;
  3516. align-self:center;
  3517. padding:0px 0px 0px 0px;
  3518. box-sizing:border-box;
  3519. width:100%;
  3520. }
  3521. #u208982_text {
  3522. border-width:0px;
  3523. white-space:nowrap;
  3524. text-transform:none;
  3525. }
  3526. #u208983_div {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:328px;
  3532. height:40px;
  3533. background:inherit;
  3534. background-color:rgba(24, 144, 255, 1);
  3535. border:none;
  3536. border-radius:34px;
  3537. -moz-box-shadow:none;
  3538. -webkit-box-shadow:none;
  3539. box-shadow:none;
  3540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. font-size:12px;
  3544. color:#FFFFFF;
  3545. }
  3546. #u208983 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:959px;
  3550. top:781px;
  3551. width:328px;
  3552. height:40px;
  3553. display:flex;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. color:#FFFFFF;
  3559. }
  3560. #u208983 .text {
  3561. position:absolute;
  3562. align-self:center;
  3563. padding:2px 2px 2px 2px;
  3564. box-sizing:border-box;
  3565. width:100%;
  3566. }
  3567. #u208983_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. }
  3572. #u208984_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:83px;
  3578. height:83px;
  3579. }
  3580. #u208984 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:1081px;
  3584. top:155px;
  3585. width:83px;
  3586. height:83px;
  3587. display:flex;
  3588. }
  3589. #u208984 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 2px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u208984_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u208985_div {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:73px;
  3608. height:40px;
  3609. background:inherit;
  3610. background-color:rgba(255, 255, 255, 0);
  3611. border:none;
  3612. border-top:0px;
  3613. border-right:0px;
  3614. border-bottom:0px;
  3615. border-radius:0px;
  3616. border-top-left-radius:0px;
  3617. border-bottom-left-radius:0px;
  3618. -moz-box-shadow:none;
  3619. -webkit-box-shadow:none;
  3620. box-shadow:none;
  3621. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3622. font-weight:500;
  3623. font-style:normal;
  3624. font-size:18px;
  3625. text-align:center;
  3626. line-height:30px;
  3627. }
  3628. #u208985 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:1086px;
  3632. top:258px;
  3633. width:73px;
  3634. height:40px;
  3635. display:flex;
  3636. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3637. font-weight:500;
  3638. font-style:normal;
  3639. font-size:18px;
  3640. text-align:center;
  3641. line-height:30px;
  3642. }
  3643. #u208985 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:5px 0px 5px 0px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u208985_text {
  3651. border-width:0px;
  3652. white-space:nowrap;
  3653. text-transform:none;
  3654. }
  3655. #u208986_div {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:316px;
  3661. height:50px;
  3662. background:inherit;
  3663. background-color:rgba(255, 255, 255, 0);
  3664. border:none;
  3665. border-radius:0px;
  3666. -moz-box-shadow:none;
  3667. -webkit-box-shadow:none;
  3668. box-shadow:none;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:12px;
  3673. color:#AAAAAA;
  3674. text-align:center;
  3675. line-height:25px;
  3676. }
  3677. #u208986 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:965px;
  3681. top:304px;
  3682. width:316px;
  3683. height:50px;
  3684. display:flex;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:12px;
  3689. color:#AAAAAA;
  3690. text-align:center;
  3691. line-height:25px;
  3692. }
  3693. #u208986 .text {
  3694. position:absolute;
  3695. align-self:flex-start;
  3696. padding:0px 0px 0px 0px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u208986_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. }
  3705. #u208987_div {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:375px;
  3711. height:50px;
  3712. background:inherit;
  3713. background-color:rgba(255, 255, 255, 1);
  3714. border:none;
  3715. border-left:0px;
  3716. border-top:0px;
  3717. border-right:0px;
  3718. border-radius:0px;
  3719. border-bottom-right-radius:0px;
  3720. border-bottom-left-radius:0px;
  3721. -moz-box-shadow:none;
  3722. -webkit-box-shadow:none;
  3723. box-shadow:none;
  3724. }
  3725. #u208987 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:29px;
  3729. top:116px;
  3730. width:375px;
  3731. height:50px;
  3732. display:flex;
  3733. }
  3734. #u208987 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 2px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u208987_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u208988_div {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:64px;
  3753. height:30px;
  3754. background:inherit;
  3755. background-color:rgba(255, 255, 255, 0);
  3756. border:none;
  3757. border-left:0px;
  3758. border-top:0px;
  3759. border-right:0px;
  3760. border-radius:0px;
  3761. border-bottom-right-radius:0px;
  3762. border-bottom-left-radius:0px;
  3763. -moz-box-shadow:none;
  3764. -webkit-box-shadow:none;
  3765. box-shadow:none;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:14px;
  3770. line-height:30px;
  3771. }
  3772. #u208988 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:49px;
  3776. top:126px;
  3777. width:64px;
  3778. height:30px;
  3779. display:flex;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:14px;
  3784. line-height:30px;
  3785. }
  3786. #u208988 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:0px 0px 0px 0px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u208988_text {
  3794. border-width:0px;
  3795. white-space:nowrap;
  3796. text-transform:none;
  3797. }
  3798. #u208989_div {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:100px;
  3804. height:30px;
  3805. background:inherit;
  3806. background-color:rgba(24, 144, 255, 1);
  3807. border:none;
  3808. border-radius:4px;
  3809. -moz-box-shadow:none;
  3810. -webkit-box-shadow:none;
  3811. box-shadow:none;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:12px;
  3816. color:#FFFFFF;
  3817. }
  3818. #u208989 {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:289px;
  3822. top:126px;
  3823. width:100px;
  3824. height:30px;
  3825. display:flex;
  3826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. font-size:12px;
  3830. color:#FFFFFF;
  3831. }
  3832. #u208989 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:2px 2px 2px 2px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u208989_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. }
  3844. #u208990_div {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:100px;
  3850. height:30px;
  3851. background:inherit;
  3852. background-color:rgba(255, 255, 255, 1);
  3853. box-sizing:border-box;
  3854. border-width:1px;
  3855. border-style:solid;
  3856. border-color:rgba(170, 170, 170, 1);
  3857. border-radius:4px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:12px;
  3865. }
  3866. #u208990 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:179px;
  3870. top:126px;
  3871. width:100px;
  3872. height:30px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. }
  3879. #u208990 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 2px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u208990_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. }
  3891. #u208992_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:433px;
  3897. height:865px;
  3898. }
  3899. #u208992 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:453px;
  3903. top:0px;
  3904. width:433px;
  3905. height:865px;
  3906. display:flex;
  3907. }
  3908. #u208992 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u208992_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u208993_div {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:375px;
  3927. height:40px;
  3928. background:inherit;
  3929. background-color:rgba(255, 255, 255, 1);
  3930. box-sizing:border-box;
  3931. border-width:1px;
  3932. border-style:solid;
  3933. border-color:rgba(215, 215, 215, 1);
  3934. border-left:0px;
  3935. border-top:0px;
  3936. border-right:0px;
  3937. border-radius:0px;
  3938. border-bottom-right-radius:0px;
  3939. border-bottom-left-radius:0px;
  3940. -moz-box-shadow:none;
  3941. -webkit-box-shadow:none;
  3942. box-shadow:none;
  3943. }
  3944. #u208993 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:482px;
  3948. top:67px;
  3949. width:375px;
  3950. height:40px;
  3951. display:flex;
  3952. }
  3953. #u208993 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 2px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u208993_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u208994 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:0px;
  3972. height:0px;
  3973. }
  3974. #u208995_div {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:88px;
  3980. height:32px;
  3981. background:inherit;
  3982. background-color:rgba(255, 255, 255, 1);
  3983. box-sizing:border-box;
  3984. border-width:1px;
  3985. border-style:solid;
  3986. border-color:rgba(242, 242, 242, 1);
  3987. border-radius:33px;
  3988. -moz-box-shadow:none;
  3989. -webkit-box-shadow:none;
  3990. box-shadow:none;
  3991. }
  3992. #u208995 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:762px;
  3996. top:71px;
  3997. width:88px;
  3998. height:32px;
  3999. display:flex;
  4000. }
  4001. #u208995 .text {
  4002. position:absolute;
  4003. align-self:center;
  4004. padding:2px 2px 2px 2px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u208995_text {
  4009. border-width:0px;
  4010. word-wrap:break-word;
  4011. text-transform:none;
  4012. visibility:hidden;
  4013. }
  4014. #u208996 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:0px;
  4020. height:0px;
  4021. }
  4022. #u208997_img {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:18px;
  4028. height:18px;
  4029. }
  4030. #u208997 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:825px;
  4034. top:78px;
  4035. width:18px;
  4036. height:18px;
  4037. display:flex;
  4038. }
  4039. #u208997 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 2px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u208997_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u208998_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:6px;
  4058. height:6px;
  4059. }
  4060. #u208998 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:831px;
  4064. top:84px;
  4065. width:6px;
  4066. height:6px;
  4067. display:flex;
  4068. }
  4069. #u208998 .text {
  4070. position:absolute;
  4071. align-self:center;
  4072. padding:2px 2px 2px 2px;
  4073. box-sizing:border-box;
  4074. width:100%;
  4075. }
  4076. #u208998_text {
  4077. border-width:0px;
  4078. word-wrap:break-word;
  4079. text-transform:none;
  4080. visibility:hidden;
  4081. }
  4082. #u208999 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:0px;
  4086. top:0px;
  4087. width:0px;
  4088. height:0px;
  4089. }
  4090. #u209000_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:5px;
  4096. height:5px;
  4097. }
  4098. #u209000 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:776px;
  4102. top:85px;
  4103. width:5px;
  4104. height:5px;
  4105. display:flex;
  4106. }
  4107. #u209000 .text {
  4108. position:absolute;
  4109. align-self:center;
  4110. padding:2px 2px 2px 2px;
  4111. box-sizing:border-box;
  4112. width:100%;
  4113. }
  4114. #u209000_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. visibility:hidden;
  4119. }
  4120. #u209001_img {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:5px;
  4126. height:5px;
  4127. }
  4128. #u209001 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:792px;
  4132. top:85px;
  4133. width:5px;
  4134. height:5px;
  4135. display:flex;
  4136. }
  4137. #u209001 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 2px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u209001_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. visibility:hidden;
  4149. }
  4150. #u209002_img {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:7px;
  4156. height:7px;
  4157. }
  4158. #u209002 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:783px;
  4162. top:84px;
  4163. width:7px;
  4164. height:7px;
  4165. display:flex;
  4166. }
  4167. #u209002 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:2px 2px 2px 2px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u209002_text {
  4175. border-width:0px;
  4176. word-wrap:break-word;
  4177. text-transform:none;
  4178. visibility:hidden;
  4179. }
  4180. #u209003_img {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:19px;
  4186. height:2px;
  4187. }
  4188. #u209003 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:800px;
  4192. top:87px;
  4193. width:18px;
  4194. height:1px;
  4195. display:flex;
  4196. -webkit-transform:rotate(90deg);
  4197. -moz-transform:rotate(90deg);
  4198. -ms-transform:rotate(90deg);
  4199. transform:rotate(90deg);
  4200. }
  4201. #u209003 .text {
  4202. position:absolute;
  4203. align-self:center;
  4204. padding:2px 2px 2px 2px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u209003_text {
  4209. border-width:0px;
  4210. word-wrap:break-word;
  4211. text-transform:none;
  4212. visibility:hidden;
  4213. }
  4214. #u209004_img {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:375px;
  4220. height:44px;
  4221. }
  4222. #u209004 {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:482px;
  4226. top:24px;
  4227. width:375px;
  4228. height:44px;
  4229. display:flex;
  4230. }
  4231. #u209004 .text {
  4232. position:absolute;
  4233. align-self:center;
  4234. padding:2px 2px 2px 2px;
  4235. box-sizing:border-box;
  4236. width:100%;
  4237. }
  4238. #u209004_text {
  4239. border-width:0px;
  4240. word-wrap:break-word;
  4241. text-transform:none;
  4242. visibility:hidden;
  4243. }
  4244. #u209005_div {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:375px;
  4250. height:50px;
  4251. background:inherit;
  4252. background-color:rgba(255, 255, 255, 1);
  4253. box-sizing:border-box;
  4254. border-width:1px;
  4255. border-style:solid;
  4256. border-color:rgba(242, 242, 242, 1);
  4257. border-radius:26px;
  4258. border-top-left-radius:0px;
  4259. border-top-right-radius:0px;
  4260. -moz-box-shadow:none;
  4261. -webkit-box-shadow:none;
  4262. box-shadow:none;
  4263. }
  4264. #u209005 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:482px;
  4268. top:788px;
  4269. width:375px;
  4270. height:50px;
  4271. display:flex;
  4272. }
  4273. #u209005 .text {
  4274. position:absolute;
  4275. align-self:center;
  4276. padding:2px 2px 2px 2px;
  4277. box-sizing:border-box;
  4278. width:100%;
  4279. }
  4280. #u209005_text {
  4281. border-width:0px;
  4282. word-wrap:break-word;
  4283. text-transform:none;
  4284. visibility:hidden;
  4285. }
  4286. #u209006 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:0px;
  4292. height:0px;
  4293. }
  4294. #u209007_img {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:24px;
  4300. height:24px;
  4301. }
  4302. #u209007 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:522px;
  4306. top:792px;
  4307. width:24px;
  4308. height:24px;
  4309. display:flex;
  4310. font-size:8px;
  4311. }
  4312. #u209007 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 2px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u209007_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. }
  4324. #u209008_div {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:25px;
  4330. height:17px;
  4331. background:inherit;
  4332. background-color:rgba(255, 255, 255, 0);
  4333. border:none;
  4334. border-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. }
  4343. #u209008 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:522px;
  4347. top:817px;
  4348. width:25px;
  4349. height:17px;
  4350. display:flex;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:12px;
  4355. }
  4356. #u209008 .text {
  4357. position:absolute;
  4358. align-self:flex-start;
  4359. padding:0px 0px 0px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u209008_text {
  4364. border-width:0px;
  4365. white-space:nowrap;
  4366. text-transform:none;
  4367. }
  4368. #u209009 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:0px;
  4374. height:0px;
  4375. }
  4376. #u209010_img {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:24px;
  4382. height:24px;
  4383. }
  4384. #u209010 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:792px;
  4388. top:794px;
  4389. width:24px;
  4390. height:24px;
  4391. display:flex;
  4392. font-size:8px;
  4393. }
  4394. #u209010 .text {
  4395. position:absolute;
  4396. align-self:center;
  4397. padding:2px 2px 2px 2px;
  4398. box-sizing:border-box;
  4399. width:100%;
  4400. }
  4401. #u209010_text {
  4402. border-width:0px;
  4403. word-wrap:break-word;
  4404. text-transform:none;
  4405. }
  4406. #u209011_div {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:25px;
  4412. height:17px;
  4413. background:inherit;
  4414. background-color:rgba(255, 255, 255, 0);
  4415. border:none;
  4416. border-radius:0px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:12px;
  4424. }
  4425. #u209011 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:792px;
  4429. top:819px;
  4430. width:25px;
  4431. height:17px;
  4432. display:flex;
  4433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4434. font-weight:400;
  4435. font-style:normal;
  4436. font-size:12px;
  4437. }
  4438. #u209011 .text {
  4439. position:absolute;
  4440. align-self:flex-start;
  4441. padding:0px 0px 0px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u209011_text {
  4446. border-width:0px;
  4447. white-space:nowrap;
  4448. text-transform:none;
  4449. }
  4450. #u209012_div {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:375px;
  4456. height:681px;
  4457. background:inherit;
  4458. background-color:rgba(242, 242, 242, 0.462745098039216);
  4459. border:none;
  4460. border-radius:0px;
  4461. -moz-box-shadow:none;
  4462. -webkit-box-shadow:none;
  4463. box-shadow:none;
  4464. }
  4465. #u209012 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:482px;
  4469. top:107px;
  4470. width:375px;
  4471. height:681px;
  4472. display:flex;
  4473. }
  4474. #u209012 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 2px 2px 2px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u209012_text {
  4482. border-width:0px;
  4483. word-wrap:break-word;
  4484. text-transform:none;
  4485. visibility:hidden;
  4486. }
  4487. #u209013 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:0px;
  4493. height:0px;
  4494. }
  4495. #u209014_img {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:24px;
  4501. height:24px;
  4502. }
  4503. #u209014 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:704px;
  4507. top:792px;
  4508. width:24px;
  4509. height:24px;
  4510. display:flex;
  4511. font-size:8px;
  4512. }
  4513. #u209014 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 2px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u209014_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. }
  4525. #u209015_div {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:37px;
  4531. height:17px;
  4532. background:inherit;
  4533. background-color:rgba(255, 255, 255, 0);
  4534. border:none;
  4535. border-radius:0px;
  4536. -moz-box-shadow:none;
  4537. -webkit-box-shadow:none;
  4538. box-shadow:none;
  4539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:12px;
  4543. }
  4544. #u209015 {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:698px;
  4548. top:817px;
  4549. width:37px;
  4550. height:17px;
  4551. display:flex;
  4552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4553. font-weight:400;
  4554. font-style:normal;
  4555. font-size:12px;
  4556. }
  4557. #u209015 .text {
  4558. position:absolute;
  4559. align-self:flex-start;
  4560. padding:0px 0px 0px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u209015_text {
  4565. border-width:0px;
  4566. white-space:nowrap;
  4567. text-transform:none;
  4568. }
  4569. #u209016 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:0px;
  4575. height:0px;
  4576. }
  4577. #u209017_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:24px;
  4583. height:24px;
  4584. }
  4585. #u209017 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:610px;
  4589. top:792px;
  4590. width:24px;
  4591. height:24px;
  4592. display:flex;
  4593. font-size:8px;
  4594. }
  4595. #u209017 .text {
  4596. position:absolute;
  4597. align-self:center;
  4598. padding:2px 2px 2px 2px;
  4599. box-sizing:border-box;
  4600. width:100%;
  4601. }
  4602. #u209017_text {
  4603. border-width:0px;
  4604. word-wrap:break-word;
  4605. text-transform:none;
  4606. }
  4607. #u209018_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:37px;
  4613. height:17px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 0);
  4616. border:none;
  4617. border-radius:0px;
  4618. -moz-box-shadow:none;
  4619. -webkit-box-shadow:none;
  4620. box-shadow:none;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:12px;
  4625. }
  4626. #u209018 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:604px;
  4630. top:817px;
  4631. width:37px;
  4632. height:17px;
  4633. display:flex;
  4634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:12px;
  4638. }
  4639. #u209018 .text {
  4640. position:absolute;
  4641. align-self:flex-start;
  4642. padding:0px 0px 0px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u209018_text {
  4647. border-width:0px;
  4648. white-space:nowrap;
  4649. text-transform:none;
  4650. }
  4651. #u209019_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:375px;
  4657. height:739px;
  4658. }
  4659. #u209019 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:482px;
  4663. top:106px;
  4664. width:375px;
  4665. height:739px;
  4666. display:flex;
  4667. }
  4668. #u209019 .text {
  4669. position:absolute;
  4670. align-self:center;
  4671. padding:2px 2px 2px 2px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u209019_text {
  4676. border-width:0px;
  4677. word-wrap:break-word;
  4678. text-transform:none;
  4679. visibility:hidden;
  4680. }
  4681. #u209020_img {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:11px;
  4687. height:18px;
  4688. }
  4689. #u209020 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:493px;
  4693. top:79px;
  4694. width:11px;
  4695. height:18px;
  4696. display:flex;
  4697. }
  4698. #u209020 .text {
  4699. position:absolute;
  4700. align-self:center;
  4701. padding:2px 2px 2px 2px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u209020_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u209021_div {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:73px;
  4717. height:25px;
  4718. background:inherit;
  4719. background-color:rgba(255, 255, 255, 0);
  4720. border:none;
  4721. border-radius:0px;
  4722. -moz-box-shadow:none;
  4723. -webkit-box-shadow:none;
  4724. box-shadow:none;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:18px;
  4729. }
  4730. #u209021 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:635px;
  4734. top:75px;
  4735. width:73px;
  4736. height:25px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:18px;
  4742. }
  4743. #u209021 .text {
  4744. position:absolute;
  4745. align-self:flex-start;
  4746. padding:0px 0px 0px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u209021_text {
  4751. border-width:0px;
  4752. white-space:nowrap;
  4753. text-transform:none;
  4754. }
  4755. #u209022 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:0px;
  4761. height:0px;
  4762. }
  4763. #u209023_div {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:375px;
  4769. height:50px;
  4770. background:inherit;
  4771. background-color:rgba(255, 255, 255, 1);
  4772. border:none;
  4773. border-left:0px;
  4774. border-top:0px;
  4775. border-right:0px;
  4776. border-radius:0px;
  4777. border-bottom-right-radius:0px;
  4778. border-bottom-left-radius:0px;
  4779. -moz-box-shadow:none;
  4780. -webkit-box-shadow:none;
  4781. box-shadow:none;
  4782. }
  4783. #u209023 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:482px;
  4787. top:297px;
  4788. width:375px;
  4789. height:50px;
  4790. display:flex;
  4791. }
  4792. #u209023 .text {
  4793. position:absolute;
  4794. align-self:center;
  4795. padding:2px 2px 2px 2px;
  4796. box-sizing:border-box;
  4797. width:100%;
  4798. }
  4799. #u209023_text {
  4800. border-width:0px;
  4801. word-wrap:break-word;
  4802. text-transform:none;
  4803. visibility:hidden;
  4804. }
  4805. #u209024_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:64px;
  4811. height:30px;
  4812. background:inherit;
  4813. background-color:rgba(255, 255, 255, 0);
  4814. border:none;
  4815. border-left:0px;
  4816. border-top:0px;
  4817. border-right:0px;
  4818. border-radius:0px;
  4819. border-bottom-right-radius:0px;
  4820. border-bottom-left-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:14px;
  4828. line-height:30px;
  4829. }
  4830. #u209024 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:502px;
  4834. top:307px;
  4835. width:64px;
  4836. height:30px;
  4837. display:flex;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. line-height:30px;
  4843. }
  4844. #u209024 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:0px 0px 0px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u209024_text {
  4852. border-width:0px;
  4853. white-space:nowrap;
  4854. text-transform:none;
  4855. }
  4856. #u209025_div {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:8px;
  4862. height:8px;
  4863. background:inherit;
  4864. background-color:rgba(255, 255, 255, 0);
  4865. box-sizing:border-box;
  4866. border-width:1px;
  4867. border-style:solid;
  4868. border-color:rgba(127, 127, 127, 1);
  4869. border-right:0px;
  4870. border-bottom:0px;
  4871. border-radius:0px;
  4872. border-top-right-radius:0px;
  4873. border-bottom-left-radius:0px;
  4874. -moz-box-shadow:none;
  4875. -webkit-box-shadow:none;
  4876. box-shadow:none;
  4877. }
  4878. #u209025 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:832px;
  4882. top:318px;
  4883. width:8px;
  4884. height:8px;
  4885. display:flex;
  4886. -webkit-transform:rotate(135deg);
  4887. -moz-transform:rotate(135deg);
  4888. -ms-transform:rotate(135deg);
  4889. transform:rotate(135deg);
  4890. }
  4891. #u209025 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 2px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u209025_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. visibility:hidden;
  4903. }
  4904. #u209026_div {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:85px;
  4910. height:30px;
  4911. background:inherit;
  4912. background-color:rgba(255, 255, 255, 0);
  4913. border:none;
  4914. border-left:0px;
  4915. border-top:0px;
  4916. border-right:0px;
  4917. border-radius:0px;
  4918. border-bottom-right-radius:0px;
  4919. border-bottom-left-radius:0px;
  4920. -moz-box-shadow:none;
  4921. -webkit-box-shadow:none;
  4922. box-shadow:none;
  4923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4924. font-weight:400;
  4925. font-style:normal;
  4926. font-size:14px;
  4927. text-align:right;
  4928. line-height:30px;
  4929. }
  4930. #u209026 {
  4931. border-width:0px;
  4932. position:absolute;
  4933. left:740px;
  4934. top:307px;
  4935. width:85px;
  4936. height:30px;
  4937. display:flex;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:14px;
  4942. text-align:right;
  4943. line-height:30px;
  4944. }
  4945. #u209026 .text {
  4946. position:absolute;
  4947. align-self:center;
  4948. padding:0px 0px 0px 0px;
  4949. box-sizing:border-box;
  4950. width:100%;
  4951. }
  4952. #u209026_text {
  4953. border-width:0px;
  4954. white-space:nowrap;
  4955. text-transform:none;
  4956. }
  4957. #u209027_div {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:49px;
  4963. height:30px;
  4964. background:inherit;
  4965. background-color:rgba(255, 255, 255, 0);
  4966. border:none;
  4967. border-left:0px;
  4968. border-top:0px;
  4969. border-right:0px;
  4970. border-radius:0px;
  4971. border-bottom-right-radius:0px;
  4972. border-bottom-left-radius:0px;
  4973. -moz-box-shadow:none;
  4974. -webkit-box-shadow:none;
  4975. box-shadow:none;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. color:#7F7F7F;
  4981. line-height:30px;
  4982. }
  4983. #u209027 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:502px;
  4987. top:267px;
  4988. width:49px;
  4989. height:30px;
  4990. display:flex;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:12px;
  4995. color:#7F7F7F;
  4996. line-height:30px;
  4997. }
  4998. #u209027 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:0px 0px 0px 0px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u209027_text {
  5006. border-width:0px;
  5007. white-space:nowrap;
  5008. text-transform:none;
  5009. }
  5010. #u209028_div {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:0px;
  5014. top:0px;
  5015. width:375px;
  5016. height:50px;
  5017. background:inherit;
  5018. background-color:rgba(255, 255, 255, 1);
  5019. border:none;
  5020. border-left:0px;
  5021. border-top:0px;
  5022. border-right:0px;
  5023. border-radius:0px;
  5024. border-bottom-right-radius:0px;
  5025. border-bottom-left-radius:0px;
  5026. -moz-box-shadow:none;
  5027. -webkit-box-shadow:none;
  5028. box-shadow:none;
  5029. }
  5030. #u209028 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:482px;
  5034. top:348px;
  5035. width:375px;
  5036. height:50px;
  5037. display:flex;
  5038. }
  5039. #u209028 .text {
  5040. position:absolute;
  5041. align-self:center;
  5042. padding:2px 2px 2px 2px;
  5043. box-sizing:border-box;
  5044. width:100%;
  5045. }
  5046. #u209028_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. visibility:hidden;
  5051. }
  5052. #u209029_div {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:57px;
  5058. height:30px;
  5059. background:inherit;
  5060. background-color:rgba(255, 255, 255, 0);
  5061. border:none;
  5062. border-left:0px;
  5063. border-top:0px;
  5064. border-right:0px;
  5065. border-radius:0px;
  5066. border-bottom-right-radius:0px;
  5067. border-bottom-left-radius:0px;
  5068. -moz-box-shadow:none;
  5069. -webkit-box-shadow:none;
  5070. box-shadow:none;
  5071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5072. font-weight:400;
  5073. font-style:normal;
  5074. font-size:14px;
  5075. line-height:30px;
  5076. }
  5077. #u209029 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:502px;
  5081. top:358px;
  5082. width:57px;
  5083. height:30px;
  5084. display:flex;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:14px;
  5089. line-height:30px;
  5090. }
  5091. #u209029 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:0px 0px 0px 0px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u209029_text {
  5099. border-width:0px;
  5100. white-space:nowrap;
  5101. text-transform:none;
  5102. }
  5103. #u209030_div {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:8px;
  5109. height:8px;
  5110. background:inherit;
  5111. background-color:rgba(255, 255, 255, 0);
  5112. box-sizing:border-box;
  5113. border-width:1px;
  5114. border-style:solid;
  5115. border-color:rgba(127, 127, 127, 1);
  5116. border-right:0px;
  5117. border-bottom:0px;
  5118. border-radius:0px;
  5119. border-top-right-radius:0px;
  5120. border-bottom-left-radius:0px;
  5121. -moz-box-shadow:none;
  5122. -webkit-box-shadow:none;
  5123. box-shadow:none;
  5124. }
  5125. #u209030 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:832px;
  5129. top:369px;
  5130. width:8px;
  5131. height:8px;
  5132. display:flex;
  5133. -webkit-transform:rotate(135deg);
  5134. -moz-transform:rotate(135deg);
  5135. -ms-transform:rotate(135deg);
  5136. transform:rotate(135deg);
  5137. }
  5138. #u209030 .text {
  5139. position:absolute;
  5140. align-self:center;
  5141. padding:2px 2px 2px 2px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u209030_text {
  5146. border-width:0px;
  5147. word-wrap:break-word;
  5148. text-transform:none;
  5149. visibility:hidden;
  5150. }
  5151. #u209031_div {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:93px;
  5157. height:30px;
  5158. background:inherit;
  5159. background-color:rgba(255, 255, 255, 0);
  5160. border:none;
  5161. border-left:0px;
  5162. border-top:0px;
  5163. border-right:0px;
  5164. border-radius:0px;
  5165. border-bottom-right-radius:0px;
  5166. border-bottom-left-radius:0px;
  5167. -moz-box-shadow:none;
  5168. -webkit-box-shadow:none;
  5169. box-shadow:none;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:14px;
  5174. text-align:right;
  5175. line-height:30px;
  5176. }
  5177. #u209031 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:732px;
  5181. top:358px;
  5182. width:93px;
  5183. height:30px;
  5184. display:flex;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:14px;
  5189. text-align:right;
  5190. line-height:30px;
  5191. }
  5192. #u209031 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:0px 0px 0px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u209031_text {
  5200. border-width:0px;
  5201. white-space:nowrap;
  5202. text-transform:none;
  5203. }
  5204. #u209032_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:375px;
  5210. height:124px;
  5211. background:inherit;
  5212. background-color:rgba(255, 255, 255, 1);
  5213. border:none;
  5214. border-left:0px;
  5215. border-top:0px;
  5216. border-right:0px;
  5217. border-radius:0px;
  5218. border-bottom-right-radius:0px;
  5219. border-bottom-left-radius:0px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. }
  5224. #u209032 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:482px;
  5228. top:399px;
  5229. width:375px;
  5230. height:124px;
  5231. display:flex;
  5232. }
  5233. #u209032 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u209032_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. visibility:hidden;
  5245. }
  5246. #u209033_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:64px;
  5252. height:30px;
  5253. background:inherit;
  5254. background-color:rgba(255, 255, 255, 0);
  5255. border:none;
  5256. border-left:0px;
  5257. border-top:0px;
  5258. border-right:0px;
  5259. border-radius:0px;
  5260. border-bottom-right-radius:0px;
  5261. border-bottom-left-radius:0px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:14px;
  5269. line-height:30px;
  5270. }
  5271. #u209033 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:502px;
  5275. top:409px;
  5276. width:64px;
  5277. height:30px;
  5278. display:flex;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:14px;
  5283. line-height:30px;
  5284. }
  5285. #u209033 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:0px 0px 0px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u209033_text {
  5293. border-width:0px;
  5294. white-space:nowrap;
  5295. text-transform:none;
  5296. }
  5297. #u209034_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:345px;
  5303. height:60px;
  5304. background:inherit;
  5305. background-color:rgba(255, 255, 255, 0);
  5306. border:none;
  5307. border-left:0px;
  5308. border-top:0px;
  5309. border-right:0px;
  5310. border-radius:0px;
  5311. border-bottom-right-radius:0px;
  5312. border-bottom-left-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#AAAAAA;
  5321. line-height:30px;
  5322. }
  5323. #u209034 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:507px;
  5327. top:439px;
  5328. width:345px;
  5329. height:60px;
  5330. display:flex;
  5331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:14px;
  5335. color:#AAAAAA;
  5336. line-height:30px;
  5337. }
  5338. #u209034 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:0px 0px 0px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u209034_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. }
  5350. #u209035_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:375px;
  5356. height:50px;
  5357. background:inherit;
  5358. background-color:rgba(255, 255, 255, 1);
  5359. border:none;
  5360. border-left:0px;
  5361. border-top:0px;
  5362. border-right:0px;
  5363. border-radius:0px;
  5364. border-bottom-right-radius:0px;
  5365. border-bottom-left-radius:0px;
  5366. -moz-box-shadow:none;
  5367. -webkit-box-shadow:none;
  5368. box-shadow:none;
  5369. }
  5370. #u209035 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:482px;
  5374. top:167px;
  5375. width:375px;
  5376. height:50px;
  5377. display:flex;
  5378. }
  5379. #u209035 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u209035_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u209036_div {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:36px;
  5398. height:30px;
  5399. background:inherit;
  5400. background-color:rgba(255, 255, 255, 0);
  5401. border:none;
  5402. border-left:0px;
  5403. border-top:0px;
  5404. border-right:0px;
  5405. border-radius:0px;
  5406. border-bottom-right-radius:0px;
  5407. border-bottom-left-radius:0px;
  5408. -moz-box-shadow:none;
  5409. -webkit-box-shadow:none;
  5410. box-shadow:none;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:14px;
  5415. line-height:30px;
  5416. }
  5417. #u209036 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:502px;
  5421. top:177px;
  5422. width:36px;
  5423. height:30px;
  5424. display:flex;
  5425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5426. font-weight:400;
  5427. font-style:normal;
  5428. font-size:14px;
  5429. line-height:30px;
  5430. }
  5431. #u209036 .text {
  5432. position:absolute;
  5433. align-self:center;
  5434. padding:0px 0px 0px 0px;
  5435. box-sizing:border-box;
  5436. width:100%;
  5437. }
  5438. #u209036_text {
  5439. border-width:0px;
  5440. white-space:nowrap;
  5441. text-transform:none;
  5442. }
  5443. #u209037_div {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:99px;
  5449. height:30px;
  5450. background:inherit;
  5451. background-color:rgba(255, 255, 255, 0);
  5452. border:none;
  5453. border-left:0px;
  5454. border-top:0px;
  5455. border-right:0px;
  5456. border-radius:0px;
  5457. border-bottom-right-radius:0px;
  5458. border-bottom-left-radius:0px;
  5459. -moz-box-shadow:none;
  5460. -webkit-box-shadow:none;
  5461. box-shadow:none;
  5462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. color:#AAAAAA;
  5467. text-align:right;
  5468. line-height:30px;
  5469. }
  5470. #u209037 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:738px;
  5474. top:177px;
  5475. width:99px;
  5476. height:30px;
  5477. display:flex;
  5478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:14px;
  5482. color:#AAAAAA;
  5483. text-align:right;
  5484. line-height:30px;
  5485. }
  5486. #u209037 .text {
  5487. position:absolute;
  5488. align-self:center;
  5489. padding:0px 0px 0px 0px;
  5490. box-sizing:border-box;
  5491. width:100%;
  5492. }
  5493. #u209037_text {
  5494. border-width:0px;
  5495. white-space:nowrap;
  5496. text-transform:none;
  5497. }
  5498. #u209038_div {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:375px;
  5504. height:50px;
  5505. background:inherit;
  5506. background-color:rgba(255, 255, 255, 1);
  5507. border:none;
  5508. border-left:0px;
  5509. border-top:0px;
  5510. border-right:0px;
  5511. border-radius:0px;
  5512. border-bottom-right-radius:0px;
  5513. border-bottom-left-radius:0px;
  5514. -moz-box-shadow:none;
  5515. -webkit-box-shadow:none;
  5516. box-shadow:none;
  5517. }
  5518. #u209038 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:482px;
  5522. top:217px;
  5523. width:375px;
  5524. height:50px;
  5525. display:flex;
  5526. }
  5527. #u209038 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u209038_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u209039_div {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:64px;
  5546. height:30px;
  5547. background:inherit;
  5548. background-color:rgba(255, 255, 255, 0);
  5549. border:none;
  5550. border-left:0px;
  5551. border-top:0px;
  5552. border-right:0px;
  5553. border-radius:0px;
  5554. border-bottom-right-radius:0px;
  5555. border-bottom-left-radius:0px;
  5556. -moz-box-shadow:none;
  5557. -webkit-box-shadow:none;
  5558. box-shadow:none;
  5559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:14px;
  5563. line-height:30px;
  5564. }
  5565. #u209039 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:502px;
  5569. top:227px;
  5570. width:64px;
  5571. height:30px;
  5572. display:flex;
  5573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:14px;
  5577. line-height:30px;
  5578. }
  5579. #u209039 .text {
  5580. position:absolute;
  5581. align-self:center;
  5582. padding:0px 0px 0px 0px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u209039_text {
  5587. border-width:0px;
  5588. white-space:nowrap;
  5589. text-transform:none;
  5590. }
  5591. #u209040_div {
  5592. border-width:0px;
  5593. position:absolute;
  5594. left:0px;
  5595. top:0px;
  5596. width:344px;
  5597. height:40px;
  5598. background:inherit;
  5599. background-color:rgba(24, 144, 255, 1);
  5600. border:none;
  5601. border-radius:81px;
  5602. -moz-box-shadow:none;
  5603. -webkit-box-shadow:none;
  5604. box-shadow:none;
  5605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5606. font-weight:400;
  5607. font-style:normal;
  5608. font-size:14px;
  5609. color:#FFFFFF;
  5610. }
  5611. #u209040 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:502px;
  5615. top:797px;
  5616. width:344px;
  5617. height:40px;
  5618. display:flex;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:14px;
  5623. color:#FFFFFF;
  5624. }
  5625. #u209040 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 2px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u209040_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. }
  5637. #u209041_div {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:375px;
  5643. height:50px;
  5644. background:inherit;
  5645. background-color:rgba(255, 255, 0, 0.105882352941176);
  5646. border:none;
  5647. border-bottom:0px;
  5648. border-radius:3px;
  5649. border-bottom-right-radius:0px;
  5650. border-bottom-left-radius:0px;
  5651. -moz-box-shadow:none;
  5652. -webkit-box-shadow:none;
  5653. box-shadow:none;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:12px;
  5658. color:rgba(184, 116, 26, 0.76078431372549);
  5659. text-align:left;
  5660. }
  5661. #u209041 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:482px;
  5665. top:521px;
  5666. width:375px;
  5667. height:50px;
  5668. display:flex;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:12px;
  5673. color:rgba(184, 116, 26, 0.76078431372549);
  5674. text-align:left;
  5675. }
  5676. #u209041 .text {
  5677. position:absolute;
  5678. align-self:flex-start;
  5679. padding:10px 10px 10px 10px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u209041_text {
  5684. border-width:0px;
  5685. word-wrap:break-word;
  5686. text-transform:none;
  5687. }
  5688. #u209042_div {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:375px;
  5694. height:50px;
  5695. background:inherit;
  5696. background-color:rgba(255, 255, 255, 1);
  5697. border:none;
  5698. border-left:0px;
  5699. border-top:0px;
  5700. border-right:0px;
  5701. border-radius:0px;
  5702. border-bottom-right-radius:0px;
  5703. border-bottom-left-radius:0px;
  5704. -moz-box-shadow:none;
  5705. -webkit-box-shadow:none;
  5706. box-shadow:none;
  5707. }
  5708. #u209042 {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:482px;
  5712. top:116px;
  5713. width:375px;
  5714. height:50px;
  5715. display:flex;
  5716. }
  5717. #u209042 .text {
  5718. position:absolute;
  5719. align-self:center;
  5720. padding:2px 2px 2px 2px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u209042_text {
  5725. border-width:0px;
  5726. word-wrap:break-word;
  5727. text-transform:none;
  5728. visibility:hidden;
  5729. }
  5730. #u209043_div {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:64px;
  5736. height:30px;
  5737. background:inherit;
  5738. background-color:rgba(255, 255, 255, 0);
  5739. border:none;
  5740. border-left:0px;
  5741. border-top:0px;
  5742. border-right:0px;
  5743. border-radius:0px;
  5744. border-bottom-right-radius:0px;
  5745. border-bottom-left-radius:0px;
  5746. -moz-box-shadow:none;
  5747. -webkit-box-shadow:none;
  5748. box-shadow:none;
  5749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:14px;
  5753. line-height:30px;
  5754. }
  5755. #u209043 {
  5756. border-width:0px;
  5757. position:absolute;
  5758. left:502px;
  5759. top:126px;
  5760. width:64px;
  5761. height:30px;
  5762. display:flex;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:14px;
  5767. line-height:30px;
  5768. }
  5769. #u209043 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:0px 0px 0px 0px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u209043_text {
  5777. border-width:0px;
  5778. white-space:nowrap;
  5779. text-transform:none;
  5780. }
  5781. #u209044_div {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:100px;
  5787. height:30px;
  5788. background:inherit;
  5789. background-color:rgba(24, 144, 255, 0);
  5790. box-sizing:border-box;
  5791. border-width:1px;
  5792. border-style:solid;
  5793. border-color:rgba(170, 170, 170, 1);
  5794. border-radius:4px;
  5795. -moz-box-shadow:none;
  5796. -webkit-box-shadow:none;
  5797. box-shadow:none;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:12px;
  5802. }
  5803. #u209044 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:742px;
  5807. top:126px;
  5808. width:100px;
  5809. height:30px;
  5810. display:flex;
  5811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:12px;
  5815. }
  5816. #u209044 .text {
  5817. position:absolute;
  5818. align-self:center;
  5819. padding:2px 2px 2px 2px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u209044_text {
  5824. border-width:0px;
  5825. word-wrap:break-word;
  5826. text-transform:none;
  5827. }
  5828. #u209045_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:100px;
  5834. height:30px;
  5835. background:inherit;
  5836. background-color:rgba(41, 143, 255, 1);
  5837. box-sizing:border-box;
  5838. border-width:1px;
  5839. border-style:solid;
  5840. border-color:rgba(170, 170, 170, 1);
  5841. border-radius:4px;
  5842. -moz-box-shadow:none;
  5843. -webkit-box-shadow:none;
  5844. box-shadow:none;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. font-size:12px;
  5849. color:#FFFFFF;
  5850. }
  5851. #u209045 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:632px;
  5855. top:126px;
  5856. width:100px;
  5857. height:30px;
  5858. display:flex;
  5859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:12px;
  5863. color:#FFFFFF;
  5864. }
  5865. #u209045 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 2px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u209045_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. }
  5877. #u209046_div {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:85px;
  5883. height:30px;
  5884. background:inherit;
  5885. background-color:rgba(255, 255, 255, 0);
  5886. border:none;
  5887. border-left:0px;
  5888. border-top:0px;
  5889. border-right:0px;
  5890. border-radius:0px;
  5891. border-bottom-right-radius:0px;
  5892. border-bottom-left-radius:0px;
  5893. -moz-box-shadow:none;
  5894. -webkit-box-shadow:none;
  5895. box-shadow:none;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:14px;
  5900. color:#AAAAAA;
  5901. text-align:right;
  5902. line-height:30px;
  5903. }
  5904. #u209046 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:757px;
  5908. top:227px;
  5909. width:85px;
  5910. height:30px;
  5911. display:flex;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:14px;
  5916. color:#AAAAAA;
  5917. text-align:right;
  5918. line-height:30px;
  5919. }
  5920. #u209046 .text {
  5921. position:absolute;
  5922. align-self:center;
  5923. padding:0px 0px 0px 0px;
  5924. box-sizing:border-box;
  5925. width:100%;
  5926. }
  5927. #u209046_text {
  5928. border-width:0px;
  5929. white-space:nowrap;
  5930. text-transform:none;
  5931. }