styles.css 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1791px;
  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. #u204020_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u204020 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u204020 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u204020_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u204021_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. #u204021 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u204021 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u204021_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u204022 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u204023_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. #u204023 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u204023 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u204023_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u204024 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u204025_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u204025 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u204025 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u204025_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u204026_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u204026 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u204026 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u204026_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u204027 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u204028_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u204028 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u204028 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u204028_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u204029_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u204029 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u204029 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u204029_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u204030_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u204030 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u204030 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u204030_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u204031_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u204031 {
  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. #u204031 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u204031_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u204032_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u204032 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u204032 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u204032_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u204033_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. #u204033 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u204033 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u204033_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u204034 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u204035_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u204035 {
  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. #u204035 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u204035_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u204036_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. #u204036 {
  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. #u204036 .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. #u204036_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u204037 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u204038_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u204038 {
  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. #u204038 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u204038_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u204039_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. #u204039 {
  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. #u204039 .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. #u204039_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u204040_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. #u204040 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u204040 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u204040_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u204041 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u204042_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u204042 {
  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. #u204042 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u204042_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u204043_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. #u204043 {
  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. #u204043 .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. #u204043_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u204044 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u204045_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u204045 {
  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. #u204045 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u204045_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u204046_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. #u204046 {
  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. #u204046 .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. #u204046_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u204047_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:731px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u204047 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:731px;
  804. display:flex;
  805. }
  806. #u204047 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u204047_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u204048_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:40px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. box-sizing:border-box;
  829. border-width:1px;
  830. border-style:solid;
  831. border-color:rgba(215, 215, 215, 1);
  832. border-left:0px;
  833. border-top:0px;
  834. border-right:0px;
  835. border-radius:0px;
  836. border-bottom-right-radius:0px;
  837. border-bottom-left-radius:0px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. }
  842. #u204048 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:40px;
  849. display:flex;
  850. }
  851. #u204048 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u204048_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u204049_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:44px;
  871. }
  872. #u204049 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:24px;
  877. width:375px;
  878. height:44px;
  879. display:flex;
  880. }
  881. #u204049 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u204049_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u204050 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u204051_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:88px;
  908. height:32px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 1);
  911. box-sizing:border-box;
  912. border-width:1px;
  913. border-style:solid;
  914. border-color:rgba(242, 242, 242, 1);
  915. border-radius:33px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. }
  920. #u204051 {
  921. border-width:0px;
  922. position:absolute;
  923. left:309px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u204051 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u204051_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u204052 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u204053_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u204053 {
  959. border-width:0px;
  960. position:absolute;
  961. left:372px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u204053 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u204053_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u204054_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u204054 {
  989. border-width:0px;
  990. position:absolute;
  991. left:378px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u204054 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u204054_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u204055 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u204056_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u204056 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:323px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u204056 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u204056_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u204057_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u204057 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:339px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u204057 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u204057_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u204058_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u204058 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:330px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u204058 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u204058_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u204059_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u204059 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:347px;
  1120. top:87px;
  1121. width:18px;
  1122. height:1px;
  1123. display:flex;
  1124. -webkit-transform:rotate(90deg);
  1125. -moz-transform:rotate(90deg);
  1126. -ms-transform:rotate(90deg);
  1127. transform:rotate(90deg);
  1128. }
  1129. #u204059 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u204059_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u204060_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:81px;
  1148. height:22px;
  1149. background:inherit;
  1150. background-color:rgba(255, 255, 255, 0);
  1151. border:none;
  1152. border-radius:0px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:16px;
  1160. color:#000000;
  1161. }
  1162. #u204060 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:58px;
  1166. top:76px;
  1167. width:81px;
  1168. height:22px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. font-size:16px;
  1174. color:#000000;
  1175. }
  1176. #u204060 .text {
  1177. position:absolute;
  1178. align-self:flex-start;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u204060_text {
  1184. border-width:0px;
  1185. white-space:nowrap;
  1186. text-transform:none;
  1187. }
  1188. #u204061_div {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:12px;
  1194. height:12px;
  1195. background:inherit;
  1196. background-color:rgba(255, 255, 255, 0);
  1197. box-sizing:border-box;
  1198. border-width:2px;
  1199. border-style:solid;
  1200. border-color:rgba(51, 51, 51, 1);
  1201. border-right:0px;
  1202. border-bottom:0px;
  1203. border-radius:0px;
  1204. border-top-right-radius:0px;
  1205. border-bottom-left-radius:0px;
  1206. -moz-box-shadow:none;
  1207. -webkit-box-shadow:none;
  1208. box-shadow:none;
  1209. }
  1210. #u204061 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:44px;
  1214. top:81px;
  1215. width:12px;
  1216. height:12px;
  1217. display:flex;
  1218. -webkit-transform:rotate(315deg);
  1219. -moz-transform:rotate(315deg);
  1220. -ms-transform:rotate(315deg);
  1221. transform:rotate(315deg);
  1222. }
  1223. #u204061 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u204061_text {
  1231. border-width:0px;
  1232. word-wrap:break-word;
  1233. text-transform:none;
  1234. visibility:hidden;
  1235. }
  1236. #u204062 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:0px;
  1242. height:0px;
  1243. }
  1244. #u204063_img {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:355px;
  1250. height:120px;
  1251. }
  1252. #u204063 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:39px;
  1256. top:117px;
  1257. width:355px;
  1258. height:120px;
  1259. display:flex;
  1260. }
  1261. #u204063 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 2px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u204063_text {
  1269. border-width:0px;
  1270. word-wrap:break-word;
  1271. text-transform:none;
  1272. visibility:hidden;
  1273. }
  1274. #u204064_div {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:0px;
  1278. top:0px;
  1279. width:85px;
  1280. height:30px;
  1281. background:inherit;
  1282. background-color:rgba(255, 255, 255, 0);
  1283. border:none;
  1284. border-left:0px;
  1285. border-top:0px;
  1286. border-right:0px;
  1287. border-radius:0px;
  1288. border-bottom-right-radius:0px;
  1289. border-bottom-left-radius:0px;
  1290. -moz-box-shadow:none;
  1291. -webkit-box-shadow:none;
  1292. box-shadow:none;
  1293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1294. font-weight:500;
  1295. font-style:normal;
  1296. font-size:14px;
  1297. line-height:30px;
  1298. }
  1299. #u204064 {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:95px;
  1303. top:124px;
  1304. width:85px;
  1305. height:30px;
  1306. display:flex;
  1307. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1308. font-weight:500;
  1309. font-style:normal;
  1310. font-size:14px;
  1311. line-height:30px;
  1312. }
  1313. #u204064 .text {
  1314. position:absolute;
  1315. align-self:flex-start;
  1316. padding:0px 0px 0px 0px;
  1317. box-sizing:border-box;
  1318. width:100%;
  1319. }
  1320. #u204064_text {
  1321. border-width:0px;
  1322. white-space:nowrap;
  1323. text-transform:none;
  1324. }
  1325. #u204065_div {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:0px;
  1329. top:0px;
  1330. width:325px;
  1331. height:75px;
  1332. background:inherit;
  1333. background-color:rgba(255, 255, 255, 0);
  1334. border:none;
  1335. border-left:0px;
  1336. border-top:0px;
  1337. border-right:0px;
  1338. border-radius:0px;
  1339. border-bottom-right-radius:0px;
  1340. border-bottom-left-radius:0px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:12px;
  1348. line-height:25px;
  1349. }
  1350. #u204065 {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:55px;
  1354. top:157px;
  1355. width:325px;
  1356. height:75px;
  1357. display:flex;
  1358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1359. font-weight:400;
  1360. font-style:normal;
  1361. font-size:12px;
  1362. line-height:25px;
  1363. }
  1364. #u204065 .text {
  1365. position:absolute;
  1366. align-self:flex-start;
  1367. padding:0px 0px 0px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u204065_text {
  1372. border-width:0px;
  1373. word-wrap:break-word;
  1374. text-transform:none;
  1375. }
  1376. #u204066_div {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:30px;
  1382. height:16px;
  1383. background:inherit;
  1384. background-color:rgba(128, 128, 255, 1);
  1385. border:none;
  1386. border-radius:2px;
  1387. -moz-box-shadow:none;
  1388. -webkit-box-shadow:none;
  1389. box-shadow:none;
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:10px;
  1394. color:#FFFFFF;
  1395. text-align:center;
  1396. }
  1397. #u204066 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:55px;
  1401. top:131px;
  1402. width:30px;
  1403. height:16px;
  1404. display:flex;
  1405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1406. font-weight:400;
  1407. font-style:normal;
  1408. font-size:10px;
  1409. color:#FFFFFF;
  1410. text-align:center;
  1411. }
  1412. #u204066 .text {
  1413. position:absolute;
  1414. align-self:center;
  1415. padding:0px 0px 0px 0px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u204066_text {
  1420. border-width:0px;
  1421. word-wrap:break-word;
  1422. text-transform:none;
  1423. }
  1424. #u204067_div {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:47px;
  1430. height:40px;
  1431. background:inherit;
  1432. background-color:rgba(242, 242, 242, 1);
  1433. box-sizing:border-box;
  1434. border-width:2px;
  1435. border-style:solid;
  1436. border-color:rgba(0, 137, 254, 1);
  1437. border-left:0px;
  1438. border-top:0px;
  1439. border-right:0px;
  1440. border-radius:4px;
  1441. border-bottom-right-radius:0px;
  1442. border-bottom-left-radius:0px;
  1443. -moz-box-shadow:none;
  1444. -webkit-box-shadow:none;
  1445. box-shadow:none;
  1446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1447. font-weight:400;
  1448. font-style:normal;
  1449. font-size:14px;
  1450. color:#0089FE;
  1451. text-align:left;
  1452. }
  1453. #u204067 {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:49px;
  1457. top:237px;
  1458. width:47px;
  1459. height:40px;
  1460. display:flex;
  1461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1462. font-weight:400;
  1463. font-style:normal;
  1464. font-size:14px;
  1465. color:#0089FE;
  1466. text-align:left;
  1467. }
  1468. #u204067 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:5px 0px 5px 0px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u204067_text {
  1476. border-width:0px;
  1477. white-space:nowrap;
  1478. text-transform:none;
  1479. }
  1480. #u204068_div {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:0px;
  1485. width:47px;
  1486. height:40px;
  1487. background:inherit;
  1488. background-color:rgba(242, 242, 242, 1);
  1489. border:none;
  1490. border-left:0px;
  1491. border-top:0px;
  1492. border-right:0px;
  1493. border-radius:4px;
  1494. border-bottom-right-radius:0px;
  1495. border-bottom-left-radius:0px;
  1496. -moz-box-shadow:none;
  1497. -webkit-box-shadow:none;
  1498. box-shadow:none;
  1499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1500. font-weight:400;
  1501. font-style:normal;
  1502. font-size:14px;
  1503. color:#555555;
  1504. text-align:left;
  1505. }
  1506. #u204068 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:123px;
  1510. top:237px;
  1511. width:47px;
  1512. height:40px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:14px;
  1518. color:#555555;
  1519. text-align:left;
  1520. }
  1521. #u204068 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:5px 0px 5px 0px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u204068_text {
  1529. border-width:0px;
  1530. white-space:nowrap;
  1531. text-transform:none;
  1532. }
  1533. #u204069_div {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:47px;
  1539. height:40px;
  1540. background:inherit;
  1541. background-color:rgba(242, 242, 242, 1);
  1542. border:none;
  1543. border-left:0px;
  1544. border-top:0px;
  1545. border-right:0px;
  1546. border-radius:4px;
  1547. border-bottom-right-radius:0px;
  1548. border-bottom-left-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:14px;
  1556. color:#555555;
  1557. text-align:left;
  1558. }
  1559. #u204069 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:196px;
  1563. top:237px;
  1564. width:47px;
  1565. height:40px;
  1566. display:flex;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:14px;
  1571. color:#555555;
  1572. text-align:left;
  1573. }
  1574. #u204069 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:5px 0px 5px 0px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u204069_text {
  1582. border-width:0px;
  1583. white-space:nowrap;
  1584. text-transform:none;
  1585. }
  1586. #u204070_div {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:44px;
  1592. height:40px;
  1593. background:inherit;
  1594. background-color:rgba(242, 242, 242, 1);
  1595. border:none;
  1596. border-left:0px;
  1597. border-top:0px;
  1598. border-right:0px;
  1599. border-radius:4px;
  1600. border-bottom-right-radius:0px;
  1601. border-bottom-left-radius:0px;
  1602. -moz-box-shadow:none;
  1603. -webkit-box-shadow:none;
  1604. box-shadow:none;
  1605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1606. font-weight:400;
  1607. font-style:normal;
  1608. font-size:14px;
  1609. color:#555555;
  1610. text-align:left;
  1611. }
  1612. #u204070 {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:270px;
  1616. top:237px;
  1617. width:44px;
  1618. height:40px;
  1619. display:flex;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-weight:400;
  1622. font-style:normal;
  1623. font-size:14px;
  1624. color:#555555;
  1625. text-align:left;
  1626. }
  1627. #u204070 .text {
  1628. position:absolute;
  1629. align-self:center;
  1630. padding:5px 0px 5px 0px;
  1631. box-sizing:border-box;
  1632. width:100%;
  1633. }
  1634. #u204070_text {
  1635. border-width:0px;
  1636. white-space:nowrap;
  1637. text-transform:none;
  1638. }
  1639. #u204071_div {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:0px;
  1643. top:0px;
  1644. width:47px;
  1645. height:40px;
  1646. background:inherit;
  1647. background-color:rgba(242, 242, 242, 1);
  1648. border:none;
  1649. border-left:0px;
  1650. border-top:0px;
  1651. border-right:0px;
  1652. border-radius:4px;
  1653. border-bottom-right-radius:0px;
  1654. border-bottom-left-radius:0px;
  1655. -moz-box-shadow:none;
  1656. -webkit-box-shadow:none;
  1657. box-shadow:none;
  1658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1659. font-weight:400;
  1660. font-style:normal;
  1661. font-size:14px;
  1662. color:#555555;
  1663. text-align:left;
  1664. }
  1665. #u204071 {
  1666. border-width:0px;
  1667. position:absolute;
  1668. left:340px;
  1669. top:237px;
  1670. width:47px;
  1671. height:40px;
  1672. display:flex;
  1673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1674. font-weight:400;
  1675. font-style:normal;
  1676. font-size:14px;
  1677. color:#555555;
  1678. text-align:left;
  1679. }
  1680. #u204071 .text {
  1681. position:absolute;
  1682. align-self:center;
  1683. padding:5px 0px 5px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u204071_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u204072_div {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:375px;
  1698. height:546px;
  1699. background:inherit;
  1700. background-color:rgba(255, 255, 255, 1);
  1701. border:none;
  1702. border-left:0px;
  1703. border-top:0px;
  1704. border-right:0px;
  1705. border-radius:0px;
  1706. border-bottom-right-radius:0px;
  1707. border-bottom-left-radius:0px;
  1708. -moz-box-shadow:none;
  1709. -webkit-box-shadow:none;
  1710. box-shadow:none;
  1711. }
  1712. #u204072 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:29px;
  1716. top:277px;
  1717. width:375px;
  1718. height:546px;
  1719. display:flex;
  1720. }
  1721. #u204072 .text {
  1722. position:absolute;
  1723. align-self:center;
  1724. padding:2px 2px 2px 2px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u204072_text {
  1729. border-width:0px;
  1730. word-wrap:break-word;
  1731. text-transform:none;
  1732. visibility:hidden;
  1733. }
  1734. #u204073 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:0px;
  1740. height:0px;
  1741. }
  1742. #u204074_div {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:280px;
  1748. height:30px;
  1749. background:inherit;
  1750. background-color:rgba(242, 242, 242, 1);
  1751. border:none;
  1752. border-radius:20px;
  1753. -moz-box-shadow:none;
  1754. -webkit-box-shadow:none;
  1755. box-shadow:none;
  1756. }
  1757. #u204074 {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:43px;
  1761. top:287px;
  1762. width:280px;
  1763. height:30px;
  1764. display:flex;
  1765. }
  1766. #u204074 .text {
  1767. position:absolute;
  1768. align-self:center;
  1769. padding:2px 2px 2px 2px;
  1770. box-sizing:border-box;
  1771. width:100%;
  1772. }
  1773. #u204074_text {
  1774. border-width:0px;
  1775. word-wrap:break-word;
  1776. text-transform:none;
  1777. visibility:hidden;
  1778. }
  1779. #u204075_input {
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:239px;
  1784. height:25px;
  1785. padding:2px 2px 2px 2px;
  1786. font-family:'ArialMT', 'Arial', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:14px;
  1790. letter-spacing:normal;
  1791. color:#000000;
  1792. vertical-align:none;
  1793. text-align:left;
  1794. text-transform:none;
  1795. background-color:transparent;
  1796. border-color:transparent;
  1797. }
  1798. #u204075_input.disabled {
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:239px;
  1803. height:25px;
  1804. padding:2px 2px 2px 2px;
  1805. font-family:'ArialMT', 'Arial', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:14px;
  1809. letter-spacing:normal;
  1810. color:#000000;
  1811. vertical-align:none;
  1812. text-align:left;
  1813. text-transform:none;
  1814. background-color:transparent;
  1815. border-color:transparent;
  1816. }
  1817. #u204075_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:239px;
  1823. height:25px;
  1824. background:inherit;
  1825. background-color:rgba(242, 242, 242, 1);
  1826. border:none;
  1827. border-radius:0px;
  1828. -moz-box-shadow:none;
  1829. -webkit-box-shadow:none;
  1830. box-shadow:none;
  1831. font-size:14px;
  1832. }
  1833. #u204075 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:52px;
  1837. top:290px;
  1838. width:239px;
  1839. height:25px;
  1840. display:flex;
  1841. font-size:14px;
  1842. }
  1843. #u204075 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u204075_div.disabled {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:239px;
  1856. height:25px;
  1857. background:inherit;
  1858. background-color:rgba(240, 240, 240, 1);
  1859. border:none;
  1860. border-radius:0px;
  1861. -moz-box-shadow:none;
  1862. -webkit-box-shadow:none;
  1863. box-shadow:none;
  1864. font-size:14px;
  1865. }
  1866. #u204075.disabled {
  1867. }
  1868. #u204076_img {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:12px;
  1874. height:12px;
  1875. }
  1876. #u204076 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:301px;
  1880. top:296px;
  1881. width:12px;
  1882. height:12px;
  1883. display:flex;
  1884. }
  1885. #u204076 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u204076_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. visibility:hidden;
  1897. }
  1898. #u204077_div {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:57px;
  1904. height:30px;
  1905. background:inherit;
  1906. background-color:rgba(255, 255, 255, 0);
  1907. border:none;
  1908. border-left:0px;
  1909. border-top:0px;
  1910. border-right:0px;
  1911. border-radius:0px;
  1912. border-bottom-right-radius:0px;
  1913. border-bottom-left-radius:0px;
  1914. -moz-box-shadow:none;
  1915. -webkit-box-shadow:none;
  1916. box-shadow:none;
  1917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1918. font-weight:400;
  1919. font-style:normal;
  1920. font-size:14px;
  1921. color:#1890FF;
  1922. line-height:30px;
  1923. }
  1924. #u204077 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:333px;
  1928. top:287px;
  1929. width:57px;
  1930. height:30px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:14px;
  1936. color:#1890FF;
  1937. line-height:30px;
  1938. }
  1939. #u204077 .text {
  1940. position:absolute;
  1941. align-self:flex-start;
  1942. padding:0px 0px 0px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u204077_text {
  1947. border-width:0px;
  1948. white-space:nowrap;
  1949. text-transform:none;
  1950. }
  1951. #u204078 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:0px;
  1957. height:0px;
  1958. }
  1959. #u204079_div {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:349px;
  1965. height:170px;
  1966. background:inherit;
  1967. background-color:rgba(255, 255, 255, 1);
  1968. box-sizing:border-box;
  1969. border-width:1px;
  1970. border-style:solid;
  1971. border-color:rgba(242, 242, 242, 1);
  1972. border-radius:3px;
  1973. -moz-box-shadow:none;
  1974. -webkit-box-shadow:none;
  1975. box-shadow:none;
  1976. }
  1977. #u204079 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:43px;
  1981. top:327px;
  1982. width:349px;
  1983. height:170px;
  1984. display:flex;
  1985. }
  1986. #u204079 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 2px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u204079_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. visibility:hidden;
  1998. }
  1999. #u204080 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:0px;
  2005. height:0px;
  2006. }
  2007. #u204081_div {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:57px;
  2013. height:90px;
  2014. background:inherit;
  2015. background-color:rgba(255, 255, 255, 0);
  2016. border:none;
  2017. border-left:0px;
  2018. border-top:0px;
  2019. border-right:0px;
  2020. border-radius:0px;
  2021. border-bottom-right-radius:0px;
  2022. border-bottom-left-radius:0px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:14px;
  2030. color:#AAAAAA;
  2031. line-height:30px;
  2032. }
  2033. #u204081 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:61px;
  2037. top:365px;
  2038. width:57px;
  2039. height:90px;
  2040. display:flex;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. color:#AAAAAA;
  2046. line-height:30px;
  2047. }
  2048. #u204081 .text {
  2049. position:absolute;
  2050. align-self:flex-start;
  2051. padding:0px 0px 0px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u204081_text {
  2056. border-width:0px;
  2057. white-space:nowrap;
  2058. text-transform:none;
  2059. }
  2060. #u204082_div {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:85px;
  2066. height:90px;
  2067. background:inherit;
  2068. background-color:rgba(255, 255, 255, 0);
  2069. border:none;
  2070. border-left:0px;
  2071. border-top:0px;
  2072. border-right:0px;
  2073. border-radius:0px;
  2074. border-bottom-right-radius:0px;
  2075. border-bottom-left-radius:0px;
  2076. -moz-box-shadow:none;
  2077. -webkit-box-shadow:none;
  2078. box-shadow:none;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. line-height:30px;
  2084. }
  2085. #u204082 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:138px;
  2089. top:365px;
  2090. width:85px;
  2091. height:90px;
  2092. display:flex;
  2093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:14px;
  2097. line-height:30px;
  2098. }
  2099. #u204082 .text {
  2100. position:absolute;
  2101. align-self:flex-start;
  2102. padding:0px 0px 0px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u204082_text {
  2107. border-width:0px;
  2108. white-space:nowrap;
  2109. text-transform:none;
  2110. }
  2111. #u204083_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:30px;
  2117. height:16px;
  2118. background:inherit;
  2119. background-color:rgba(170, 170, 170, 1);
  2120. border:none;
  2121. border-radius:2px;
  2122. -moz-box-shadow:none;
  2123. -webkit-box-shadow:none;
  2124. box-shadow:none;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:10px;
  2129. color:#FFFFFF;
  2130. text-align:center;
  2131. }
  2132. #u204083 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:61px;
  2136. top:340px;
  2137. width:30px;
  2138. height:16px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:10px;
  2144. color:#FFFFFF;
  2145. text-align:center;
  2146. }
  2147. #u204083 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:0px 0px 0px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u204083_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. }
  2159. #u204084_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:319px;
  2165. height:2px;
  2166. }
  2167. #u204084 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:61px;
  2171. top:460px;
  2172. width:318px;
  2173. height:1px;
  2174. display:flex;
  2175. }
  2176. #u204084 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 2px 2px 2px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u204084_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. visibility:hidden;
  2188. }
  2189. #u204085_div {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:29px;
  2195. height:30px;
  2196. background:inherit;
  2197. background-color:rgba(255, 255, 255, 0);
  2198. border:none;
  2199. border-left:0px;
  2200. border-top:0px;
  2201. border-right:0px;
  2202. border-radius:0px;
  2203. border-bottom-right-radius:0px;
  2204. border-bottom-left-radius:0px;
  2205. -moz-box-shadow:none;
  2206. -webkit-box-shadow:none;
  2207. box-shadow:none;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. color:#0089FE;
  2213. line-height:30px;
  2214. }
  2215. #u204085 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:202px;
  2219. top:463px;
  2220. width:29px;
  2221. height:30px;
  2222. display:flex;
  2223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:14px;
  2227. color:#0089FE;
  2228. line-height:30px;
  2229. }
  2230. #u204085 .text {
  2231. position:absolute;
  2232. align-self:flex-start;
  2233. padding:0px 0px 0px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u204085_text {
  2238. border-width:0px;
  2239. white-space:nowrap;
  2240. text-transform:none;
  2241. }
  2242. #u204086_div {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:124px;
  2248. height:25px;
  2249. background:inherit;
  2250. background-color:rgba(255, 255, 255, 0);
  2251. border:none;
  2252. border-left:0px;
  2253. border-top:0px;
  2254. border-right:0px;
  2255. border-radius:0px;
  2256. border-bottom-right-radius:0px;
  2257. border-bottom-left-radius:0px;
  2258. -moz-box-shadow:none;
  2259. -webkit-box-shadow:none;
  2260. box-shadow:none;
  2261. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2262. font-weight:500;
  2263. font-style:normal;
  2264. font-size:14px;
  2265. line-height:25px;
  2266. }
  2267. #u204086 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:101px;
  2271. top:336px;
  2272. width:124px;
  2273. height:25px;
  2274. display:flex;
  2275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2276. font-weight:500;
  2277. font-style:normal;
  2278. font-size:14px;
  2279. line-height:25px;
  2280. }
  2281. #u204086 .text {
  2282. position:absolute;
  2283. align-self:center;
  2284. padding:0px 0px 0px 0px;
  2285. box-sizing:border-box;
  2286. width:100%;
  2287. }
  2288. #u204086_text {
  2289. border-width:0px;
  2290. white-space:nowrap;
  2291. text-transform:none;
  2292. }
  2293. #u204087 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:0px;
  2299. height:0px;
  2300. }
  2301. #u204088_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:349px;
  2307. height:170px;
  2308. background:inherit;
  2309. background-color:rgba(255, 255, 255, 1);
  2310. box-sizing:border-box;
  2311. border-width:1px;
  2312. border-style:solid;
  2313. border-color:rgba(242, 242, 242, 1);
  2314. border-radius:3px;
  2315. -moz-box-shadow:none;
  2316. -webkit-box-shadow:none;
  2317. box-shadow:none;
  2318. }
  2319. #u204088 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:43px;
  2323. top:507px;
  2324. width:349px;
  2325. height:170px;
  2326. display:flex;
  2327. }
  2328. #u204088 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 2px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u204088_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u204089 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:0px;
  2347. height:0px;
  2348. }
  2349. #u204090_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:57px;
  2355. height:90px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 0);
  2358. border:none;
  2359. border-left:0px;
  2360. border-top:0px;
  2361. border-right:0px;
  2362. border-radius:0px;
  2363. border-bottom-right-radius:0px;
  2364. border-bottom-left-radius:0px;
  2365. -moz-box-shadow:none;
  2366. -webkit-box-shadow:none;
  2367. box-shadow:none;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:14px;
  2372. color:#AAAAAA;
  2373. line-height:30px;
  2374. }
  2375. #u204090 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:61px;
  2379. top:545px;
  2380. width:57px;
  2381. height:90px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. color:#AAAAAA;
  2388. line-height:30px;
  2389. }
  2390. #u204090 .text {
  2391. position:absolute;
  2392. align-self:flex-start;
  2393. padding:0px 0px 0px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u204090_text {
  2398. border-width:0px;
  2399. white-space:nowrap;
  2400. text-transform:none;
  2401. }
  2402. #u204091_div {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:85px;
  2408. height:90px;
  2409. background:inherit;
  2410. background-color:rgba(255, 255, 255, 0);
  2411. border:none;
  2412. border-left:0px;
  2413. border-top:0px;
  2414. border-right:0px;
  2415. border-radius:0px;
  2416. border-bottom-right-radius:0px;
  2417. border-bottom-left-radius:0px;
  2418. -moz-box-shadow:none;
  2419. -webkit-box-shadow:none;
  2420. box-shadow:none;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:14px;
  2425. line-height:30px;
  2426. }
  2427. #u204091 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:138px;
  2431. top:545px;
  2432. width:85px;
  2433. height:90px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:14px;
  2439. line-height:30px;
  2440. }
  2441. #u204091 .text {
  2442. position:absolute;
  2443. align-self:flex-start;
  2444. padding:0px 0px 0px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u204091_text {
  2449. border-width:0px;
  2450. white-space:nowrap;
  2451. text-transform:none;
  2452. }
  2453. #u204092_div {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:30px;
  2459. height:16px;
  2460. background:inherit;
  2461. background-color:rgba(217, 0, 27, 1);
  2462. border:none;
  2463. border-radius:2px;
  2464. -moz-box-shadow:none;
  2465. -webkit-box-shadow:none;
  2466. box-shadow:none;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:10px;
  2471. color:#FFFFFF;
  2472. text-align:center;
  2473. }
  2474. #u204092 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:61px;
  2478. top:520px;
  2479. width:30px;
  2480. height:16px;
  2481. display:flex;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:10px;
  2486. color:#FFFFFF;
  2487. text-align:center;
  2488. }
  2489. #u204092 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:0px 0px 0px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u204092_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. }
  2501. #u204093_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:319px;
  2507. height:2px;
  2508. }
  2509. #u204093 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:61px;
  2513. top:640px;
  2514. width:318px;
  2515. height:1px;
  2516. display:flex;
  2517. }
  2518. #u204093 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u204093_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u204094_div {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:122px;
  2537. height:25px;
  2538. background:inherit;
  2539. background-color:rgba(255, 255, 255, 0);
  2540. border:none;
  2541. border-left:0px;
  2542. border-top:0px;
  2543. border-right:0px;
  2544. border-radius:0px;
  2545. border-bottom-right-radius:0px;
  2546. border-bottom-left-radius:0px;
  2547. -moz-box-shadow:none;
  2548. -webkit-box-shadow:none;
  2549. box-shadow:none;
  2550. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2551. font-weight:500;
  2552. font-style:normal;
  2553. font-size:14px;
  2554. line-height:25px;
  2555. }
  2556. #u204094 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:101px;
  2560. top:516px;
  2561. width:122px;
  2562. height:25px;
  2563. display:flex;
  2564. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2565. font-weight:500;
  2566. font-style:normal;
  2567. font-size:14px;
  2568. line-height:25px;
  2569. }
  2570. #u204094 .text {
  2571. position:absolute;
  2572. align-self:center;
  2573. padding:0px 0px 0px 0px;
  2574. box-sizing:border-box;
  2575. width:100%;
  2576. }
  2577. #u204094_text {
  2578. border-width:0px;
  2579. white-space:nowrap;
  2580. text-transform:none;
  2581. }
  2582. #u204095_div {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:29px;
  2588. height:30px;
  2589. background:inherit;
  2590. background-color:rgba(255, 255, 255, 0);
  2591. border:none;
  2592. border-left:0px;
  2593. border-top:0px;
  2594. border-right:0px;
  2595. border-radius:0px;
  2596. border-bottom-right-radius:0px;
  2597. border-bottom-left-radius:0px;
  2598. -moz-box-shadow:none;
  2599. -webkit-box-shadow:none;
  2600. box-shadow:none;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:14px;
  2605. color:#0089FE;
  2606. line-height:30px;
  2607. }
  2608. #u204095 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:196px;
  2612. top:643px;
  2613. width:29px;
  2614. height:30px;
  2615. display:flex;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:14px;
  2620. color:#0089FE;
  2621. line-height:30px;
  2622. }
  2623. #u204095 .text {
  2624. position:absolute;
  2625. align-self:flex-start;
  2626. padding:0px 0px 0px 0px;
  2627. box-sizing:border-box;
  2628. width:100%;
  2629. }
  2630. #u204095_text {
  2631. border-width:0px;
  2632. white-space:nowrap;
  2633. text-transform:none;
  2634. }
  2635. #u204097_img {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:433px;
  2641. height:865px;
  2642. }
  2643. #u204097 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:453px;
  2647. top:0px;
  2648. width:433px;
  2649. height:865px;
  2650. display:flex;
  2651. }
  2652. #u204097 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 2px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u204097_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. visibility:hidden;
  2664. }
  2665. #u204098_div {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:375px;
  2671. height:40px;
  2672. background:inherit;
  2673. background-color:rgba(255, 255, 255, 1);
  2674. box-sizing:border-box;
  2675. border-width:1px;
  2676. border-style:solid;
  2677. border-color:rgba(215, 215, 215, 1);
  2678. border-left:0px;
  2679. border-top:0px;
  2680. border-right:0px;
  2681. border-radius:0px;
  2682. border-bottom-right-radius:0px;
  2683. border-bottom-left-radius:0px;
  2684. -moz-box-shadow:none;
  2685. -webkit-box-shadow:none;
  2686. box-shadow:none;
  2687. }
  2688. #u204098 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:482px;
  2692. top:67px;
  2693. width:375px;
  2694. height:40px;
  2695. display:flex;
  2696. }
  2697. #u204098 .text {
  2698. position:absolute;
  2699. align-self:center;
  2700. padding:2px 2px 2px 2px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u204098_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. visibility:hidden;
  2709. }
  2710. #u204099 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:0px;
  2716. height:0px;
  2717. }
  2718. #u204100_div {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:88px;
  2724. height:32px;
  2725. background:inherit;
  2726. background-color:rgba(255, 255, 255, 1);
  2727. box-sizing:border-box;
  2728. border-width:1px;
  2729. border-style:solid;
  2730. border-color:rgba(242, 242, 242, 1);
  2731. border-radius:33px;
  2732. -moz-box-shadow:none;
  2733. -webkit-box-shadow:none;
  2734. box-shadow:none;
  2735. }
  2736. #u204100 {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:762px;
  2740. top:71px;
  2741. width:88px;
  2742. height:32px;
  2743. display:flex;
  2744. }
  2745. #u204100 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:2px 2px 2px 2px;
  2749. box-sizing:border-box;
  2750. width:100%;
  2751. }
  2752. #u204100_text {
  2753. border-width:0px;
  2754. word-wrap:break-word;
  2755. text-transform:none;
  2756. visibility:hidden;
  2757. }
  2758. #u204101 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:0px;
  2764. height:0px;
  2765. }
  2766. #u204102_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:18px;
  2772. height:18px;
  2773. }
  2774. #u204102 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:825px;
  2778. top:78px;
  2779. width:18px;
  2780. height:18px;
  2781. display:flex;
  2782. }
  2783. #u204102 .text {
  2784. position:absolute;
  2785. align-self:center;
  2786. padding:2px 2px 2px 2px;
  2787. box-sizing:border-box;
  2788. width:100%;
  2789. }
  2790. #u204102_text {
  2791. border-width:0px;
  2792. word-wrap:break-word;
  2793. text-transform:none;
  2794. visibility:hidden;
  2795. }
  2796. #u204103_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:6px;
  2802. height:6px;
  2803. }
  2804. #u204103 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:831px;
  2808. top:84px;
  2809. width:6px;
  2810. height:6px;
  2811. display:flex;
  2812. }
  2813. #u204103 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 2px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u204103_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u204104 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:0px;
  2832. height:0px;
  2833. }
  2834. #u204105_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:5px;
  2840. height:5px;
  2841. }
  2842. #u204105 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:776px;
  2846. top:85px;
  2847. width:5px;
  2848. height:5px;
  2849. display:flex;
  2850. }
  2851. #u204105 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 2px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u204105_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. visibility:hidden;
  2863. }
  2864. #u204106_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:5px;
  2870. height:5px;
  2871. }
  2872. #u204106 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:792px;
  2876. top:85px;
  2877. width:5px;
  2878. height:5px;
  2879. display:flex;
  2880. }
  2881. #u204106 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 2px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u204106_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. visibility:hidden;
  2893. }
  2894. #u204107_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:7px;
  2900. height:7px;
  2901. }
  2902. #u204107 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:783px;
  2906. top:84px;
  2907. width:7px;
  2908. height:7px;
  2909. display:flex;
  2910. }
  2911. #u204107 .text {
  2912. position:absolute;
  2913. align-self:center;
  2914. padding:2px 2px 2px 2px;
  2915. box-sizing:border-box;
  2916. width:100%;
  2917. }
  2918. #u204107_text {
  2919. border-width:0px;
  2920. word-wrap:break-word;
  2921. text-transform:none;
  2922. visibility:hidden;
  2923. }
  2924. #u204108_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:19px;
  2930. height:2px;
  2931. }
  2932. #u204108 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:800px;
  2936. top:87px;
  2937. width:18px;
  2938. height:1px;
  2939. display:flex;
  2940. -webkit-transform:rotate(90deg);
  2941. -moz-transform:rotate(90deg);
  2942. -ms-transform:rotate(90deg);
  2943. transform:rotate(90deg);
  2944. }
  2945. #u204108 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:2px 2px 2px 2px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u204108_text {
  2953. border-width:0px;
  2954. word-wrap:break-word;
  2955. text-transform:none;
  2956. visibility:hidden;
  2957. }
  2958. #u204109_img {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:375px;
  2964. height:44px;
  2965. }
  2966. #u204109 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:482px;
  2970. top:24px;
  2971. width:375px;
  2972. height:44px;
  2973. display:flex;
  2974. }
  2975. #u204109 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u204109_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. visibility:hidden;
  2987. }
  2988. #u204110_div {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:375px;
  2994. height:50px;
  2995. background:inherit;
  2996. background-color:rgba(255, 255, 255, 1);
  2997. box-sizing:border-box;
  2998. border-width:1px;
  2999. border-style:solid;
  3000. border-color:rgba(242, 242, 242, 1);
  3001. border-radius:26px;
  3002. border-top-left-radius:0px;
  3003. border-top-right-radius:0px;
  3004. -moz-box-shadow:none;
  3005. -webkit-box-shadow:none;
  3006. box-shadow:none;
  3007. }
  3008. #u204110 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:482px;
  3012. top:788px;
  3013. width:375px;
  3014. height:50px;
  3015. display:flex;
  3016. }
  3017. #u204110 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u204110_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u204111 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:0px;
  3036. height:0px;
  3037. }
  3038. #u204112_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:24px;
  3044. height:24px;
  3045. }
  3046. #u204112 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:522px;
  3050. top:792px;
  3051. width:24px;
  3052. height:24px;
  3053. display:flex;
  3054. font-size:8px;
  3055. }
  3056. #u204112 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u204112_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. }
  3068. #u204113_div {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:25px;
  3074. height:17px;
  3075. background:inherit;
  3076. background-color:rgba(255, 255, 255, 0);
  3077. border:none;
  3078. border-radius:0px;
  3079. -moz-box-shadow:none;
  3080. -webkit-box-shadow:none;
  3081. box-shadow:none;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. }
  3087. #u204113 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:522px;
  3091. top:817px;
  3092. width:25px;
  3093. height:17px;
  3094. display:flex;
  3095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:12px;
  3099. }
  3100. #u204113 .text {
  3101. position:absolute;
  3102. align-self:flex-start;
  3103. padding:0px 0px 0px 0px;
  3104. box-sizing:border-box;
  3105. width:100%;
  3106. }
  3107. #u204113_text {
  3108. border-width:0px;
  3109. white-space:nowrap;
  3110. text-transform:none;
  3111. }
  3112. #u204114 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:0px;
  3118. height:0px;
  3119. }
  3120. #u204115_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:24px;
  3126. height:24px;
  3127. }
  3128. #u204115 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:792px;
  3132. top:794px;
  3133. width:24px;
  3134. height:24px;
  3135. display:flex;
  3136. font-size:8px;
  3137. }
  3138. #u204115 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u204115_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. }
  3150. #u204116_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:25px;
  3156. height:17px;
  3157. background:inherit;
  3158. background-color:rgba(255, 255, 255, 0);
  3159. border:none;
  3160. border-radius:0px;
  3161. -moz-box-shadow:none;
  3162. -webkit-box-shadow:none;
  3163. box-shadow:none;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:12px;
  3168. }
  3169. #u204116 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:792px;
  3173. top:819px;
  3174. width:25px;
  3175. height:17px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. }
  3182. #u204116 .text {
  3183. position:absolute;
  3184. align-self:flex-start;
  3185. padding:0px 0px 0px 0px;
  3186. box-sizing:border-box;
  3187. width:100%;
  3188. }
  3189. #u204116_text {
  3190. border-width:0px;
  3191. white-space:nowrap;
  3192. text-transform:none;
  3193. }
  3194. #u204117_div {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:375px;
  3200. height:681px;
  3201. background:inherit;
  3202. background-color:rgba(242, 242, 242, 0.462745098039216);
  3203. border:none;
  3204. border-radius:0px;
  3205. -moz-box-shadow:none;
  3206. -webkit-box-shadow:none;
  3207. box-shadow:none;
  3208. }
  3209. #u204117 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:482px;
  3213. top:107px;
  3214. width:375px;
  3215. height:681px;
  3216. display:flex;
  3217. }
  3218. #u204117 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u204117_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u204118 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:0px;
  3237. height:0px;
  3238. }
  3239. #u204119_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:24px;
  3245. height:24px;
  3246. }
  3247. #u204119 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:704px;
  3251. top:792px;
  3252. width:24px;
  3253. height:24px;
  3254. display:flex;
  3255. font-size:8px;
  3256. }
  3257. #u204119 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 2px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u204119_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. }
  3269. #u204120_div {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:37px;
  3275. height:17px;
  3276. background:inherit;
  3277. background-color:rgba(255, 255, 255, 0);
  3278. border:none;
  3279. border-radius:0px;
  3280. -moz-box-shadow:none;
  3281. -webkit-box-shadow:none;
  3282. box-shadow:none;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. }
  3288. #u204120 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:698px;
  3292. top:817px;
  3293. width:37px;
  3294. height:17px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. }
  3301. #u204120 .text {
  3302. position:absolute;
  3303. align-self:flex-start;
  3304. padding:0px 0px 0px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u204120_text {
  3309. border-width:0px;
  3310. white-space:nowrap;
  3311. text-transform:none;
  3312. }
  3313. #u204121 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:0px;
  3319. height:0px;
  3320. }
  3321. #u204122_img {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:24px;
  3327. height:24px;
  3328. }
  3329. #u204122 {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:610px;
  3333. top:792px;
  3334. width:24px;
  3335. height:24px;
  3336. display:flex;
  3337. font-size:8px;
  3338. }
  3339. #u204122 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 2px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u204122_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. }
  3351. #u204123_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:37px;
  3357. height:17px;
  3358. background:inherit;
  3359. background-color:rgba(255, 255, 255, 0);
  3360. border:none;
  3361. border-radius:0px;
  3362. -moz-box-shadow:none;
  3363. -webkit-box-shadow:none;
  3364. box-shadow:none;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:12px;
  3369. }
  3370. #u204123 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:604px;
  3374. top:817px;
  3375. width:37px;
  3376. height:17px;
  3377. display:flex;
  3378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:12px;
  3382. }
  3383. #u204123 .text {
  3384. position:absolute;
  3385. align-self:flex-start;
  3386. padding:0px 0px 0px 0px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u204123_text {
  3391. border-width:0px;
  3392. white-space:nowrap;
  3393. text-transform:none;
  3394. }
  3395. #u204124_div {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:375px;
  3401. height:731px;
  3402. background:inherit;
  3403. background-color:rgba(242, 242, 242, 0.996078431372549);
  3404. border:none;
  3405. border-top:0px;
  3406. border-radius:28px;
  3407. border-top-left-radius:0px;
  3408. border-top-right-radius:0px;
  3409. -moz-box-shadow:none;
  3410. -webkit-box-shadow:none;
  3411. box-shadow:none;
  3412. }
  3413. #u204124 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:482px;
  3417. top:107px;
  3418. width:375px;
  3419. height:731px;
  3420. display:flex;
  3421. }
  3422. #u204124 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 2px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u204124_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u204125_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:375px;
  3441. height:40px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 1);
  3444. box-sizing:border-box;
  3445. border-width:1px;
  3446. border-style:solid;
  3447. border-color:rgba(215, 215, 215, 1);
  3448. border-left:0px;
  3449. border-top:0px;
  3450. border-right:0px;
  3451. border-radius:0px;
  3452. border-bottom-right-radius:0px;
  3453. border-bottom-left-radius:0px;
  3454. -moz-box-shadow:none;
  3455. -webkit-box-shadow:none;
  3456. box-shadow:none;
  3457. }
  3458. #u204125 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:482px;
  3462. top:67px;
  3463. width:375px;
  3464. height:40px;
  3465. display:flex;
  3466. }
  3467. #u204125 .text {
  3468. position:absolute;
  3469. align-self:center;
  3470. padding:2px 2px 2px 2px;
  3471. box-sizing:border-box;
  3472. width:100%;
  3473. }
  3474. #u204125_text {
  3475. border-width:0px;
  3476. word-wrap:break-word;
  3477. text-transform:none;
  3478. visibility:hidden;
  3479. }
  3480. #u204126_img {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:375px;
  3486. height:44px;
  3487. }
  3488. #u204126 {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:482px;
  3492. top:24px;
  3493. width:375px;
  3494. height:44px;
  3495. display:flex;
  3496. }
  3497. #u204126 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u204126_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u204127 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:0px;
  3516. height:0px;
  3517. }
  3518. #u204128_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:88px;
  3524. height:32px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 1);
  3527. box-sizing:border-box;
  3528. border-width:1px;
  3529. border-style:solid;
  3530. border-color:rgba(242, 242, 242, 1);
  3531. border-radius:33px;
  3532. -moz-box-shadow:none;
  3533. -webkit-box-shadow:none;
  3534. box-shadow:none;
  3535. }
  3536. #u204128 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:762px;
  3540. top:71px;
  3541. width:88px;
  3542. height:32px;
  3543. display:flex;
  3544. }
  3545. #u204128 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 2px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u204128_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u204129 {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:0px;
  3564. height:0px;
  3565. }
  3566. #u204130_img {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:18px;
  3572. height:18px;
  3573. }
  3574. #u204130 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:825px;
  3578. top:78px;
  3579. width:18px;
  3580. height:18px;
  3581. display:flex;
  3582. }
  3583. #u204130 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 2px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u204130_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. visibility:hidden;
  3595. }
  3596. #u204131_img {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:6px;
  3602. height:6px;
  3603. }
  3604. #u204131 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:831px;
  3608. top:84px;
  3609. width:6px;
  3610. height:6px;
  3611. display:flex;
  3612. }
  3613. #u204131 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 2px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u204131_text {
  3621. border-width:0px;
  3622. word-wrap:break-word;
  3623. text-transform:none;
  3624. visibility:hidden;
  3625. }
  3626. #u204132 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:0px;
  3630. top:0px;
  3631. width:0px;
  3632. height:0px;
  3633. }
  3634. #u204133_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:5px;
  3640. height:5px;
  3641. }
  3642. #u204133 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:776px;
  3646. top:85px;
  3647. width:5px;
  3648. height:5px;
  3649. display:flex;
  3650. }
  3651. #u204133 .text {
  3652. position:absolute;
  3653. align-self:center;
  3654. padding:2px 2px 2px 2px;
  3655. box-sizing:border-box;
  3656. width:100%;
  3657. }
  3658. #u204133_text {
  3659. border-width:0px;
  3660. word-wrap:break-word;
  3661. text-transform:none;
  3662. visibility:hidden;
  3663. }
  3664. #u204134_img {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:0px;
  3669. width:5px;
  3670. height:5px;
  3671. }
  3672. #u204134 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:792px;
  3676. top:85px;
  3677. width:5px;
  3678. height:5px;
  3679. display:flex;
  3680. }
  3681. #u204134 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 2px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u204134_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u204135_img {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:7px;
  3700. height:7px;
  3701. }
  3702. #u204135 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:783px;
  3706. top:84px;
  3707. width:7px;
  3708. height:7px;
  3709. display:flex;
  3710. }
  3711. #u204135 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 2px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u204135_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u204136_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:19px;
  3730. height:2px;
  3731. }
  3732. #u204136 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:800px;
  3736. top:87px;
  3737. width:18px;
  3738. height:1px;
  3739. display:flex;
  3740. -webkit-transform:rotate(90deg);
  3741. -moz-transform:rotate(90deg);
  3742. -ms-transform:rotate(90deg);
  3743. transform:rotate(90deg);
  3744. }
  3745. #u204136 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 2px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u204136_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u204137_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:81px;
  3764. height:22px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 0);
  3767. border:none;
  3768. border-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:16px;
  3776. color:#000000;
  3777. }
  3778. #u204137 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:511px;
  3782. top:76px;
  3783. width:81px;
  3784. height:22px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:16px;
  3790. color:#000000;
  3791. }
  3792. #u204137 .text {
  3793. position:absolute;
  3794. align-self:flex-start;
  3795. padding:0px 0px 0px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u204137_text {
  3800. border-width:0px;
  3801. white-space:nowrap;
  3802. text-transform:none;
  3803. }
  3804. #u204138_div {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:12px;
  3810. height:12px;
  3811. background:inherit;
  3812. background-color:rgba(255, 255, 255, 0);
  3813. box-sizing:border-box;
  3814. border-width:2px;
  3815. border-style:solid;
  3816. border-color:rgba(51, 51, 51, 1);
  3817. border-right:0px;
  3818. border-bottom:0px;
  3819. border-radius:0px;
  3820. border-top-right-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. }
  3826. #u204138 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:497px;
  3830. top:81px;
  3831. width:12px;
  3832. height:12px;
  3833. display:flex;
  3834. -webkit-transform:rotate(315deg);
  3835. -moz-transform:rotate(315deg);
  3836. -ms-transform:rotate(315deg);
  3837. transform:rotate(315deg);
  3838. }
  3839. #u204138 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 2px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u204138_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u204139 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:0px;
  3858. height:0px;
  3859. }
  3860. #u204140_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:355px;
  3866. height:120px;
  3867. }
  3868. #u204140 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:492px;
  3872. top:117px;
  3873. width:355px;
  3874. height:120px;
  3875. display:flex;
  3876. }
  3877. #u204140 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 2px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u204140_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u204141_div {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:85px;
  3896. height:30px;
  3897. background:inherit;
  3898. background-color:rgba(255, 255, 255, 0);
  3899. border:none;
  3900. border-left:0px;
  3901. border-top:0px;
  3902. border-right:0px;
  3903. border-radius:0px;
  3904. border-bottom-right-radius:0px;
  3905. border-bottom-left-radius:0px;
  3906. -moz-box-shadow:none;
  3907. -webkit-box-shadow:none;
  3908. box-shadow:none;
  3909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3910. font-weight:500;
  3911. font-style:normal;
  3912. font-size:14px;
  3913. line-height:30px;
  3914. }
  3915. #u204141 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:548px;
  3919. top:124px;
  3920. width:85px;
  3921. height:30px;
  3922. display:flex;
  3923. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3924. font-weight:500;
  3925. font-style:normal;
  3926. font-size:14px;
  3927. line-height:30px;
  3928. }
  3929. #u204141 .text {
  3930. position:absolute;
  3931. align-self:flex-start;
  3932. padding:0px 0px 0px 0px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u204141_text {
  3937. border-width:0px;
  3938. white-space:nowrap;
  3939. text-transform:none;
  3940. }
  3941. #u204142_div {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:325px;
  3947. height:75px;
  3948. background:inherit;
  3949. background-color:rgba(255, 255, 255, 0);
  3950. border:none;
  3951. border-left:0px;
  3952. border-top:0px;
  3953. border-right:0px;
  3954. border-radius:0px;
  3955. border-bottom-right-radius:0px;
  3956. border-bottom-left-radius:0px;
  3957. -moz-box-shadow:none;
  3958. -webkit-box-shadow:none;
  3959. box-shadow:none;
  3960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3961. font-weight:400;
  3962. font-style:normal;
  3963. font-size:12px;
  3964. line-height:25px;
  3965. }
  3966. #u204142 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:508px;
  3970. top:157px;
  3971. width:325px;
  3972. height:75px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:12px;
  3978. line-height:25px;
  3979. }
  3980. #u204142 .text {
  3981. position:absolute;
  3982. align-self:flex-start;
  3983. padding:0px 0px 0px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u204142_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. }
  3992. #u204143_div {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:30px;
  3998. height:16px;
  3999. background:inherit;
  4000. background-color:rgba(128, 128, 255, 1);
  4001. border:none;
  4002. border-radius:2px;
  4003. -moz-box-shadow:none;
  4004. -webkit-box-shadow:none;
  4005. box-shadow:none;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:10px;
  4010. color:#FFFFFF;
  4011. text-align:center;
  4012. }
  4013. #u204143 {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:508px;
  4017. top:131px;
  4018. width:30px;
  4019. height:16px;
  4020. display:flex;
  4021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4022. font-weight:400;
  4023. font-style:normal;
  4024. font-size:10px;
  4025. color:#FFFFFF;
  4026. text-align:center;
  4027. }
  4028. #u204143 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:0px 0px 0px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u204143_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. }
  4040. #u204144_div {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:47px;
  4046. height:40px;
  4047. background:inherit;
  4048. background-color:rgba(242, 242, 242, 1);
  4049. border:none;
  4050. border-left:0px;
  4051. border-top:0px;
  4052. border-right:0px;
  4053. border-radius:4px;
  4054. border-bottom-right-radius:0px;
  4055. border-bottom-left-radius:0px;
  4056. -moz-box-shadow:none;
  4057. -webkit-box-shadow:none;
  4058. box-shadow:none;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:14px;
  4063. color:#555555;
  4064. text-align:left;
  4065. }
  4066. #u204144 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:502px;
  4070. top:237px;
  4071. width:47px;
  4072. height:40px;
  4073. display:flex;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:14px;
  4078. color:#555555;
  4079. text-align:left;
  4080. }
  4081. #u204144 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:5px 0px 5px 0px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u204144_text {
  4089. border-width:0px;
  4090. white-space:nowrap;
  4091. text-transform:none;
  4092. }
  4093. #u204145_div {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:47px;
  4099. height:40px;
  4100. background:inherit;
  4101. background-color:rgba(242, 242, 242, 1);
  4102. box-sizing:border-box;
  4103. border-width:2px;
  4104. border-style:solid;
  4105. border-color:rgba(0, 137, 254, 1);
  4106. border-left:0px;
  4107. border-top:0px;
  4108. border-right:0px;
  4109. border-radius:4px;
  4110. border-bottom-right-radius:0px;
  4111. border-bottom-left-radius:0px;
  4112. -moz-box-shadow:none;
  4113. -webkit-box-shadow:none;
  4114. box-shadow:none;
  4115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4116. font-weight:400;
  4117. font-style:normal;
  4118. font-size:14px;
  4119. color:#0089FE;
  4120. text-align:left;
  4121. }
  4122. #u204145 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:576px;
  4126. top:237px;
  4127. width:47px;
  4128. height:40px;
  4129. display:flex;
  4130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4131. font-weight:400;
  4132. font-style:normal;
  4133. font-size:14px;
  4134. color:#0089FE;
  4135. text-align:left;
  4136. }
  4137. #u204145 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:5px 0px 5px 0px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u204145_text {
  4145. border-width:0px;
  4146. white-space:nowrap;
  4147. text-transform:none;
  4148. }
  4149. #u204146_div {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:47px;
  4155. height:40px;
  4156. background:inherit;
  4157. background-color:rgba(242, 242, 242, 1);
  4158. border:none;
  4159. border-left:0px;
  4160. border-top:0px;
  4161. border-right:0px;
  4162. border-radius:4px;
  4163. border-bottom-right-radius:0px;
  4164. border-bottom-left-radius:0px;
  4165. -moz-box-shadow:none;
  4166. -webkit-box-shadow:none;
  4167. box-shadow:none;
  4168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4169. font-weight:400;
  4170. font-style:normal;
  4171. font-size:14px;
  4172. color:#555555;
  4173. text-align:left;
  4174. }
  4175. #u204146 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:649px;
  4179. top:237px;
  4180. width:47px;
  4181. height:40px;
  4182. display:flex;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:14px;
  4187. color:#555555;
  4188. text-align:left;
  4189. }
  4190. #u204146 .text {
  4191. position:absolute;
  4192. align-self:center;
  4193. padding:5px 0px 5px 0px;
  4194. box-sizing:border-box;
  4195. width:100%;
  4196. }
  4197. #u204146_text {
  4198. border-width:0px;
  4199. white-space:nowrap;
  4200. text-transform:none;
  4201. }
  4202. #u204147_div {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:44px;
  4208. height:40px;
  4209. background:inherit;
  4210. background-color:rgba(242, 242, 242, 1);
  4211. border:none;
  4212. border-left:0px;
  4213. border-top:0px;
  4214. border-right:0px;
  4215. border-radius:4px;
  4216. border-bottom-right-radius:0px;
  4217. border-bottom-left-radius:0px;
  4218. -moz-box-shadow:none;
  4219. -webkit-box-shadow:none;
  4220. box-shadow:none;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:14px;
  4225. color:#555555;
  4226. text-align:left;
  4227. }
  4228. #u204147 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:723px;
  4232. top:237px;
  4233. width:44px;
  4234. height:40px;
  4235. display:flex;
  4236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:14px;
  4240. color:#555555;
  4241. text-align:left;
  4242. }
  4243. #u204147 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:5px 0px 5px 0px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u204147_text {
  4251. border-width:0px;
  4252. white-space:nowrap;
  4253. text-transform:none;
  4254. }
  4255. #u204148_div {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:47px;
  4261. height:40px;
  4262. background:inherit;
  4263. background-color:rgba(242, 242, 242, 1);
  4264. border:none;
  4265. border-left:0px;
  4266. border-top:0px;
  4267. border-right:0px;
  4268. border-radius:4px;
  4269. border-bottom-right-radius:0px;
  4270. border-bottom-left-radius:0px;
  4271. -moz-box-shadow:none;
  4272. -webkit-box-shadow:none;
  4273. box-shadow:none;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. color:#555555;
  4279. text-align:left;
  4280. }
  4281. #u204148 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:793px;
  4285. top:237px;
  4286. width:47px;
  4287. height:40px;
  4288. display:flex;
  4289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:14px;
  4293. color:#555555;
  4294. text-align:left;
  4295. }
  4296. #u204148 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:5px 0px 5px 0px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u204148_text {
  4304. border-width:0px;
  4305. white-space:nowrap;
  4306. text-transform:none;
  4307. }
  4308. #u204149_div {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:375px;
  4314. height:546px;
  4315. background:inherit;
  4316. background-color:rgba(255, 255, 255, 1);
  4317. border:none;
  4318. border-left:0px;
  4319. border-top:0px;
  4320. border-right:0px;
  4321. border-radius:0px;
  4322. border-bottom-right-radius:0px;
  4323. border-bottom-left-radius:0px;
  4324. -moz-box-shadow:none;
  4325. -webkit-box-shadow:none;
  4326. box-shadow:none;
  4327. }
  4328. #u204149 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:482px;
  4332. top:277px;
  4333. width:375px;
  4334. height:546px;
  4335. display:flex;
  4336. }
  4337. #u204149 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 2px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u204149_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. visibility:hidden;
  4349. }
  4350. #u204150 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:0px;
  4356. height:0px;
  4357. }
  4358. #u204151_div {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:280px;
  4364. height:30px;
  4365. background:inherit;
  4366. background-color:rgba(242, 242, 242, 1);
  4367. border:none;
  4368. border-radius:20px;
  4369. -moz-box-shadow:none;
  4370. -webkit-box-shadow:none;
  4371. box-shadow:none;
  4372. }
  4373. #u204151 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:496px;
  4377. top:287px;
  4378. width:280px;
  4379. height:30px;
  4380. display:flex;
  4381. }
  4382. #u204151 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 2px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u204151_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u204152_input {
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:239px;
  4400. height:25px;
  4401. padding:2px 2px 2px 2px;
  4402. font-family:'ArialMT', 'Arial', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:14px;
  4406. letter-spacing:normal;
  4407. color:#000000;
  4408. vertical-align:none;
  4409. text-align:left;
  4410. text-transform:none;
  4411. background-color:transparent;
  4412. border-color:transparent;
  4413. }
  4414. #u204152_input.disabled {
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:239px;
  4419. height:25px;
  4420. padding:2px 2px 2px 2px;
  4421. font-family:'ArialMT', 'Arial', sans-serif;
  4422. font-weight:400;
  4423. font-style:normal;
  4424. font-size:14px;
  4425. letter-spacing:normal;
  4426. color:#000000;
  4427. vertical-align:none;
  4428. text-align:left;
  4429. text-transform:none;
  4430. background-color:transparent;
  4431. border-color:transparent;
  4432. }
  4433. #u204152_div {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:239px;
  4439. height:25px;
  4440. background:inherit;
  4441. background-color:rgba(242, 242, 242, 1);
  4442. border:none;
  4443. border-radius:0px;
  4444. -moz-box-shadow:none;
  4445. -webkit-box-shadow:none;
  4446. box-shadow:none;
  4447. font-size:14px;
  4448. }
  4449. #u204152 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:505px;
  4453. top:290px;
  4454. width:239px;
  4455. height:25px;
  4456. display:flex;
  4457. font-size:14px;
  4458. }
  4459. #u204152 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 2px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u204152_div.disabled {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:239px;
  4472. height:25px;
  4473. background:inherit;
  4474. background-color:rgba(240, 240, 240, 1);
  4475. border:none;
  4476. border-radius:0px;
  4477. -moz-box-shadow:none;
  4478. -webkit-box-shadow:none;
  4479. box-shadow:none;
  4480. font-size:14px;
  4481. }
  4482. #u204152.disabled {
  4483. }
  4484. #u204153_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:12px;
  4490. height:12px;
  4491. }
  4492. #u204153 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:754px;
  4496. top:296px;
  4497. width:12px;
  4498. height:12px;
  4499. display:flex;
  4500. }
  4501. #u204153 .text {
  4502. position:absolute;
  4503. align-self:center;
  4504. padding:2px 2px 2px 2px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u204153_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. visibility:hidden;
  4513. }
  4514. #u204154_div {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:57px;
  4520. height:30px;
  4521. background:inherit;
  4522. background-color:rgba(255, 255, 255, 0);
  4523. border:none;
  4524. border-left:0px;
  4525. border-top:0px;
  4526. border-right:0px;
  4527. border-radius:0px;
  4528. border-bottom-right-radius:0px;
  4529. border-bottom-left-radius:0px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:14px;
  4537. color:#1890FF;
  4538. line-height:30px;
  4539. }
  4540. #u204154 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:786px;
  4544. top:287px;
  4545. width:57px;
  4546. height:30px;
  4547. display:flex;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:14px;
  4552. color:#1890FF;
  4553. line-height:30px;
  4554. }
  4555. #u204154 .text {
  4556. position:absolute;
  4557. align-self:flex-start;
  4558. padding:0px 0px 0px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u204154_text {
  4563. border-width:0px;
  4564. white-space:nowrap;
  4565. text-transform:none;
  4566. }
  4567. #u204155 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:0px;
  4573. height:0px;
  4574. }
  4575. #u204156_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:349px;
  4581. height:170px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 1);
  4584. box-sizing:border-box;
  4585. border-width:1px;
  4586. border-style:solid;
  4587. border-color:rgba(242, 242, 242, 1);
  4588. border-radius:3px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. }
  4593. #u204156 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:496px;
  4597. top:327px;
  4598. width:349px;
  4599. height:170px;
  4600. display:flex;
  4601. }
  4602. #u204156 .text {
  4603. position:absolute;
  4604. align-self:center;
  4605. padding:2px 2px 2px 2px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u204156_text {
  4610. border-width:0px;
  4611. word-wrap:break-word;
  4612. text-transform:none;
  4613. visibility:hidden;
  4614. }
  4615. #u204157 {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:0px;
  4621. height:0px;
  4622. }
  4623. #u204158_div {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:57px;
  4629. height:90px;
  4630. background:inherit;
  4631. background-color:rgba(255, 255, 255, 0);
  4632. border:none;
  4633. border-left:0px;
  4634. border-top:0px;
  4635. border-right:0px;
  4636. border-radius:0px;
  4637. border-bottom-right-radius:0px;
  4638. border-bottom-left-radius:0px;
  4639. -moz-box-shadow:none;
  4640. -webkit-box-shadow:none;
  4641. box-shadow:none;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:14px;
  4646. color:#AAAAAA;
  4647. line-height:30px;
  4648. }
  4649. #u204158 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:514px;
  4653. top:365px;
  4654. width:57px;
  4655. height:90px;
  4656. display:flex;
  4657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4658. font-weight:400;
  4659. font-style:normal;
  4660. font-size:14px;
  4661. color:#AAAAAA;
  4662. line-height:30px;
  4663. }
  4664. #u204158 .text {
  4665. position:absolute;
  4666. align-self:flex-start;
  4667. padding:0px 0px 0px 0px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u204158_text {
  4672. border-width:0px;
  4673. white-space:nowrap;
  4674. text-transform:none;
  4675. }
  4676. #u204159_div {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:85px;
  4682. height:90px;
  4683. background:inherit;
  4684. background-color:rgba(255, 255, 255, 0);
  4685. border:none;
  4686. border-left:0px;
  4687. border-top:0px;
  4688. border-right:0px;
  4689. border-radius:0px;
  4690. border-bottom-right-radius:0px;
  4691. border-bottom-left-radius:0px;
  4692. -moz-box-shadow:none;
  4693. -webkit-box-shadow:none;
  4694. box-shadow:none;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:14px;
  4699. line-height:30px;
  4700. }
  4701. #u204159 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:591px;
  4705. top:365px;
  4706. width:85px;
  4707. height:90px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:14px;
  4713. line-height:30px;
  4714. }
  4715. #u204159 .text {
  4716. position:absolute;
  4717. align-self:flex-start;
  4718. padding:0px 0px 0px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u204159_text {
  4723. border-width:0px;
  4724. white-space:nowrap;
  4725. text-transform:none;
  4726. }
  4727. #u204160_div {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:30px;
  4733. height:16px;
  4734. background:inherit;
  4735. background-color:rgba(0, 191, 191, 1);
  4736. border:none;
  4737. border-radius:2px;
  4738. -moz-box-shadow:none;
  4739. -webkit-box-shadow:none;
  4740. box-shadow:none;
  4741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:10px;
  4745. color:#FFFFFF;
  4746. text-align:center;
  4747. }
  4748. #u204160 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:514px;
  4752. top:340px;
  4753. width:30px;
  4754. height:16px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:10px;
  4760. color:#FFFFFF;
  4761. text-align:center;
  4762. }
  4763. #u204160 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:0px 0px 0px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u204160_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. }
  4775. #u204161_img {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:319px;
  4781. height:2px;
  4782. }
  4783. #u204161 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:514px;
  4787. top:460px;
  4788. width:318px;
  4789. height:1px;
  4790. display:flex;
  4791. }
  4792. #u204161 .text {
  4793. position:absolute;
  4794. align-self:center;
  4795. padding:2px 2px 2px 2px;
  4796. box-sizing:border-box;
  4797. width:100%;
  4798. }
  4799. #u204161_text {
  4800. border-width:0px;
  4801. word-wrap:break-word;
  4802. text-transform:none;
  4803. visibility:hidden;
  4804. }
  4805. #u204162_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:124px;
  4811. height:25px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4825. font-weight:500;
  4826. font-style:normal;
  4827. font-size:14px;
  4828. line-height:25px;
  4829. }
  4830. #u204162 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:554px;
  4834. top:336px;
  4835. width:124px;
  4836. height:25px;
  4837. display:flex;
  4838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4839. font-weight:500;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. line-height:25px;
  4843. }
  4844. #u204162 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:0px 0px 0px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u204162_text {
  4852. border-width:0px;
  4853. white-space:nowrap;
  4854. text-transform:none;
  4855. }
  4856. #u204163_div {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:29px;
  4862. height:30px;
  4863. background:inherit;
  4864. background-color:rgba(255, 255, 255, 0);
  4865. border:none;
  4866. border-left:0px;
  4867. border-top:0px;
  4868. border-right:0px;
  4869. border-radius:0px;
  4870. border-bottom-right-radius:0px;
  4871. border-bottom-left-radius:0px;
  4872. -moz-box-shadow:none;
  4873. -webkit-box-shadow:none;
  4874. box-shadow:none;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:14px;
  4879. color:#0089FE;
  4880. line-height:30px;
  4881. }
  4882. #u204163 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:655px;
  4886. top:463px;
  4887. width:29px;
  4888. height:30px;
  4889. display:flex;
  4890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:14px;
  4894. color:#0089FE;
  4895. line-height:30px;
  4896. }
  4897. #u204163 .text {
  4898. position:absolute;
  4899. align-self:flex-start;
  4900. padding:0px 0px 0px 0px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u204163_text {
  4905. border-width:0px;
  4906. white-space:nowrap;
  4907. text-transform:none;
  4908. }
  4909. #u204164 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:0px;
  4915. height:0px;
  4916. }
  4917. #u204165_div {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:349px;
  4923. height:170px;
  4924. background:inherit;
  4925. background-color:rgba(255, 255, 255, 1);
  4926. box-sizing:border-box;
  4927. border-width:1px;
  4928. border-style:solid;
  4929. border-color:rgba(242, 242, 242, 1);
  4930. border-radius:3px;
  4931. -moz-box-shadow:none;
  4932. -webkit-box-shadow:none;
  4933. box-shadow:none;
  4934. }
  4935. #u204165 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:496px;
  4939. top:507px;
  4940. width:349px;
  4941. height:170px;
  4942. display:flex;
  4943. }
  4944. #u204165 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 2px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u204165_text {
  4952. border-width:0px;
  4953. word-wrap:break-word;
  4954. text-transform:none;
  4955. visibility:hidden;
  4956. }
  4957. #u204166 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:0px;
  4963. height:0px;
  4964. }
  4965. #u204167_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:57px;
  4971. height:90px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 0);
  4974. border:none;
  4975. border-left:0px;
  4976. border-top:0px;
  4977. border-right:0px;
  4978. border-radius:0px;
  4979. border-bottom-right-radius:0px;
  4980. border-bottom-left-radius:0px;
  4981. -moz-box-shadow:none;
  4982. -webkit-box-shadow:none;
  4983. box-shadow:none;
  4984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:14px;
  4988. color:#AAAAAA;
  4989. line-height:30px;
  4990. }
  4991. #u204167 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:514px;
  4995. top:545px;
  4996. width:57px;
  4997. height:90px;
  4998. display:flex;
  4999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5000. font-weight:400;
  5001. font-style:normal;
  5002. font-size:14px;
  5003. color:#AAAAAA;
  5004. line-height:30px;
  5005. }
  5006. #u204167 .text {
  5007. position:absolute;
  5008. align-self:flex-start;
  5009. padding:0px 0px 0px 0px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u204167_text {
  5014. border-width:0px;
  5015. white-space:nowrap;
  5016. text-transform:none;
  5017. }
  5018. #u204168_div {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:85px;
  5024. height:90px;
  5025. background:inherit;
  5026. background-color:rgba(255, 255, 255, 0);
  5027. border:none;
  5028. border-left:0px;
  5029. border-top:0px;
  5030. border-right:0px;
  5031. border-radius:0px;
  5032. border-bottom-right-radius:0px;
  5033. border-bottom-left-radius:0px;
  5034. -moz-box-shadow:none;
  5035. -webkit-box-shadow:none;
  5036. box-shadow:none;
  5037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5038. font-weight:400;
  5039. font-style:normal;
  5040. font-size:14px;
  5041. line-height:30px;
  5042. }
  5043. #u204168 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:591px;
  5047. top:545px;
  5048. width:85px;
  5049. height:90px;
  5050. display:flex;
  5051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5052. font-weight:400;
  5053. font-style:normal;
  5054. font-size:14px;
  5055. line-height:30px;
  5056. }
  5057. #u204168 .text {
  5058. position:absolute;
  5059. align-self:flex-start;
  5060. padding:0px 0px 0px 0px;
  5061. box-sizing:border-box;
  5062. width:100%;
  5063. }
  5064. #u204168_text {
  5065. border-width:0px;
  5066. white-space:nowrap;
  5067. text-transform:none;
  5068. }
  5069. #u204169_div {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:30px;
  5075. height:16px;
  5076. background:inherit;
  5077. background-color:rgba(170, 170, 170, 1);
  5078. border:none;
  5079. border-radius:2px;
  5080. -moz-box-shadow:none;
  5081. -webkit-box-shadow:none;
  5082. box-shadow:none;
  5083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. font-size:10px;
  5087. color:#FFFFFF;
  5088. text-align:center;
  5089. }
  5090. #u204169 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:514px;
  5094. top:520px;
  5095. width:30px;
  5096. height:16px;
  5097. display:flex;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:10px;
  5102. color:#FFFFFF;
  5103. text-align:center;
  5104. }
  5105. #u204169 .text {
  5106. position:absolute;
  5107. align-self:center;
  5108. padding:0px 0px 0px 0px;
  5109. box-sizing:border-box;
  5110. width:100%;
  5111. }
  5112. #u204169_text {
  5113. border-width:0px;
  5114. word-wrap:break-word;
  5115. text-transform:none;
  5116. }
  5117. #u204170_img {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:319px;
  5123. height:2px;
  5124. }
  5125. #u204170 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:514px;
  5129. top:640px;
  5130. width:318px;
  5131. height:1px;
  5132. display:flex;
  5133. }
  5134. #u204170 .text {
  5135. position:absolute;
  5136. align-self:center;
  5137. padding:2px 2px 2px 2px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u204170_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u204171_div {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:122px;
  5153. height:25px;
  5154. background:inherit;
  5155. background-color:rgba(255, 255, 255, 0);
  5156. border:none;
  5157. border-left:0px;
  5158. border-top:0px;
  5159. border-right:0px;
  5160. border-radius:0px;
  5161. border-bottom-right-radius:0px;
  5162. border-bottom-left-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5167. font-weight:500;
  5168. font-style:normal;
  5169. font-size:14px;
  5170. line-height:25px;
  5171. }
  5172. #u204171 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:554px;
  5176. top:516px;
  5177. width:122px;
  5178. height:25px;
  5179. display:flex;
  5180. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5181. font-weight:500;
  5182. font-style:normal;
  5183. font-size:14px;
  5184. line-height:25px;
  5185. }
  5186. #u204171 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:0px 0px 0px 0px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u204171_text {
  5194. border-width:0px;
  5195. white-space:nowrap;
  5196. text-transform:none;
  5197. }
  5198. #u204172_div {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:29px;
  5204. height:30px;
  5205. background:inherit;
  5206. background-color:rgba(255, 255, 255, 0);
  5207. border:none;
  5208. border-left:0px;
  5209. border-top:0px;
  5210. border-right:0px;
  5211. border-radius:0px;
  5212. border-bottom-right-radius:0px;
  5213. border-bottom-left-radius:0px;
  5214. -moz-box-shadow:none;
  5215. -webkit-box-shadow:none;
  5216. box-shadow:none;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:14px;
  5221. color:#0089FE;
  5222. line-height:30px;
  5223. }
  5224. #u204172 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:652px;
  5228. top:644px;
  5229. width:29px;
  5230. height:30px;
  5231. display:flex;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:14px;
  5236. color:#0089FE;
  5237. line-height:30px;
  5238. }
  5239. #u204172 .text {
  5240. position:absolute;
  5241. align-self:flex-start;
  5242. padding:0px 0px 0px 0px;
  5243. box-sizing:border-box;
  5244. width:100%;
  5245. }
  5246. #u204172_text {
  5247. border-width:0px;
  5248. white-space:nowrap;
  5249. text-transform:none;
  5250. }
  5251. #u204174_img {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:433px;
  5257. height:865px;
  5258. }
  5259. #u204174 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:905px;
  5263. top:0px;
  5264. width:433px;
  5265. height:865px;
  5266. display:flex;
  5267. }
  5268. #u204174 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 2px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u204174_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u204175_div {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:375px;
  5287. height:40px;
  5288. background:inherit;
  5289. background-color:rgba(255, 255, 255, 1);
  5290. box-sizing:border-box;
  5291. border-width:1px;
  5292. border-style:solid;
  5293. border-color:rgba(215, 215, 215, 1);
  5294. border-left:0px;
  5295. border-top:0px;
  5296. border-right:0px;
  5297. border-radius:0px;
  5298. border-bottom-right-radius:0px;
  5299. border-bottom-left-radius:0px;
  5300. -moz-box-shadow:none;
  5301. -webkit-box-shadow:none;
  5302. box-shadow:none;
  5303. }
  5304. #u204175 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:934px;
  5308. top:67px;
  5309. width:375px;
  5310. height:40px;
  5311. display:flex;
  5312. }
  5313. #u204175 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:2px 2px 2px 2px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u204175_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. visibility:hidden;
  5325. }
  5326. #u204176 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:0px;
  5332. height:0px;
  5333. }
  5334. #u204177_div {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:88px;
  5340. height:32px;
  5341. background:inherit;
  5342. background-color:rgba(255, 255, 255, 1);
  5343. box-sizing:border-box;
  5344. border-width:1px;
  5345. border-style:solid;
  5346. border-color:rgba(242, 242, 242, 1);
  5347. border-radius:33px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. }
  5352. #u204177 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:1214px;
  5356. top:71px;
  5357. width:88px;
  5358. height:32px;
  5359. display:flex;
  5360. }
  5361. #u204177 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 2px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u204177_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u204178 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:0px;
  5380. height:0px;
  5381. }
  5382. #u204179_img {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:18px;
  5388. height:18px;
  5389. }
  5390. #u204179 {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:1277px;
  5394. top:78px;
  5395. width:18px;
  5396. height:18px;
  5397. display:flex;
  5398. }
  5399. #u204179 .text {
  5400. position:absolute;
  5401. align-self:center;
  5402. padding:2px 2px 2px 2px;
  5403. box-sizing:border-box;
  5404. width:100%;
  5405. }
  5406. #u204179_text {
  5407. border-width:0px;
  5408. word-wrap:break-word;
  5409. text-transform:none;
  5410. visibility:hidden;
  5411. }
  5412. #u204180_img {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:6px;
  5418. height:6px;
  5419. }
  5420. #u204180 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:1283px;
  5424. top:84px;
  5425. width:6px;
  5426. height:6px;
  5427. display:flex;
  5428. }
  5429. #u204180 .text {
  5430. position:absolute;
  5431. align-self:center;
  5432. padding:2px 2px 2px 2px;
  5433. box-sizing:border-box;
  5434. width:100%;
  5435. }
  5436. #u204180_text {
  5437. border-width:0px;
  5438. word-wrap:break-word;
  5439. text-transform:none;
  5440. visibility:hidden;
  5441. }
  5442. #u204181 {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:0px;
  5448. height:0px;
  5449. }
  5450. #u204182_img {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:5px;
  5456. height:5px;
  5457. }
  5458. #u204182 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:1228px;
  5462. top:85px;
  5463. width:5px;
  5464. height:5px;
  5465. display:flex;
  5466. }
  5467. #u204182 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:2px 2px 2px 2px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u204182_text {
  5475. border-width:0px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. visibility:hidden;
  5479. }
  5480. #u204183_img {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:5px;
  5486. height:5px;
  5487. }
  5488. #u204183 {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:1244px;
  5492. top:85px;
  5493. width:5px;
  5494. height:5px;
  5495. display:flex;
  5496. }
  5497. #u204183 .text {
  5498. position:absolute;
  5499. align-self:center;
  5500. padding:2px 2px 2px 2px;
  5501. box-sizing:border-box;
  5502. width:100%;
  5503. }
  5504. #u204183_text {
  5505. border-width:0px;
  5506. word-wrap:break-word;
  5507. text-transform:none;
  5508. visibility:hidden;
  5509. }
  5510. #u204184_img {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:7px;
  5516. height:7px;
  5517. }
  5518. #u204184 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:1235px;
  5522. top:84px;
  5523. width:7px;
  5524. height:7px;
  5525. display:flex;
  5526. }
  5527. #u204184 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u204184_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u204185_img {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:19px;
  5546. height:2px;
  5547. }
  5548. #u204185 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:1252px;
  5552. top:87px;
  5553. width:18px;
  5554. height:1px;
  5555. display:flex;
  5556. -webkit-transform:rotate(90deg);
  5557. -moz-transform:rotate(90deg);
  5558. -ms-transform:rotate(90deg);
  5559. transform:rotate(90deg);
  5560. }
  5561. #u204185 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:2px 2px 2px 2px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u204185_text {
  5569. border-width:0px;
  5570. word-wrap:break-word;
  5571. text-transform:none;
  5572. visibility:hidden;
  5573. }
  5574. #u204186_img {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:375px;
  5580. height:44px;
  5581. }
  5582. #u204186 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:934px;
  5586. top:24px;
  5587. width:375px;
  5588. height:44px;
  5589. display:flex;
  5590. }
  5591. #u204186 .text {
  5592. position:absolute;
  5593. align-self:center;
  5594. padding:2px 2px 2px 2px;
  5595. box-sizing:border-box;
  5596. width:100%;
  5597. }
  5598. #u204186_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u204187_div {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:375px;
  5610. height:50px;
  5611. background:inherit;
  5612. background-color:rgba(255, 255, 255, 1);
  5613. box-sizing:border-box;
  5614. border-width:1px;
  5615. border-style:solid;
  5616. border-color:rgba(242, 242, 242, 1);
  5617. border-radius:26px;
  5618. border-top-left-radius:0px;
  5619. border-top-right-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. }
  5624. #u204187 {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:934px;
  5628. top:788px;
  5629. width:375px;
  5630. height:50px;
  5631. display:flex;
  5632. }
  5633. #u204187 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u204187_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. visibility:hidden;
  5645. }
  5646. #u204188 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:0px;
  5652. height:0px;
  5653. }
  5654. #u204189_img {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:24px;
  5660. height:24px;
  5661. }
  5662. #u204189 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:974px;
  5666. top:792px;
  5667. width:24px;
  5668. height:24px;
  5669. display:flex;
  5670. font-size:8px;
  5671. }
  5672. #u204189 .text {
  5673. position:absolute;
  5674. align-self:center;
  5675. padding:2px 2px 2px 2px;
  5676. box-sizing:border-box;
  5677. width:100%;
  5678. }
  5679. #u204189_text {
  5680. border-width:0px;
  5681. word-wrap:break-word;
  5682. text-transform:none;
  5683. }
  5684. #u204190_div {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:25px;
  5690. height:17px;
  5691. background:inherit;
  5692. background-color:rgba(255, 255, 255, 0);
  5693. border:none;
  5694. border-radius:0px;
  5695. -moz-box-shadow:none;
  5696. -webkit-box-shadow:none;
  5697. box-shadow:none;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:12px;
  5702. }
  5703. #u204190 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:974px;
  5707. top:817px;
  5708. width:25px;
  5709. height:17px;
  5710. display:flex;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:12px;
  5715. }
  5716. #u204190 .text {
  5717. position:absolute;
  5718. align-self:flex-start;
  5719. padding:0px 0px 0px 0px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u204190_text {
  5724. border-width:0px;
  5725. white-space:nowrap;
  5726. text-transform:none;
  5727. }
  5728. #u204191 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:0px;
  5734. height:0px;
  5735. }
  5736. #u204192_img {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:24px;
  5742. height:24px;
  5743. }
  5744. #u204192 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:1244px;
  5748. top:794px;
  5749. width:24px;
  5750. height:24px;
  5751. display:flex;
  5752. font-size:8px;
  5753. }
  5754. #u204192 .text {
  5755. position:absolute;
  5756. align-self:center;
  5757. padding:2px 2px 2px 2px;
  5758. box-sizing:border-box;
  5759. width:100%;
  5760. }
  5761. #u204192_text {
  5762. border-width:0px;
  5763. word-wrap:break-word;
  5764. text-transform:none;
  5765. }
  5766. #u204193_div {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:25px;
  5772. height:17px;
  5773. background:inherit;
  5774. background-color:rgba(255, 255, 255, 0);
  5775. border:none;
  5776. border-radius:0px;
  5777. -moz-box-shadow:none;
  5778. -webkit-box-shadow:none;
  5779. box-shadow:none;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:12px;
  5784. }
  5785. #u204193 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:1244px;
  5789. top:819px;
  5790. width:25px;
  5791. height:17px;
  5792. display:flex;
  5793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:12px;
  5797. }
  5798. #u204193 .text {
  5799. position:absolute;
  5800. align-self:flex-start;
  5801. padding:0px 0px 0px 0px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u204193_text {
  5806. border-width:0px;
  5807. white-space:nowrap;
  5808. text-transform:none;
  5809. }
  5810. #u204194_div {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:375px;
  5816. height:681px;
  5817. background:inherit;
  5818. background-color:rgba(242, 242, 242, 0.462745098039216);
  5819. border:none;
  5820. border-radius:0px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. }
  5825. #u204194 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:934px;
  5829. top:107px;
  5830. width:375px;
  5831. height:681px;
  5832. display:flex;
  5833. }
  5834. #u204194 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u204194_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. visibility:hidden;
  5846. }
  5847. #u204195 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:0px;
  5853. height:0px;
  5854. }
  5855. #u204196_img {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:24px;
  5861. height:24px;
  5862. }
  5863. #u204196 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:1156px;
  5867. top:792px;
  5868. width:24px;
  5869. height:24px;
  5870. display:flex;
  5871. font-size:8px;
  5872. }
  5873. #u204196 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:2px 2px 2px 2px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u204196_text {
  5881. border-width:0px;
  5882. word-wrap:break-word;
  5883. text-transform:none;
  5884. }
  5885. #u204197_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:37px;
  5891. height:17px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 0);
  5894. border:none;
  5895. border-radius:0px;
  5896. -moz-box-shadow:none;
  5897. -webkit-box-shadow:none;
  5898. box-shadow:none;
  5899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5900. font-weight:400;
  5901. font-style:normal;
  5902. font-size:12px;
  5903. }
  5904. #u204197 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:1150px;
  5908. top:817px;
  5909. width:37px;
  5910. height:17px;
  5911. display:flex;
  5912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:12px;
  5916. }
  5917. #u204197 .text {
  5918. position:absolute;
  5919. align-self:flex-start;
  5920. padding:0px 0px 0px 0px;
  5921. box-sizing:border-box;
  5922. width:100%;
  5923. }
  5924. #u204197_text {
  5925. border-width:0px;
  5926. white-space:nowrap;
  5927. text-transform:none;
  5928. }
  5929. #u204198 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:0px;
  5935. height:0px;
  5936. }
  5937. #u204199_img {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:24px;
  5943. height:24px;
  5944. }
  5945. #u204199 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:1062px;
  5949. top:792px;
  5950. width:24px;
  5951. height:24px;
  5952. display:flex;
  5953. font-size:8px;
  5954. }
  5955. #u204199 .text {
  5956. position:absolute;
  5957. align-self:center;
  5958. padding:2px 2px 2px 2px;
  5959. box-sizing:border-box;
  5960. width:100%;
  5961. }
  5962. #u204199_text {
  5963. border-width:0px;
  5964. word-wrap:break-word;
  5965. text-transform:none;
  5966. }
  5967. #u204200_div {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:37px;
  5973. height:17px;
  5974. background:inherit;
  5975. background-color:rgba(255, 255, 255, 0);
  5976. border:none;
  5977. border-radius:0px;
  5978. -moz-box-shadow:none;
  5979. -webkit-box-shadow:none;
  5980. box-shadow:none;
  5981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:12px;
  5985. }
  5986. #u204200 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:1056px;
  5990. top:817px;
  5991. width:37px;
  5992. height:17px;
  5993. display:flex;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:12px;
  5998. }
  5999. #u204200 .text {
  6000. position:absolute;
  6001. align-self:flex-start;
  6002. padding:0px 0px 0px 0px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u204200_text {
  6007. border-width:0px;
  6008. white-space:nowrap;
  6009. text-transform:none;
  6010. }
  6011. #u204201_div {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:375px;
  6017. height:731px;
  6018. background:inherit;
  6019. background-color:rgba(242, 242, 242, 0.996078431372549);
  6020. border:none;
  6021. border-top:0px;
  6022. border-radius:28px;
  6023. border-top-left-radius:0px;
  6024. border-top-right-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. }
  6029. #u204201 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:934px;
  6033. top:107px;
  6034. width:375px;
  6035. height:731px;
  6036. display:flex;
  6037. }
  6038. #u204201 .text {
  6039. position:absolute;
  6040. align-self:center;
  6041. padding:2px 2px 2px 2px;
  6042. box-sizing:border-box;
  6043. width:100%;
  6044. }
  6045. #u204201_text {
  6046. border-width:0px;
  6047. word-wrap:break-word;
  6048. text-transform:none;
  6049. visibility:hidden;
  6050. }
  6051. #u204202_div {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:375px;
  6057. height:40px;
  6058. background:inherit;
  6059. background-color:rgba(255, 255, 255, 1);
  6060. box-sizing:border-box;
  6061. border-width:1px;
  6062. border-style:solid;
  6063. border-color:rgba(215, 215, 215, 1);
  6064. border-left:0px;
  6065. border-top:0px;
  6066. border-right:0px;
  6067. border-radius:0px;
  6068. border-bottom-right-radius:0px;
  6069. border-bottom-left-radius:0px;
  6070. -moz-box-shadow:none;
  6071. -webkit-box-shadow:none;
  6072. box-shadow:none;
  6073. }
  6074. #u204202 {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:934px;
  6078. top:67px;
  6079. width:375px;
  6080. height:40px;
  6081. display:flex;
  6082. }
  6083. #u204202 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:2px 2px 2px 2px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u204202_text {
  6091. border-width:0px;
  6092. word-wrap:break-word;
  6093. text-transform:none;
  6094. visibility:hidden;
  6095. }
  6096. #u204203_img {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:375px;
  6102. height:44px;
  6103. }
  6104. #u204203 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:934px;
  6108. top:24px;
  6109. width:375px;
  6110. height:44px;
  6111. display:flex;
  6112. }
  6113. #u204203 .text {
  6114. position:absolute;
  6115. align-self:center;
  6116. padding:2px 2px 2px 2px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u204203_text {
  6121. border-width:0px;
  6122. word-wrap:break-word;
  6123. text-transform:none;
  6124. visibility:hidden;
  6125. }
  6126. #u204204 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:0px;
  6132. height:0px;
  6133. }
  6134. #u204205_div {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:88px;
  6140. height:32px;
  6141. background:inherit;
  6142. background-color:rgba(255, 255, 255, 1);
  6143. box-sizing:border-box;
  6144. border-width:1px;
  6145. border-style:solid;
  6146. border-color:rgba(242, 242, 242, 1);
  6147. border-radius:33px;
  6148. -moz-box-shadow:none;
  6149. -webkit-box-shadow:none;
  6150. box-shadow:none;
  6151. }
  6152. #u204205 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:1214px;
  6156. top:71px;
  6157. width:88px;
  6158. height:32px;
  6159. display:flex;
  6160. }
  6161. #u204205 .text {
  6162. position:absolute;
  6163. align-self:center;
  6164. padding:2px 2px 2px 2px;
  6165. box-sizing:border-box;
  6166. width:100%;
  6167. }
  6168. #u204205_text {
  6169. border-width:0px;
  6170. word-wrap:break-word;
  6171. text-transform:none;
  6172. visibility:hidden;
  6173. }
  6174. #u204206 {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:0px;
  6180. height:0px;
  6181. }
  6182. #u204207_img {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:18px;
  6188. height:18px;
  6189. }
  6190. #u204207 {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:1277px;
  6194. top:78px;
  6195. width:18px;
  6196. height:18px;
  6197. display:flex;
  6198. }
  6199. #u204207 .text {
  6200. position:absolute;
  6201. align-self:center;
  6202. padding:2px 2px 2px 2px;
  6203. box-sizing:border-box;
  6204. width:100%;
  6205. }
  6206. #u204207_text {
  6207. border-width:0px;
  6208. word-wrap:break-word;
  6209. text-transform:none;
  6210. visibility:hidden;
  6211. }
  6212. #u204208_img {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:0px;
  6216. top:0px;
  6217. width:6px;
  6218. height:6px;
  6219. }
  6220. #u204208 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:1283px;
  6224. top:84px;
  6225. width:6px;
  6226. height:6px;
  6227. display:flex;
  6228. }
  6229. #u204208 .text {
  6230. position:absolute;
  6231. align-self:center;
  6232. padding:2px 2px 2px 2px;
  6233. box-sizing:border-box;
  6234. width:100%;
  6235. }
  6236. #u204208_text {
  6237. border-width:0px;
  6238. word-wrap:break-word;
  6239. text-transform:none;
  6240. visibility:hidden;
  6241. }
  6242. #u204209 {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:0px;
  6248. height:0px;
  6249. }
  6250. #u204210_img {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:5px;
  6256. height:5px;
  6257. }
  6258. #u204210 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:1228px;
  6262. top:85px;
  6263. width:5px;
  6264. height:5px;
  6265. display:flex;
  6266. }
  6267. #u204210 .text {
  6268. position:absolute;
  6269. align-self:center;
  6270. padding:2px 2px 2px 2px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u204210_text {
  6275. border-width:0px;
  6276. word-wrap:break-word;
  6277. text-transform:none;
  6278. visibility:hidden;
  6279. }
  6280. #u204211_img {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:5px;
  6286. height:5px;
  6287. }
  6288. #u204211 {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:1244px;
  6292. top:85px;
  6293. width:5px;
  6294. height:5px;
  6295. display:flex;
  6296. }
  6297. #u204211 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:2px 2px 2px 2px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u204211_text {
  6305. border-width:0px;
  6306. word-wrap:break-word;
  6307. text-transform:none;
  6308. visibility:hidden;
  6309. }
  6310. #u204212_img {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:7px;
  6316. height:7px;
  6317. }
  6318. #u204212 {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:1235px;
  6322. top:84px;
  6323. width:7px;
  6324. height:7px;
  6325. display:flex;
  6326. }
  6327. #u204212 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 2px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u204212_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u204213_img {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:19px;
  6346. height:2px;
  6347. }
  6348. #u204213 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:1252px;
  6352. top:87px;
  6353. width:18px;
  6354. height:1px;
  6355. display:flex;
  6356. -webkit-transform:rotate(90deg);
  6357. -moz-transform:rotate(90deg);
  6358. -ms-transform:rotate(90deg);
  6359. transform:rotate(90deg);
  6360. }
  6361. #u204213 .text {
  6362. position:absolute;
  6363. align-self:center;
  6364. padding:2px 2px 2px 2px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u204213_text {
  6369. border-width:0px;
  6370. word-wrap:break-word;
  6371. text-transform:none;
  6372. visibility:hidden;
  6373. }
  6374. #u204214_div {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:81px;
  6380. height:22px;
  6381. background:inherit;
  6382. background-color:rgba(255, 255, 255, 0);
  6383. border:none;
  6384. border-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:16px;
  6392. color:#000000;
  6393. }
  6394. #u204214 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:963px;
  6398. top:76px;
  6399. width:81px;
  6400. height:22px;
  6401. display:flex;
  6402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6403. font-weight:400;
  6404. font-style:normal;
  6405. font-size:16px;
  6406. color:#000000;
  6407. }
  6408. #u204214 .text {
  6409. position:absolute;
  6410. align-self:flex-start;
  6411. padding:0px 0px 0px 0px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u204214_text {
  6416. border-width:0px;
  6417. white-space:nowrap;
  6418. text-transform:none;
  6419. }
  6420. #u204215_div {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:12px;
  6426. height:12px;
  6427. background:inherit;
  6428. background-color:rgba(255, 255, 255, 0);
  6429. box-sizing:border-box;
  6430. border-width:2px;
  6431. border-style:solid;
  6432. border-color:rgba(51, 51, 51, 1);
  6433. border-right:0px;
  6434. border-bottom:0px;
  6435. border-radius:0px;
  6436. border-top-right-radius:0px;
  6437. border-bottom-left-radius:0px;
  6438. -moz-box-shadow:none;
  6439. -webkit-box-shadow:none;
  6440. box-shadow:none;
  6441. }
  6442. #u204215 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:949px;
  6446. top:81px;
  6447. width:12px;
  6448. height:12px;
  6449. display:flex;
  6450. -webkit-transform:rotate(315deg);
  6451. -moz-transform:rotate(315deg);
  6452. -ms-transform:rotate(315deg);
  6453. transform:rotate(315deg);
  6454. }
  6455. #u204215 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u204215_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u204216 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:0px;
  6474. height:0px;
  6475. }
  6476. #u204217_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:355px;
  6482. height:120px;
  6483. }
  6484. #u204217 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:944px;
  6488. top:117px;
  6489. width:355px;
  6490. height:120px;
  6491. display:flex;
  6492. }
  6493. #u204217 .text {
  6494. position:absolute;
  6495. align-self:center;
  6496. padding:2px 2px 2px 2px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u204217_text {
  6501. border-width:0px;
  6502. word-wrap:break-word;
  6503. text-transform:none;
  6504. visibility:hidden;
  6505. }
  6506. #u204218_div {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:85px;
  6512. height:30px;
  6513. background:inherit;
  6514. background-color:rgba(255, 255, 255, 0);
  6515. border:none;
  6516. border-left:0px;
  6517. border-top:0px;
  6518. border-right:0px;
  6519. border-radius:0px;
  6520. border-bottom-right-radius:0px;
  6521. border-bottom-left-radius:0px;
  6522. -moz-box-shadow:none;
  6523. -webkit-box-shadow:none;
  6524. box-shadow:none;
  6525. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6526. font-weight:500;
  6527. font-style:normal;
  6528. font-size:14px;
  6529. line-height:30px;
  6530. }
  6531. #u204218 {
  6532. border-width:0px;
  6533. position:absolute;
  6534. left:1000px;
  6535. top:124px;
  6536. width:85px;
  6537. height:30px;
  6538. display:flex;
  6539. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6540. font-weight:500;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. line-height:30px;
  6544. }
  6545. #u204218 .text {
  6546. position:absolute;
  6547. align-self:flex-start;
  6548. padding:0px 0px 0px 0px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u204218_text {
  6553. border-width:0px;
  6554. white-space:nowrap;
  6555. text-transform:none;
  6556. }
  6557. #u204219_div {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:325px;
  6563. height:75px;
  6564. background:inherit;
  6565. background-color:rgba(255, 255, 255, 0);
  6566. border:none;
  6567. border-left:0px;
  6568. border-top:0px;
  6569. border-right:0px;
  6570. border-radius:0px;
  6571. border-bottom-right-radius:0px;
  6572. border-bottom-left-radius:0px;
  6573. -moz-box-shadow:none;
  6574. -webkit-box-shadow:none;
  6575. box-shadow:none;
  6576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6577. font-weight:400;
  6578. font-style:normal;
  6579. font-size:12px;
  6580. line-height:25px;
  6581. }
  6582. #u204219 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:960px;
  6586. top:157px;
  6587. width:325px;
  6588. height:75px;
  6589. display:flex;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:12px;
  6594. line-height:25px;
  6595. }
  6596. #u204219 .text {
  6597. position:absolute;
  6598. align-self:flex-start;
  6599. padding:0px 0px 0px 0px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u204219_text {
  6604. border-width:0px;
  6605. word-wrap:break-word;
  6606. text-transform:none;
  6607. }
  6608. #u204220_div {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:0px;
  6612. top:0px;
  6613. width:30px;
  6614. height:16px;
  6615. background:inherit;
  6616. background-color:rgba(128, 128, 255, 1);
  6617. border:none;
  6618. border-radius:2px;
  6619. -moz-box-shadow:none;
  6620. -webkit-box-shadow:none;
  6621. box-shadow:none;
  6622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:10px;
  6626. color:#FFFFFF;
  6627. text-align:center;
  6628. }
  6629. #u204220 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:960px;
  6633. top:131px;
  6634. width:30px;
  6635. height:16px;
  6636. display:flex;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:10px;
  6641. color:#FFFFFF;
  6642. text-align:center;
  6643. }
  6644. #u204220 .text {
  6645. position:absolute;
  6646. align-self:center;
  6647. padding:0px 0px 0px 0px;
  6648. box-sizing:border-box;
  6649. width:100%;
  6650. }
  6651. #u204220_text {
  6652. border-width:0px;
  6653. word-wrap:break-word;
  6654. text-transform:none;
  6655. }
  6656. #u204221_div {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:47px;
  6662. height:40px;
  6663. background:inherit;
  6664. background-color:rgba(242, 242, 242, 1);
  6665. border:none;
  6666. border-left:0px;
  6667. border-top:0px;
  6668. border-right:0px;
  6669. border-radius:4px;
  6670. border-bottom-right-radius:0px;
  6671. border-bottom-left-radius:0px;
  6672. -moz-box-shadow:none;
  6673. -webkit-box-shadow:none;
  6674. box-shadow:none;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:14px;
  6679. color:#555555;
  6680. text-align:left;
  6681. }
  6682. #u204221 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:954px;
  6686. top:237px;
  6687. width:47px;
  6688. height:40px;
  6689. display:flex;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:14px;
  6694. color:#555555;
  6695. text-align:left;
  6696. }
  6697. #u204221 .text {
  6698. position:absolute;
  6699. align-self:center;
  6700. padding:5px 0px 5px 0px;
  6701. box-sizing:border-box;
  6702. width:100%;
  6703. }
  6704. #u204221_text {
  6705. border-width:0px;
  6706. white-space:nowrap;
  6707. text-transform:none;
  6708. }
  6709. #u204222_div {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:47px;
  6715. height:40px;
  6716. background:inherit;
  6717. background-color:rgba(242, 242, 242, 1);
  6718. border:none;
  6719. border-left:0px;
  6720. border-top:0px;
  6721. border-right:0px;
  6722. border-radius:4px;
  6723. border-bottom-right-radius:0px;
  6724. border-bottom-left-radius:0px;
  6725. -moz-box-shadow:none;
  6726. -webkit-box-shadow:none;
  6727. box-shadow:none;
  6728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:14px;
  6732. color:#555555;
  6733. text-align:left;
  6734. }
  6735. #u204222 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:1028px;
  6739. top:237px;
  6740. width:47px;
  6741. height:40px;
  6742. display:flex;
  6743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6744. font-weight:400;
  6745. font-style:normal;
  6746. font-size:14px;
  6747. color:#555555;
  6748. text-align:left;
  6749. }
  6750. #u204222 .text {
  6751. position:absolute;
  6752. align-self:center;
  6753. padding:5px 0px 5px 0px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u204222_text {
  6758. border-width:0px;
  6759. white-space:nowrap;
  6760. text-transform:none;
  6761. }
  6762. #u204223_div {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:47px;
  6768. height:40px;
  6769. background:inherit;
  6770. background-color:rgba(242, 242, 242, 1);
  6771. box-sizing:border-box;
  6772. border-width:2px;
  6773. border-style:solid;
  6774. border-color:rgba(0, 137, 254, 1);
  6775. border-left:0px;
  6776. border-top:0px;
  6777. border-right:0px;
  6778. border-radius:4px;
  6779. border-bottom-right-radius:0px;
  6780. border-bottom-left-radius:0px;
  6781. -moz-box-shadow:none;
  6782. -webkit-box-shadow:none;
  6783. box-shadow:none;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:14px;
  6788. color:#0089FE;
  6789. text-align:left;
  6790. }
  6791. #u204223 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:1101px;
  6795. top:237px;
  6796. width:47px;
  6797. height:40px;
  6798. display:flex;
  6799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6800. font-weight:400;
  6801. font-style:normal;
  6802. font-size:14px;
  6803. color:#0089FE;
  6804. text-align:left;
  6805. }
  6806. #u204223 .text {
  6807. position:absolute;
  6808. align-self:center;
  6809. padding:5px 0px 5px 0px;
  6810. box-sizing:border-box;
  6811. width:100%;
  6812. }
  6813. #u204223_text {
  6814. border-width:0px;
  6815. white-space:nowrap;
  6816. text-transform:none;
  6817. }
  6818. #u204224_div {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:0px;
  6822. top:0px;
  6823. width:44px;
  6824. height:40px;
  6825. background:inherit;
  6826. background-color:rgba(242, 242, 242, 1);
  6827. border:none;
  6828. border-left:0px;
  6829. border-top:0px;
  6830. border-right:0px;
  6831. border-radius:4px;
  6832. border-bottom-right-radius:0px;
  6833. border-bottom-left-radius:0px;
  6834. -moz-box-shadow:none;
  6835. -webkit-box-shadow:none;
  6836. box-shadow:none;
  6837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6838. font-weight:400;
  6839. font-style:normal;
  6840. font-size:14px;
  6841. color:#555555;
  6842. text-align:left;
  6843. }
  6844. #u204224 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:1175px;
  6848. top:237px;
  6849. width:44px;
  6850. height:40px;
  6851. display:flex;
  6852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6853. font-weight:400;
  6854. font-style:normal;
  6855. font-size:14px;
  6856. color:#555555;
  6857. text-align:left;
  6858. }
  6859. #u204224 .text {
  6860. position:absolute;
  6861. align-self:center;
  6862. padding:5px 0px 5px 0px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u204224_text {
  6867. border-width:0px;
  6868. white-space:nowrap;
  6869. text-transform:none;
  6870. }
  6871. #u204225_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:47px;
  6877. height:40px;
  6878. background:inherit;
  6879. background-color:rgba(242, 242, 242, 1);
  6880. border:none;
  6881. border-left:0px;
  6882. border-top:0px;
  6883. border-right:0px;
  6884. border-radius:4px;
  6885. border-bottom-right-radius:0px;
  6886. border-bottom-left-radius:0px;
  6887. -moz-box-shadow:none;
  6888. -webkit-box-shadow:none;
  6889. box-shadow:none;
  6890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:14px;
  6894. color:#555555;
  6895. text-align:left;
  6896. }
  6897. #u204225 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:1245px;
  6901. top:237px;
  6902. width:47px;
  6903. height:40px;
  6904. display:flex;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:14px;
  6909. color:#555555;
  6910. text-align:left;
  6911. }
  6912. #u204225 .text {
  6913. position:absolute;
  6914. align-self:center;
  6915. padding:5px 0px 5px 0px;
  6916. box-sizing:border-box;
  6917. width:100%;
  6918. }
  6919. #u204225_text {
  6920. border-width:0px;
  6921. white-space:nowrap;
  6922. text-transform:none;
  6923. }
  6924. #u204226_div {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:375px;
  6930. height:546px;
  6931. background:inherit;
  6932. background-color:rgba(255, 255, 255, 1);
  6933. border:none;
  6934. border-left:0px;
  6935. border-top:0px;
  6936. border-right:0px;
  6937. border-radius:0px;
  6938. border-bottom-right-radius:0px;
  6939. border-bottom-left-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. }
  6944. #u204226 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:934px;
  6948. top:277px;
  6949. width:375px;
  6950. height:546px;
  6951. display:flex;
  6952. }
  6953. #u204226 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:2px 2px 2px 2px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u204226_text {
  6961. border-width:0px;
  6962. word-wrap:break-word;
  6963. text-transform:none;
  6964. visibility:hidden;
  6965. }
  6966. #u204227 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:0px;
  6972. height:0px;
  6973. }
  6974. #u204228_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:280px;
  6980. height:30px;
  6981. background:inherit;
  6982. background-color:rgba(242, 242, 242, 1);
  6983. border:none;
  6984. border-radius:20px;
  6985. -moz-box-shadow:none;
  6986. -webkit-box-shadow:none;
  6987. box-shadow:none;
  6988. }
  6989. #u204228 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:948px;
  6993. top:287px;
  6994. width:280px;
  6995. height:30px;
  6996. display:flex;
  6997. }
  6998. #u204228 .text {
  6999. position:absolute;
  7000. align-self:center;
  7001. padding:2px 2px 2px 2px;
  7002. box-sizing:border-box;
  7003. width:100%;
  7004. }
  7005. #u204228_text {
  7006. border-width:0px;
  7007. word-wrap:break-word;
  7008. text-transform:none;
  7009. visibility:hidden;
  7010. }
  7011. #u204229_input {
  7012. position:absolute;
  7013. left:0px;
  7014. top:0px;
  7015. width:239px;
  7016. height:25px;
  7017. padding:2px 2px 2px 2px;
  7018. font-family:'ArialMT', 'Arial', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:14px;
  7022. letter-spacing:normal;
  7023. color:#000000;
  7024. vertical-align:none;
  7025. text-align:left;
  7026. text-transform:none;
  7027. background-color:transparent;
  7028. border-color:transparent;
  7029. }
  7030. #u204229_input.disabled {
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:239px;
  7035. height:25px;
  7036. padding:2px 2px 2px 2px;
  7037. font-family:'ArialMT', 'Arial', sans-serif;
  7038. font-weight:400;
  7039. font-style:normal;
  7040. font-size:14px;
  7041. letter-spacing:normal;
  7042. color:#000000;
  7043. vertical-align:none;
  7044. text-align:left;
  7045. text-transform:none;
  7046. background-color:transparent;
  7047. border-color:transparent;
  7048. }
  7049. #u204229_div {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:0px;
  7054. width:239px;
  7055. height:25px;
  7056. background:inherit;
  7057. background-color:rgba(242, 242, 242, 1);
  7058. border:none;
  7059. border-radius:0px;
  7060. -moz-box-shadow:none;
  7061. -webkit-box-shadow:none;
  7062. box-shadow:none;
  7063. font-size:14px;
  7064. }
  7065. #u204229 {
  7066. border-width:0px;
  7067. position:absolute;
  7068. left:957px;
  7069. top:290px;
  7070. width:239px;
  7071. height:25px;
  7072. display:flex;
  7073. font-size:14px;
  7074. }
  7075. #u204229 .text {
  7076. position:absolute;
  7077. align-self:center;
  7078. padding:2px 2px 2px 2px;
  7079. box-sizing:border-box;
  7080. width:100%;
  7081. }
  7082. #u204229_div.disabled {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:239px;
  7088. height:25px;
  7089. background:inherit;
  7090. background-color:rgba(240, 240, 240, 1);
  7091. border:none;
  7092. border-radius:0px;
  7093. -moz-box-shadow:none;
  7094. -webkit-box-shadow:none;
  7095. box-shadow:none;
  7096. font-size:14px;
  7097. }
  7098. #u204229.disabled {
  7099. }
  7100. #u204230_img {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:12px;
  7106. height:12px;
  7107. }
  7108. #u204230 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:1206px;
  7112. top:296px;
  7113. width:12px;
  7114. height:12px;
  7115. display:flex;
  7116. }
  7117. #u204230 .text {
  7118. position:absolute;
  7119. align-self:center;
  7120. padding:2px 2px 2px 2px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u204230_text {
  7125. border-width:0px;
  7126. word-wrap:break-word;
  7127. text-transform:none;
  7128. visibility:hidden;
  7129. }
  7130. #u204231_div {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:57px;
  7136. height:30px;
  7137. background:inherit;
  7138. background-color:rgba(255, 255, 255, 0);
  7139. border:none;
  7140. border-left:0px;
  7141. border-top:0px;
  7142. border-right:0px;
  7143. border-radius:0px;
  7144. border-bottom-right-radius:0px;
  7145. border-bottom-left-radius:0px;
  7146. -moz-box-shadow:none;
  7147. -webkit-box-shadow:none;
  7148. box-shadow:none;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:14px;
  7153. color:#1890FF;
  7154. line-height:30px;
  7155. }
  7156. #u204231 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:1238px;
  7160. top:287px;
  7161. width:57px;
  7162. height:30px;
  7163. display:flex;
  7164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7165. font-weight:400;
  7166. font-style:normal;
  7167. font-size:14px;
  7168. color:#1890FF;
  7169. line-height:30px;
  7170. }
  7171. #u204231 .text {
  7172. position:absolute;
  7173. align-self:flex-start;
  7174. padding:0px 0px 0px 0px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u204231_text {
  7179. border-width:0px;
  7180. white-space:nowrap;
  7181. text-transform:none;
  7182. }
  7183. #u204232 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:0px;
  7189. height:0px;
  7190. }
  7191. #u204233_div {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:349px;
  7197. height:170px;
  7198. background:inherit;
  7199. background-color:rgba(255, 255, 255, 1);
  7200. box-sizing:border-box;
  7201. border-width:1px;
  7202. border-style:solid;
  7203. border-color:rgba(242, 242, 242, 1);
  7204. border-radius:3px;
  7205. -moz-box-shadow:none;
  7206. -webkit-box-shadow:none;
  7207. box-shadow:none;
  7208. }
  7209. #u204233 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:948px;
  7213. top:327px;
  7214. width:349px;
  7215. height:170px;
  7216. display:flex;
  7217. }
  7218. #u204233 .text {
  7219. position:absolute;
  7220. align-self:center;
  7221. padding:2px 2px 2px 2px;
  7222. box-sizing:border-box;
  7223. width:100%;
  7224. }
  7225. #u204233_text {
  7226. border-width:0px;
  7227. word-wrap:break-word;
  7228. text-transform:none;
  7229. visibility:hidden;
  7230. }
  7231. #u204234 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:0px;
  7237. height:0px;
  7238. }
  7239. #u204235_div {
  7240. border-width:0px;
  7241. position:absolute;
  7242. left:0px;
  7243. top:0px;
  7244. width:57px;
  7245. height:90px;
  7246. background:inherit;
  7247. background-color:rgba(255, 255, 255, 0);
  7248. border:none;
  7249. border-left:0px;
  7250. border-top:0px;
  7251. border-right:0px;
  7252. border-radius:0px;
  7253. border-bottom-right-radius:0px;
  7254. border-bottom-left-radius:0px;
  7255. -moz-box-shadow:none;
  7256. -webkit-box-shadow:none;
  7257. box-shadow:none;
  7258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7259. font-weight:400;
  7260. font-style:normal;
  7261. font-size:14px;
  7262. color:#AAAAAA;
  7263. line-height:30px;
  7264. }
  7265. #u204235 {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:966px;
  7269. top:365px;
  7270. width:57px;
  7271. height:90px;
  7272. display:flex;
  7273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:14px;
  7277. color:#AAAAAA;
  7278. line-height:30px;
  7279. }
  7280. #u204235 .text {
  7281. position:absolute;
  7282. align-self:flex-start;
  7283. padding:0px 0px 0px 0px;
  7284. box-sizing:border-box;
  7285. width:100%;
  7286. }
  7287. #u204235_text {
  7288. border-width:0px;
  7289. white-space:nowrap;
  7290. text-transform:none;
  7291. }
  7292. #u204236_div {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:85px;
  7298. height:90px;
  7299. background:inherit;
  7300. background-color:rgba(255, 255, 255, 0);
  7301. border:none;
  7302. border-left:0px;
  7303. border-top:0px;
  7304. border-right:0px;
  7305. border-radius:0px;
  7306. border-bottom-right-radius:0px;
  7307. border-bottom-left-radius:0px;
  7308. -moz-box-shadow:none;
  7309. -webkit-box-shadow:none;
  7310. box-shadow:none;
  7311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7312. font-weight:400;
  7313. font-style:normal;
  7314. font-size:14px;
  7315. line-height:30px;
  7316. }
  7317. #u204236 {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:1043px;
  7321. top:365px;
  7322. width:85px;
  7323. height:90px;
  7324. display:flex;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:14px;
  7329. line-height:30px;
  7330. }
  7331. #u204236 .text {
  7332. position:absolute;
  7333. align-self:flex-start;
  7334. padding:0px 0px 0px 0px;
  7335. box-sizing:border-box;
  7336. width:100%;
  7337. }
  7338. #u204236_text {
  7339. border-width:0px;
  7340. white-space:nowrap;
  7341. text-transform:none;
  7342. }
  7343. #u204237_div {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:0px;
  7347. top:0px;
  7348. width:30px;
  7349. height:16px;
  7350. background:inherit;
  7351. background-color:rgba(0, 191, 191, 1);
  7352. border:none;
  7353. border-radius:2px;
  7354. -moz-box-shadow:none;
  7355. -webkit-box-shadow:none;
  7356. box-shadow:none;
  7357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7358. font-weight:400;
  7359. font-style:normal;
  7360. font-size:10px;
  7361. color:#FFFFFF;
  7362. text-align:center;
  7363. }
  7364. #u204237 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:966px;
  7368. top:340px;
  7369. width:30px;
  7370. height:16px;
  7371. display:flex;
  7372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:10px;
  7376. color:#FFFFFF;
  7377. text-align:center;
  7378. }
  7379. #u204237 .text {
  7380. position:absolute;
  7381. align-self:center;
  7382. padding:0px 0px 0px 0px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u204237_text {
  7387. border-width:0px;
  7388. word-wrap:break-word;
  7389. text-transform:none;
  7390. }
  7391. #u204238_img {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:319px;
  7397. height:2px;
  7398. }
  7399. #u204238 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:966px;
  7403. top:460px;
  7404. width:318px;
  7405. height:1px;
  7406. display:flex;
  7407. }
  7408. #u204238 .text {
  7409. position:absolute;
  7410. align-self:center;
  7411. padding:2px 2px 2px 2px;
  7412. box-sizing:border-box;
  7413. width:100%;
  7414. }
  7415. #u204238_text {
  7416. border-width:0px;
  7417. word-wrap:break-word;
  7418. text-transform:none;
  7419. visibility:hidden;
  7420. }
  7421. #u204239_div {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:124px;
  7427. height:25px;
  7428. background:inherit;
  7429. background-color:rgba(255, 255, 255, 0);
  7430. border:none;
  7431. border-left:0px;
  7432. border-top:0px;
  7433. border-right:0px;
  7434. border-radius:0px;
  7435. border-bottom-right-radius:0px;
  7436. border-bottom-left-radius:0px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7441. font-weight:500;
  7442. font-style:normal;
  7443. font-size:14px;
  7444. line-height:25px;
  7445. }
  7446. #u204239 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:1006px;
  7450. top:336px;
  7451. width:124px;
  7452. height:25px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7455. font-weight:500;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. line-height:25px;
  7459. }
  7460. #u204239 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:0px 0px 0px 0px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u204239_text {
  7468. border-width:0px;
  7469. white-space:nowrap;
  7470. text-transform:none;
  7471. }
  7472. #u204240_div {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:29px;
  7478. height:30px;
  7479. background:inherit;
  7480. background-color:rgba(255, 255, 255, 0);
  7481. border:none;
  7482. border-left:0px;
  7483. border-top:0px;
  7484. border-right:0px;
  7485. border-radius:0px;
  7486. border-bottom-right-radius:0px;
  7487. border-bottom-left-radius:0px;
  7488. -moz-box-shadow:none;
  7489. -webkit-box-shadow:none;
  7490. box-shadow:none;
  7491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:14px;
  7495. color:#0089FE;
  7496. line-height:30px;
  7497. }
  7498. #u204240 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:1107px;
  7502. top:467px;
  7503. width:29px;
  7504. height:30px;
  7505. display:flex;
  7506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7507. font-weight:400;
  7508. font-style:normal;
  7509. font-size:14px;
  7510. color:#0089FE;
  7511. line-height:30px;
  7512. }
  7513. #u204240 .text {
  7514. position:absolute;
  7515. align-self:flex-start;
  7516. padding:0px 0px 0px 0px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u204240_text {
  7521. border-width:0px;
  7522. white-space:nowrap;
  7523. text-transform:none;
  7524. }
  7525. #u204241 {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:0px;
  7531. height:0px;
  7532. }
  7533. #u204242_div {
  7534. border-width:0px;
  7535. position:absolute;
  7536. left:0px;
  7537. top:0px;
  7538. width:349px;
  7539. height:170px;
  7540. background:inherit;
  7541. background-color:rgba(255, 255, 255, 1);
  7542. box-sizing:border-box;
  7543. border-width:1px;
  7544. border-style:solid;
  7545. border-color:rgba(242, 242, 242, 1);
  7546. border-radius:3px;
  7547. -moz-box-shadow:none;
  7548. -webkit-box-shadow:none;
  7549. box-shadow:none;
  7550. }
  7551. #u204242 {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:948px;
  7555. top:507px;
  7556. width:349px;
  7557. height:170px;
  7558. display:flex;
  7559. }
  7560. #u204242 .text {
  7561. position:absolute;
  7562. align-self:center;
  7563. padding:2px 2px 2px 2px;
  7564. box-sizing:border-box;
  7565. width:100%;
  7566. }
  7567. #u204242_text {
  7568. border-width:0px;
  7569. word-wrap:break-word;
  7570. text-transform:none;
  7571. visibility:hidden;
  7572. }
  7573. #u204243 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:0px;
  7579. height:0px;
  7580. }
  7581. #u204244_div {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:57px;
  7587. height:90px;
  7588. background:inherit;
  7589. background-color:rgba(255, 255, 255, 0);
  7590. border:none;
  7591. border-left:0px;
  7592. border-top:0px;
  7593. border-right:0px;
  7594. border-radius:0px;
  7595. border-bottom-right-radius:0px;
  7596. border-bottom-left-radius:0px;
  7597. -moz-box-shadow:none;
  7598. -webkit-box-shadow:none;
  7599. box-shadow:none;
  7600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7601. font-weight:400;
  7602. font-style:normal;
  7603. font-size:14px;
  7604. color:#AAAAAA;
  7605. line-height:30px;
  7606. }
  7607. #u204244 {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:966px;
  7611. top:545px;
  7612. width:57px;
  7613. height:90px;
  7614. display:flex;
  7615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:14px;
  7619. color:#AAAAAA;
  7620. line-height:30px;
  7621. }
  7622. #u204244 .text {
  7623. position:absolute;
  7624. align-self:flex-start;
  7625. padding:0px 0px 0px 0px;
  7626. box-sizing:border-box;
  7627. width:100%;
  7628. }
  7629. #u204244_text {
  7630. border-width:0px;
  7631. white-space:nowrap;
  7632. text-transform:none;
  7633. }
  7634. #u204245_div {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:85px;
  7640. height:90px;
  7641. background:inherit;
  7642. background-color:rgba(255, 255, 255, 0);
  7643. border:none;
  7644. border-left:0px;
  7645. border-top:0px;
  7646. border-right:0px;
  7647. border-radius:0px;
  7648. border-bottom-right-radius:0px;
  7649. border-bottom-left-radius:0px;
  7650. -moz-box-shadow:none;
  7651. -webkit-box-shadow:none;
  7652. box-shadow:none;
  7653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:14px;
  7657. line-height:30px;
  7658. }
  7659. #u204245 {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:1043px;
  7663. top:545px;
  7664. width:85px;
  7665. height:90px;
  7666. display:flex;
  7667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7668. font-weight:400;
  7669. font-style:normal;
  7670. font-size:14px;
  7671. line-height:30px;
  7672. }
  7673. #u204245 .text {
  7674. position:absolute;
  7675. align-self:flex-start;
  7676. padding:0px 0px 0px 0px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u204245_text {
  7681. border-width:0px;
  7682. white-space:nowrap;
  7683. text-transform:none;
  7684. }
  7685. #u204246_div {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:30px;
  7691. height:16px;
  7692. background:inherit;
  7693. background-color:rgba(170, 170, 170, 1);
  7694. border:none;
  7695. border-radius:2px;
  7696. -moz-box-shadow:none;
  7697. -webkit-box-shadow:none;
  7698. box-shadow:none;
  7699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:10px;
  7703. color:#FFFFFF;
  7704. text-align:center;
  7705. }
  7706. #u204246 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:966px;
  7710. top:520px;
  7711. width:30px;
  7712. height:16px;
  7713. display:flex;
  7714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:10px;
  7718. color:#FFFFFF;
  7719. text-align:center;
  7720. }
  7721. #u204246 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:0px 0px 0px 0px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u204246_text {
  7729. border-width:0px;
  7730. word-wrap:break-word;
  7731. text-transform:none;
  7732. }
  7733. #u204247_img {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:319px;
  7739. height:2px;
  7740. }
  7741. #u204247 {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:966px;
  7745. top:640px;
  7746. width:318px;
  7747. height:1px;
  7748. display:flex;
  7749. }
  7750. #u204247 .text {
  7751. position:absolute;
  7752. align-self:center;
  7753. padding:2px 2px 2px 2px;
  7754. box-sizing:border-box;
  7755. width:100%;
  7756. }
  7757. #u204247_text {
  7758. border-width:0px;
  7759. word-wrap:break-word;
  7760. text-transform:none;
  7761. visibility:hidden;
  7762. }
  7763. #u204248_div {
  7764. border-width:0px;
  7765. position:absolute;
  7766. left:0px;
  7767. top:0px;
  7768. width:122px;
  7769. height:25px;
  7770. background:inherit;
  7771. background-color:rgba(255, 255, 255, 0);
  7772. border:none;
  7773. border-left:0px;
  7774. border-top:0px;
  7775. border-right:0px;
  7776. border-radius:0px;
  7777. border-bottom-right-radius:0px;
  7778. border-bottom-left-radius:0px;
  7779. -moz-box-shadow:none;
  7780. -webkit-box-shadow:none;
  7781. box-shadow:none;
  7782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7783. font-weight:500;
  7784. font-style:normal;
  7785. font-size:14px;
  7786. line-height:25px;
  7787. }
  7788. #u204248 {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:1006px;
  7792. top:516px;
  7793. width:122px;
  7794. height:25px;
  7795. display:flex;
  7796. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7797. font-weight:500;
  7798. font-style:normal;
  7799. font-size:14px;
  7800. line-height:25px;
  7801. }
  7802. #u204248 .text {
  7803. position:absolute;
  7804. align-self:center;
  7805. padding:0px 0px 0px 0px;
  7806. box-sizing:border-box;
  7807. width:100%;
  7808. }
  7809. #u204248_text {
  7810. border-width:0px;
  7811. white-space:nowrap;
  7812. text-transform:none;
  7813. }
  7814. #u204249_div {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:0px;
  7818. top:0px;
  7819. width:29px;
  7820. height:30px;
  7821. background:inherit;
  7822. background-color:rgba(255, 255, 255, 0);
  7823. border:none;
  7824. border-left:0px;
  7825. border-top:0px;
  7826. border-right:0px;
  7827. border-radius:0px;
  7828. border-bottom-right-radius:0px;
  7829. border-bottom-left-radius:0px;
  7830. -moz-box-shadow:none;
  7831. -webkit-box-shadow:none;
  7832. box-shadow:none;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:14px;
  7837. color:#0089FE;
  7838. line-height:30px;
  7839. }
  7840. #u204249 {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:1107px;
  7844. top:644px;
  7845. width:29px;
  7846. height:30px;
  7847. display:flex;
  7848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7849. font-weight:400;
  7850. font-style:normal;
  7851. font-size:14px;
  7852. color:#0089FE;
  7853. line-height:30px;
  7854. }
  7855. #u204249 .text {
  7856. position:absolute;
  7857. align-self:flex-start;
  7858. padding:0px 0px 0px 0px;
  7859. box-sizing:border-box;
  7860. width:100%;
  7861. }
  7862. #u204249_text {
  7863. border-width:0px;
  7864. white-space:nowrap;
  7865. text-transform:none;
  7866. }
  7867. #u204251_img {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:433px;
  7873. height:865px;
  7874. }
  7875. #u204251 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:1358px;
  7879. top:0px;
  7880. width:433px;
  7881. height:865px;
  7882. display:flex;
  7883. }
  7884. #u204251 .text {
  7885. position:absolute;
  7886. align-self:center;
  7887. padding:2px 2px 2px 2px;
  7888. box-sizing:border-box;
  7889. width:100%;
  7890. }
  7891. #u204251_text {
  7892. border-width:0px;
  7893. word-wrap:break-word;
  7894. text-transform:none;
  7895. visibility:hidden;
  7896. }
  7897. #u204252_div {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:375px;
  7903. height:40px;
  7904. background:inherit;
  7905. background-color:rgba(255, 255, 255, 1);
  7906. box-sizing:border-box;
  7907. border-width:1px;
  7908. border-style:solid;
  7909. border-color:rgba(215, 215, 215, 1);
  7910. border-left:0px;
  7911. border-top:0px;
  7912. border-right:0px;
  7913. border-radius:0px;
  7914. border-bottom-right-radius:0px;
  7915. border-bottom-left-radius:0px;
  7916. -moz-box-shadow:none;
  7917. -webkit-box-shadow:none;
  7918. box-shadow:none;
  7919. }
  7920. #u204252 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:1387px;
  7924. top:67px;
  7925. width:375px;
  7926. height:40px;
  7927. display:flex;
  7928. }
  7929. #u204252 .text {
  7930. position:absolute;
  7931. align-self:center;
  7932. padding:2px 2px 2px 2px;
  7933. box-sizing:border-box;
  7934. width:100%;
  7935. }
  7936. #u204252_text {
  7937. border-width:0px;
  7938. word-wrap:break-word;
  7939. text-transform:none;
  7940. visibility:hidden;
  7941. }
  7942. #u204253 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:0px;
  7948. height:0px;
  7949. }
  7950. #u204254_div {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:88px;
  7956. height:32px;
  7957. background:inherit;
  7958. background-color:rgba(255, 255, 255, 1);
  7959. box-sizing:border-box;
  7960. border-width:1px;
  7961. border-style:solid;
  7962. border-color:rgba(242, 242, 242, 1);
  7963. border-radius:33px;
  7964. -moz-box-shadow:none;
  7965. -webkit-box-shadow:none;
  7966. box-shadow:none;
  7967. }
  7968. #u204254 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:1667px;
  7972. top:71px;
  7973. width:88px;
  7974. height:32px;
  7975. display:flex;
  7976. }
  7977. #u204254 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:2px 2px 2px 2px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u204254_text {
  7985. border-width:0px;
  7986. word-wrap:break-word;
  7987. text-transform:none;
  7988. visibility:hidden;
  7989. }
  7990. #u204255 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:0px;
  7996. height:0px;
  7997. }
  7998. #u204256_img {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:18px;
  8004. height:18px;
  8005. }
  8006. #u204256 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:1730px;
  8010. top:78px;
  8011. width:18px;
  8012. height:18px;
  8013. display:flex;
  8014. }
  8015. #u204256 .text {
  8016. position:absolute;
  8017. align-self:center;
  8018. padding:2px 2px 2px 2px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u204256_text {
  8023. border-width:0px;
  8024. word-wrap:break-word;
  8025. text-transform:none;
  8026. visibility:hidden;
  8027. }
  8028. #u204257_img {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:0px;
  8032. top:0px;
  8033. width:6px;
  8034. height:6px;
  8035. }
  8036. #u204257 {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:1736px;
  8040. top:84px;
  8041. width:6px;
  8042. height:6px;
  8043. display:flex;
  8044. }
  8045. #u204257 .text {
  8046. position:absolute;
  8047. align-self:center;
  8048. padding:2px 2px 2px 2px;
  8049. box-sizing:border-box;
  8050. width:100%;
  8051. }
  8052. #u204257_text {
  8053. border-width:0px;
  8054. word-wrap:break-word;
  8055. text-transform:none;
  8056. visibility:hidden;
  8057. }
  8058. #u204258 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:0px;
  8062. top:0px;
  8063. width:0px;
  8064. height:0px;
  8065. }
  8066. #u204259_img {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:0px;
  8070. top:0px;
  8071. width:5px;
  8072. height:5px;
  8073. }
  8074. #u204259 {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:1681px;
  8078. top:85px;
  8079. width:5px;
  8080. height:5px;
  8081. display:flex;
  8082. }
  8083. #u204259 .text {
  8084. position:absolute;
  8085. align-self:center;
  8086. padding:2px 2px 2px 2px;
  8087. box-sizing:border-box;
  8088. width:100%;
  8089. }
  8090. #u204259_text {
  8091. border-width:0px;
  8092. word-wrap:break-word;
  8093. text-transform:none;
  8094. visibility:hidden;
  8095. }
  8096. #u204260_img {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:5px;
  8102. height:5px;
  8103. }
  8104. #u204260 {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:1697px;
  8108. top:85px;
  8109. width:5px;
  8110. height:5px;
  8111. display:flex;
  8112. }
  8113. #u204260 .text {
  8114. position:absolute;
  8115. align-self:center;
  8116. padding:2px 2px 2px 2px;
  8117. box-sizing:border-box;
  8118. width:100%;
  8119. }
  8120. #u204260_text {
  8121. border-width:0px;
  8122. word-wrap:break-word;
  8123. text-transform:none;
  8124. visibility:hidden;
  8125. }
  8126. #u204261_img {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:0px;
  8130. top:0px;
  8131. width:7px;
  8132. height:7px;
  8133. }
  8134. #u204261 {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:1688px;
  8138. top:84px;
  8139. width:7px;
  8140. height:7px;
  8141. display:flex;
  8142. }
  8143. #u204261 .text {
  8144. position:absolute;
  8145. align-self:center;
  8146. padding:2px 2px 2px 2px;
  8147. box-sizing:border-box;
  8148. width:100%;
  8149. }
  8150. #u204261_text {
  8151. border-width:0px;
  8152. word-wrap:break-word;
  8153. text-transform:none;
  8154. visibility:hidden;
  8155. }
  8156. #u204262_img {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:0px;
  8160. top:0px;
  8161. width:19px;
  8162. height:2px;
  8163. }
  8164. #u204262 {
  8165. border-width:0px;
  8166. position:absolute;
  8167. left:1705px;
  8168. top:87px;
  8169. width:18px;
  8170. height:1px;
  8171. display:flex;
  8172. -webkit-transform:rotate(90deg);
  8173. -moz-transform:rotate(90deg);
  8174. -ms-transform:rotate(90deg);
  8175. transform:rotate(90deg);
  8176. }
  8177. #u204262 .text {
  8178. position:absolute;
  8179. align-self:center;
  8180. padding:2px 2px 2px 2px;
  8181. box-sizing:border-box;
  8182. width:100%;
  8183. }
  8184. #u204262_text {
  8185. border-width:0px;
  8186. word-wrap:break-word;
  8187. text-transform:none;
  8188. visibility:hidden;
  8189. }
  8190. #u204263_img {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:375px;
  8196. height:44px;
  8197. }
  8198. #u204263 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:1387px;
  8202. top:24px;
  8203. width:375px;
  8204. height:44px;
  8205. display:flex;
  8206. }
  8207. #u204263 .text {
  8208. position:absolute;
  8209. align-self:center;
  8210. padding:2px 2px 2px 2px;
  8211. box-sizing:border-box;
  8212. width:100%;
  8213. }
  8214. #u204263_text {
  8215. border-width:0px;
  8216. word-wrap:break-word;
  8217. text-transform:none;
  8218. visibility:hidden;
  8219. }
  8220. #u204264_div {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:375px;
  8226. height:50px;
  8227. background:inherit;
  8228. background-color:rgba(255, 255, 255, 1);
  8229. box-sizing:border-box;
  8230. border-width:1px;
  8231. border-style:solid;
  8232. border-color:rgba(242, 242, 242, 1);
  8233. border-radius:26px;
  8234. border-top-left-radius:0px;
  8235. border-top-right-radius:0px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. }
  8240. #u204264 {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:1387px;
  8244. top:788px;
  8245. width:375px;
  8246. height:50px;
  8247. display:flex;
  8248. }
  8249. #u204264 .text {
  8250. position:absolute;
  8251. align-self:center;
  8252. padding:2px 2px 2px 2px;
  8253. box-sizing:border-box;
  8254. width:100%;
  8255. }
  8256. #u204264_text {
  8257. border-width:0px;
  8258. word-wrap:break-word;
  8259. text-transform:none;
  8260. visibility:hidden;
  8261. }
  8262. #u204265 {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:0px;
  8266. top:0px;
  8267. width:0px;
  8268. height:0px;
  8269. }
  8270. #u204266_img {
  8271. border-width:0px;
  8272. position:absolute;
  8273. left:0px;
  8274. top:0px;
  8275. width:24px;
  8276. height:24px;
  8277. }
  8278. #u204266 {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:1427px;
  8282. top:792px;
  8283. width:24px;
  8284. height:24px;
  8285. display:flex;
  8286. font-size:8px;
  8287. }
  8288. #u204266 .text {
  8289. position:absolute;
  8290. align-self:center;
  8291. padding:2px 2px 2px 2px;
  8292. box-sizing:border-box;
  8293. width:100%;
  8294. }
  8295. #u204266_text {
  8296. border-width:0px;
  8297. word-wrap:break-word;
  8298. text-transform:none;
  8299. }
  8300. #u204267_div {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:0px;
  8304. top:0px;
  8305. width:25px;
  8306. height:17px;
  8307. background:inherit;
  8308. background-color:rgba(255, 255, 255, 0);
  8309. border:none;
  8310. border-radius:0px;
  8311. -moz-box-shadow:none;
  8312. -webkit-box-shadow:none;
  8313. box-shadow:none;
  8314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8315. font-weight:400;
  8316. font-style:normal;
  8317. font-size:12px;
  8318. }
  8319. #u204267 {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:1427px;
  8323. top:817px;
  8324. width:25px;
  8325. height:17px;
  8326. display:flex;
  8327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8328. font-weight:400;
  8329. font-style:normal;
  8330. font-size:12px;
  8331. }
  8332. #u204267 .text {
  8333. position:absolute;
  8334. align-self:flex-start;
  8335. padding:0px 0px 0px 0px;
  8336. box-sizing:border-box;
  8337. width:100%;
  8338. }
  8339. #u204267_text {
  8340. border-width:0px;
  8341. white-space:nowrap;
  8342. text-transform:none;
  8343. }
  8344. #u204268 {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:0px;
  8350. height:0px;
  8351. }
  8352. #u204269_img {
  8353. border-width:0px;
  8354. position:absolute;
  8355. left:0px;
  8356. top:0px;
  8357. width:24px;
  8358. height:24px;
  8359. }
  8360. #u204269 {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:1697px;
  8364. top:794px;
  8365. width:24px;
  8366. height:24px;
  8367. display:flex;
  8368. font-size:8px;
  8369. }
  8370. #u204269 .text {
  8371. position:absolute;
  8372. align-self:center;
  8373. padding:2px 2px 2px 2px;
  8374. box-sizing:border-box;
  8375. width:100%;
  8376. }
  8377. #u204269_text {
  8378. border-width:0px;
  8379. word-wrap:break-word;
  8380. text-transform:none;
  8381. }
  8382. #u204270_div {
  8383. border-width:0px;
  8384. position:absolute;
  8385. left:0px;
  8386. top:0px;
  8387. width:25px;
  8388. height:17px;
  8389. background:inherit;
  8390. background-color:rgba(255, 255, 255, 0);
  8391. border:none;
  8392. border-radius:0px;
  8393. -moz-box-shadow:none;
  8394. -webkit-box-shadow:none;
  8395. box-shadow:none;
  8396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8397. font-weight:400;
  8398. font-style:normal;
  8399. font-size:12px;
  8400. }
  8401. #u204270 {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:1697px;
  8405. top:819px;
  8406. width:25px;
  8407. height:17px;
  8408. display:flex;
  8409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8410. font-weight:400;
  8411. font-style:normal;
  8412. font-size:12px;
  8413. }
  8414. #u204270 .text {
  8415. position:absolute;
  8416. align-self:flex-start;
  8417. padding:0px 0px 0px 0px;
  8418. box-sizing:border-box;
  8419. width:100%;
  8420. }
  8421. #u204270_text {
  8422. border-width:0px;
  8423. white-space:nowrap;
  8424. text-transform:none;
  8425. }
  8426. #u204271_div {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:0px;
  8430. top:0px;
  8431. width:375px;
  8432. height:681px;
  8433. background:inherit;
  8434. background-color:rgba(242, 242, 242, 0.462745098039216);
  8435. border:none;
  8436. border-radius:0px;
  8437. -moz-box-shadow:none;
  8438. -webkit-box-shadow:none;
  8439. box-shadow:none;
  8440. }
  8441. #u204271 {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:1387px;
  8445. top:107px;
  8446. width:375px;
  8447. height:681px;
  8448. display:flex;
  8449. }
  8450. #u204271 .text {
  8451. position:absolute;
  8452. align-self:center;
  8453. padding:2px 2px 2px 2px;
  8454. box-sizing:border-box;
  8455. width:100%;
  8456. }
  8457. #u204271_text {
  8458. border-width:0px;
  8459. word-wrap:break-word;
  8460. text-transform:none;
  8461. visibility:hidden;
  8462. }
  8463. #u204272 {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:0px;
  8467. top:0px;
  8468. width:0px;
  8469. height:0px;
  8470. }
  8471. #u204273_img {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:24px;
  8477. height:24px;
  8478. }
  8479. #u204273 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:1609px;
  8483. top:792px;
  8484. width:24px;
  8485. height:24px;
  8486. display:flex;
  8487. font-size:8px;
  8488. }
  8489. #u204273 .text {
  8490. position:absolute;
  8491. align-self:center;
  8492. padding:2px 2px 2px 2px;
  8493. box-sizing:border-box;
  8494. width:100%;
  8495. }
  8496. #u204273_text {
  8497. border-width:0px;
  8498. word-wrap:break-word;
  8499. text-transform:none;
  8500. }
  8501. #u204274_div {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:0px;
  8505. top:0px;
  8506. width:37px;
  8507. height:17px;
  8508. background:inherit;
  8509. background-color:rgba(255, 255, 255, 0);
  8510. border:none;
  8511. border-radius:0px;
  8512. -moz-box-shadow:none;
  8513. -webkit-box-shadow:none;
  8514. box-shadow:none;
  8515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8516. font-weight:400;
  8517. font-style:normal;
  8518. font-size:12px;
  8519. }
  8520. #u204274 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:1603px;
  8524. top:817px;
  8525. width:37px;
  8526. height:17px;
  8527. display:flex;
  8528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:12px;
  8532. }
  8533. #u204274 .text {
  8534. position:absolute;
  8535. align-self:flex-start;
  8536. padding:0px 0px 0px 0px;
  8537. box-sizing:border-box;
  8538. width:100%;
  8539. }
  8540. #u204274_text {
  8541. border-width:0px;
  8542. white-space:nowrap;
  8543. text-transform:none;
  8544. }
  8545. #u204275 {
  8546. border-width:0px;
  8547. position:absolute;
  8548. left:0px;
  8549. top:0px;
  8550. width:0px;
  8551. height:0px;
  8552. }
  8553. #u204276_img {
  8554. border-width:0px;
  8555. position:absolute;
  8556. left:0px;
  8557. top:0px;
  8558. width:24px;
  8559. height:24px;
  8560. }
  8561. #u204276 {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:1515px;
  8565. top:792px;
  8566. width:24px;
  8567. height:24px;
  8568. display:flex;
  8569. font-size:8px;
  8570. }
  8571. #u204276 .text {
  8572. position:absolute;
  8573. align-self:center;
  8574. padding:2px 2px 2px 2px;
  8575. box-sizing:border-box;
  8576. width:100%;
  8577. }
  8578. #u204276_text {
  8579. border-width:0px;
  8580. word-wrap:break-word;
  8581. text-transform:none;
  8582. }
  8583. #u204277_div {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:0px;
  8587. top:0px;
  8588. width:37px;
  8589. height:17px;
  8590. background:inherit;
  8591. background-color:rgba(255, 255, 255, 0);
  8592. border:none;
  8593. border-radius:0px;
  8594. -moz-box-shadow:none;
  8595. -webkit-box-shadow:none;
  8596. box-shadow:none;
  8597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8598. font-weight:400;
  8599. font-style:normal;
  8600. font-size:12px;
  8601. }
  8602. #u204277 {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:1509px;
  8606. top:817px;
  8607. width:37px;
  8608. height:17px;
  8609. display:flex;
  8610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8611. font-weight:400;
  8612. font-style:normal;
  8613. font-size:12px;
  8614. }
  8615. #u204277 .text {
  8616. position:absolute;
  8617. align-self:flex-start;
  8618. padding:0px 0px 0px 0px;
  8619. box-sizing:border-box;
  8620. width:100%;
  8621. }
  8622. #u204277_text {
  8623. border-width:0px;
  8624. white-space:nowrap;
  8625. text-transform:none;
  8626. }
  8627. #u204278_div {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:0px;
  8631. top:0px;
  8632. width:375px;
  8633. height:731px;
  8634. background:inherit;
  8635. background-color:rgba(242, 242, 242, 0.996078431372549);
  8636. border:none;
  8637. border-top:0px;
  8638. border-radius:28px;
  8639. border-top-left-radius:0px;
  8640. border-top-right-radius:0px;
  8641. -moz-box-shadow:none;
  8642. -webkit-box-shadow:none;
  8643. box-shadow:none;
  8644. }
  8645. #u204278 {
  8646. border-width:0px;
  8647. position:absolute;
  8648. left:1387px;
  8649. top:107px;
  8650. width:375px;
  8651. height:731px;
  8652. display:flex;
  8653. }
  8654. #u204278 .text {
  8655. position:absolute;
  8656. align-self:center;
  8657. padding:2px 2px 2px 2px;
  8658. box-sizing:border-box;
  8659. width:100%;
  8660. }
  8661. #u204278_text {
  8662. border-width:0px;
  8663. word-wrap:break-word;
  8664. text-transform:none;
  8665. visibility:hidden;
  8666. }
  8667. #u204279_div {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:0px;
  8671. top:0px;
  8672. width:375px;
  8673. height:40px;
  8674. background:inherit;
  8675. background-color:rgba(255, 255, 255, 1);
  8676. box-sizing:border-box;
  8677. border-width:1px;
  8678. border-style:solid;
  8679. border-color:rgba(215, 215, 215, 1);
  8680. border-left:0px;
  8681. border-top:0px;
  8682. border-right:0px;
  8683. border-radius:0px;
  8684. border-bottom-right-radius:0px;
  8685. border-bottom-left-radius:0px;
  8686. -moz-box-shadow:none;
  8687. -webkit-box-shadow:none;
  8688. box-shadow:none;
  8689. }
  8690. #u204279 {
  8691. border-width:0px;
  8692. position:absolute;
  8693. left:1387px;
  8694. top:67px;
  8695. width:375px;
  8696. height:40px;
  8697. display:flex;
  8698. }
  8699. #u204279 .text {
  8700. position:absolute;
  8701. align-self:center;
  8702. padding:2px 2px 2px 2px;
  8703. box-sizing:border-box;
  8704. width:100%;
  8705. }
  8706. #u204279_text {
  8707. border-width:0px;
  8708. word-wrap:break-word;
  8709. text-transform:none;
  8710. visibility:hidden;
  8711. }
  8712. #u204280_img {
  8713. border-width:0px;
  8714. position:absolute;
  8715. left:0px;
  8716. top:0px;
  8717. width:375px;
  8718. height:44px;
  8719. }
  8720. #u204280 {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:1387px;
  8724. top:24px;
  8725. width:375px;
  8726. height:44px;
  8727. display:flex;
  8728. }
  8729. #u204280 .text {
  8730. position:absolute;
  8731. align-self:center;
  8732. padding:2px 2px 2px 2px;
  8733. box-sizing:border-box;
  8734. width:100%;
  8735. }
  8736. #u204280_text {
  8737. border-width:0px;
  8738. word-wrap:break-word;
  8739. text-transform:none;
  8740. visibility:hidden;
  8741. }
  8742. #u204281 {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:0px;
  8746. top:0px;
  8747. width:0px;
  8748. height:0px;
  8749. }
  8750. #u204282_div {
  8751. border-width:0px;
  8752. position:absolute;
  8753. left:0px;
  8754. top:0px;
  8755. width:88px;
  8756. height:32px;
  8757. background:inherit;
  8758. background-color:rgba(255, 255, 255, 1);
  8759. box-sizing:border-box;
  8760. border-width:1px;
  8761. border-style:solid;
  8762. border-color:rgba(242, 242, 242, 1);
  8763. border-radius:33px;
  8764. -moz-box-shadow:none;
  8765. -webkit-box-shadow:none;
  8766. box-shadow:none;
  8767. }
  8768. #u204282 {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:1667px;
  8772. top:71px;
  8773. width:88px;
  8774. height:32px;
  8775. display:flex;
  8776. }
  8777. #u204282 .text {
  8778. position:absolute;
  8779. align-self:center;
  8780. padding:2px 2px 2px 2px;
  8781. box-sizing:border-box;
  8782. width:100%;
  8783. }
  8784. #u204282_text {
  8785. border-width:0px;
  8786. word-wrap:break-word;
  8787. text-transform:none;
  8788. visibility:hidden;
  8789. }
  8790. #u204283 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:0px;
  8796. height:0px;
  8797. }
  8798. #u204284_img {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:0px;
  8802. top:0px;
  8803. width:18px;
  8804. height:18px;
  8805. }
  8806. #u204284 {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:1730px;
  8810. top:78px;
  8811. width:18px;
  8812. height:18px;
  8813. display:flex;
  8814. }
  8815. #u204284 .text {
  8816. position:absolute;
  8817. align-self:center;
  8818. padding:2px 2px 2px 2px;
  8819. box-sizing:border-box;
  8820. width:100%;
  8821. }
  8822. #u204284_text {
  8823. border-width:0px;
  8824. word-wrap:break-word;
  8825. text-transform:none;
  8826. visibility:hidden;
  8827. }
  8828. #u204285_img {
  8829. border-width:0px;
  8830. position:absolute;
  8831. left:0px;
  8832. top:0px;
  8833. width:6px;
  8834. height:6px;
  8835. }
  8836. #u204285 {
  8837. border-width:0px;
  8838. position:absolute;
  8839. left:1736px;
  8840. top:84px;
  8841. width:6px;
  8842. height:6px;
  8843. display:flex;
  8844. }
  8845. #u204285 .text {
  8846. position:absolute;
  8847. align-self:center;
  8848. padding:2px 2px 2px 2px;
  8849. box-sizing:border-box;
  8850. width:100%;
  8851. }
  8852. #u204285_text {
  8853. border-width:0px;
  8854. word-wrap:break-word;
  8855. text-transform:none;
  8856. visibility:hidden;
  8857. }
  8858. #u204286 {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:0px;
  8864. height:0px;
  8865. }
  8866. #u204287_img {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:0px;
  8870. top:0px;
  8871. width:5px;
  8872. height:5px;
  8873. }
  8874. #u204287 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:1681px;
  8878. top:85px;
  8879. width:5px;
  8880. height:5px;
  8881. display:flex;
  8882. }
  8883. #u204287 .text {
  8884. position:absolute;
  8885. align-self:center;
  8886. padding:2px 2px 2px 2px;
  8887. box-sizing:border-box;
  8888. width:100%;
  8889. }
  8890. #u204287_text {
  8891. border-width:0px;
  8892. word-wrap:break-word;
  8893. text-transform:none;
  8894. visibility:hidden;
  8895. }
  8896. #u204288_img {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:0px;
  8900. top:0px;
  8901. width:5px;
  8902. height:5px;
  8903. }
  8904. #u204288 {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:1697px;
  8908. top:85px;
  8909. width:5px;
  8910. height:5px;
  8911. display:flex;
  8912. }
  8913. #u204288 .text {
  8914. position:absolute;
  8915. align-self:center;
  8916. padding:2px 2px 2px 2px;
  8917. box-sizing:border-box;
  8918. width:100%;
  8919. }
  8920. #u204288_text {
  8921. border-width:0px;
  8922. word-wrap:break-word;
  8923. text-transform:none;
  8924. visibility:hidden;
  8925. }
  8926. #u204289_img {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:0px;
  8930. top:0px;
  8931. width:7px;
  8932. height:7px;
  8933. }
  8934. #u204289 {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:1688px;
  8938. top:84px;
  8939. width:7px;
  8940. height:7px;
  8941. display:flex;
  8942. }
  8943. #u204289 .text {
  8944. position:absolute;
  8945. align-self:center;
  8946. padding:2px 2px 2px 2px;
  8947. box-sizing:border-box;
  8948. width:100%;
  8949. }
  8950. #u204289_text {
  8951. border-width:0px;
  8952. word-wrap:break-word;
  8953. text-transform:none;
  8954. visibility:hidden;
  8955. }
  8956. #u204290_img {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:19px;
  8962. height:2px;
  8963. }
  8964. #u204290 {
  8965. border-width:0px;
  8966. position:absolute;
  8967. left:1705px;
  8968. top:87px;
  8969. width:18px;
  8970. height:1px;
  8971. display:flex;
  8972. -webkit-transform:rotate(90deg);
  8973. -moz-transform:rotate(90deg);
  8974. -ms-transform:rotate(90deg);
  8975. transform:rotate(90deg);
  8976. }
  8977. #u204290 .text {
  8978. position:absolute;
  8979. align-self:center;
  8980. padding:2px 2px 2px 2px;
  8981. box-sizing:border-box;
  8982. width:100%;
  8983. }
  8984. #u204290_text {
  8985. border-width:0px;
  8986. word-wrap:break-word;
  8987. text-transform:none;
  8988. visibility:hidden;
  8989. }
  8990. #u204291_div {
  8991. border-width:0px;
  8992. position:absolute;
  8993. left:0px;
  8994. top:0px;
  8995. width:81px;
  8996. height:22px;
  8997. background:inherit;
  8998. background-color:rgba(255, 255, 255, 0);
  8999. border:none;
  9000. border-radius:0px;
  9001. -moz-box-shadow:none;
  9002. -webkit-box-shadow:none;
  9003. box-shadow:none;
  9004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9005. font-weight:400;
  9006. font-style:normal;
  9007. font-size:16px;
  9008. color:#000000;
  9009. }
  9010. #u204291 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:1416px;
  9014. top:76px;
  9015. width:81px;
  9016. height:22px;
  9017. display:flex;
  9018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9019. font-weight:400;
  9020. font-style:normal;
  9021. font-size:16px;
  9022. color:#000000;
  9023. }
  9024. #u204291 .text {
  9025. position:absolute;
  9026. align-self:flex-start;
  9027. padding:0px 0px 0px 0px;
  9028. box-sizing:border-box;
  9029. width:100%;
  9030. }
  9031. #u204291_text {
  9032. border-width:0px;
  9033. white-space:nowrap;
  9034. text-transform:none;
  9035. }
  9036. #u204292_div {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:0px;
  9040. top:0px;
  9041. width:12px;
  9042. height:12px;
  9043. background:inherit;
  9044. background-color:rgba(255, 255, 255, 0);
  9045. box-sizing:border-box;
  9046. border-width:2px;
  9047. border-style:solid;
  9048. border-color:rgba(51, 51, 51, 1);
  9049. border-right:0px;
  9050. border-bottom:0px;
  9051. border-radius:0px;
  9052. border-top-right-radius:0px;
  9053. border-bottom-left-radius:0px;
  9054. -moz-box-shadow:none;
  9055. -webkit-box-shadow:none;
  9056. box-shadow:none;
  9057. }
  9058. #u204292 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:1402px;
  9062. top:81px;
  9063. width:12px;
  9064. height:12px;
  9065. display:flex;
  9066. -webkit-transform:rotate(315deg);
  9067. -moz-transform:rotate(315deg);
  9068. -ms-transform:rotate(315deg);
  9069. transform:rotate(315deg);
  9070. }
  9071. #u204292 .text {
  9072. position:absolute;
  9073. align-self:center;
  9074. padding:2px 2px 2px 2px;
  9075. box-sizing:border-box;
  9076. width:100%;
  9077. }
  9078. #u204292_text {
  9079. border-width:0px;
  9080. word-wrap:break-word;
  9081. text-transform:none;
  9082. visibility:hidden;
  9083. }
  9084. #u204293 {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:0px;
  9088. top:0px;
  9089. width:0px;
  9090. height:0px;
  9091. }
  9092. #u204294_img {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:0px;
  9096. top:0px;
  9097. width:355px;
  9098. height:120px;
  9099. }
  9100. #u204294 {
  9101. border-width:0px;
  9102. position:absolute;
  9103. left:1397px;
  9104. top:117px;
  9105. width:355px;
  9106. height:120px;
  9107. display:flex;
  9108. }
  9109. #u204294 .text {
  9110. position:absolute;
  9111. align-self:center;
  9112. padding:2px 2px 2px 2px;
  9113. box-sizing:border-box;
  9114. width:100%;
  9115. }
  9116. #u204294_text {
  9117. border-width:0px;
  9118. word-wrap:break-word;
  9119. text-transform:none;
  9120. visibility:hidden;
  9121. }
  9122. #u204295_div {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:0px;
  9126. top:0px;
  9127. width:85px;
  9128. height:30px;
  9129. background:inherit;
  9130. background-color:rgba(255, 255, 255, 0);
  9131. border:none;
  9132. border-left:0px;
  9133. border-top:0px;
  9134. border-right:0px;
  9135. border-radius:0px;
  9136. border-bottom-right-radius:0px;
  9137. border-bottom-left-radius:0px;
  9138. -moz-box-shadow:none;
  9139. -webkit-box-shadow:none;
  9140. box-shadow:none;
  9141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9142. font-weight:500;
  9143. font-style:normal;
  9144. font-size:14px;
  9145. line-height:30px;
  9146. }
  9147. #u204295 {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:1453px;
  9151. top:124px;
  9152. width:85px;
  9153. height:30px;
  9154. display:flex;
  9155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9156. font-weight:500;
  9157. font-style:normal;
  9158. font-size:14px;
  9159. line-height:30px;
  9160. }
  9161. #u204295 .text {
  9162. position:absolute;
  9163. align-self:flex-start;
  9164. padding:0px 0px 0px 0px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u204295_text {
  9169. border-width:0px;
  9170. white-space:nowrap;
  9171. text-transform:none;
  9172. }
  9173. #u204296_div {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:325px;
  9179. height:75px;
  9180. background:inherit;
  9181. background-color:rgba(255, 255, 255, 0);
  9182. border:none;
  9183. border-left:0px;
  9184. border-top:0px;
  9185. border-right:0px;
  9186. border-radius:0px;
  9187. border-bottom-right-radius:0px;
  9188. border-bottom-left-radius:0px;
  9189. -moz-box-shadow:none;
  9190. -webkit-box-shadow:none;
  9191. box-shadow:none;
  9192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:12px;
  9196. line-height:25px;
  9197. }
  9198. #u204296 {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:1413px;
  9202. top:157px;
  9203. width:325px;
  9204. height:75px;
  9205. display:flex;
  9206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9207. font-weight:400;
  9208. font-style:normal;
  9209. font-size:12px;
  9210. line-height:25px;
  9211. }
  9212. #u204296 .text {
  9213. position:absolute;
  9214. align-self:flex-start;
  9215. padding:0px 0px 0px 0px;
  9216. box-sizing:border-box;
  9217. width:100%;
  9218. }
  9219. #u204296_text {
  9220. border-width:0px;
  9221. word-wrap:break-word;
  9222. text-transform:none;
  9223. }
  9224. #u204297_div {
  9225. border-width:0px;
  9226. position:absolute;
  9227. left:0px;
  9228. top:0px;
  9229. width:30px;
  9230. height:16px;
  9231. background:inherit;
  9232. background-color:rgba(128, 128, 255, 1);
  9233. border:none;
  9234. border-radius:2px;
  9235. -moz-box-shadow:none;
  9236. -webkit-box-shadow:none;
  9237. box-shadow:none;
  9238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9239. font-weight:400;
  9240. font-style:normal;
  9241. font-size:10px;
  9242. color:#FFFFFF;
  9243. text-align:center;
  9244. }
  9245. #u204297 {
  9246. border-width:0px;
  9247. position:absolute;
  9248. left:1413px;
  9249. top:131px;
  9250. width:30px;
  9251. height:16px;
  9252. display:flex;
  9253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9254. font-weight:400;
  9255. font-style:normal;
  9256. font-size:10px;
  9257. color:#FFFFFF;
  9258. text-align:center;
  9259. }
  9260. #u204297 .text {
  9261. position:absolute;
  9262. align-self:center;
  9263. padding:0px 0px 0px 0px;
  9264. box-sizing:border-box;
  9265. width:100%;
  9266. }
  9267. #u204297_text {
  9268. border-width:0px;
  9269. word-wrap:break-word;
  9270. text-transform:none;
  9271. }
  9272. #u204298_div {
  9273. border-width:0px;
  9274. position:absolute;
  9275. left:0px;
  9276. top:0px;
  9277. width:47px;
  9278. height:40px;
  9279. background:inherit;
  9280. background-color:rgba(242, 242, 242, 1);
  9281. border:none;
  9282. border-left:0px;
  9283. border-top:0px;
  9284. border-right:0px;
  9285. border-radius:4px;
  9286. border-bottom-right-radius:0px;
  9287. border-bottom-left-radius:0px;
  9288. -moz-box-shadow:none;
  9289. -webkit-box-shadow:none;
  9290. box-shadow:none;
  9291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9292. font-weight:400;
  9293. font-style:normal;
  9294. font-size:14px;
  9295. color:#555555;
  9296. text-align:left;
  9297. }
  9298. #u204298 {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:1407px;
  9302. top:237px;
  9303. width:47px;
  9304. height:40px;
  9305. display:flex;
  9306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9307. font-weight:400;
  9308. font-style:normal;
  9309. font-size:14px;
  9310. color:#555555;
  9311. text-align:left;
  9312. }
  9313. #u204298 .text {
  9314. position:absolute;
  9315. align-self:center;
  9316. padding:5px 0px 5px 0px;
  9317. box-sizing:border-box;
  9318. width:100%;
  9319. }
  9320. #u204298_text {
  9321. border-width:0px;
  9322. white-space:nowrap;
  9323. text-transform:none;
  9324. }
  9325. #u204299_div {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:0px;
  9329. top:0px;
  9330. width:47px;
  9331. height:40px;
  9332. background:inherit;
  9333. background-color:rgba(242, 242, 242, 1);
  9334. border:none;
  9335. border-left:0px;
  9336. border-top:0px;
  9337. border-right:0px;
  9338. border-radius:4px;
  9339. border-bottom-right-radius:0px;
  9340. border-bottom-left-radius:0px;
  9341. -moz-box-shadow:none;
  9342. -webkit-box-shadow:none;
  9343. box-shadow:none;
  9344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9345. font-weight:400;
  9346. font-style:normal;
  9347. font-size:14px;
  9348. color:#555555;
  9349. text-align:left;
  9350. }
  9351. #u204299 {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:1481px;
  9355. top:237px;
  9356. width:47px;
  9357. height:40px;
  9358. display:flex;
  9359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9360. font-weight:400;
  9361. font-style:normal;
  9362. font-size:14px;
  9363. color:#555555;
  9364. text-align:left;
  9365. }
  9366. #u204299 .text {
  9367. position:absolute;
  9368. align-self:center;
  9369. padding:5px 0px 5px 0px;
  9370. box-sizing:border-box;
  9371. width:100%;
  9372. }
  9373. #u204299_text {
  9374. border-width:0px;
  9375. white-space:nowrap;
  9376. text-transform:none;
  9377. }
  9378. #u204300_div {
  9379. border-width:0px;
  9380. position:absolute;
  9381. left:0px;
  9382. top:0px;
  9383. width:47px;
  9384. height:40px;
  9385. background:inherit;
  9386. background-color:rgba(242, 242, 242, 1);
  9387. border:none;
  9388. border-left:0px;
  9389. border-top:0px;
  9390. border-right:0px;
  9391. border-radius:4px;
  9392. border-bottom-right-radius:0px;
  9393. border-bottom-left-radius:0px;
  9394. -moz-box-shadow:none;
  9395. -webkit-box-shadow:none;
  9396. box-shadow:none;
  9397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9398. font-weight:400;
  9399. font-style:normal;
  9400. font-size:14px;
  9401. color:#555555;
  9402. text-align:left;
  9403. }
  9404. #u204300 {
  9405. border-width:0px;
  9406. position:absolute;
  9407. left:1554px;
  9408. top:237px;
  9409. width:47px;
  9410. height:40px;
  9411. display:flex;
  9412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9413. font-weight:400;
  9414. font-style:normal;
  9415. font-size:14px;
  9416. color:#555555;
  9417. text-align:left;
  9418. }
  9419. #u204300 .text {
  9420. position:absolute;
  9421. align-self:center;
  9422. padding:5px 0px 5px 0px;
  9423. box-sizing:border-box;
  9424. width:100%;
  9425. }
  9426. #u204300_text {
  9427. border-width:0px;
  9428. white-space:nowrap;
  9429. text-transform:none;
  9430. }
  9431. #u204301_div {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:0px;
  9435. top:0px;
  9436. width:44px;
  9437. height:40px;
  9438. background:inherit;
  9439. background-color:rgba(242, 242, 242, 1);
  9440. box-sizing:border-box;
  9441. border-width:2px;
  9442. border-style:solid;
  9443. border-color:rgba(0, 137, 254, 1);
  9444. border-left:0px;
  9445. border-top:0px;
  9446. border-right:0px;
  9447. border-radius:4px;
  9448. border-bottom-right-radius:0px;
  9449. border-bottom-left-radius:0px;
  9450. -moz-box-shadow:none;
  9451. -webkit-box-shadow:none;
  9452. box-shadow:none;
  9453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9454. font-weight:400;
  9455. font-style:normal;
  9456. font-size:14px;
  9457. color:#1890FF;
  9458. text-align:left;
  9459. }
  9460. #u204301 {
  9461. border-width:0px;
  9462. position:absolute;
  9463. left:1628px;
  9464. top:237px;
  9465. width:44px;
  9466. height:40px;
  9467. display:flex;
  9468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9469. font-weight:400;
  9470. font-style:normal;
  9471. font-size:14px;
  9472. color:#1890FF;
  9473. text-align:left;
  9474. }
  9475. #u204301 .text {
  9476. position:absolute;
  9477. align-self:center;
  9478. padding:5px 0px 5px 0px;
  9479. box-sizing:border-box;
  9480. width:100%;
  9481. }
  9482. #u204301_text {
  9483. border-width:0px;
  9484. white-space:nowrap;
  9485. text-transform:none;
  9486. }
  9487. #u204302_div {
  9488. border-width:0px;
  9489. position:absolute;
  9490. left:0px;
  9491. top:0px;
  9492. width:47px;
  9493. height:40px;
  9494. background:inherit;
  9495. background-color:rgba(242, 242, 242, 1);
  9496. border:none;
  9497. border-left:0px;
  9498. border-top:0px;
  9499. border-right:0px;
  9500. border-radius:4px;
  9501. border-bottom-right-radius:0px;
  9502. border-bottom-left-radius:0px;
  9503. -moz-box-shadow:none;
  9504. -webkit-box-shadow:none;
  9505. box-shadow:none;
  9506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9507. font-weight:400;
  9508. font-style:normal;
  9509. font-size:14px;
  9510. color:#555555;
  9511. text-align:left;
  9512. }
  9513. #u204302 {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:1698px;
  9517. top:237px;
  9518. width:47px;
  9519. height:40px;
  9520. display:flex;
  9521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9522. font-weight:400;
  9523. font-style:normal;
  9524. font-size:14px;
  9525. color:#555555;
  9526. text-align:left;
  9527. }
  9528. #u204302 .text {
  9529. position:absolute;
  9530. align-self:center;
  9531. padding:5px 0px 5px 0px;
  9532. box-sizing:border-box;
  9533. width:100%;
  9534. }
  9535. #u204302_text {
  9536. border-width:0px;
  9537. white-space:nowrap;
  9538. text-transform:none;
  9539. }
  9540. #u204303_div {
  9541. border-width:0px;
  9542. position:absolute;
  9543. left:0px;
  9544. top:0px;
  9545. width:375px;
  9546. height:546px;
  9547. background:inherit;
  9548. background-color:rgba(255, 255, 255, 1);
  9549. border:none;
  9550. border-left:0px;
  9551. border-top:0px;
  9552. border-right:0px;
  9553. border-radius:0px;
  9554. border-bottom-right-radius:0px;
  9555. border-bottom-left-radius:0px;
  9556. -moz-box-shadow:none;
  9557. -webkit-box-shadow:none;
  9558. box-shadow:none;
  9559. }
  9560. #u204303 {
  9561. border-width:0px;
  9562. position:absolute;
  9563. left:1387px;
  9564. top:277px;
  9565. width:375px;
  9566. height:546px;
  9567. display:flex;
  9568. }
  9569. #u204303 .text {
  9570. position:absolute;
  9571. align-self:center;
  9572. padding:2px 2px 2px 2px;
  9573. box-sizing:border-box;
  9574. width:100%;
  9575. }
  9576. #u204303_text {
  9577. border-width:0px;
  9578. word-wrap:break-word;
  9579. text-transform:none;
  9580. visibility:hidden;
  9581. }
  9582. #u204304 {
  9583. border-width:0px;
  9584. position:absolute;
  9585. left:0px;
  9586. top:0px;
  9587. width:0px;
  9588. height:0px;
  9589. }
  9590. #u204305_div {
  9591. border-width:0px;
  9592. position:absolute;
  9593. left:0px;
  9594. top:0px;
  9595. width:280px;
  9596. height:30px;
  9597. background:inherit;
  9598. background-color:rgba(242, 242, 242, 1);
  9599. border:none;
  9600. border-radius:20px;
  9601. -moz-box-shadow:none;
  9602. -webkit-box-shadow:none;
  9603. box-shadow:none;
  9604. }
  9605. #u204305 {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:1401px;
  9609. top:287px;
  9610. width:280px;
  9611. height:30px;
  9612. display:flex;
  9613. }
  9614. #u204305 .text {
  9615. position:absolute;
  9616. align-self:center;
  9617. padding:2px 2px 2px 2px;
  9618. box-sizing:border-box;
  9619. width:100%;
  9620. }
  9621. #u204305_text {
  9622. border-width:0px;
  9623. word-wrap:break-word;
  9624. text-transform:none;
  9625. visibility:hidden;
  9626. }
  9627. #u204306_input {
  9628. position:absolute;
  9629. left:0px;
  9630. top:0px;
  9631. width:239px;
  9632. height:25px;
  9633. padding:2px 2px 2px 2px;
  9634. font-family:'ArialMT', 'Arial', sans-serif;
  9635. font-weight:400;
  9636. font-style:normal;
  9637. font-size:14px;
  9638. letter-spacing:normal;
  9639. color:#000000;
  9640. vertical-align:none;
  9641. text-align:left;
  9642. text-transform:none;
  9643. background-color:transparent;
  9644. border-color:transparent;
  9645. }
  9646. #u204306_input.disabled {
  9647. position:absolute;
  9648. left:0px;
  9649. top:0px;
  9650. width:239px;
  9651. height:25px;
  9652. padding:2px 2px 2px 2px;
  9653. font-family:'ArialMT', 'Arial', sans-serif;
  9654. font-weight:400;
  9655. font-style:normal;
  9656. font-size:14px;
  9657. letter-spacing:normal;
  9658. color:#000000;
  9659. vertical-align:none;
  9660. text-align:left;
  9661. text-transform:none;
  9662. background-color:transparent;
  9663. border-color:transparent;
  9664. }
  9665. #u204306_div {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:239px;
  9671. height:25px;
  9672. background:inherit;
  9673. background-color:rgba(242, 242, 242, 1);
  9674. border:none;
  9675. border-radius:0px;
  9676. -moz-box-shadow:none;
  9677. -webkit-box-shadow:none;
  9678. box-shadow:none;
  9679. font-size:14px;
  9680. }
  9681. #u204306 {
  9682. border-width:0px;
  9683. position:absolute;
  9684. left:1410px;
  9685. top:290px;
  9686. width:239px;
  9687. height:25px;
  9688. display:flex;
  9689. font-size:14px;
  9690. }
  9691. #u204306 .text {
  9692. position:absolute;
  9693. align-self:center;
  9694. padding:2px 2px 2px 2px;
  9695. box-sizing:border-box;
  9696. width:100%;
  9697. }
  9698. #u204306_div.disabled {
  9699. border-width:0px;
  9700. position:absolute;
  9701. left:0px;
  9702. top:0px;
  9703. width:239px;
  9704. height:25px;
  9705. background:inherit;
  9706. background-color:rgba(240, 240, 240, 1);
  9707. border:none;
  9708. border-radius:0px;
  9709. -moz-box-shadow:none;
  9710. -webkit-box-shadow:none;
  9711. box-shadow:none;
  9712. font-size:14px;
  9713. }
  9714. #u204306.disabled {
  9715. }
  9716. #u204307_img {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:12px;
  9722. height:12px;
  9723. }
  9724. #u204307 {
  9725. border-width:0px;
  9726. position:absolute;
  9727. left:1659px;
  9728. top:296px;
  9729. width:12px;
  9730. height:12px;
  9731. display:flex;
  9732. }
  9733. #u204307 .text {
  9734. position:absolute;
  9735. align-self:center;
  9736. padding:2px 2px 2px 2px;
  9737. box-sizing:border-box;
  9738. width:100%;
  9739. }
  9740. #u204307_text {
  9741. border-width:0px;
  9742. word-wrap:break-word;
  9743. text-transform:none;
  9744. visibility:hidden;
  9745. }
  9746. #u204308_div {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:0px;
  9750. top:0px;
  9751. width:57px;
  9752. height:30px;
  9753. background:inherit;
  9754. background-color:rgba(255, 255, 255, 0);
  9755. border:none;
  9756. border-left:0px;
  9757. border-top:0px;
  9758. border-right:0px;
  9759. border-radius:0px;
  9760. border-bottom-right-radius:0px;
  9761. border-bottom-left-radius:0px;
  9762. -moz-box-shadow:none;
  9763. -webkit-box-shadow:none;
  9764. box-shadow:none;
  9765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9766. font-weight:400;
  9767. font-style:normal;
  9768. font-size:14px;
  9769. color:#1890FF;
  9770. line-height:30px;
  9771. }
  9772. #u204308 {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:1691px;
  9776. top:287px;
  9777. width:57px;
  9778. height:30px;
  9779. display:flex;
  9780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9781. font-weight:400;
  9782. font-style:normal;
  9783. font-size:14px;
  9784. color:#1890FF;
  9785. line-height:30px;
  9786. }
  9787. #u204308 .text {
  9788. position:absolute;
  9789. align-self:flex-start;
  9790. padding:0px 0px 0px 0px;
  9791. box-sizing:border-box;
  9792. width:100%;
  9793. }
  9794. #u204308_text {
  9795. border-width:0px;
  9796. white-space:nowrap;
  9797. text-transform:none;
  9798. }
  9799. #u204309 {
  9800. border-width:0px;
  9801. position:absolute;
  9802. left:0px;
  9803. top:0px;
  9804. width:0px;
  9805. height:0px;
  9806. }
  9807. #u204310_div {
  9808. border-width:0px;
  9809. position:absolute;
  9810. left:0px;
  9811. top:0px;
  9812. width:349px;
  9813. height:170px;
  9814. background:inherit;
  9815. background-color:rgba(255, 255, 255, 1);
  9816. box-sizing:border-box;
  9817. border-width:1px;
  9818. border-style:solid;
  9819. border-color:rgba(242, 242, 242, 1);
  9820. border-radius:3px;
  9821. -moz-box-shadow:none;
  9822. -webkit-box-shadow:none;
  9823. box-shadow:none;
  9824. }
  9825. #u204310 {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:1401px;
  9829. top:327px;
  9830. width:349px;
  9831. height:170px;
  9832. display:flex;
  9833. }
  9834. #u204310 .text {
  9835. position:absolute;
  9836. align-self:center;
  9837. padding:2px 2px 2px 2px;
  9838. box-sizing:border-box;
  9839. width:100%;
  9840. }
  9841. #u204310_text {
  9842. border-width:0px;
  9843. word-wrap:break-word;
  9844. text-transform:none;
  9845. visibility:hidden;
  9846. }
  9847. #u204311 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:0px;
  9851. top:0px;
  9852. width:0px;
  9853. height:0px;
  9854. }
  9855. #u204312_div {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:0px;
  9859. top:0px;
  9860. width:57px;
  9861. height:90px;
  9862. background:inherit;
  9863. background-color:rgba(255, 255, 255, 0);
  9864. border:none;
  9865. border-left:0px;
  9866. border-top:0px;
  9867. border-right:0px;
  9868. border-radius:0px;
  9869. border-bottom-right-radius:0px;
  9870. border-bottom-left-radius:0px;
  9871. -moz-box-shadow:none;
  9872. -webkit-box-shadow:none;
  9873. box-shadow:none;
  9874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9875. font-weight:400;
  9876. font-style:normal;
  9877. font-size:14px;
  9878. color:#AAAAAA;
  9879. line-height:30px;
  9880. }
  9881. #u204312 {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:1419px;
  9885. top:365px;
  9886. width:57px;
  9887. height:90px;
  9888. display:flex;
  9889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9890. font-weight:400;
  9891. font-style:normal;
  9892. font-size:14px;
  9893. color:#AAAAAA;
  9894. line-height:30px;
  9895. }
  9896. #u204312 .text {
  9897. position:absolute;
  9898. align-self:flex-start;
  9899. padding:0px 0px 0px 0px;
  9900. box-sizing:border-box;
  9901. width:100%;
  9902. }
  9903. #u204312_text {
  9904. border-width:0px;
  9905. white-space:nowrap;
  9906. text-transform:none;
  9907. }
  9908. #u204313_div {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:85px;
  9914. height:90px;
  9915. background:inherit;
  9916. background-color:rgba(255, 255, 255, 0);
  9917. border:none;
  9918. border-left:0px;
  9919. border-top:0px;
  9920. border-right:0px;
  9921. border-radius:0px;
  9922. border-bottom-right-radius:0px;
  9923. border-bottom-left-radius:0px;
  9924. -moz-box-shadow:none;
  9925. -webkit-box-shadow:none;
  9926. box-shadow:none;
  9927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9928. font-weight:400;
  9929. font-style:normal;
  9930. font-size:14px;
  9931. line-height:30px;
  9932. }
  9933. #u204313 {
  9934. border-width:0px;
  9935. position:absolute;
  9936. left:1496px;
  9937. top:365px;
  9938. width:85px;
  9939. height:90px;
  9940. display:flex;
  9941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9942. font-weight:400;
  9943. font-style:normal;
  9944. font-size:14px;
  9945. line-height:30px;
  9946. }
  9947. #u204313 .text {
  9948. position:absolute;
  9949. align-self:flex-start;
  9950. padding:0px 0px 0px 0px;
  9951. box-sizing:border-box;
  9952. width:100%;
  9953. }
  9954. #u204313_text {
  9955. border-width:0px;
  9956. white-space:nowrap;
  9957. text-transform:none;
  9958. }
  9959. #u204314_div {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:30px;
  9965. height:16px;
  9966. background:inherit;
  9967. background-color:rgba(170, 170, 170, 1);
  9968. border:none;
  9969. border-radius:2px;
  9970. -moz-box-shadow:none;
  9971. -webkit-box-shadow:none;
  9972. box-shadow:none;
  9973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9974. font-weight:400;
  9975. font-style:normal;
  9976. font-size:10px;
  9977. color:#FFFFFF;
  9978. text-align:center;
  9979. }
  9980. #u204314 {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:1419px;
  9984. top:340px;
  9985. width:30px;
  9986. height:16px;
  9987. display:flex;
  9988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9989. font-weight:400;
  9990. font-style:normal;
  9991. font-size:10px;
  9992. color:#FFFFFF;
  9993. text-align:center;
  9994. }
  9995. #u204314 .text {
  9996. position:absolute;
  9997. align-self:center;
  9998. padding:0px 0px 0px 0px;
  9999. box-sizing:border-box;
  10000. width:100%;
  10001. }
  10002. #u204314_text {
  10003. border-width:0px;
  10004. word-wrap:break-word;
  10005. text-transform:none;
  10006. }
  10007. #u204315_img {
  10008. border-width:0px;
  10009. position:absolute;
  10010. left:0px;
  10011. top:0px;
  10012. width:319px;
  10013. height:2px;
  10014. }
  10015. #u204315 {
  10016. border-width:0px;
  10017. position:absolute;
  10018. left:1419px;
  10019. top:460px;
  10020. width:318px;
  10021. height:1px;
  10022. display:flex;
  10023. }
  10024. #u204315 .text {
  10025. position:absolute;
  10026. align-self:center;
  10027. padding:2px 2px 2px 2px;
  10028. box-sizing:border-box;
  10029. width:100%;
  10030. }
  10031. #u204315_text {
  10032. border-width:0px;
  10033. word-wrap:break-word;
  10034. text-transform:none;
  10035. visibility:hidden;
  10036. }
  10037. #u204316_div {
  10038. border-width:0px;
  10039. position:absolute;
  10040. left:0px;
  10041. top:0px;
  10042. width:122px;
  10043. height:25px;
  10044. background:inherit;
  10045. background-color:rgba(255, 255, 255, 0);
  10046. border:none;
  10047. border-left:0px;
  10048. border-top:0px;
  10049. border-right:0px;
  10050. border-radius:0px;
  10051. border-bottom-right-radius:0px;
  10052. border-bottom-left-radius:0px;
  10053. -moz-box-shadow:none;
  10054. -webkit-box-shadow:none;
  10055. box-shadow:none;
  10056. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10057. font-weight:500;
  10058. font-style:normal;
  10059. font-size:14px;
  10060. line-height:25px;
  10061. }
  10062. #u204316 {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:1459px;
  10066. top:336px;
  10067. width:122px;
  10068. height:25px;
  10069. display:flex;
  10070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10071. font-weight:500;
  10072. font-style:normal;
  10073. font-size:14px;
  10074. line-height:25px;
  10075. }
  10076. #u204316 .text {
  10077. position:absolute;
  10078. align-self:center;
  10079. padding:0px 0px 0px 0px;
  10080. box-sizing:border-box;
  10081. width:100%;
  10082. }
  10083. #u204316_text {
  10084. border-width:0px;
  10085. white-space:nowrap;
  10086. text-transform:none;
  10087. }
  10088. #u204317_div {
  10089. border-width:0px;
  10090. position:absolute;
  10091. left:0px;
  10092. top:0px;
  10093. width:29px;
  10094. height:30px;
  10095. background:inherit;
  10096. background-color:rgba(255, 255, 255, 0);
  10097. border:none;
  10098. border-left:0px;
  10099. border-top:0px;
  10100. border-right:0px;
  10101. border-radius:0px;
  10102. border-bottom-right-radius:0px;
  10103. border-bottom-left-radius:0px;
  10104. -moz-box-shadow:none;
  10105. -webkit-box-shadow:none;
  10106. box-shadow:none;
  10107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. font-size:14px;
  10111. color:#0089FE;
  10112. line-height:30px;
  10113. }
  10114. #u204317 {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:1560px;
  10118. top:463px;
  10119. width:29px;
  10120. height:30px;
  10121. display:flex;
  10122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10123. font-weight:400;
  10124. font-style:normal;
  10125. font-size:14px;
  10126. color:#0089FE;
  10127. line-height:30px;
  10128. }
  10129. #u204317 .text {
  10130. position:absolute;
  10131. align-self:flex-start;
  10132. padding:0px 0px 0px 0px;
  10133. box-sizing:border-box;
  10134. width:100%;
  10135. }
  10136. #u204317_text {
  10137. border-width:0px;
  10138. white-space:nowrap;
  10139. text-transform:none;
  10140. }