styles.css 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1341px;
  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. #u52248 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u52249 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. transition:none;
  36. }
  37. #u52249 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u52249_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u52249_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u52250_div {
  59. border-width:0px;
  60. position:absolute;
  61. left:0px;
  62. top:0px;
  63. width:375px;
  64. height:40px;
  65. background:inherit;
  66. background-color:rgba(255, 255, 255, 1);
  67. box-sizing:border-box;
  68. border-width:1px;
  69. border-style:solid;
  70. border-color:rgba(215, 215, 215, 1);
  71. border-left:0px;
  72. border-top:0px;
  73. border-right:0px;
  74. border-radius:0px;
  75. border-bottom-right-radius:0px;
  76. border-bottom-left-radius:0px;
  77. filter:drop-shadow(none);
  78. transition:none;
  79. }
  80. #u52250 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. transition:none;
  89. transform-origin:50% 50%;
  90. }
  91. #u52250 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u52250_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u52251 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u52252_div {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:88px;
  118. height:32px;
  119. background:inherit;
  120. background-color:rgba(255, 255, 255, 1);
  121. box-sizing:border-box;
  122. border-width:1px;
  123. border-style:solid;
  124. border-color:rgba(242, 242, 242, 1);
  125. border-radius:33px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. }
  129. #u52252 {
  130. border-width:0px;
  131. position:absolute;
  132. left:309px;
  133. top:71px;
  134. width:88px;
  135. height:32px;
  136. display:flex;
  137. transition:none;
  138. transform-origin:50% 50%;
  139. }
  140. #u52252 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u52252_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u52253 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u52254 {
  162. border-width:0px;
  163. position:absolute;
  164. left:372px;
  165. top:78px;
  166. width:18px;
  167. height:18px;
  168. display:flex;
  169. transition:none;
  170. }
  171. #u52254 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u52254_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u52254_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u52255 {
  193. border-width:0px;
  194. position:absolute;
  195. left:378px;
  196. top:84px;
  197. width:6px;
  198. height:6px;
  199. display:flex;
  200. transition:none;
  201. }
  202. #u52255 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u52255_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u52255_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u52256 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u52257 {
  232. border-width:0px;
  233. position:absolute;
  234. left:323px;
  235. top:85px;
  236. width:5px;
  237. height:5px;
  238. display:flex;
  239. transition:none;
  240. }
  241. #u52257 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u52257_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u52257_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u52258 {
  263. border-width:0px;
  264. position:absolute;
  265. left:339px;
  266. top:85px;
  267. width:5px;
  268. height:5px;
  269. display:flex;
  270. transition:none;
  271. }
  272. #u52258 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u52258_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u52258_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u52259 {
  294. border-width:0px;
  295. position:absolute;
  296. left:330px;
  297. top:84px;
  298. width:7px;
  299. height:7px;
  300. display:flex;
  301. transition:none;
  302. }
  303. #u52259 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u52259_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u52259_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u52260 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. transition:none;
  337. }
  338. #u52260 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u52260_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u52260_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u52261 {
  360. border-width:0px;
  361. position:absolute;
  362. left:29px;
  363. top:24px;
  364. width:375px;
  365. height:44px;
  366. display:flex;
  367. transition:none;
  368. }
  369. #u52261 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u52261_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u52261_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u52262_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:375px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(255, 255, 255, 1);
  399. box-sizing:border-box;
  400. border-width:1px;
  401. border-style:solid;
  402. border-color:rgba(242, 242, 242, 1);
  403. border-radius:26px;
  404. border-top-left-radius:0px;
  405. border-top-right-radius:0px;
  406. filter:drop-shadow(none);
  407. transition:none;
  408. }
  409. #u52262 {
  410. border-width:0px;
  411. position:absolute;
  412. left:29px;
  413. top:788px;
  414. width:375px;
  415. height:50px;
  416. display:flex;
  417. transition:none;
  418. transform-origin:50% 50%;
  419. }
  420. #u52262 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u52262_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u52263 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u52264 {
  442. border-width:0px;
  443. position:absolute;
  444. left:69px;
  445. top:792px;
  446. width:24px;
  447. height:24px;
  448. display:flex;
  449. transition:none;
  450. font-size:8px;
  451. }
  452. #u52264 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u52264_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u52264_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u52265_div {
  473. border-width:0px;
  474. position:absolute;
  475. left:0px;
  476. top:0px;
  477. width:25px;
  478. height:17px;
  479. background:inherit;
  480. background-color:rgba(255, 255, 255, 0);
  481. border-radius:0px;
  482. filter:drop-shadow(none);
  483. transition:none;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:12px;
  488. }
  489. #u52265 {
  490. border-width:0px;
  491. position:absolute;
  492. left:69px;
  493. top:817px;
  494. width:25px;
  495. height:17px;
  496. display:flex;
  497. transition:none;
  498. transform-origin:50% 50%;
  499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. font-size:12px;
  503. }
  504. #u52265 .text {
  505. position:absolute;
  506. align-self:flex-start;
  507. padding:0px 0px 0px 0px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u52265_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u52266 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u52267 {
  525. border-width:0px;
  526. position:absolute;
  527. left:339px;
  528. top:794px;
  529. width:24px;
  530. height:24px;
  531. display:flex;
  532. transition:none;
  533. font-size:8px;
  534. }
  535. #u52267 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u52267_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u52267_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u52268_div {
  556. border-width:0px;
  557. position:absolute;
  558. left:0px;
  559. top:0px;
  560. width:25px;
  561. height:17px;
  562. background:inherit;
  563. background-color:rgba(255, 255, 255, 0);
  564. border-radius:0px;
  565. filter:drop-shadow(none);
  566. transition:none;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:12px;
  571. }
  572. #u52268 {
  573. border-width:0px;
  574. position:absolute;
  575. left:339px;
  576. top:819px;
  577. width:25px;
  578. height:17px;
  579. display:flex;
  580. transition:none;
  581. transform-origin:50% 50%;
  582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  583. font-weight:400;
  584. font-style:normal;
  585. font-size:12px;
  586. }
  587. #u52268 .text {
  588. position:absolute;
  589. align-self:flex-start;
  590. padding:0px 0px 0px 0px;
  591. box-sizing:border-box;
  592. width:100%;
  593. }
  594. #u52268_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u52269_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:375px;
  605. height:681px;
  606. background:inherit;
  607. background-color:rgba(242, 242, 242, 0.4627450980392157);
  608. border-radius:0px;
  609. filter:drop-shadow(none);
  610. transition:none;
  611. }
  612. #u52269 {
  613. border-width:0px;
  614. position:absolute;
  615. left:29px;
  616. top:107px;
  617. width:375px;
  618. height:681px;
  619. display:flex;
  620. transition:none;
  621. transform-origin:50% 50%;
  622. }
  623. #u52269 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u52269_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u52270 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u52271 {
  645. border-width:0px;
  646. position:absolute;
  647. left:251px;
  648. top:792px;
  649. width:24px;
  650. height:24px;
  651. display:flex;
  652. transition:none;
  653. font-size:8px;
  654. }
  655. #u52271 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u52271_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u52271_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u52272_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:37px;
  681. height:17px;
  682. background:inherit;
  683. background-color:rgba(255, 255, 255, 0);
  684. border-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:12px;
  691. }
  692. #u52272 {
  693. border-width:0px;
  694. position:absolute;
  695. left:245px;
  696. top:817px;
  697. width:37px;
  698. height:17px;
  699. display:flex;
  700. transition:none;
  701. transform-origin:50% 50%;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. }
  707. #u52272 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u52272_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u52273 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u52274 {
  728. border-width:0px;
  729. position:absolute;
  730. left:157px;
  731. top:792px;
  732. width:24px;
  733. height:24px;
  734. display:flex;
  735. transition:none;
  736. font-size:8px;
  737. }
  738. #u52274 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u52274_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u52274_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u52275_div {
  759. border-width:0px;
  760. position:absolute;
  761. left:0px;
  762. top:0px;
  763. width:37px;
  764. height:17px;
  765. background:inherit;
  766. background-color:rgba(255, 255, 255, 0);
  767. border-radius:0px;
  768. filter:drop-shadow(none);
  769. transition:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u52275 {
  776. border-width:0px;
  777. position:absolute;
  778. left:151px;
  779. top:817px;
  780. width:37px;
  781. height:17px;
  782. display:flex;
  783. transition:none;
  784. transform-origin:50% 50%;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:12px;
  789. }
  790. #u52275 .text {
  791. position:absolute;
  792. align-self:flex-start;
  793. padding:0px 0px 0px 0px;
  794. box-sizing:border-box;
  795. width:100%;
  796. }
  797. #u52275_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u52276_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:732px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u52276 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u52276 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u52276_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u52277_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:41px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  851. box-sizing:border-box;
  852. border-width:1px;
  853. border-style:solid;
  854. border-color:rgba(215, 215, 215, 1);
  855. border-left:0px;
  856. border-top:0px;
  857. border-right:0px;
  858. border-radius:0px;
  859. border-bottom-right-radius:0px;
  860. border-bottom-left-radius:0px;
  861. filter:drop-shadow(none);
  862. transition:none;
  863. }
  864. #u52277 {
  865. border-width:0px;
  866. position:absolute;
  867. left:29px;
  868. top:67px;
  869. width:375px;
  870. height:41px;
  871. display:flex;
  872. transition:none;
  873. transform-origin:50% 50%;
  874. }
  875. #u52277 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u52277_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. visibility:hidden;
  887. }
  888. #u52278 {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:0px;
  894. height:0px;
  895. }
  896. #u52279_div {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:88px;
  902. height:32px;
  903. background:inherit;
  904. background-color:rgba(255, 255, 255, 1);
  905. box-sizing:border-box;
  906. border-width:1px;
  907. border-style:solid;
  908. border-color:rgba(242, 242, 242, 1);
  909. border-radius:33px;
  910. filter:drop-shadow(none);
  911. transition:none;
  912. }
  913. #u52279 {
  914. border-width:0px;
  915. position:absolute;
  916. left:309px;
  917. top:71px;
  918. width:88px;
  919. height:32px;
  920. display:flex;
  921. transition:none;
  922. transform-origin:50% 50%;
  923. }
  924. #u52279 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u52279_text {
  932. border-width:0px;
  933. word-wrap:break-word;
  934. text-transform:none;
  935. visibility:hidden;
  936. }
  937. #u52280 {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:0px;
  943. height:0px;
  944. }
  945. #u52281 {
  946. border-width:0px;
  947. position:absolute;
  948. left:372px;
  949. top:78px;
  950. width:18px;
  951. height:18px;
  952. display:flex;
  953. transition:none;
  954. }
  955. #u52281 .text {
  956. position:absolute;
  957. align-self:center;
  958. padding:2px 2px 2px 2px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u52281_img {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:18px;
  968. height:18px;
  969. }
  970. #u52281_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u52282 {
  977. border-width:0px;
  978. position:absolute;
  979. left:378px;
  980. top:84px;
  981. width:6px;
  982. height:6px;
  983. display:flex;
  984. transition:none;
  985. }
  986. #u52282 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:2px 2px 2px 2px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u52282_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:6px;
  999. height:6px;
  1000. }
  1001. #u52282_text {
  1002. border-width:0px;
  1003. word-wrap:break-word;
  1004. text-transform:none;
  1005. visibility:hidden;
  1006. }
  1007. #u52283 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:0px;
  1013. height:0px;
  1014. }
  1015. #u52284 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:323px;
  1019. top:85px;
  1020. width:5px;
  1021. height:5px;
  1022. display:flex;
  1023. transition:none;
  1024. }
  1025. #u52284 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u52284_img {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:5px;
  1038. height:5px;
  1039. }
  1040. #u52284_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u52285 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:339px;
  1050. top:85px;
  1051. width:5px;
  1052. height:5px;
  1053. display:flex;
  1054. transition:none;
  1055. }
  1056. #u52285 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u52285_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u52285_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u52286 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:330px;
  1081. top:84px;
  1082. width:7px;
  1083. height:7px;
  1084. display:flex;
  1085. transition:none;
  1086. }
  1087. #u52286 .text {
  1088. position:absolute;
  1089. align-self:center;
  1090. padding:2px 2px 2px 2px;
  1091. box-sizing:border-box;
  1092. width:100%;
  1093. }
  1094. #u52286_img {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:7px;
  1100. height:7px;
  1101. }
  1102. #u52286_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u52287 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:347px;
  1112. top:87px;
  1113. width:18px;
  1114. height:1px;
  1115. display:flex;
  1116. -webkit-transform:rotate(90deg);
  1117. -moz-transform:rotate(90deg);
  1118. -ms-transform:rotate(90deg);
  1119. transform:rotate(90deg);
  1120. transition:none;
  1121. }
  1122. #u52287 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u52287_img {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:19px;
  1135. height:2px;
  1136. }
  1137. #u52287_text {
  1138. border-width:0px;
  1139. word-wrap:break-word;
  1140. text-transform:none;
  1141. visibility:hidden;
  1142. }
  1143. #u52288_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:12px;
  1149. height:12px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. box-sizing:border-box;
  1153. border-width:2px;
  1154. border-style:solid;
  1155. border-color:rgba(51, 51, 51, 1);
  1156. border-right:0px;
  1157. border-bottom:0px;
  1158. border-radius:0px;
  1159. border-top-right-radius:0px;
  1160. border-bottom-left-radius:0px;
  1161. filter:drop-shadow(none);
  1162. transition:none;
  1163. }
  1164. #u52288 {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:44px;
  1168. top:81px;
  1169. width:12px;
  1170. height:12px;
  1171. display:flex;
  1172. -webkit-transform:rotate(315deg);
  1173. -moz-transform:rotate(315deg);
  1174. -ms-transform:rotate(315deg);
  1175. transform:rotate(315deg);
  1176. transition:none;
  1177. transform-origin:50% 50%;
  1178. }
  1179. #u52288 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:2px 2px 2px 2px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u52288_text {
  1187. border-width:0px;
  1188. word-wrap:break-word;
  1189. text-transform:none;
  1190. visibility:hidden;
  1191. }
  1192. #u52289 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:0px;
  1198. height:0px;
  1199. }
  1200. #u52290_div {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:375px;
  1206. height:60px;
  1207. background:inherit;
  1208. background-color:rgba(255, 255, 255, 1);
  1209. box-sizing:border-box;
  1210. border-width:1px;
  1211. border-style:solid;
  1212. border-color:rgba(242, 242, 242, 1);
  1213. border-radius:20px;
  1214. border-top-left-radius:0px;
  1215. border-top-right-radius:0px;
  1216. filter:drop-shadow(none);
  1217. transition:none;
  1218. }
  1219. #u52290 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:29px;
  1223. top:779px;
  1224. width:375px;
  1225. height:60px;
  1226. display:flex;
  1227. transition:none;
  1228. transform-origin:50% 50%;
  1229. }
  1230. #u52290 .text {
  1231. position:absolute;
  1232. align-self:center;
  1233. padding:2px 2px 2px 2px;
  1234. box-sizing:border-box;
  1235. width:100%;
  1236. }
  1237. #u52290_text {
  1238. border-width:0px;
  1239. word-wrap:break-word;
  1240. text-transform:none;
  1241. visibility:hidden;
  1242. }
  1243. #u52291_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:97px;
  1249. height:40px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 1);
  1252. box-sizing:border-box;
  1253. border-width:1px;
  1254. border-style:solid;
  1255. border-color:rgba(121, 121, 121, 1);
  1256. border-radius:63px;
  1257. filter:drop-shadow(none);
  1258. transition:none;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:14px;
  1263. color:#555555;
  1264. }
  1265. #u52291 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:186px;
  1269. top:789px;
  1270. width:97px;
  1271. height:40px;
  1272. display:flex;
  1273. transition:none;
  1274. transform-origin:50% 50%;
  1275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1276. font-weight:400;
  1277. font-style:normal;
  1278. font-size:14px;
  1279. color:#555555;
  1280. }
  1281. #u52291 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u52291_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u52292_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:97px;
  1299. height:40px;
  1300. background:inherit;
  1301. background-color:rgba(24, 144, 255, 1);
  1302. border-radius:63px;
  1303. filter:drop-shadow(none);
  1304. transition:none;
  1305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1306. font-weight:400;
  1307. font-style:normal;
  1308. font-size:14px;
  1309. color:#FFFFFF;
  1310. }
  1311. #u52292 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:293px;
  1315. top:789px;
  1316. width:97px;
  1317. height:40px;
  1318. display:flex;
  1319. transition:none;
  1320. transform-origin:50% 50%;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:14px;
  1325. color:#FFFFFF;
  1326. }
  1327. #u52292 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:2px 2px 2px 2px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u52292_text {
  1335. border-width:0px;
  1336. word-wrap:break-word;
  1337. text-transform:none;
  1338. }
  1339. #u52293_div {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:109px;
  1345. height:25px;
  1346. background:inherit;
  1347. background-color:rgba(255, 255, 255, 0);
  1348. border-radius:0px;
  1349. filter:drop-shadow(none);
  1350. transition:none;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. font-size:18px;
  1355. }
  1356. #u52293 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:64px;
  1360. top:75px;
  1361. width:109px;
  1362. height:25px;
  1363. display:flex;
  1364. transition:none;
  1365. transform-origin:50% 50%;
  1366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:18px;
  1370. }
  1371. #u52293 .text {
  1372. position:absolute;
  1373. align-self:flex-start;
  1374. padding:0px 0px 0px 0px;
  1375. box-sizing:border-box;
  1376. width:100%;
  1377. }
  1378. #u52293_text {
  1379. border-width:0px;
  1380. white-space:nowrap;
  1381. text-transform:none;
  1382. }
  1383. #u52294_div {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:375px;
  1389. height:50px;
  1390. background:inherit;
  1391. background-color:rgba(255, 255, 255, 1);
  1392. border-left:0px;
  1393. border-top:0px;
  1394. border-right:0px;
  1395. border-radius:0px;
  1396. border-bottom-right-radius:0px;
  1397. border-bottom-left-radius:0px;
  1398. filter:drop-shadow(none);
  1399. transition:none;
  1400. }
  1401. #u52294 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:29px;
  1405. top:284px;
  1406. width:375px;
  1407. height:50px;
  1408. display:flex;
  1409. transition:none;
  1410. transform-origin:50% 50%;
  1411. }
  1412. #u52294 .text {
  1413. position:absolute;
  1414. align-self:center;
  1415. padding:2px 2px 2px 2px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u52294_text {
  1420. border-width:0px;
  1421. word-wrap:break-word;
  1422. text-transform:none;
  1423. visibility:hidden;
  1424. }
  1425. #u52295_div {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:57px;
  1431. height:30px;
  1432. background:inherit;
  1433. background-color:rgba(255, 255, 255, 0);
  1434. border-left:0px;
  1435. border-top:0px;
  1436. border-right:0px;
  1437. border-radius:0px;
  1438. border-bottom-right-radius:0px;
  1439. border-bottom-left-radius:0px;
  1440. filter:drop-shadow(none);
  1441. transition:none;
  1442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1443. font-weight:400;
  1444. font-style:normal;
  1445. font-size:14px;
  1446. line-height:30px;
  1447. }
  1448. #u52295 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:49px;
  1452. top:294px;
  1453. width:57px;
  1454. height:30px;
  1455. display:flex;
  1456. transition:none;
  1457. transform-origin:50% 50%;
  1458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:14px;
  1462. line-height:30px;
  1463. }
  1464. #u52295 .text {
  1465. position:absolute;
  1466. align-self:center;
  1467. padding:0px 0px 0px 0px;
  1468. box-sizing:border-box;
  1469. width:100%;
  1470. }
  1471. #u52295_text {
  1472. border-width:0px;
  1473. white-space:nowrap;
  1474. text-transform:none;
  1475. }
  1476. #u52296_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:60px;
  1482. height:30px;
  1483. background:inherit;
  1484. background-color:rgba(24, 144, 255, 1);
  1485. border-radius:4px;
  1486. filter:drop-shadow(none);
  1487. transition:none;
  1488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1489. font-weight:400;
  1490. font-style:normal;
  1491. font-size:12px;
  1492. color:#FFFFFF;
  1493. }
  1494. #u52296 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:329px;
  1498. top:294px;
  1499. width:60px;
  1500. height:30px;
  1501. display:flex;
  1502. transition:none;
  1503. transform-origin:50% 50%;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:12px;
  1508. color:#FFFFFF;
  1509. }
  1510. #u52296 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 2px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u52296_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. }
  1522. #u52297_div {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:60px;
  1528. height:30px;
  1529. background:inherit;
  1530. background-color:rgba(255, 255, 255, 1);
  1531. box-sizing:border-box;
  1532. border-width:1px;
  1533. border-style:solid;
  1534. border-color:rgba(170, 170, 170, 1);
  1535. border-radius:4px;
  1536. filter:drop-shadow(none);
  1537. transition:none;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. font-size:12px;
  1542. }
  1543. #u52297 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:259px;
  1547. top:294px;
  1548. width:60px;
  1549. height:30px;
  1550. display:flex;
  1551. transition:none;
  1552. transform-origin:50% 50%;
  1553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1554. font-weight:400;
  1555. font-style:normal;
  1556. font-size:12px;
  1557. }
  1558. #u52297 .text {
  1559. position:absolute;
  1560. align-self:center;
  1561. padding:2px 2px 2px 2px;
  1562. box-sizing:border-box;
  1563. width:100%;
  1564. }
  1565. #u52297_text {
  1566. border-width:0px;
  1567. word-wrap:break-word;
  1568. text-transform:none;
  1569. }
  1570. #u52298_div {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:375px;
  1576. height:50px;
  1577. background:inherit;
  1578. background-color:rgba(255, 255, 255, 1);
  1579. border-left:0px;
  1580. border-top:0px;
  1581. border-right:0px;
  1582. border-radius:0px;
  1583. border-bottom-right-radius:0px;
  1584. border-bottom-left-radius:0px;
  1585. filter:drop-shadow(none);
  1586. transition:none;
  1587. }
  1588. #u52298 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:29px;
  1592. top:233px;
  1593. width:375px;
  1594. height:50px;
  1595. display:flex;
  1596. transition:none;
  1597. transform-origin:50% 50%;
  1598. }
  1599. #u52298 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u52298_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. visibility:hidden;
  1611. }
  1612. #u52299_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:57px;
  1618. height:30px;
  1619. background:inherit;
  1620. background-color:rgba(255, 255, 255, 0);
  1621. border-left:0px;
  1622. border-top:0px;
  1623. border-right:0px;
  1624. border-radius:0px;
  1625. border-bottom-right-radius:0px;
  1626. border-bottom-left-radius:0px;
  1627. filter:drop-shadow(none);
  1628. transition:none;
  1629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1630. font-weight:400;
  1631. font-style:normal;
  1632. font-size:14px;
  1633. line-height:30px;
  1634. }
  1635. #u52299 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:49px;
  1639. top:243px;
  1640. width:57px;
  1641. height:30px;
  1642. display:flex;
  1643. transition:none;
  1644. transform-origin:50% 50%;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:14px;
  1649. line-height:30px;
  1650. }
  1651. #u52299 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:0px 0px 0px 0px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u52299_text {
  1659. border-width:0px;
  1660. white-space:nowrap;
  1661. text-transform:none;
  1662. }
  1663. #u52300 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:0px;
  1669. height:0px;
  1670. }
  1671. #u52301_div {
  1672. border-width:0px;
  1673. position:absolute;
  1674. left:0px;
  1675. top:0px;
  1676. width:8px;
  1677. height:8px;
  1678. background:inherit;
  1679. background-color:rgba(255, 255, 255, 0);
  1680. box-sizing:border-box;
  1681. border-width:1px;
  1682. border-style:solid;
  1683. border-color:rgba(127, 127, 127, 1);
  1684. border-right:0px;
  1685. border-bottom:0px;
  1686. border-radius:0px;
  1687. border-top-right-radius:0px;
  1688. border-bottom-left-radius:0px;
  1689. filter:drop-shadow(none);
  1690. transition:none;
  1691. }
  1692. #u52301 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:379px;
  1696. top:254px;
  1697. width:8px;
  1698. height:8px;
  1699. display:flex;
  1700. -webkit-transform:rotate(135deg);
  1701. -moz-transform:rotate(135deg);
  1702. -ms-transform:rotate(135deg);
  1703. transform:rotate(135deg);
  1704. transition:none;
  1705. transform-origin:50% 50%;
  1706. }
  1707. #u52301 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 2px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u52301_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. visibility:hidden;
  1719. }
  1720. #u52302_div {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:57px;
  1726. height:30px;
  1727. background:inherit;
  1728. background-color:rgba(255, 255, 255, 0);
  1729. border-left:0px;
  1730. border-top:0px;
  1731. border-right:0px;
  1732. border-radius:0px;
  1733. border-bottom-right-radius:0px;
  1734. border-bottom-left-radius:0px;
  1735. filter:drop-shadow(none);
  1736. transition:none;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:14px;
  1741. color:#AAAAAA;
  1742. text-align:right;
  1743. line-height:30px;
  1744. }
  1745. #u52302 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:315px;
  1749. top:243px;
  1750. width:57px;
  1751. height:30px;
  1752. display:flex;
  1753. transition:none;
  1754. transform-origin:50% 50%;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:14px;
  1759. color:#AAAAAA;
  1760. text-align:right;
  1761. line-height:30px;
  1762. }
  1763. #u52302 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:0px 0px 0px 0px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u52302_text {
  1771. border-width:0px;
  1772. white-space:nowrap;
  1773. text-transform:none;
  1774. }
  1775. #u52303 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:0px;
  1781. height:0px;
  1782. }
  1783. #u52304_div {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:375px;
  1789. height:50px;
  1790. background:inherit;
  1791. background-color:rgba(255, 255, 255, 1);
  1792. border-left:0px;
  1793. border-top:0px;
  1794. border-right:0px;
  1795. border-radius:0px;
  1796. border-bottom-right-radius:0px;
  1797. border-bottom-left-radius:0px;
  1798. filter:drop-shadow(none);
  1799. transition:none;
  1800. }
  1801. #u52304 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:29px;
  1805. top:446px;
  1806. width:375px;
  1807. height:50px;
  1808. display:flex;
  1809. transition:none;
  1810. transform-origin:50% 50%;
  1811. }
  1812. #u52304 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u52304_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. visibility:hidden;
  1824. }
  1825. #u52305_div {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:43px;
  1831. height:30px;
  1832. background:inherit;
  1833. background-color:rgba(255, 255, 255, 0);
  1834. border-left:0px;
  1835. border-top:0px;
  1836. border-right:0px;
  1837. border-radius:0px;
  1838. border-bottom-right-radius:0px;
  1839. border-bottom-left-radius:0px;
  1840. filter:drop-shadow(none);
  1841. transition:none;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:14px;
  1846. line-height:30px;
  1847. }
  1848. #u52305 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:49px;
  1852. top:456px;
  1853. width:43px;
  1854. height:30px;
  1855. display:flex;
  1856. transition:none;
  1857. transform-origin:50% 50%;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:14px;
  1862. line-height:30px;
  1863. }
  1864. #u52305 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:0px 0px 0px 0px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u52305_text {
  1872. border-width:0px;
  1873. white-space:nowrap;
  1874. text-transform:none;
  1875. }
  1876. #u52306 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:0px;
  1882. height:0px;
  1883. }
  1884. #u52307_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:8px;
  1890. height:8px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. box-sizing:border-box;
  1894. border-width:1px;
  1895. border-style:solid;
  1896. border-color:rgba(127, 127, 127, 1);
  1897. border-right:0px;
  1898. border-bottom:0px;
  1899. border-radius:0px;
  1900. border-top-right-radius:0px;
  1901. border-bottom-left-radius:0px;
  1902. filter:drop-shadow(none);
  1903. transition:none;
  1904. }
  1905. #u52307 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:379px;
  1909. top:467px;
  1910. width:8px;
  1911. height:8px;
  1912. display:flex;
  1913. -webkit-transform:rotate(135deg);
  1914. -moz-transform:rotate(135deg);
  1915. -ms-transform:rotate(135deg);
  1916. transform:rotate(135deg);
  1917. transition:none;
  1918. transform-origin:50% 50%;
  1919. }
  1920. #u52307 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 2px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u52307_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. visibility:hidden;
  1932. }
  1933. #u52308_div {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:0px;
  1937. top:0px;
  1938. width:43px;
  1939. height:30px;
  1940. background:inherit;
  1941. background-color:rgba(255, 255, 255, 0);
  1942. border-left:0px;
  1943. border-top:0px;
  1944. border-right:0px;
  1945. border-radius:0px;
  1946. border-bottom-right-radius:0px;
  1947. border-bottom-left-radius:0px;
  1948. filter:drop-shadow(none);
  1949. transition:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:14px;
  1954. color:#AAAAAA;
  1955. text-align:right;
  1956. line-height:30px;
  1957. }
  1958. #u52308 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:329px;
  1962. top:456px;
  1963. width:43px;
  1964. height:30px;
  1965. display:flex;
  1966. transition:none;
  1967. transform-origin:50% 50%;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. color:#AAAAAA;
  1973. text-align:right;
  1974. line-height:30px;
  1975. }
  1976. #u52308 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:0px 0px 0px 0px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u52308_text {
  1984. border-width:0px;
  1985. white-space:nowrap;
  1986. text-transform:none;
  1987. }
  1988. #u52309 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:0px;
  1994. height:0px;
  1995. }
  1996. #u52310_div {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:375px;
  2002. height:140px;
  2003. background:inherit;
  2004. background-color:rgba(255, 255, 255, 1);
  2005. border-left:0px;
  2006. border-top:0px;
  2007. border-right:0px;
  2008. border-radius:0px;
  2009. border-bottom-right-radius:0px;
  2010. border-bottom-left-radius:0px;
  2011. filter:drop-shadow(none);
  2012. transition:none;
  2013. }
  2014. #u52310 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:29px;
  2018. top:497px;
  2019. width:375px;
  2020. height:140px;
  2021. display:flex;
  2022. transition:none;
  2023. transform-origin:50% 50%;
  2024. }
  2025. #u52310 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u52310_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. visibility:hidden;
  2037. }
  2038. #u52311_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:57px;
  2044. height:30px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border-left:0px;
  2048. border-top:0px;
  2049. border-right:0px;
  2050. border-radius:0px;
  2051. border-bottom-right-radius:0px;
  2052. border-bottom-left-radius:0px;
  2053. filter:drop-shadow(none);
  2054. transition:none;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:14px;
  2059. line-height:30px;
  2060. }
  2061. #u52311 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:49px;
  2065. top:507px;
  2066. width:57px;
  2067. height:30px;
  2068. display:flex;
  2069. transition:none;
  2070. transform-origin:50% 50%;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:14px;
  2075. line-height:30px;
  2076. }
  2077. #u52311 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:0px 0px 0px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u52311_text {
  2085. border-width:0px;
  2086. white-space:nowrap;
  2087. text-transform:none;
  2088. }
  2089. #u52312_div {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:99px;
  2095. height:30px;
  2096. background:inherit;
  2097. background-color:rgba(255, 255, 255, 0);
  2098. border-left:0px;
  2099. border-top:0px;
  2100. border-right:0px;
  2101. border-radius:0px;
  2102. border-bottom-right-radius:0px;
  2103. border-bottom-left-radius:0px;
  2104. filter:drop-shadow(none);
  2105. transition:none;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. color:#AAAAAA;
  2111. line-height:30px;
  2112. }
  2113. #u52312 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:49px;
  2117. top:537px;
  2118. width:99px;
  2119. height:30px;
  2120. display:flex;
  2121. transition:none;
  2122. transform-origin:50% 50%;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. color:#AAAAAA;
  2128. line-height:30px;
  2129. }
  2130. #u52312 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:0px 0px 0px 0px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u52312_text {
  2138. border-width:0px;
  2139. white-space:nowrap;
  2140. text-transform:none;
  2141. }
  2142. #u52313_div {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:40px;
  2148. height:40px;
  2149. background:inherit;
  2150. background-color:rgba(255, 255, 255, 1);
  2151. box-sizing:border-box;
  2152. border-width:1px;
  2153. border-style:solid;
  2154. border-color:rgba(170, 170, 170, 1);
  2155. border-radius:4px;
  2156. filter:drop-shadow(none);
  2157. transition:none;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:18px;
  2162. }
  2163. #u52313 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:49px;
  2167. top:587px;
  2168. width:40px;
  2169. height:40px;
  2170. display:flex;
  2171. transition:none;
  2172. transform-origin:50% 50%;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:18px;
  2177. }
  2178. #u52313 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 2px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u52313_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. }
  2190. #u52314 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:0px;
  2196. height:0px;
  2197. }
  2198. #u52315_div {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:375px;
  2204. height:50px;
  2205. background:inherit;
  2206. background-color:rgba(255, 255, 255, 1);
  2207. border-left:0px;
  2208. border-top:0px;
  2209. border-right:0px;
  2210. border-radius:0px;
  2211. border-bottom-right-radius:0px;
  2212. border-bottom-left-radius:0px;
  2213. filter:drop-shadow(none);
  2214. transition:none;
  2215. }
  2216. #u52315 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:29px;
  2220. top:344px;
  2221. width:375px;
  2222. height:50px;
  2223. display:flex;
  2224. transition:none;
  2225. transform-origin:50% 50%;
  2226. }
  2227. #u52315 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 2px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u52315_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u52316_div {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:57px;
  2246. height:30px;
  2247. background:inherit;
  2248. background-color:rgba(255, 255, 255, 0);
  2249. border-left:0px;
  2250. border-top:0px;
  2251. border-right:0px;
  2252. border-radius:0px;
  2253. border-bottom-right-radius:0px;
  2254. border-bottom-left-radius:0px;
  2255. filter:drop-shadow(none);
  2256. transition:none;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:14px;
  2261. line-height:30px;
  2262. }
  2263. #u52316 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:49px;
  2267. top:354px;
  2268. width:57px;
  2269. height:30px;
  2270. display:flex;
  2271. transition:none;
  2272. transform-origin:50% 50%;
  2273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2274. font-weight:400;
  2275. font-style:normal;
  2276. font-size:14px;
  2277. line-height:30px;
  2278. }
  2279. #u52316 .text {
  2280. position:absolute;
  2281. align-self:center;
  2282. padding:0px 0px 0px 0px;
  2283. box-sizing:border-box;
  2284. width:100%;
  2285. }
  2286. #u52316_text {
  2287. border-width:0px;
  2288. white-space:nowrap;
  2289. text-transform:none;
  2290. }
  2291. #u52317 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:0px;
  2297. height:0px;
  2298. }
  2299. #u52318_div {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:8px;
  2305. height:8px;
  2306. background:inherit;
  2307. background-color:rgba(255, 255, 255, 0);
  2308. box-sizing:border-box;
  2309. border-width:1px;
  2310. border-style:solid;
  2311. border-color:rgba(127, 127, 127, 1);
  2312. border-right:0px;
  2313. border-bottom:0px;
  2314. border-radius:0px;
  2315. border-top-right-radius:0px;
  2316. border-bottom-left-radius:0px;
  2317. filter:drop-shadow(none);
  2318. transition:none;
  2319. }
  2320. #u52318 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:379px;
  2324. top:365px;
  2325. width:8px;
  2326. height:8px;
  2327. display:flex;
  2328. -webkit-transform:rotate(135deg);
  2329. -moz-transform:rotate(135deg);
  2330. -ms-transform:rotate(135deg);
  2331. transform:rotate(135deg);
  2332. transition:none;
  2333. transform-origin:50% 50%;
  2334. }
  2335. #u52318 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 2px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u52318_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. visibility:hidden;
  2347. }
  2348. #u52319_div {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:43px;
  2354. height:30px;
  2355. background:inherit;
  2356. background-color:rgba(255, 255, 255, 0);
  2357. border-left:0px;
  2358. border-top:0px;
  2359. border-right:0px;
  2360. border-radius:0px;
  2361. border-bottom-right-radius:0px;
  2362. border-bottom-left-radius:0px;
  2363. filter:drop-shadow(none);
  2364. transition:none;
  2365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2366. font-weight:400;
  2367. font-style:normal;
  2368. font-size:14px;
  2369. color:#AAAAAA;
  2370. text-align:right;
  2371. line-height:30px;
  2372. }
  2373. #u52319 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:329px;
  2377. top:354px;
  2378. width:43px;
  2379. height:30px;
  2380. display:flex;
  2381. transition:none;
  2382. transform-origin:50% 50%;
  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. text-align:right;
  2389. line-height:30px;
  2390. }
  2391. #u52319 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:0px 0px 0px 0px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u52319_text {
  2399. border-width:0px;
  2400. white-space:nowrap;
  2401. text-transform:none;
  2402. }
  2403. #u52320 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:0px;
  2409. height:0px;
  2410. }
  2411. #u52321_div {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:375px;
  2417. height:50px;
  2418. background:inherit;
  2419. background-color:rgba(255, 255, 255, 1);
  2420. border-left:0px;
  2421. border-top:0px;
  2422. border-right:0px;
  2423. border-radius:0px;
  2424. border-bottom-right-radius:0px;
  2425. border-bottom-left-radius:0px;
  2426. filter:drop-shadow(none);
  2427. transition:none;
  2428. }
  2429. #u52321 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:29px;
  2433. top:395px;
  2434. width:375px;
  2435. height:50px;
  2436. display:flex;
  2437. transition:none;
  2438. transform-origin:50% 50%;
  2439. }
  2440. #u52321 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 2px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u52321_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. visibility:hidden;
  2452. }
  2453. #u52322_div {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:43px;
  2459. height:30px;
  2460. background:inherit;
  2461. background-color:rgba(255, 255, 255, 0);
  2462. border-left:0px;
  2463. border-top:0px;
  2464. border-right:0px;
  2465. border-radius:0px;
  2466. border-bottom-right-radius:0px;
  2467. border-bottom-left-radius:0px;
  2468. filter:drop-shadow(none);
  2469. transition:none;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:14px;
  2474. line-height:30px;
  2475. }
  2476. #u52322 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:49px;
  2480. top:405px;
  2481. width:43px;
  2482. height:30px;
  2483. display:flex;
  2484. transition:none;
  2485. transform-origin:50% 50%;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:14px;
  2490. line-height:30px;
  2491. }
  2492. #u52322 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:0px 0px 0px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u52322_text {
  2500. border-width:0px;
  2501. white-space:nowrap;
  2502. text-transform:none;
  2503. }
  2504. #u52323 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:0px;
  2510. height:0px;
  2511. }
  2512. #u52324_div {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:8px;
  2518. height:8px;
  2519. background:inherit;
  2520. background-color:rgba(255, 255, 255, 0);
  2521. box-sizing:border-box;
  2522. border-width:1px;
  2523. border-style:solid;
  2524. border-color:rgba(127, 127, 127, 1);
  2525. border-right:0px;
  2526. border-bottom:0px;
  2527. border-radius:0px;
  2528. border-top-right-radius:0px;
  2529. border-bottom-left-radius:0px;
  2530. filter:drop-shadow(none);
  2531. transition:none;
  2532. }
  2533. #u52324 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:379px;
  2537. top:416px;
  2538. width:8px;
  2539. height:8px;
  2540. display:flex;
  2541. -webkit-transform:rotate(135deg);
  2542. -moz-transform:rotate(135deg);
  2543. -ms-transform:rotate(135deg);
  2544. transform:rotate(135deg);
  2545. transition:none;
  2546. transform-origin:50% 50%;
  2547. }
  2548. #u52324 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 2px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u52324_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u52325_div {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:43px;
  2567. height:30px;
  2568. background:inherit;
  2569. background-color:rgba(255, 255, 255, 0);
  2570. border-left:0px;
  2571. border-top:0px;
  2572. border-right:0px;
  2573. border-radius:0px;
  2574. border-bottom-right-radius:0px;
  2575. border-bottom-left-radius:0px;
  2576. filter:drop-shadow(none);
  2577. transition:none;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:14px;
  2582. color:#AAAAAA;
  2583. text-align:right;
  2584. line-height:30px;
  2585. }
  2586. #u52325 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:329px;
  2590. top:405px;
  2591. width:43px;
  2592. height:30px;
  2593. display:flex;
  2594. transition:none;
  2595. transform-origin:50% 50%;
  2596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:14px;
  2600. color:#AAAAAA;
  2601. text-align:right;
  2602. line-height:30px;
  2603. }
  2604. #u52325 .text {
  2605. position:absolute;
  2606. align-self:center;
  2607. padding:0px 0px 0px 0px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u52325_text {
  2612. border-width:0px;
  2613. white-space:nowrap;
  2614. text-transform:none;
  2615. }
  2616. #u52326 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:455px;
  2620. top:0px;
  2621. width:433px;
  2622. height:865px;
  2623. }
  2624. #u52327 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:433px;
  2630. height:865px;
  2631. display:flex;
  2632. transition:none;
  2633. }
  2634. #u52327 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 2px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u52327_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:433px;
  2647. height:865px;
  2648. }
  2649. #u52327_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u52328_div {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:375px;
  2661. height:40px;
  2662. background:inherit;
  2663. background-color:rgba(255, 255, 255, 1);
  2664. box-sizing:border-box;
  2665. border-width:1px;
  2666. border-style:solid;
  2667. border-color:rgba(215, 215, 215, 1);
  2668. border-left:0px;
  2669. border-top:0px;
  2670. border-right:0px;
  2671. border-radius:0px;
  2672. border-bottom-right-radius:0px;
  2673. border-bottom-left-radius:0px;
  2674. filter:drop-shadow(none);
  2675. transition:none;
  2676. }
  2677. #u52328 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:29px;
  2681. top:67px;
  2682. width:375px;
  2683. height:40px;
  2684. display:flex;
  2685. transition:none;
  2686. transform-origin:50% 50%;
  2687. }
  2688. #u52328 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u52328_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u52329 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:0px;
  2707. height:0px;
  2708. }
  2709. #u52330_div {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:88px;
  2715. height:32px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 1);
  2718. box-sizing:border-box;
  2719. border-width:1px;
  2720. border-style:solid;
  2721. border-color:rgba(242, 242, 242, 1);
  2722. border-radius:33px;
  2723. filter:drop-shadow(none);
  2724. transition:none;
  2725. }
  2726. #u52330 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:309px;
  2730. top:71px;
  2731. width:88px;
  2732. height:32px;
  2733. display:flex;
  2734. transition:none;
  2735. transform-origin:50% 50%;
  2736. }
  2737. #u52330 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 2px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u52330_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u52331 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:0px;
  2756. height:0px;
  2757. }
  2758. #u52332 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:372px;
  2762. top:78px;
  2763. width:18px;
  2764. height:18px;
  2765. display:flex;
  2766. transition:none;
  2767. }
  2768. #u52332 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 2px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u52332_img {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:0px;
  2779. top:0px;
  2780. width:18px;
  2781. height:18px;
  2782. }
  2783. #u52332_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. visibility:hidden;
  2788. }
  2789. #u52333 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:378px;
  2793. top:84px;
  2794. width:6px;
  2795. height:6px;
  2796. display:flex;
  2797. transition:none;
  2798. }
  2799. #u52333 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u52333_img {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:6px;
  2812. height:6px;
  2813. }
  2814. #u52333_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u52334 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:0px;
  2826. height:0px;
  2827. }
  2828. #u52335 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:323px;
  2832. top:85px;
  2833. width:5px;
  2834. height:5px;
  2835. display:flex;
  2836. transition:none;
  2837. }
  2838. #u52335 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u52335_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:5px;
  2851. height:5px;
  2852. }
  2853. #u52335_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u52336 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:339px;
  2863. top:85px;
  2864. width:5px;
  2865. height:5px;
  2866. display:flex;
  2867. transition:none;
  2868. }
  2869. #u52336 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:2px 2px 2px 2px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u52336_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:5px;
  2882. height:5px;
  2883. }
  2884. #u52336_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. visibility:hidden;
  2889. }
  2890. #u52337 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:330px;
  2894. top:84px;
  2895. width:7px;
  2896. height:7px;
  2897. display:flex;
  2898. transition:none;
  2899. }
  2900. #u52337 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 2px 2px 2px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u52337_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:7px;
  2913. height:7px;
  2914. }
  2915. #u52337_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u52338 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:347px;
  2925. top:87px;
  2926. width:18px;
  2927. height:1px;
  2928. display:flex;
  2929. -webkit-transform:rotate(90deg);
  2930. -moz-transform:rotate(90deg);
  2931. -ms-transform:rotate(90deg);
  2932. transform:rotate(90deg);
  2933. transition:none;
  2934. }
  2935. #u52338 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 2px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u52338_img {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:19px;
  2948. height:2px;
  2949. }
  2950. #u52338_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u52339 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:29px;
  2960. top:24px;
  2961. width:375px;
  2962. height:44px;
  2963. display:flex;
  2964. transition:none;
  2965. }
  2966. #u52339 .text {
  2967. position:absolute;
  2968. align-self:center;
  2969. padding:2px 2px 2px 2px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u52339_img {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:375px;
  2979. height:44px;
  2980. }
  2981. #u52339_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. visibility:hidden;
  2986. }
  2987. #u52340_div {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:375px;
  2993. height:50px;
  2994. background:inherit;
  2995. background-color:rgba(255, 255, 255, 1);
  2996. box-sizing:border-box;
  2997. border-width:1px;
  2998. border-style:solid;
  2999. border-color:rgba(242, 242, 242, 1);
  3000. border-radius:26px;
  3001. border-top-left-radius:0px;
  3002. border-top-right-radius:0px;
  3003. filter:drop-shadow(none);
  3004. transition:none;
  3005. }
  3006. #u52340 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:29px;
  3010. top:788px;
  3011. width:375px;
  3012. height:50px;
  3013. display:flex;
  3014. transition:none;
  3015. transform-origin:50% 50%;
  3016. }
  3017. #u52340 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u52340_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u52341 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:0px;
  3036. height:0px;
  3037. }
  3038. #u52342 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:69px;
  3042. top:792px;
  3043. width:24px;
  3044. height:24px;
  3045. display:flex;
  3046. transition:none;
  3047. font-size:8px;
  3048. }
  3049. #u52342 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u52342_img {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:24px;
  3062. height:24px;
  3063. }
  3064. #u52342_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. }
  3069. #u52343_div {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:25px;
  3075. height:17px;
  3076. background:inherit;
  3077. background-color:rgba(255, 255, 255, 0);
  3078. border-radius:0px;
  3079. filter:drop-shadow(none);
  3080. transition:none;
  3081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. }
  3086. #u52343 {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:69px;
  3090. top:817px;
  3091. width:25px;
  3092. height:17px;
  3093. display:flex;
  3094. transition:none;
  3095. transform-origin:50% 50%;
  3096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3097. font-weight:400;
  3098. font-style:normal;
  3099. font-size:12px;
  3100. }
  3101. #u52343 .text {
  3102. position:absolute;
  3103. align-self:flex-start;
  3104. padding:0px 0px 0px 0px;
  3105. box-sizing:border-box;
  3106. width:100%;
  3107. }
  3108. #u52343_text {
  3109. border-width:0px;
  3110. white-space:nowrap;
  3111. text-transform:none;
  3112. }
  3113. #u52344 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:0px;
  3117. top:0px;
  3118. width:0px;
  3119. height:0px;
  3120. }
  3121. #u52345 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:339px;
  3125. top:794px;
  3126. width:24px;
  3127. height:24px;
  3128. display:flex;
  3129. transition:none;
  3130. font-size:8px;
  3131. }
  3132. #u52345 .text {
  3133. position:absolute;
  3134. align-self:center;
  3135. padding:2px 2px 2px 2px;
  3136. box-sizing:border-box;
  3137. width:100%;
  3138. }
  3139. #u52345_img {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:24px;
  3145. height:24px;
  3146. }
  3147. #u52345_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. }
  3152. #u52346_div {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:25px;
  3158. height:17px;
  3159. background:inherit;
  3160. background-color:rgba(255, 255, 255, 0);
  3161. border-radius:0px;
  3162. filter:drop-shadow(none);
  3163. transition:none;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:12px;
  3168. }
  3169. #u52346 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:339px;
  3173. top:819px;
  3174. width:25px;
  3175. height:17px;
  3176. display:flex;
  3177. transition:none;
  3178. transform-origin:50% 50%;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. }
  3184. #u52346 .text {
  3185. position:absolute;
  3186. align-self:flex-start;
  3187. padding:0px 0px 0px 0px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u52346_text {
  3192. border-width:0px;
  3193. white-space:nowrap;
  3194. text-transform:none;
  3195. }
  3196. #u52347_div {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:375px;
  3202. height:681px;
  3203. background:inherit;
  3204. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3205. border-radius:0px;
  3206. filter:drop-shadow(none);
  3207. transition:none;
  3208. }
  3209. #u52347 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:29px;
  3213. top:107px;
  3214. width:375px;
  3215. height:681px;
  3216. display:flex;
  3217. transition:none;
  3218. transform-origin:50% 50%;
  3219. }
  3220. #u52347 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 2px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u52347_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u52348 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:0px;
  3239. height:0px;
  3240. }
  3241. #u52349 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:251px;
  3245. top:792px;
  3246. width:24px;
  3247. height:24px;
  3248. display:flex;
  3249. transition:none;
  3250. font-size:8px;
  3251. }
  3252. #u52349 .text {
  3253. position:absolute;
  3254. align-self:center;
  3255. padding:2px 2px 2px 2px;
  3256. box-sizing:border-box;
  3257. width:100%;
  3258. }
  3259. #u52349_img {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:24px;
  3265. height:24px;
  3266. }
  3267. #u52349_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. }
  3272. #u52350_div {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:37px;
  3278. height:17px;
  3279. background:inherit;
  3280. background-color:rgba(255, 255, 255, 0);
  3281. border-radius:0px;
  3282. filter:drop-shadow(none);
  3283. transition:none;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:12px;
  3288. }
  3289. #u52350 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:245px;
  3293. top:817px;
  3294. width:37px;
  3295. height:17px;
  3296. display:flex;
  3297. transition:none;
  3298. transform-origin:50% 50%;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:12px;
  3303. }
  3304. #u52350 .text {
  3305. position:absolute;
  3306. align-self:flex-start;
  3307. padding:0px 0px 0px 0px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u52350_text {
  3312. border-width:0px;
  3313. white-space:nowrap;
  3314. text-transform:none;
  3315. }
  3316. #u52351 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:0px;
  3322. height:0px;
  3323. }
  3324. #u52352 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:157px;
  3328. top:792px;
  3329. width:24px;
  3330. height:24px;
  3331. display:flex;
  3332. transition:none;
  3333. font-size:8px;
  3334. }
  3335. #u52352 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 2px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u52352_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:24px;
  3348. height:24px;
  3349. }
  3350. #u52352_text {
  3351. border-width:0px;
  3352. word-wrap:break-word;
  3353. text-transform:none;
  3354. }
  3355. #u52353_div {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:37px;
  3361. height:17px;
  3362. background:inherit;
  3363. background-color:rgba(255, 255, 255, 0);
  3364. border-radius:0px;
  3365. filter:drop-shadow(none);
  3366. transition:none;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:12px;
  3371. }
  3372. #u52353 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:151px;
  3376. top:817px;
  3377. width:37px;
  3378. height:17px;
  3379. display:flex;
  3380. transition:none;
  3381. transform-origin:50% 50%;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. }
  3387. #u52353 .text {
  3388. position:absolute;
  3389. align-self:flex-start;
  3390. padding:0px 0px 0px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u52353_text {
  3395. border-width:0px;
  3396. white-space:nowrap;
  3397. text-transform:none;
  3398. }
  3399. #u52354_div {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:375px;
  3405. height:732px;
  3406. background:inherit;
  3407. background-color:rgba(242, 242, 242, 0.996078431372549);
  3408. border-top:0px;
  3409. border-radius:28px;
  3410. border-top-left-radius:0px;
  3411. border-top-right-radius:0px;
  3412. filter:drop-shadow(none);
  3413. transition:none;
  3414. }
  3415. #u52354 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:484px;
  3419. top:107px;
  3420. width:375px;
  3421. height:732px;
  3422. display:flex;
  3423. transition:none;
  3424. transform-origin:50% 50%;
  3425. }
  3426. #u52354 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:2px 2px 2px 2px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u52354_text {
  3434. border-width:0px;
  3435. word-wrap:break-word;
  3436. text-transform:none;
  3437. visibility:hidden;
  3438. }
  3439. #u52355_div {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:375px;
  3445. height:41px;
  3446. background:inherit;
  3447. background-color:rgba(255, 255, 255, 1);
  3448. box-sizing:border-box;
  3449. border-width:1px;
  3450. border-style:solid;
  3451. border-color:rgba(215, 215, 215, 1);
  3452. border-left:0px;
  3453. border-top:0px;
  3454. border-right:0px;
  3455. border-radius:0px;
  3456. border-bottom-right-radius:0px;
  3457. border-bottom-left-radius:0px;
  3458. filter:drop-shadow(none);
  3459. transition:none;
  3460. }
  3461. #u52355 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:484px;
  3465. top:67px;
  3466. width:375px;
  3467. height:41px;
  3468. display:flex;
  3469. transition:none;
  3470. transform-origin:50% 50%;
  3471. }
  3472. #u52355 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u52355_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u52356 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:0px;
  3491. height:0px;
  3492. }
  3493. #u52357_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:88px;
  3499. height:32px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 1);
  3502. box-sizing:border-box;
  3503. border-width:1px;
  3504. border-style:solid;
  3505. border-color:rgba(242, 242, 242, 1);
  3506. border-radius:33px;
  3507. filter:drop-shadow(none);
  3508. transition:none;
  3509. }
  3510. #u52357 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:764px;
  3514. top:71px;
  3515. width:88px;
  3516. height:32px;
  3517. display:flex;
  3518. transition:none;
  3519. transform-origin:50% 50%;
  3520. }
  3521. #u52357 .text {
  3522. position:absolute;
  3523. align-self:center;
  3524. padding:2px 2px 2px 2px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u52357_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. visibility:hidden;
  3533. }
  3534. #u52358 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:0px;
  3538. top:0px;
  3539. width:0px;
  3540. height:0px;
  3541. }
  3542. #u52359 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:827px;
  3546. top:78px;
  3547. width:18px;
  3548. height:18px;
  3549. display:flex;
  3550. transition:none;
  3551. }
  3552. #u52359 .text {
  3553. position:absolute;
  3554. align-self:center;
  3555. padding:2px 2px 2px 2px;
  3556. box-sizing:border-box;
  3557. width:100%;
  3558. }
  3559. #u52359_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:18px;
  3565. height:18px;
  3566. }
  3567. #u52359_text {
  3568. border-width:0px;
  3569. word-wrap:break-word;
  3570. text-transform:none;
  3571. visibility:hidden;
  3572. }
  3573. #u52360 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:833px;
  3577. top:84px;
  3578. width:6px;
  3579. height:6px;
  3580. display:flex;
  3581. transition:none;
  3582. }
  3583. #u52360 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 2px 2px 2px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u52360_img {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:6px;
  3596. height:6px;
  3597. }
  3598. #u52360_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u52361 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:0px;
  3610. height:0px;
  3611. }
  3612. #u52362 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:778px;
  3616. top:85px;
  3617. width:5px;
  3618. height:5px;
  3619. display:flex;
  3620. transition:none;
  3621. }
  3622. #u52362 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 2px 2px 2px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u52362_img {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:5px;
  3635. height:5px;
  3636. }
  3637. #u52362_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u52363 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:794px;
  3647. top:85px;
  3648. width:5px;
  3649. height:5px;
  3650. display:flex;
  3651. transition:none;
  3652. }
  3653. #u52363 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u52363_img {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:5px;
  3666. height:5px;
  3667. }
  3668. #u52363_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u52364 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:785px;
  3678. top:84px;
  3679. width:7px;
  3680. height:7px;
  3681. display:flex;
  3682. transition:none;
  3683. }
  3684. #u52364 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 2px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u52364_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:7px;
  3697. height:7px;
  3698. }
  3699. #u52364_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. visibility:hidden;
  3704. }
  3705. #u52365 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:802px;
  3709. top:87px;
  3710. width:18px;
  3711. height:1px;
  3712. display:flex;
  3713. -webkit-transform:rotate(90deg);
  3714. -moz-transform:rotate(90deg);
  3715. -ms-transform:rotate(90deg);
  3716. transform:rotate(90deg);
  3717. transition:none;
  3718. }
  3719. #u52365 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 2px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u52365_img {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:0px;
  3731. width:19px;
  3732. height:2px;
  3733. }
  3734. #u52365_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u52366_div {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:12px;
  3746. height:12px;
  3747. background:inherit;
  3748. background-color:rgba(255, 255, 255, 0);
  3749. box-sizing:border-box;
  3750. border-width:2px;
  3751. border-style:solid;
  3752. border-color:rgba(51, 51, 51, 1);
  3753. border-right:0px;
  3754. border-bottom:0px;
  3755. border-radius:0px;
  3756. border-top-right-radius:0px;
  3757. border-bottom-left-radius:0px;
  3758. filter:drop-shadow(none);
  3759. transition:none;
  3760. }
  3761. #u52366 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:499px;
  3765. top:81px;
  3766. width:12px;
  3767. height:12px;
  3768. display:flex;
  3769. -webkit-transform:rotate(315deg);
  3770. -moz-transform:rotate(315deg);
  3771. -ms-transform:rotate(315deg);
  3772. transform:rotate(315deg);
  3773. transition:none;
  3774. transform-origin:50% 50%;
  3775. }
  3776. #u52366 .text {
  3777. position:absolute;
  3778. align-self:center;
  3779. padding:2px 2px 2px 2px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u52366_text {
  3784. border-width:0px;
  3785. word-wrap:break-word;
  3786. text-transform:none;
  3787. visibility:hidden;
  3788. }
  3789. #u52367 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:0px;
  3795. height:0px;
  3796. }
  3797. #u52368_div {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:375px;
  3803. height:60px;
  3804. background:inherit;
  3805. background-color:rgba(255, 255, 255, 1);
  3806. box-sizing:border-box;
  3807. border-width:1px;
  3808. border-style:solid;
  3809. border-color:rgba(242, 242, 242, 1);
  3810. border-radius:20px;
  3811. border-top-left-radius:0px;
  3812. border-top-right-radius:0px;
  3813. filter:drop-shadow(none);
  3814. transition:none;
  3815. }
  3816. #u52368 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:484px;
  3820. top:779px;
  3821. width:375px;
  3822. height:60px;
  3823. display:flex;
  3824. transition:none;
  3825. transform-origin:50% 50%;
  3826. }
  3827. #u52368 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 2px 2px 2px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u52368_text {
  3835. border-width:0px;
  3836. word-wrap:break-word;
  3837. text-transform:none;
  3838. visibility:hidden;
  3839. }
  3840. #u52369_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:97px;
  3846. height:40px;
  3847. background:inherit;
  3848. background-color:rgba(255, 255, 255, 1);
  3849. box-sizing:border-box;
  3850. border-width:1px;
  3851. border-style:solid;
  3852. border-color:rgba(121, 121, 121, 1);
  3853. border-radius:63px;
  3854. filter:drop-shadow(none);
  3855. transition:none;
  3856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:14px;
  3860. color:#555555;
  3861. }
  3862. #u52369 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:641px;
  3866. top:789px;
  3867. width:97px;
  3868. height:40px;
  3869. display:flex;
  3870. transition:none;
  3871. transform-origin:50% 50%;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:14px;
  3876. color:#555555;
  3877. }
  3878. #u52369 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:2px 2px 2px 2px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u52369_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. }
  3890. #u52370_div {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:97px;
  3896. height:40px;
  3897. background:inherit;
  3898. background-color:rgba(24, 144, 255, 1);
  3899. border-radius:63px;
  3900. filter:drop-shadow(none);
  3901. transition:none;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:14px;
  3906. color:#FFFFFF;
  3907. }
  3908. #u52370 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:748px;
  3912. top:789px;
  3913. width:97px;
  3914. height:40px;
  3915. display:flex;
  3916. transition:none;
  3917. transform-origin:50% 50%;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:14px;
  3922. color:#FFFFFF;
  3923. }
  3924. #u52370 .text {
  3925. position:absolute;
  3926. align-self:center;
  3927. padding:2px 2px 2px 2px;
  3928. box-sizing:border-box;
  3929. width:100%;
  3930. }
  3931. #u52370_text {
  3932. border-width:0px;
  3933. word-wrap:break-word;
  3934. text-transform:none;
  3935. }
  3936. #u52371_div {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:109px;
  3942. height:25px;
  3943. background:inherit;
  3944. background-color:rgba(255, 255, 255, 0);
  3945. border-radius:0px;
  3946. filter:drop-shadow(none);
  3947. transition:none;
  3948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3949. font-weight:400;
  3950. font-style:normal;
  3951. font-size:18px;
  3952. }
  3953. #u52371 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:519px;
  3957. top:75px;
  3958. width:109px;
  3959. height:25px;
  3960. display:flex;
  3961. transition:none;
  3962. transform-origin:50% 50%;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:18px;
  3967. }
  3968. #u52371 .text {
  3969. position:absolute;
  3970. align-self:flex-start;
  3971. padding:0px 0px 0px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u52371_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u52372_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:375px;
  3986. height:50px;
  3987. background:inherit;
  3988. background-color:rgba(255, 255, 255, 1);
  3989. border-left:0px;
  3990. border-top:0px;
  3991. border-right:0px;
  3992. border-radius:0px;
  3993. border-bottom-right-radius:0px;
  3994. border-bottom-left-radius:0px;
  3995. filter:drop-shadow(none);
  3996. transition:none;
  3997. }
  3998. #u52372 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:484px;
  4002. top:284px;
  4003. width:375px;
  4004. height:50px;
  4005. display:flex;
  4006. transition:none;
  4007. transform-origin:50% 50%;
  4008. }
  4009. #u52372 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 2px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u52372_text {
  4017. border-width:0px;
  4018. word-wrap:break-word;
  4019. text-transform:none;
  4020. visibility:hidden;
  4021. }
  4022. #u52373_div {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:57px;
  4028. height:30px;
  4029. background:inherit;
  4030. background-color:rgba(255, 255, 255, 0);
  4031. border-left:0px;
  4032. border-top:0px;
  4033. border-right:0px;
  4034. border-radius:0px;
  4035. border-bottom-right-radius:0px;
  4036. border-bottom-left-radius:0px;
  4037. filter:drop-shadow(none);
  4038. transition:none;
  4039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:14px;
  4043. line-height:30px;
  4044. }
  4045. #u52373 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:504px;
  4049. top:294px;
  4050. width:57px;
  4051. height:30px;
  4052. display:flex;
  4053. transition:none;
  4054. transform-origin:50% 50%;
  4055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:14px;
  4059. line-height:30px;
  4060. }
  4061. #u52373 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:0px 0px 0px 0px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u52373_text {
  4069. border-width:0px;
  4070. white-space:nowrap;
  4071. text-transform:none;
  4072. }
  4073. #u52374_div {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:0px;
  4077. top:0px;
  4078. width:60px;
  4079. height:30px;
  4080. background:inherit;
  4081. background-color:rgba(24, 144, 255, 1);
  4082. border-radius:4px;
  4083. filter:drop-shadow(none);
  4084. transition:none;
  4085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4086. font-weight:400;
  4087. font-style:normal;
  4088. font-size:12px;
  4089. color:#FFFFFF;
  4090. }
  4091. #u52374 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:784px;
  4095. top:294px;
  4096. width:60px;
  4097. height:30px;
  4098. display:flex;
  4099. transition:none;
  4100. transform-origin:50% 50%;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:12px;
  4105. color:#FFFFFF;
  4106. }
  4107. #u52374 .text {
  4108. position:absolute;
  4109. align-self:center;
  4110. padding:2px 2px 2px 2px;
  4111. box-sizing:border-box;
  4112. width:100%;
  4113. }
  4114. #u52374_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. }
  4119. #u52375_div {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:60px;
  4125. height:30px;
  4126. background:inherit;
  4127. background-color:rgba(255, 255, 255, 1);
  4128. box-sizing:border-box;
  4129. border-width:1px;
  4130. border-style:solid;
  4131. border-color:rgba(170, 170, 170, 1);
  4132. border-radius:4px;
  4133. filter:drop-shadow(none);
  4134. transition:none;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:12px;
  4139. }
  4140. #u52375 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:714px;
  4144. top:294px;
  4145. width:60px;
  4146. height:30px;
  4147. display:flex;
  4148. transition:none;
  4149. transform-origin:50% 50%;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:12px;
  4154. }
  4155. #u52375 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 2px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u52375_text {
  4163. border-width:0px;
  4164. word-wrap:break-word;
  4165. text-transform:none;
  4166. }
  4167. #u52376_div {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:375px;
  4173. height:50px;
  4174. background:inherit;
  4175. background-color:rgba(255, 255, 255, 1);
  4176. border-left:0px;
  4177. border-top:0px;
  4178. border-right:0px;
  4179. border-radius:0px;
  4180. border-bottom-right-radius:0px;
  4181. border-bottom-left-radius:0px;
  4182. filter:drop-shadow(none);
  4183. transition:none;
  4184. }
  4185. #u52376 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:484px;
  4189. top:233px;
  4190. width:375px;
  4191. height:50px;
  4192. display:flex;
  4193. transition:none;
  4194. transform-origin:50% 50%;
  4195. }
  4196. #u52376 .text {
  4197. position:absolute;
  4198. align-self:center;
  4199. padding:2px 2px 2px 2px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u52376_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u52377_div {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:57px;
  4215. height:30px;
  4216. background:inherit;
  4217. background-color:rgba(255, 255, 255, 0);
  4218. border-left:0px;
  4219. border-top:0px;
  4220. border-right:0px;
  4221. border-radius:0px;
  4222. border-bottom-right-radius:0px;
  4223. border-bottom-left-radius:0px;
  4224. filter:drop-shadow(none);
  4225. transition:none;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:14px;
  4230. line-height:30px;
  4231. }
  4232. #u52377 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:504px;
  4236. top:243px;
  4237. width:57px;
  4238. height:30px;
  4239. display:flex;
  4240. transition:none;
  4241. transform-origin:50% 50%;
  4242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4243. font-weight:400;
  4244. font-style:normal;
  4245. font-size:14px;
  4246. line-height:30px;
  4247. }
  4248. #u52377 .text {
  4249. position:absolute;
  4250. align-self:center;
  4251. padding:0px 0px 0px 0px;
  4252. box-sizing:border-box;
  4253. width:100%;
  4254. }
  4255. #u52377_text {
  4256. border-width:0px;
  4257. white-space:nowrap;
  4258. text-transform:none;
  4259. }
  4260. #u52378 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:0px;
  4266. height:0px;
  4267. }
  4268. #u52379_div {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:8px;
  4274. height:8px;
  4275. background:inherit;
  4276. background-color:rgba(255, 255, 255, 0);
  4277. box-sizing:border-box;
  4278. border-width:1px;
  4279. border-style:solid;
  4280. border-color:rgba(127, 127, 127, 1);
  4281. border-right:0px;
  4282. border-bottom:0px;
  4283. border-radius:0px;
  4284. border-top-right-radius:0px;
  4285. border-bottom-left-radius:0px;
  4286. filter:drop-shadow(none);
  4287. transition:none;
  4288. }
  4289. #u52379 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:834px;
  4293. top:254px;
  4294. width:8px;
  4295. height:8px;
  4296. display:flex;
  4297. -webkit-transform:rotate(135deg);
  4298. -moz-transform:rotate(135deg);
  4299. -ms-transform:rotate(135deg);
  4300. transform:rotate(135deg);
  4301. transition:none;
  4302. transform-origin:50% 50%;
  4303. }
  4304. #u52379 .text {
  4305. position:absolute;
  4306. align-self:center;
  4307. padding:2px 2px 2px 2px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u52379_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. visibility:hidden;
  4316. }
  4317. #u52380_div {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:57px;
  4323. height:30px;
  4324. background:inherit;
  4325. background-color:rgba(255, 255, 255, 0);
  4326. border-left:0px;
  4327. border-top:0px;
  4328. border-right:0px;
  4329. border-radius:0px;
  4330. border-bottom-right-radius:0px;
  4331. border-bottom-left-radius:0px;
  4332. filter:drop-shadow(none);
  4333. transition:none;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:14px;
  4338. color:#AAAAAA;
  4339. text-align:right;
  4340. line-height:30px;
  4341. }
  4342. #u52380 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:770px;
  4346. top:243px;
  4347. width:57px;
  4348. height:30px;
  4349. display:flex;
  4350. transition:none;
  4351. transform-origin:50% 50%;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:14px;
  4356. color:#AAAAAA;
  4357. text-align:right;
  4358. line-height:30px;
  4359. }
  4360. #u52380 .text {
  4361. position:absolute;
  4362. align-self:center;
  4363. padding:0px 0px 0px 0px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u52380_text {
  4368. border-width:0px;
  4369. white-space:nowrap;
  4370. text-transform:none;
  4371. }
  4372. #u52381 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:0px;
  4378. height:0px;
  4379. }
  4380. #u52382_div {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:375px;
  4386. height:50px;
  4387. background:inherit;
  4388. background-color:rgba(255, 255, 255, 1);
  4389. border-left:0px;
  4390. border-top:0px;
  4391. border-right:0px;
  4392. border-radius:0px;
  4393. border-bottom-right-radius:0px;
  4394. border-bottom-left-radius:0px;
  4395. filter:drop-shadow(none);
  4396. transition:none;
  4397. }
  4398. #u52382 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:484px;
  4402. top:446px;
  4403. width:375px;
  4404. height:50px;
  4405. display:flex;
  4406. transition:none;
  4407. transform-origin:50% 50%;
  4408. }
  4409. #u52382 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u52382_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u52383_div {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:43px;
  4428. height:30px;
  4429. background:inherit;
  4430. background-color:rgba(255, 255, 255, 0);
  4431. border-left:0px;
  4432. border-top:0px;
  4433. border-right:0px;
  4434. border-radius:0px;
  4435. border-bottom-right-radius:0px;
  4436. border-bottom-left-radius:0px;
  4437. filter:drop-shadow(none);
  4438. transition:none;
  4439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:14px;
  4443. line-height:30px;
  4444. }
  4445. #u52383 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:504px;
  4449. top:456px;
  4450. width:43px;
  4451. height:30px;
  4452. display:flex;
  4453. transition:none;
  4454. transform-origin:50% 50%;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:14px;
  4459. line-height:30px;
  4460. }
  4461. #u52383 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:0px 0px 0px 0px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u52383_text {
  4469. border-width:0px;
  4470. white-space:nowrap;
  4471. text-transform:none;
  4472. }
  4473. #u52384 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:0px;
  4479. height:0px;
  4480. }
  4481. #u52385_div {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:8px;
  4487. height:8px;
  4488. background:inherit;
  4489. background-color:rgba(255, 255, 255, 0);
  4490. box-sizing:border-box;
  4491. border-width:1px;
  4492. border-style:solid;
  4493. border-color:rgba(127, 127, 127, 1);
  4494. border-right:0px;
  4495. border-bottom:0px;
  4496. border-radius:0px;
  4497. border-top-right-radius:0px;
  4498. border-bottom-left-radius:0px;
  4499. filter:drop-shadow(none);
  4500. transition:none;
  4501. }
  4502. #u52385 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:834px;
  4506. top:467px;
  4507. width:8px;
  4508. height:8px;
  4509. display:flex;
  4510. -webkit-transform:rotate(135deg);
  4511. -moz-transform:rotate(135deg);
  4512. -ms-transform:rotate(135deg);
  4513. transform:rotate(135deg);
  4514. transition:none;
  4515. transform-origin:50% 50%;
  4516. }
  4517. #u52385 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:2px 2px 2px 2px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u52385_text {
  4525. border-width:0px;
  4526. word-wrap:break-word;
  4527. text-transform:none;
  4528. visibility:hidden;
  4529. }
  4530. #u52386_div {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:43px;
  4536. height:30px;
  4537. background:inherit;
  4538. background-color:rgba(255, 255, 255, 0);
  4539. border-left:0px;
  4540. border-top:0px;
  4541. border-right:0px;
  4542. border-radius:0px;
  4543. border-bottom-right-radius:0px;
  4544. border-bottom-left-radius:0px;
  4545. filter:drop-shadow(none);
  4546. transition:none;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:14px;
  4551. color:#AAAAAA;
  4552. text-align:right;
  4553. line-height:30px;
  4554. }
  4555. #u52386 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:784px;
  4559. top:456px;
  4560. width:43px;
  4561. height:30px;
  4562. display:flex;
  4563. transition:none;
  4564. transform-origin:50% 50%;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:14px;
  4569. color:#AAAAAA;
  4570. text-align:right;
  4571. line-height:30px;
  4572. }
  4573. #u52386 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:0px 0px 0px 0px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u52386_text {
  4581. border-width:0px;
  4582. white-space:nowrap;
  4583. text-transform:none;
  4584. }
  4585. #u52387 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:0px;
  4591. height:0px;
  4592. }
  4593. #u52388_div {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:375px;
  4599. height:140px;
  4600. background:inherit;
  4601. background-color:rgba(255, 255, 255, 1);
  4602. border-left:0px;
  4603. border-top:0px;
  4604. border-right:0px;
  4605. border-radius:0px;
  4606. border-bottom-right-radius:0px;
  4607. border-bottom-left-radius:0px;
  4608. filter:drop-shadow(none);
  4609. transition:none;
  4610. }
  4611. #u52388 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:484px;
  4615. top:497px;
  4616. width:375px;
  4617. height:140px;
  4618. display:flex;
  4619. transition:none;
  4620. transform-origin:50% 50%;
  4621. }
  4622. #u52388 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 2px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u52388_text {
  4630. border-width:0px;
  4631. word-wrap:break-word;
  4632. text-transform:none;
  4633. visibility:hidden;
  4634. }
  4635. #u52389_div {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:57px;
  4641. height:30px;
  4642. background:inherit;
  4643. background-color:rgba(255, 255, 255, 0);
  4644. border-left:0px;
  4645. border-top:0px;
  4646. border-right:0px;
  4647. border-radius:0px;
  4648. border-bottom-right-radius:0px;
  4649. border-bottom-left-radius:0px;
  4650. filter:drop-shadow(none);
  4651. transition:none;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:14px;
  4656. line-height:30px;
  4657. }
  4658. #u52389 {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:504px;
  4662. top:507px;
  4663. width:57px;
  4664. height:30px;
  4665. display:flex;
  4666. transition:none;
  4667. transform-origin:50% 50%;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:14px;
  4672. line-height:30px;
  4673. }
  4674. #u52389 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:0px 0px 0px 0px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u52389_text {
  4682. border-width:0px;
  4683. white-space:nowrap;
  4684. text-transform:none;
  4685. }
  4686. #u52390_div {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:99px;
  4692. height:30px;
  4693. background:inherit;
  4694. background-color:rgba(255, 255, 255, 0);
  4695. border-left:0px;
  4696. border-top:0px;
  4697. border-right:0px;
  4698. border-radius:0px;
  4699. border-bottom-right-radius:0px;
  4700. border-bottom-left-radius:0px;
  4701. filter:drop-shadow(none);
  4702. transition:none;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. color:#AAAAAA;
  4708. line-height:30px;
  4709. }
  4710. #u52390 {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:504px;
  4714. top:537px;
  4715. width:99px;
  4716. height:30px;
  4717. display:flex;
  4718. transition:none;
  4719. transform-origin:50% 50%;
  4720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:14px;
  4724. color:#AAAAAA;
  4725. line-height:30px;
  4726. }
  4727. #u52390 .text {
  4728. position:absolute;
  4729. align-self:center;
  4730. padding:0px 0px 0px 0px;
  4731. box-sizing:border-box;
  4732. width:100%;
  4733. }
  4734. #u52390_text {
  4735. border-width:0px;
  4736. white-space:nowrap;
  4737. text-transform:none;
  4738. }
  4739. #u52391_div {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:40px;
  4745. height:40px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 1);
  4748. box-sizing:border-box;
  4749. border-width:1px;
  4750. border-style:solid;
  4751. border-color:rgba(170, 170, 170, 1);
  4752. border-radius:4px;
  4753. filter:drop-shadow(none);
  4754. transition:none;
  4755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4756. font-weight:400;
  4757. font-style:normal;
  4758. font-size:18px;
  4759. }
  4760. #u52391 {
  4761. border-width:0px;
  4762. position:absolute;
  4763. left:504px;
  4764. top:587px;
  4765. width:40px;
  4766. height:40px;
  4767. display:flex;
  4768. transition:none;
  4769. transform-origin:50% 50%;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:18px;
  4774. }
  4775. #u52391 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 2px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u52391_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. }
  4787. #u52392 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:0px;
  4793. height:0px;
  4794. }
  4795. #u52393_div {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:375px;
  4801. height:50px;
  4802. background:inherit;
  4803. background-color:rgba(255, 255, 255, 1);
  4804. border-left:0px;
  4805. border-top:0px;
  4806. border-right:0px;
  4807. border-radius:0px;
  4808. border-bottom-right-radius:0px;
  4809. border-bottom-left-radius:0px;
  4810. filter:drop-shadow(none);
  4811. transition:none;
  4812. }
  4813. #u52393 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:484px;
  4817. top:344px;
  4818. width:375px;
  4819. height:50px;
  4820. display:flex;
  4821. transition:none;
  4822. transform-origin:50% 50%;
  4823. }
  4824. #u52393 .text {
  4825. position:absolute;
  4826. align-self:center;
  4827. padding:2px 2px 2px 2px;
  4828. box-sizing:border-box;
  4829. width:100%;
  4830. }
  4831. #u52393_text {
  4832. border-width:0px;
  4833. word-wrap:break-word;
  4834. text-transform:none;
  4835. visibility:hidden;
  4836. }
  4837. #u52394_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:57px;
  4843. height:30px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 0);
  4846. border-left:0px;
  4847. border-top:0px;
  4848. border-right:0px;
  4849. border-radius:0px;
  4850. border-bottom-right-radius:0px;
  4851. border-bottom-left-radius:0px;
  4852. filter:drop-shadow(none);
  4853. transition:none;
  4854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4855. font-weight:400;
  4856. font-style:normal;
  4857. font-size:14px;
  4858. line-height:30px;
  4859. }
  4860. #u52394 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:504px;
  4864. top:354px;
  4865. width:57px;
  4866. height:30px;
  4867. display:flex;
  4868. transition:none;
  4869. transform-origin:50% 50%;
  4870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4871. font-weight:400;
  4872. font-style:normal;
  4873. font-size:14px;
  4874. line-height:30px;
  4875. }
  4876. #u52394 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:0px 0px 0px 0px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u52394_text {
  4884. border-width:0px;
  4885. white-space:nowrap;
  4886. text-transform:none;
  4887. }
  4888. #u52395 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:0px;
  4892. top:0px;
  4893. width:0px;
  4894. height:0px;
  4895. }
  4896. #u52396_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:8px;
  4902. height:8px;
  4903. background:inherit;
  4904. background-color:rgba(255, 255, 255, 0);
  4905. box-sizing:border-box;
  4906. border-width:1px;
  4907. border-style:solid;
  4908. border-color:rgba(127, 127, 127, 1);
  4909. border-right:0px;
  4910. border-bottom:0px;
  4911. border-radius:0px;
  4912. border-top-right-radius:0px;
  4913. border-bottom-left-radius:0px;
  4914. filter:drop-shadow(none);
  4915. transition:none;
  4916. }
  4917. #u52396 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:834px;
  4921. top:365px;
  4922. width:8px;
  4923. height:8px;
  4924. display:flex;
  4925. -webkit-transform:rotate(135deg);
  4926. -moz-transform:rotate(135deg);
  4927. -ms-transform:rotate(135deg);
  4928. transform:rotate(135deg);
  4929. transition:none;
  4930. transform-origin:50% 50%;
  4931. }
  4932. #u52396 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 2px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u52396_text {
  4940. border-width:0px;
  4941. word-wrap:break-word;
  4942. text-transform:none;
  4943. visibility:hidden;
  4944. }
  4945. #u52397_div {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:196px;
  4951. height:30px;
  4952. background:inherit;
  4953. background-color:rgba(255, 255, 255, 0);
  4954. border-left:0px;
  4955. border-top:0px;
  4956. border-right:0px;
  4957. border-radius:0px;
  4958. border-bottom-right-radius:0px;
  4959. border-bottom-left-radius:0px;
  4960. filter:drop-shadow(none);
  4961. transition:none;
  4962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:12px;
  4966. text-align:right;
  4967. line-height:30px;
  4968. }
  4969. #u52397 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:631px;
  4973. top:354px;
  4974. width:196px;
  4975. height:30px;
  4976. display:flex;
  4977. transition:none;
  4978. transform-origin:50% 50%;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:12px;
  4983. text-align:right;
  4984. line-height:30px;
  4985. }
  4986. #u52397 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:0px 0px 0px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u52397_text {
  4994. border-width:0px;
  4995. white-space:nowrap;
  4996. text-transform:none;
  4997. }
  4998. #u52398 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:0px;
  5004. height:0px;
  5005. }
  5006. #u52399_div {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:375px;
  5012. height:50px;
  5013. background:inherit;
  5014. background-color:rgba(255, 255, 255, 1);
  5015. border-left:0px;
  5016. border-top:0px;
  5017. border-right:0px;
  5018. border-radius:0px;
  5019. border-bottom-right-radius:0px;
  5020. border-bottom-left-radius:0px;
  5021. filter:drop-shadow(none);
  5022. transition:none;
  5023. }
  5024. #u52399 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:484px;
  5028. top:395px;
  5029. width:375px;
  5030. height:50px;
  5031. display:flex;
  5032. transition:none;
  5033. transform-origin:50% 50%;
  5034. }
  5035. #u52399 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:2px 2px 2px 2px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u52399_text {
  5043. border-width:0px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. visibility:hidden;
  5047. }
  5048. #u52400_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:43px;
  5054. height:30px;
  5055. background:inherit;
  5056. background-color:rgba(255, 255, 255, 0);
  5057. border-left:0px;
  5058. border-top:0px;
  5059. border-right:0px;
  5060. border-radius:0px;
  5061. border-bottom-right-radius:0px;
  5062. border-bottom-left-radius:0px;
  5063. filter:drop-shadow(none);
  5064. transition:none;
  5065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:14px;
  5069. line-height:30px;
  5070. }
  5071. #u52400 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:504px;
  5075. top:405px;
  5076. width:43px;
  5077. height:30px;
  5078. display:flex;
  5079. transition:none;
  5080. transform-origin:50% 50%;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. line-height:30px;
  5086. }
  5087. #u52400 .text {
  5088. position:absolute;
  5089. align-self:center;
  5090. padding:0px 0px 0px 0px;
  5091. box-sizing:border-box;
  5092. width:100%;
  5093. }
  5094. #u52400_text {
  5095. border-width:0px;
  5096. white-space:nowrap;
  5097. text-transform:none;
  5098. }
  5099. #u52401 {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:0px;
  5105. height:0px;
  5106. }
  5107. #u52402_div {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:0px;
  5111. top:0px;
  5112. width:8px;
  5113. height:8px;
  5114. background:inherit;
  5115. background-color:rgba(255, 255, 255, 0);
  5116. box-sizing:border-box;
  5117. border-width:1px;
  5118. border-style:solid;
  5119. border-color:rgba(127, 127, 127, 1);
  5120. border-right:0px;
  5121. border-bottom:0px;
  5122. border-radius:0px;
  5123. border-top-right-radius:0px;
  5124. border-bottom-left-radius:0px;
  5125. filter:drop-shadow(none);
  5126. transition:none;
  5127. }
  5128. #u52402 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:834px;
  5132. top:416px;
  5133. width:8px;
  5134. height:8px;
  5135. display:flex;
  5136. -webkit-transform:rotate(135deg);
  5137. -moz-transform:rotate(135deg);
  5138. -ms-transform:rotate(135deg);
  5139. transform:rotate(135deg);
  5140. transition:none;
  5141. transform-origin:50% 50%;
  5142. }
  5143. #u52402 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:2px 2px 2px 2px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u52402_text {
  5151. border-width:0px;
  5152. word-wrap:break-word;
  5153. text-transform:none;
  5154. visibility:hidden;
  5155. }
  5156. #u52403_div {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:215px;
  5162. height:30px;
  5163. background:inherit;
  5164. background-color:rgba(255, 255, 255, 0);
  5165. border-left:0px;
  5166. border-top:0px;
  5167. border-right:0px;
  5168. border-radius:0px;
  5169. border-bottom-right-radius:0px;
  5170. border-bottom-left-radius:0px;
  5171. filter:drop-shadow(none);
  5172. transition:none;
  5173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. font-size:12px;
  5177. text-align:right;
  5178. line-height:30px;
  5179. }
  5180. #u52403 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:612px;
  5184. top:405px;
  5185. width:215px;
  5186. height:30px;
  5187. display:flex;
  5188. transition:none;
  5189. transform-origin:50% 50%;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. text-align:right;
  5195. line-height:30px;
  5196. }
  5197. #u52403 .text {
  5198. position:absolute;
  5199. align-self:center;
  5200. padding:0px 0px 0px 0px;
  5201. box-sizing:border-box;
  5202. width:100%;
  5203. }
  5204. #u52403_text {
  5205. border-width:0px;
  5206. white-space:nowrap;
  5207. text-transform:none;
  5208. }
  5209. #u52404 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:0px;
  5215. height:0px;
  5216. }
  5217. #u52405_div {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:375px;
  5223. height:50px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 1);
  5226. border-left:0px;
  5227. border-top:0px;
  5228. border-right:0px;
  5229. border-radius:0px;
  5230. border-bottom-right-radius:0px;
  5231. border-bottom-left-radius:0px;
  5232. filter:drop-shadow(none);
  5233. transition:none;
  5234. }
  5235. #u52405 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:29px;
  5239. top:638px;
  5240. width:375px;
  5241. height:50px;
  5242. display:flex;
  5243. transition:none;
  5244. transform-origin:50% 50%;
  5245. }
  5246. #u52405 .text {
  5247. position:absolute;
  5248. align-self:center;
  5249. padding:2px 2px 2px 2px;
  5250. box-sizing:border-box;
  5251. width:100%;
  5252. }
  5253. #u52405_text {
  5254. border-width:0px;
  5255. word-wrap:break-word;
  5256. text-transform:none;
  5257. visibility:hidden;
  5258. }
  5259. #u52406_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:57px;
  5265. height:30px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 0);
  5268. border-left:0px;
  5269. border-top:0px;
  5270. border-right:0px;
  5271. border-radius:0px;
  5272. border-bottom-right-radius:0px;
  5273. border-bottom-left-radius:0px;
  5274. filter:drop-shadow(none);
  5275. transition:none;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:14px;
  5280. line-height:30px;
  5281. }
  5282. #u52406 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:49px;
  5286. top:648px;
  5287. width:57px;
  5288. height:30px;
  5289. display:flex;
  5290. transition:none;
  5291. transform-origin:50% 50%;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. line-height:30px;
  5297. }
  5298. #u52406 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:0px 0px 0px 0px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u52406_text {
  5306. border-width:0px;
  5307. white-space:nowrap;
  5308. text-transform:none;
  5309. }
  5310. #u52407_div {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:60px;
  5316. height:30px;
  5317. background:inherit;
  5318. background-color:rgba(24, 144, 255, 1);
  5319. border-radius:4px;
  5320. filter:drop-shadow(none);
  5321. transition:none;
  5322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5323. font-weight:400;
  5324. font-style:normal;
  5325. font-size:12px;
  5326. color:#FFFFFF;
  5327. }
  5328. #u52407 {
  5329. border-width:0px;
  5330. position:absolute;
  5331. left:334px;
  5332. top:648px;
  5333. width:60px;
  5334. height:30px;
  5335. display:flex;
  5336. transition:none;
  5337. transform-origin:50% 50%;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:12px;
  5342. color:#FFFFFF;
  5343. }
  5344. #u52407 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:2px 2px 2px 2px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u52407_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. }
  5356. #u52408_div {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:60px;
  5362. height:30px;
  5363. background:inherit;
  5364. background-color:rgba(255, 255, 255, 1);
  5365. box-sizing:border-box;
  5366. border-width:1px;
  5367. border-style:solid;
  5368. border-color:rgba(170, 170, 170, 1);
  5369. border-radius:4px;
  5370. filter:drop-shadow(none);
  5371. transition:none;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. }
  5377. #u52408 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:264px;
  5381. top:648px;
  5382. width:60px;
  5383. height:30px;
  5384. display:flex;
  5385. transition:none;
  5386. transform-origin:50% 50%;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:12px;
  5391. }
  5392. #u52408 .text {
  5393. position:absolute;
  5394. align-self:center;
  5395. padding:2px 2px 2px 2px;
  5396. box-sizing:border-box;
  5397. width:100%;
  5398. }
  5399. #u52408_text {
  5400. border-width:0px;
  5401. word-wrap:break-word;
  5402. text-transform:none;
  5403. }
  5404. #u52409 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:0px;
  5410. height:0px;
  5411. }
  5412. #u52410_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:375px;
  5418. height:50px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 1);
  5421. border-left:0px;
  5422. border-top:0px;
  5423. border-right:0px;
  5424. border-radius:0px;
  5425. border-bottom-right-radius:0px;
  5426. border-bottom-left-radius:0px;
  5427. filter:drop-shadow(none);
  5428. transition:none;
  5429. }
  5430. #u52410 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:484px;
  5434. top:638px;
  5435. width:375px;
  5436. height:50px;
  5437. display:flex;
  5438. transition:none;
  5439. transform-origin:50% 50%;
  5440. }
  5441. #u52410 .text {
  5442. position:absolute;
  5443. align-self:center;
  5444. padding:2px 2px 2px 2px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u52410_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u52411_div {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:57px;
  5460. height:30px;
  5461. background:inherit;
  5462. background-color:rgba(255, 255, 255, 0);
  5463. border-left:0px;
  5464. border-top:0px;
  5465. border-right:0px;
  5466. border-radius:0px;
  5467. border-bottom-right-radius:0px;
  5468. border-bottom-left-radius:0px;
  5469. filter:drop-shadow(none);
  5470. transition:none;
  5471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5472. font-weight:400;
  5473. font-style:normal;
  5474. font-size:14px;
  5475. line-height:30px;
  5476. }
  5477. #u52411 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:504px;
  5481. top:648px;
  5482. width:57px;
  5483. height:30px;
  5484. display:flex;
  5485. transition:none;
  5486. transform-origin:50% 50%;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:14px;
  5491. line-height:30px;
  5492. }
  5493. #u52411 .text {
  5494. position:absolute;
  5495. align-self:center;
  5496. padding:0px 0px 0px 0px;
  5497. box-sizing:border-box;
  5498. width:100%;
  5499. }
  5500. #u52411_text {
  5501. border-width:0px;
  5502. white-space:nowrap;
  5503. text-transform:none;
  5504. }
  5505. #u52412_div {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:60px;
  5511. height:30px;
  5512. background:inherit;
  5513. background-color:rgba(24, 144, 255, 1);
  5514. border-radius:4px;
  5515. filter:drop-shadow(none);
  5516. transition:none;
  5517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5518. font-weight:400;
  5519. font-style:normal;
  5520. font-size:12px;
  5521. color:#FFFFFF;
  5522. }
  5523. #u52412 {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:789px;
  5527. top:648px;
  5528. width:60px;
  5529. height:30px;
  5530. display:flex;
  5531. transition:none;
  5532. transform-origin:50% 50%;
  5533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:12px;
  5537. color:#FFFFFF;
  5538. }
  5539. #u52412 .text {
  5540. position:absolute;
  5541. align-self:center;
  5542. padding:2px 2px 2px 2px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u52412_text {
  5547. border-width:0px;
  5548. word-wrap:break-word;
  5549. text-transform:none;
  5550. }
  5551. #u52413_div {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:60px;
  5557. height:30px;
  5558. background:inherit;
  5559. background-color:rgba(255, 255, 255, 1);
  5560. box-sizing:border-box;
  5561. border-width:1px;
  5562. border-style:solid;
  5563. border-color:rgba(170, 170, 170, 1);
  5564. border-radius:4px;
  5565. filter:drop-shadow(none);
  5566. transition:none;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:12px;
  5571. }
  5572. #u52413 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:719px;
  5576. top:648px;
  5577. width:60px;
  5578. height:30px;
  5579. display:flex;
  5580. transition:none;
  5581. transform-origin:50% 50%;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:12px;
  5586. }
  5587. #u52413 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 2px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u52413_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. }
  5599. #u52414 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:908px;
  5603. top:0px;
  5604. width:433px;
  5605. height:865px;
  5606. }
  5607. #u52415 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:433px;
  5613. height:865px;
  5614. display:flex;
  5615. transition:none;
  5616. }
  5617. #u52415 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u52415_img {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:433px;
  5630. height:865px;
  5631. }
  5632. #u52415_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u52416_div {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:375px;
  5644. height:40px;
  5645. background:inherit;
  5646. background-color:rgba(255, 255, 255, 1);
  5647. box-sizing:border-box;
  5648. border-width:1px;
  5649. border-style:solid;
  5650. border-color:rgba(215, 215, 215, 1);
  5651. border-left:0px;
  5652. border-top:0px;
  5653. border-right:0px;
  5654. border-radius:0px;
  5655. border-bottom-right-radius:0px;
  5656. border-bottom-left-radius:0px;
  5657. filter:drop-shadow(none);
  5658. transition:none;
  5659. }
  5660. #u52416 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:29px;
  5664. top:67px;
  5665. width:375px;
  5666. height:40px;
  5667. display:flex;
  5668. transition:none;
  5669. transform-origin:50% 50%;
  5670. }
  5671. #u52416 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 2px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u52416_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u52417 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:0px;
  5690. height:0px;
  5691. }
  5692. #u52418_div {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:88px;
  5698. height:32px;
  5699. background:inherit;
  5700. background-color:rgba(255, 255, 255, 1);
  5701. box-sizing:border-box;
  5702. border-width:1px;
  5703. border-style:solid;
  5704. border-color:rgba(242, 242, 242, 1);
  5705. border-radius:33px;
  5706. filter:drop-shadow(none);
  5707. transition:none;
  5708. }
  5709. #u52418 {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:309px;
  5713. top:71px;
  5714. width:88px;
  5715. height:32px;
  5716. display:flex;
  5717. transition:none;
  5718. transform-origin:50% 50%;
  5719. }
  5720. #u52418 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:2px 2px 2px 2px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u52418_text {
  5728. border-width:0px;
  5729. word-wrap:break-word;
  5730. text-transform:none;
  5731. visibility:hidden;
  5732. }
  5733. #u52419 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:0px;
  5739. height:0px;
  5740. }
  5741. #u52420 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:372px;
  5745. top:78px;
  5746. width:18px;
  5747. height:18px;
  5748. display:flex;
  5749. transition:none;
  5750. }
  5751. #u52420 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 2px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u52420_img {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:18px;
  5764. height:18px;
  5765. }
  5766. #u52420_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u52421 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:378px;
  5776. top:84px;
  5777. width:6px;
  5778. height:6px;
  5779. display:flex;
  5780. transition:none;
  5781. }
  5782. #u52421 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 2px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u52421_img {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:6px;
  5795. height:6px;
  5796. }
  5797. #u52421_text {
  5798. border-width:0px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. visibility:hidden;
  5802. }
  5803. #u52422 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:0px;
  5809. height:0px;
  5810. }
  5811. #u52423 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:323px;
  5815. top:85px;
  5816. width:5px;
  5817. height:5px;
  5818. display:flex;
  5819. transition:none;
  5820. }
  5821. #u52423 .text {
  5822. position:absolute;
  5823. align-self:center;
  5824. padding:2px 2px 2px 2px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u52423_img {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:5px;
  5834. height:5px;
  5835. }
  5836. #u52423_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u52424 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:339px;
  5846. top:85px;
  5847. width:5px;
  5848. height:5px;
  5849. display:flex;
  5850. transition:none;
  5851. }
  5852. #u52424 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 2px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u52424_img {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:5px;
  5865. height:5px;
  5866. }
  5867. #u52424_text {
  5868. border-width:0px;
  5869. word-wrap:break-word;
  5870. text-transform:none;
  5871. visibility:hidden;
  5872. }
  5873. #u52425 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:330px;
  5877. top:84px;
  5878. width:7px;
  5879. height:7px;
  5880. display:flex;
  5881. transition:none;
  5882. }
  5883. #u52425 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 2px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u52425_img {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:7px;
  5896. height:7px;
  5897. }
  5898. #u52425_text {
  5899. border-width:0px;
  5900. word-wrap:break-word;
  5901. text-transform:none;
  5902. visibility:hidden;
  5903. }
  5904. #u52426 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:347px;
  5908. top:87px;
  5909. width:18px;
  5910. height:1px;
  5911. display:flex;
  5912. -webkit-transform:rotate(90deg);
  5913. -moz-transform:rotate(90deg);
  5914. -ms-transform:rotate(90deg);
  5915. transform:rotate(90deg);
  5916. transition:none;
  5917. }
  5918. #u52426 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 2px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u52426_img {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:19px;
  5931. height:2px;
  5932. }
  5933. #u52426_text {
  5934. border-width:0px;
  5935. word-wrap:break-word;
  5936. text-transform:none;
  5937. visibility:hidden;
  5938. }
  5939. #u52427 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:29px;
  5943. top:24px;
  5944. width:375px;
  5945. height:44px;
  5946. display:flex;
  5947. transition:none;
  5948. }
  5949. #u52427 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u52427_img {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:375px;
  5962. height:44px;
  5963. }
  5964. #u52427_text {
  5965. border-width:0px;
  5966. word-wrap:break-word;
  5967. text-transform:none;
  5968. visibility:hidden;
  5969. }
  5970. #u52428_div {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:375px;
  5976. height:50px;
  5977. background:inherit;
  5978. background-color:rgba(255, 255, 255, 1);
  5979. box-sizing:border-box;
  5980. border-width:1px;
  5981. border-style:solid;
  5982. border-color:rgba(242, 242, 242, 1);
  5983. border-radius:26px;
  5984. border-top-left-radius:0px;
  5985. border-top-right-radius:0px;
  5986. filter:drop-shadow(none);
  5987. transition:none;
  5988. }
  5989. #u52428 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:29px;
  5993. top:788px;
  5994. width:375px;
  5995. height:50px;
  5996. display:flex;
  5997. transition:none;
  5998. transform-origin:50% 50%;
  5999. }
  6000. #u52428 .text {
  6001. position:absolute;
  6002. align-self:center;
  6003. padding:2px 2px 2px 2px;
  6004. box-sizing:border-box;
  6005. width:100%;
  6006. }
  6007. #u52428_text {
  6008. border-width:0px;
  6009. word-wrap:break-word;
  6010. text-transform:none;
  6011. visibility:hidden;
  6012. }
  6013. #u52429 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:0px;
  6019. height:0px;
  6020. }
  6021. #u52430 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:69px;
  6025. top:792px;
  6026. width:24px;
  6027. height:24px;
  6028. display:flex;
  6029. transition:none;
  6030. font-size:8px;
  6031. }
  6032. #u52430 .text {
  6033. position:absolute;
  6034. align-self:center;
  6035. padding:2px 2px 2px 2px;
  6036. box-sizing:border-box;
  6037. width:100%;
  6038. }
  6039. #u52430_img {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:24px;
  6045. height:24px;
  6046. }
  6047. #u52430_text {
  6048. border-width:0px;
  6049. word-wrap:break-word;
  6050. text-transform:none;
  6051. }
  6052. #u52431_div {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:25px;
  6058. height:17px;
  6059. background:inherit;
  6060. background-color:rgba(255, 255, 255, 0);
  6061. border-radius:0px;
  6062. filter:drop-shadow(none);
  6063. transition:none;
  6064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6065. font-weight:400;
  6066. font-style:normal;
  6067. font-size:12px;
  6068. }
  6069. #u52431 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:69px;
  6073. top:817px;
  6074. width:25px;
  6075. height:17px;
  6076. display:flex;
  6077. transition:none;
  6078. transform-origin:50% 50%;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:12px;
  6083. }
  6084. #u52431 .text {
  6085. position:absolute;
  6086. align-self:flex-start;
  6087. padding:0px 0px 0px 0px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u52431_text {
  6092. border-width:0px;
  6093. white-space:nowrap;
  6094. text-transform:none;
  6095. }
  6096. #u52432 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:0px;
  6102. height:0px;
  6103. }
  6104. #u52433 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:339px;
  6108. top:794px;
  6109. width:24px;
  6110. height:24px;
  6111. display:flex;
  6112. transition:none;
  6113. font-size:8px;
  6114. }
  6115. #u52433 .text {
  6116. position:absolute;
  6117. align-self:center;
  6118. padding:2px 2px 2px 2px;
  6119. box-sizing:border-box;
  6120. width:100%;
  6121. }
  6122. #u52433_img {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:24px;
  6128. height:24px;
  6129. }
  6130. #u52433_text {
  6131. border-width:0px;
  6132. word-wrap:break-word;
  6133. text-transform:none;
  6134. }
  6135. #u52434_div {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:25px;
  6141. height:17px;
  6142. background:inherit;
  6143. background-color:rgba(255, 255, 255, 0);
  6144. border-radius:0px;
  6145. filter:drop-shadow(none);
  6146. transition:none;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:12px;
  6151. }
  6152. #u52434 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:339px;
  6156. top:819px;
  6157. width:25px;
  6158. height:17px;
  6159. display:flex;
  6160. transition:none;
  6161. transform-origin:50% 50%;
  6162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6163. font-weight:400;
  6164. font-style:normal;
  6165. font-size:12px;
  6166. }
  6167. #u52434 .text {
  6168. position:absolute;
  6169. align-self:flex-start;
  6170. padding:0px 0px 0px 0px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u52434_text {
  6175. border-width:0px;
  6176. white-space:nowrap;
  6177. text-transform:none;
  6178. }
  6179. #u52435_div {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:375px;
  6185. height:681px;
  6186. background:inherit;
  6187. background-color:rgba(242, 242, 242, 0.4627450980392157);
  6188. border-radius:0px;
  6189. filter:drop-shadow(none);
  6190. transition:none;
  6191. }
  6192. #u52435 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:29px;
  6196. top:107px;
  6197. width:375px;
  6198. height:681px;
  6199. display:flex;
  6200. transition:none;
  6201. transform-origin:50% 50%;
  6202. }
  6203. #u52435 .text {
  6204. position:absolute;
  6205. align-self:center;
  6206. padding:2px 2px 2px 2px;
  6207. box-sizing:border-box;
  6208. width:100%;
  6209. }
  6210. #u52435_text {
  6211. border-width:0px;
  6212. word-wrap:break-word;
  6213. text-transform:none;
  6214. visibility:hidden;
  6215. }
  6216. #u52436 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:0px;
  6221. width:0px;
  6222. height:0px;
  6223. }
  6224. #u52437 {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:251px;
  6228. top:792px;
  6229. width:24px;
  6230. height:24px;
  6231. display:flex;
  6232. transition:none;
  6233. font-size:8px;
  6234. }
  6235. #u52437 .text {
  6236. position:absolute;
  6237. align-self:center;
  6238. padding:2px 2px 2px 2px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u52437_img {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:24px;
  6248. height:24px;
  6249. }
  6250. #u52437_text {
  6251. border-width:0px;
  6252. word-wrap:break-word;
  6253. text-transform:none;
  6254. }
  6255. #u52438_div {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:37px;
  6261. height:17px;
  6262. background:inherit;
  6263. background-color:rgba(255, 255, 255, 0);
  6264. border-radius:0px;
  6265. filter:drop-shadow(none);
  6266. transition:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:12px;
  6271. }
  6272. #u52438 {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:245px;
  6276. top:817px;
  6277. width:37px;
  6278. height:17px;
  6279. display:flex;
  6280. transition:none;
  6281. transform-origin:50% 50%;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:12px;
  6286. }
  6287. #u52438 .text {
  6288. position:absolute;
  6289. align-self:flex-start;
  6290. padding:0px 0px 0px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u52438_text {
  6295. border-width:0px;
  6296. white-space:nowrap;
  6297. text-transform:none;
  6298. }
  6299. #u52439 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:0px;
  6305. height:0px;
  6306. }
  6307. #u52440 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:157px;
  6311. top:792px;
  6312. width:24px;
  6313. height:24px;
  6314. display:flex;
  6315. transition:none;
  6316. font-size:8px;
  6317. }
  6318. #u52440 .text {
  6319. position:absolute;
  6320. align-self:center;
  6321. padding:2px 2px 2px 2px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u52440_img {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:24px;
  6331. height:24px;
  6332. }
  6333. #u52440_text {
  6334. border-width:0px;
  6335. word-wrap:break-word;
  6336. text-transform:none;
  6337. }
  6338. #u52441_div {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:37px;
  6344. height:17px;
  6345. background:inherit;
  6346. background-color:rgba(255, 255, 255, 0);
  6347. border-radius:0px;
  6348. filter:drop-shadow(none);
  6349. transition:none;
  6350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:12px;
  6354. }
  6355. #u52441 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:151px;
  6359. top:817px;
  6360. width:37px;
  6361. height:17px;
  6362. display:flex;
  6363. transition:none;
  6364. transform-origin:50% 50%;
  6365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:12px;
  6369. }
  6370. #u52441 .text {
  6371. position:absolute;
  6372. align-self:flex-start;
  6373. padding:0px 0px 0px 0px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u52441_text {
  6378. border-width:0px;
  6379. white-space:nowrap;
  6380. text-transform:none;
  6381. }
  6382. #u52442_div {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:0px;
  6386. top:0px;
  6387. width:375px;
  6388. height:732px;
  6389. background:inherit;
  6390. background-color:rgba(242, 242, 242, 0.996078431372549);
  6391. border-top:0px;
  6392. border-radius:28px;
  6393. border-top-left-radius:0px;
  6394. border-top-right-radius:0px;
  6395. filter:drop-shadow(none);
  6396. transition:none;
  6397. }
  6398. #u52442 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:937px;
  6402. top:107px;
  6403. width:375px;
  6404. height:732px;
  6405. display:flex;
  6406. transition:none;
  6407. transform-origin:50% 50%;
  6408. }
  6409. #u52442 .text {
  6410. position:absolute;
  6411. align-self:center;
  6412. padding:2px 2px 2px 2px;
  6413. box-sizing:border-box;
  6414. width:100%;
  6415. }
  6416. #u52442_text {
  6417. border-width:0px;
  6418. word-wrap:break-word;
  6419. text-transform:none;
  6420. visibility:hidden;
  6421. }
  6422. #u52443_div {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:375px;
  6428. height:41px;
  6429. background:inherit;
  6430. background-color:rgba(255, 255, 255, 1);
  6431. box-sizing:border-box;
  6432. border-width:1px;
  6433. border-style:solid;
  6434. border-color:rgba(215, 215, 215, 1);
  6435. border-left:0px;
  6436. border-top:0px;
  6437. border-right:0px;
  6438. border-radius:0px;
  6439. border-bottom-right-radius:0px;
  6440. border-bottom-left-radius:0px;
  6441. filter:drop-shadow(none);
  6442. transition:none;
  6443. }
  6444. #u52443 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:937px;
  6448. top:67px;
  6449. width:375px;
  6450. height:41px;
  6451. display:flex;
  6452. transition:none;
  6453. transform-origin:50% 50%;
  6454. }
  6455. #u52443 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u52443_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u52444 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:0px;
  6474. height:0px;
  6475. }
  6476. #u52445_div {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:88px;
  6482. height:32px;
  6483. background:inherit;
  6484. background-color:rgba(255, 255, 255, 1);
  6485. box-sizing:border-box;
  6486. border-width:1px;
  6487. border-style:solid;
  6488. border-color:rgba(242, 242, 242, 1);
  6489. border-radius:33px;
  6490. filter:drop-shadow(none);
  6491. transition:none;
  6492. }
  6493. #u52445 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:1217px;
  6497. top:71px;
  6498. width:88px;
  6499. height:32px;
  6500. display:flex;
  6501. transition:none;
  6502. transform-origin:50% 50%;
  6503. }
  6504. #u52445 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:2px 2px 2px 2px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u52445_text {
  6512. border-width:0px;
  6513. word-wrap:break-word;
  6514. text-transform:none;
  6515. visibility:hidden;
  6516. }
  6517. #u52446 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:0px;
  6521. top:0px;
  6522. width:0px;
  6523. height:0px;
  6524. }
  6525. #u52447 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:1280px;
  6529. top:78px;
  6530. width:18px;
  6531. height:18px;
  6532. display:flex;
  6533. transition:none;
  6534. }
  6535. #u52447 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 2px 2px 2px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u52447_img {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:18px;
  6548. height:18px;
  6549. }
  6550. #u52447_text {
  6551. border-width:0px;
  6552. word-wrap:break-word;
  6553. text-transform:none;
  6554. visibility:hidden;
  6555. }
  6556. #u52448 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:1286px;
  6560. top:84px;
  6561. width:6px;
  6562. height:6px;
  6563. display:flex;
  6564. transition:none;
  6565. }
  6566. #u52448 .text {
  6567. position:absolute;
  6568. align-self:center;
  6569. padding:2px 2px 2px 2px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u52448_img {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:6px;
  6579. height:6px;
  6580. }
  6581. #u52448_text {
  6582. border-width:0px;
  6583. word-wrap:break-word;
  6584. text-transform:none;
  6585. visibility:hidden;
  6586. }
  6587. #u52449 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:0px;
  6593. height:0px;
  6594. }
  6595. #u52450 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:1231px;
  6599. top:85px;
  6600. width:5px;
  6601. height:5px;
  6602. display:flex;
  6603. transition:none;
  6604. }
  6605. #u52450 .text {
  6606. position:absolute;
  6607. align-self:center;
  6608. padding:2px 2px 2px 2px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u52450_img {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:5px;
  6618. height:5px;
  6619. }
  6620. #u52450_text {
  6621. border-width:0px;
  6622. word-wrap:break-word;
  6623. text-transform:none;
  6624. visibility:hidden;
  6625. }
  6626. #u52451 {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:1247px;
  6630. top:85px;
  6631. width:5px;
  6632. height:5px;
  6633. display:flex;
  6634. transition:none;
  6635. }
  6636. #u52451 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 2px 2px 2px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u52451_img {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:5px;
  6649. height:5px;
  6650. }
  6651. #u52451_text {
  6652. border-width:0px;
  6653. word-wrap:break-word;
  6654. text-transform:none;
  6655. visibility:hidden;
  6656. }
  6657. #u52452 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:1238px;
  6661. top:84px;
  6662. width:7px;
  6663. height:7px;
  6664. display:flex;
  6665. transition:none;
  6666. }
  6667. #u52452 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 2px 2px 2px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u52452_img {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:7px;
  6680. height:7px;
  6681. }
  6682. #u52452_text {
  6683. border-width:0px;
  6684. word-wrap:break-word;
  6685. text-transform:none;
  6686. visibility:hidden;
  6687. }
  6688. #u52453 {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:1255px;
  6692. top:87px;
  6693. width:18px;
  6694. height:1px;
  6695. display:flex;
  6696. -webkit-transform:rotate(90deg);
  6697. -moz-transform:rotate(90deg);
  6698. -ms-transform:rotate(90deg);
  6699. transform:rotate(90deg);
  6700. transition:none;
  6701. }
  6702. #u52453 .text {
  6703. position:absolute;
  6704. align-self:center;
  6705. padding:2px 2px 2px 2px;
  6706. box-sizing:border-box;
  6707. width:100%;
  6708. }
  6709. #u52453_img {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:19px;
  6715. height:2px;
  6716. }
  6717. #u52453_text {
  6718. border-width:0px;
  6719. word-wrap:break-word;
  6720. text-transform:none;
  6721. visibility:hidden;
  6722. }
  6723. #u52454_div {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:12px;
  6729. height:12px;
  6730. background:inherit;
  6731. background-color:rgba(255, 255, 255, 0);
  6732. box-sizing:border-box;
  6733. border-width:2px;
  6734. border-style:solid;
  6735. border-color:rgba(51, 51, 51, 1);
  6736. border-right:0px;
  6737. border-bottom:0px;
  6738. border-radius:0px;
  6739. border-top-right-radius:0px;
  6740. border-bottom-left-radius:0px;
  6741. filter:drop-shadow(none);
  6742. transition:none;
  6743. }
  6744. #u52454 {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:952px;
  6748. top:81px;
  6749. width:12px;
  6750. height:12px;
  6751. display:flex;
  6752. -webkit-transform:rotate(315deg);
  6753. -moz-transform:rotate(315deg);
  6754. -ms-transform:rotate(315deg);
  6755. transform:rotate(315deg);
  6756. transition:none;
  6757. transform-origin:50% 50%;
  6758. }
  6759. #u52454 .text {
  6760. position:absolute;
  6761. align-self:center;
  6762. padding:2px 2px 2px 2px;
  6763. box-sizing:border-box;
  6764. width:100%;
  6765. }
  6766. #u52454_text {
  6767. border-width:0px;
  6768. word-wrap:break-word;
  6769. text-transform:none;
  6770. visibility:hidden;
  6771. }
  6772. #u52455 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:0px;
  6778. height:0px;
  6779. }
  6780. #u52456_div {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:0px;
  6784. top:0px;
  6785. width:375px;
  6786. height:60px;
  6787. background:inherit;
  6788. background-color:rgba(255, 255, 255, 1);
  6789. box-sizing:border-box;
  6790. border-width:1px;
  6791. border-style:solid;
  6792. border-color:rgba(242, 242, 242, 1);
  6793. border-radius:20px;
  6794. border-top-left-radius:0px;
  6795. border-top-right-radius:0px;
  6796. filter:drop-shadow(none);
  6797. transition:none;
  6798. }
  6799. #u52456 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:937px;
  6803. top:779px;
  6804. width:375px;
  6805. height:60px;
  6806. display:flex;
  6807. transition:none;
  6808. transform-origin:50% 50%;
  6809. }
  6810. #u52456 .text {
  6811. position:absolute;
  6812. align-self:center;
  6813. padding:2px 2px 2px 2px;
  6814. box-sizing:border-box;
  6815. width:100%;
  6816. }
  6817. #u52456_text {
  6818. border-width:0px;
  6819. word-wrap:break-word;
  6820. text-transform:none;
  6821. visibility:hidden;
  6822. }
  6823. #u52457_div {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:97px;
  6829. height:40px;
  6830. background:inherit;
  6831. background-color:rgba(255, 255, 255, 1);
  6832. box-sizing:border-box;
  6833. border-width:1px;
  6834. border-style:solid;
  6835. border-color:rgba(121, 121, 121, 1);
  6836. border-radius:63px;
  6837. filter:drop-shadow(none);
  6838. transition:none;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:14px;
  6843. color:#555555;
  6844. }
  6845. #u52457 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:1094px;
  6849. top:789px;
  6850. width:97px;
  6851. height:40px;
  6852. display:flex;
  6853. transition:none;
  6854. transform-origin:50% 50%;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:14px;
  6859. color:#555555;
  6860. }
  6861. #u52457 .text {
  6862. position:absolute;
  6863. align-self:center;
  6864. padding:2px 2px 2px 2px;
  6865. box-sizing:border-box;
  6866. width:100%;
  6867. }
  6868. #u52457_text {
  6869. border-width:0px;
  6870. word-wrap:break-word;
  6871. text-transform:none;
  6872. }
  6873. #u52458_div {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:97px;
  6879. height:40px;
  6880. background:inherit;
  6881. background-color:rgba(24, 144, 255, 1);
  6882. border-radius:63px;
  6883. filter:drop-shadow(none);
  6884. transition:none;
  6885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6886. font-weight:400;
  6887. font-style:normal;
  6888. font-size:14px;
  6889. color:#FFFFFF;
  6890. }
  6891. #u52458 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:1201px;
  6895. top:789px;
  6896. width:97px;
  6897. height:40px;
  6898. display:flex;
  6899. transition:none;
  6900. transform-origin:50% 50%;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:14px;
  6905. color:#FFFFFF;
  6906. }
  6907. #u52458 .text {
  6908. position:absolute;
  6909. align-self:center;
  6910. padding:2px 2px 2px 2px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u52458_text {
  6915. border-width:0px;
  6916. word-wrap:break-word;
  6917. text-transform:none;
  6918. }
  6919. #u52459_div {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:109px;
  6925. height:25px;
  6926. background:inherit;
  6927. background-color:rgba(255, 255, 255, 0);
  6928. border-radius:0px;
  6929. filter:drop-shadow(none);
  6930. transition:none;
  6931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:18px;
  6935. }
  6936. #u52459 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:972px;
  6940. top:75px;
  6941. width:109px;
  6942. height:25px;
  6943. display:flex;
  6944. transition:none;
  6945. transform-origin:50% 50%;
  6946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6947. font-weight:400;
  6948. font-style:normal;
  6949. font-size:18px;
  6950. }
  6951. #u52459 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:0px 0px 0px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u52459_text {
  6959. border-width:0px;
  6960. white-space:nowrap;
  6961. text-transform:none;
  6962. }
  6963. #u52460_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:375px;
  6969. height:50px;
  6970. background:inherit;
  6971. background-color:rgba(255, 255, 255, 1);
  6972. border-left:0px;
  6973. border-top:0px;
  6974. border-right:0px;
  6975. border-radius:0px;
  6976. border-bottom-right-radius:0px;
  6977. border-bottom-left-radius:0px;
  6978. filter:drop-shadow(none);
  6979. transition:none;
  6980. }
  6981. #u52460 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:937px;
  6985. top:284px;
  6986. width:375px;
  6987. height:50px;
  6988. display:flex;
  6989. transition:none;
  6990. transform-origin:50% 50%;
  6991. }
  6992. #u52460 .text {
  6993. position:absolute;
  6994. align-self:center;
  6995. padding:2px 2px 2px 2px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u52460_text {
  7000. border-width:0px;
  7001. word-wrap:break-word;
  7002. text-transform:none;
  7003. visibility:hidden;
  7004. }
  7005. #u52461_div {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:57px;
  7011. height:30px;
  7012. background:inherit;
  7013. background-color:rgba(255, 255, 255, 0);
  7014. border-left:0px;
  7015. border-top:0px;
  7016. border-right:0px;
  7017. border-radius:0px;
  7018. border-bottom-right-radius:0px;
  7019. border-bottom-left-radius:0px;
  7020. filter:drop-shadow(none);
  7021. transition:none;
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:14px;
  7026. line-height:30px;
  7027. }
  7028. #u52461 {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:957px;
  7032. top:294px;
  7033. width:57px;
  7034. height:30px;
  7035. display:flex;
  7036. transition:none;
  7037. transform-origin:50% 50%;
  7038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7039. font-weight:400;
  7040. font-style:normal;
  7041. font-size:14px;
  7042. line-height:30px;
  7043. }
  7044. #u52461 .text {
  7045. position:absolute;
  7046. align-self:center;
  7047. padding:0px 0px 0px 0px;
  7048. box-sizing:border-box;
  7049. width:100%;
  7050. }
  7051. #u52461_text {
  7052. border-width:0px;
  7053. white-space:nowrap;
  7054. text-transform:none;
  7055. }
  7056. #u52462_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:375px;
  7062. height:50px;
  7063. background:inherit;
  7064. background-color:rgba(255, 255, 255, 1);
  7065. border-left:0px;
  7066. border-top:0px;
  7067. border-right:0px;
  7068. border-radius:0px;
  7069. border-bottom-right-radius:0px;
  7070. border-bottom-left-radius:0px;
  7071. filter:drop-shadow(none);
  7072. transition:none;
  7073. }
  7074. #u52462 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:937px;
  7078. top:233px;
  7079. width:375px;
  7080. height:50px;
  7081. display:flex;
  7082. transition:none;
  7083. transform-origin:50% 50%;
  7084. }
  7085. #u52462 .text {
  7086. position:absolute;
  7087. align-self:center;
  7088. padding:2px 2px 2px 2px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u52462_text {
  7093. border-width:0px;
  7094. word-wrap:break-word;
  7095. text-transform:none;
  7096. visibility:hidden;
  7097. }
  7098. #u52463_div {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:0px;
  7103. width:57px;
  7104. height:30px;
  7105. background:inherit;
  7106. background-color:rgba(255, 255, 255, 0);
  7107. border-left:0px;
  7108. border-top:0px;
  7109. border-right:0px;
  7110. border-radius:0px;
  7111. border-bottom-right-radius:0px;
  7112. border-bottom-left-radius:0px;
  7113. filter:drop-shadow(none);
  7114. transition:none;
  7115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7116. font-weight:400;
  7117. font-style:normal;
  7118. font-size:14px;
  7119. line-height:30px;
  7120. }
  7121. #u52463 {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:957px;
  7125. top:243px;
  7126. width:57px;
  7127. height:30px;
  7128. display:flex;
  7129. transition:none;
  7130. transform-origin:50% 50%;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:14px;
  7135. line-height:30px;
  7136. }
  7137. #u52463 .text {
  7138. position:absolute;
  7139. align-self:center;
  7140. padding:0px 0px 0px 0px;
  7141. box-sizing:border-box;
  7142. width:100%;
  7143. }
  7144. #u52463_text {
  7145. border-width:0px;
  7146. white-space:nowrap;
  7147. text-transform:none;
  7148. }
  7149. #u52464 {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:0px;
  7153. top:0px;
  7154. width:0px;
  7155. height:0px;
  7156. }
  7157. #u52465_div {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:0px;
  7161. top:0px;
  7162. width:8px;
  7163. height:8px;
  7164. background:inherit;
  7165. background-color:rgba(255, 255, 255, 0);
  7166. box-sizing:border-box;
  7167. border-width:1px;
  7168. border-style:solid;
  7169. border-color:rgba(127, 127, 127, 1);
  7170. border-right:0px;
  7171. border-bottom:0px;
  7172. border-radius:0px;
  7173. border-top-right-radius:0px;
  7174. border-bottom-left-radius:0px;
  7175. filter:drop-shadow(none);
  7176. transition:none;
  7177. }
  7178. #u52465 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:1287px;
  7182. top:254px;
  7183. width:8px;
  7184. height:8px;
  7185. display:flex;
  7186. -webkit-transform:rotate(135deg);
  7187. -moz-transform:rotate(135deg);
  7188. -ms-transform:rotate(135deg);
  7189. transform:rotate(135deg);
  7190. transition:none;
  7191. transform-origin:50% 50%;
  7192. }
  7193. #u52465 .text {
  7194. position:absolute;
  7195. align-self:center;
  7196. padding:2px 2px 2px 2px;
  7197. box-sizing:border-box;
  7198. width:100%;
  7199. }
  7200. #u52465_text {
  7201. border-width:0px;
  7202. word-wrap:break-word;
  7203. text-transform:none;
  7204. visibility:hidden;
  7205. }
  7206. #u52466_div {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:57px;
  7212. height:30px;
  7213. background:inherit;
  7214. background-color:rgba(255, 255, 255, 0);
  7215. border-left:0px;
  7216. border-top:0px;
  7217. border-right:0px;
  7218. border-radius:0px;
  7219. border-bottom-right-radius:0px;
  7220. border-bottom-left-radius:0px;
  7221. filter:drop-shadow(none);
  7222. transition:none;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:14px;
  7227. color:#AAAAAA;
  7228. text-align:right;
  7229. line-height:30px;
  7230. }
  7231. #u52466 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:1223px;
  7235. top:243px;
  7236. width:57px;
  7237. height:30px;
  7238. display:flex;
  7239. transition:none;
  7240. transform-origin:50% 50%;
  7241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:14px;
  7245. color:#AAAAAA;
  7246. text-align:right;
  7247. line-height:30px;
  7248. }
  7249. #u52466 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:0px 0px 0px 0px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u52466_text {
  7257. border-width:0px;
  7258. white-space:nowrap;
  7259. text-transform:none;
  7260. }
  7261. #u52467 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:0px;
  7267. height:0px;
  7268. }
  7269. #u52468_div {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:0px;
  7273. top:0px;
  7274. width:375px;
  7275. height:50px;
  7276. background:inherit;
  7277. background-color:rgba(255, 255, 255, 1);
  7278. border-left:0px;
  7279. border-top:0px;
  7280. border-right:0px;
  7281. border-radius:0px;
  7282. border-bottom-right-radius:0px;
  7283. border-bottom-left-radius:0px;
  7284. filter:drop-shadow(none);
  7285. transition:none;
  7286. }
  7287. #u52468 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:937px;
  7291. top:394px;
  7292. width:375px;
  7293. height:50px;
  7294. display:flex;
  7295. transition:none;
  7296. transform-origin:50% 50%;
  7297. }
  7298. #u52468 .text {
  7299. position:absolute;
  7300. align-self:center;
  7301. padding:2px 2px 2px 2px;
  7302. box-sizing:border-box;
  7303. width:100%;
  7304. }
  7305. #u52468_text {
  7306. border-width:0px;
  7307. word-wrap:break-word;
  7308. text-transform:none;
  7309. visibility:hidden;
  7310. }
  7311. #u52469_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:43px;
  7317. height:30px;
  7318. background:inherit;
  7319. background-color:rgba(255, 255, 255, 0);
  7320. border-left:0px;
  7321. border-top:0px;
  7322. border-right:0px;
  7323. border-radius:0px;
  7324. border-bottom-right-radius:0px;
  7325. border-bottom-left-radius:0px;
  7326. filter:drop-shadow(none);
  7327. transition:none;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:14px;
  7332. line-height:30px;
  7333. }
  7334. #u52469 {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:957px;
  7338. top:404px;
  7339. width:43px;
  7340. height:30px;
  7341. display:flex;
  7342. transition:none;
  7343. transform-origin:50% 50%;
  7344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7345. font-weight:400;
  7346. font-style:normal;
  7347. font-size:14px;
  7348. line-height:30px;
  7349. }
  7350. #u52469 .text {
  7351. position:absolute;
  7352. align-self:center;
  7353. padding:0px 0px 0px 0px;
  7354. box-sizing:border-box;
  7355. width:100%;
  7356. }
  7357. #u52469_text {
  7358. border-width:0px;
  7359. white-space:nowrap;
  7360. text-transform:none;
  7361. }
  7362. #u52470 {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:0px;
  7366. top:0px;
  7367. width:0px;
  7368. height:0px;
  7369. }
  7370. #u52471_div {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:8px;
  7376. height:8px;
  7377. background:inherit;
  7378. background-color:rgba(255, 255, 255, 0);
  7379. box-sizing:border-box;
  7380. border-width:1px;
  7381. border-style:solid;
  7382. border-color:rgba(127, 127, 127, 1);
  7383. border-right:0px;
  7384. border-bottom:0px;
  7385. border-radius:0px;
  7386. border-top-right-radius:0px;
  7387. border-bottom-left-radius:0px;
  7388. filter:drop-shadow(none);
  7389. transition:none;
  7390. }
  7391. #u52471 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:1287px;
  7395. top:415px;
  7396. width:8px;
  7397. height:8px;
  7398. display:flex;
  7399. -webkit-transform:rotate(135deg);
  7400. -moz-transform:rotate(135deg);
  7401. -ms-transform:rotate(135deg);
  7402. transform:rotate(135deg);
  7403. transition:none;
  7404. transform-origin:50% 50%;
  7405. }
  7406. #u52471 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:2px 2px 2px 2px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u52471_text {
  7414. border-width:0px;
  7415. word-wrap:break-word;
  7416. text-transform:none;
  7417. visibility:hidden;
  7418. }
  7419. #u52472_div {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:0px;
  7423. top:0px;
  7424. width:43px;
  7425. height:30px;
  7426. background:inherit;
  7427. background-color:rgba(255, 255, 255, 0);
  7428. border-left:0px;
  7429. border-top:0px;
  7430. border-right:0px;
  7431. border-radius:0px;
  7432. border-bottom-right-radius:0px;
  7433. border-bottom-left-radius:0px;
  7434. filter:drop-shadow(none);
  7435. transition:none;
  7436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7437. font-weight:400;
  7438. font-style:normal;
  7439. font-size:14px;
  7440. color:#AAAAAA;
  7441. text-align:right;
  7442. line-height:30px;
  7443. }
  7444. #u52472 {
  7445. border-width:0px;
  7446. position:absolute;
  7447. left:1237px;
  7448. top:404px;
  7449. width:43px;
  7450. height:30px;
  7451. display:flex;
  7452. transition:none;
  7453. transform-origin:50% 50%;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. color:#AAAAAA;
  7459. text-align:right;
  7460. line-height:30px;
  7461. }
  7462. #u52472 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:0px 0px 0px 0px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u52472_text {
  7470. border-width:0px;
  7471. white-space:nowrap;
  7472. text-transform:none;
  7473. }
  7474. #u52473 {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:0px;
  7480. height:0px;
  7481. }
  7482. #u52474_div {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:0px;
  7486. top:0px;
  7487. width:375px;
  7488. height:140px;
  7489. background:inherit;
  7490. background-color:rgba(255, 255, 255, 1);
  7491. border-left:0px;
  7492. border-top:0px;
  7493. border-right:0px;
  7494. border-radius:0px;
  7495. border-bottom-right-radius:0px;
  7496. border-bottom-left-radius:0px;
  7497. filter:drop-shadow(none);
  7498. transition:none;
  7499. }
  7500. #u52474 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:937px;
  7504. top:445px;
  7505. width:375px;
  7506. height:140px;
  7507. display:flex;
  7508. transition:none;
  7509. transform-origin:50% 50%;
  7510. }
  7511. #u52474 .text {
  7512. position:absolute;
  7513. align-self:center;
  7514. padding:2px 2px 2px 2px;
  7515. box-sizing:border-box;
  7516. width:100%;
  7517. }
  7518. #u52474_text {
  7519. border-width:0px;
  7520. word-wrap:break-word;
  7521. text-transform:none;
  7522. visibility:hidden;
  7523. }
  7524. #u52475_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:57px;
  7530. height:30px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 0);
  7533. border-left:0px;
  7534. border-top:0px;
  7535. border-right:0px;
  7536. border-radius:0px;
  7537. border-bottom-right-radius:0px;
  7538. border-bottom-left-radius:0px;
  7539. filter:drop-shadow(none);
  7540. transition:none;
  7541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7542. font-weight:400;
  7543. font-style:normal;
  7544. font-size:14px;
  7545. line-height:30px;
  7546. }
  7547. #u52475 {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:957px;
  7551. top:455px;
  7552. width:57px;
  7553. height:30px;
  7554. display:flex;
  7555. transition:none;
  7556. transform-origin:50% 50%;
  7557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:14px;
  7561. line-height:30px;
  7562. }
  7563. #u52475 .text {
  7564. position:absolute;
  7565. align-self:center;
  7566. padding:0px 0px 0px 0px;
  7567. box-sizing:border-box;
  7568. width:100%;
  7569. }
  7570. #u52475_text {
  7571. border-width:0px;
  7572. white-space:nowrap;
  7573. text-transform:none;
  7574. }
  7575. #u52476_div {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:99px;
  7581. height:30px;
  7582. background:inherit;
  7583. background-color:rgba(255, 255, 255, 0);
  7584. border-left:0px;
  7585. border-top:0px;
  7586. border-right:0px;
  7587. border-radius:0px;
  7588. border-bottom-right-radius:0px;
  7589. border-bottom-left-radius:0px;
  7590. filter:drop-shadow(none);
  7591. transition:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:14px;
  7596. color:#AAAAAA;
  7597. line-height:30px;
  7598. }
  7599. #u52476 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:957px;
  7603. top:485px;
  7604. width:99px;
  7605. height:30px;
  7606. display:flex;
  7607. transition:none;
  7608. transform-origin:50% 50%;
  7609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7610. font-weight:400;
  7611. font-style:normal;
  7612. font-size:14px;
  7613. color:#AAAAAA;
  7614. line-height:30px;
  7615. }
  7616. #u52476 .text {
  7617. position:absolute;
  7618. align-self:center;
  7619. padding:0px 0px 0px 0px;
  7620. box-sizing:border-box;
  7621. width:100%;
  7622. }
  7623. #u52476_text {
  7624. border-width:0px;
  7625. white-space:nowrap;
  7626. text-transform:none;
  7627. }
  7628. #u52477_div {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:40px;
  7634. height:40px;
  7635. background:inherit;
  7636. background-color:rgba(255, 255, 255, 1);
  7637. box-sizing:border-box;
  7638. border-width:1px;
  7639. border-style:solid;
  7640. border-color:rgba(170, 170, 170, 1);
  7641. border-radius:4px;
  7642. filter:drop-shadow(none);
  7643. transition:none;
  7644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. font-size:18px;
  7648. }
  7649. #u52477 {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:957px;
  7653. top:535px;
  7654. width:40px;
  7655. height:40px;
  7656. display:flex;
  7657. transition:none;
  7658. transform-origin:50% 50%;
  7659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7660. font-weight:400;
  7661. font-style:normal;
  7662. font-size:18px;
  7663. }
  7664. #u52477 .text {
  7665. position:absolute;
  7666. align-self:center;
  7667. padding:2px 2px 2px 2px;
  7668. box-sizing:border-box;
  7669. width:100%;
  7670. }
  7671. #u52477_text {
  7672. border-width:0px;
  7673. word-wrap:break-word;
  7674. text-transform:none;
  7675. }
  7676. #u52478 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:0px;
  7682. height:0px;
  7683. }
  7684. #u52479_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:375px;
  7690. height:50px;
  7691. background:inherit;
  7692. background-color:rgba(255, 255, 255, 1);
  7693. border-left:0px;
  7694. border-top:0px;
  7695. border-right:0px;
  7696. border-radius:0px;
  7697. border-bottom-right-radius:0px;
  7698. border-bottom-left-radius:0px;
  7699. filter:drop-shadow(none);
  7700. transition:none;
  7701. }
  7702. #u52479 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:937px;
  7706. top:344px;
  7707. width:375px;
  7708. height:50px;
  7709. display:flex;
  7710. transition:none;
  7711. transform-origin:50% 50%;
  7712. }
  7713. #u52479 .text {
  7714. position:absolute;
  7715. align-self:center;
  7716. padding:2px 2px 2px 2px;
  7717. box-sizing:border-box;
  7718. width:100%;
  7719. }
  7720. #u52479_text {
  7721. border-width:0px;
  7722. word-wrap:break-word;
  7723. text-transform:none;
  7724. visibility:hidden;
  7725. }
  7726. #u52480_div {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:57px;
  7732. height:30px;
  7733. background:inherit;
  7734. background-color:rgba(255, 255, 255, 0);
  7735. border-left:0px;
  7736. border-top:0px;
  7737. border-right:0px;
  7738. border-radius:0px;
  7739. border-bottom-right-radius:0px;
  7740. border-bottom-left-radius:0px;
  7741. filter:drop-shadow(none);
  7742. transition:none;
  7743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7744. font-weight:400;
  7745. font-style:normal;
  7746. font-size:14px;
  7747. line-height:30px;
  7748. }
  7749. #u52480 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:957px;
  7753. top:354px;
  7754. width:57px;
  7755. height:30px;
  7756. display:flex;
  7757. transition:none;
  7758. transform-origin:50% 50%;
  7759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:14px;
  7763. line-height:30px;
  7764. }
  7765. #u52480 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:0px 0px 0px 0px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u52480_text {
  7773. border-width:0px;
  7774. white-space:nowrap;
  7775. text-transform:none;
  7776. }
  7777. #u52481 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:0px;
  7783. height:0px;
  7784. }
  7785. #u52482_div {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:8px;
  7791. height:8px;
  7792. background:inherit;
  7793. background-color:rgba(255, 255, 255, 0);
  7794. box-sizing:border-box;
  7795. border-width:1px;
  7796. border-style:solid;
  7797. border-color:rgba(127, 127, 127, 1);
  7798. border-right:0px;
  7799. border-bottom:0px;
  7800. border-radius:0px;
  7801. border-top-right-radius:0px;
  7802. border-bottom-left-radius:0px;
  7803. filter:drop-shadow(none);
  7804. transition:none;
  7805. }
  7806. #u52482 {
  7807. border-width:0px;
  7808. position:absolute;
  7809. left:1287px;
  7810. top:365px;
  7811. width:8px;
  7812. height:8px;
  7813. display:flex;
  7814. -webkit-transform:rotate(135deg);
  7815. -moz-transform:rotate(135deg);
  7816. -ms-transform:rotate(135deg);
  7817. transform:rotate(135deg);
  7818. transition:none;
  7819. transform-origin:50% 50%;
  7820. }
  7821. #u52482 .text {
  7822. position:absolute;
  7823. align-self:center;
  7824. padding:2px 2px 2px 2px;
  7825. box-sizing:border-box;
  7826. width:100%;
  7827. }
  7828. #u52482_text {
  7829. border-width:0px;
  7830. word-wrap:break-word;
  7831. text-transform:none;
  7832. visibility:hidden;
  7833. }
  7834. #u52483_div {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:0px;
  7838. top:0px;
  7839. width:196px;
  7840. height:30px;
  7841. background:inherit;
  7842. background-color:rgba(255, 255, 255, 0);
  7843. border-left:0px;
  7844. border-top:0px;
  7845. border-right:0px;
  7846. border-radius:0px;
  7847. border-bottom-right-radius:0px;
  7848. border-bottom-left-radius:0px;
  7849. filter:drop-shadow(none);
  7850. transition:none;
  7851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7852. font-weight:400;
  7853. font-style:normal;
  7854. font-size:12px;
  7855. text-align:right;
  7856. line-height:30px;
  7857. }
  7858. #u52483 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:1084px;
  7862. top:354px;
  7863. width:196px;
  7864. height:30px;
  7865. display:flex;
  7866. transition:none;
  7867. transform-origin:50% 50%;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:12px;
  7872. text-align:right;
  7873. line-height:30px;
  7874. }
  7875. #u52483 .text {
  7876. position:absolute;
  7877. align-self:center;
  7878. padding:0px 0px 0px 0px;
  7879. box-sizing:border-box;
  7880. width:100%;
  7881. }
  7882. #u52483_text {
  7883. border-width:0px;
  7884. white-space:nowrap;
  7885. text-transform:none;
  7886. }
  7887. #u52484 {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:0px;
  7893. height:0px;
  7894. }
  7895. #u52485_div {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:375px;
  7901. height:50px;
  7902. background:inherit;
  7903. background-color:rgba(255, 255, 255, 1);
  7904. border-left:0px;
  7905. border-top:0px;
  7906. border-right:0px;
  7907. border-radius:0px;
  7908. border-bottom-right-radius:0px;
  7909. border-bottom-left-radius:0px;
  7910. filter:drop-shadow(none);
  7911. transition:none;
  7912. }
  7913. #u52485 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:937px;
  7917. top:586px;
  7918. width:375px;
  7919. height:50px;
  7920. display:flex;
  7921. transition:none;
  7922. transform-origin:50% 50%;
  7923. }
  7924. #u52485 .text {
  7925. position:absolute;
  7926. align-self:center;
  7927. padding:2px 2px 2px 2px;
  7928. box-sizing:border-box;
  7929. width:100%;
  7930. }
  7931. #u52485_text {
  7932. border-width:0px;
  7933. word-wrap:break-word;
  7934. text-transform:none;
  7935. visibility:hidden;
  7936. }
  7937. #u52486_div {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:0px;
  7941. top:0px;
  7942. width:57px;
  7943. height:30px;
  7944. background:inherit;
  7945. background-color:rgba(255, 255, 255, 0);
  7946. border-left:0px;
  7947. border-top:0px;
  7948. border-right:0px;
  7949. border-radius:0px;
  7950. border-bottom-right-radius:0px;
  7951. border-bottom-left-radius:0px;
  7952. filter:drop-shadow(none);
  7953. transition:none;
  7954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7955. font-weight:400;
  7956. font-style:normal;
  7957. font-size:14px;
  7958. line-height:30px;
  7959. }
  7960. #u52486 {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:957px;
  7964. top:596px;
  7965. width:57px;
  7966. height:30px;
  7967. display:flex;
  7968. transition:none;
  7969. transform-origin:50% 50%;
  7970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7971. font-weight:400;
  7972. font-style:normal;
  7973. font-size:14px;
  7974. line-height:30px;
  7975. }
  7976. #u52486 .text {
  7977. position:absolute;
  7978. align-self:center;
  7979. padding:0px 0px 0px 0px;
  7980. box-sizing:border-box;
  7981. width:100%;
  7982. }
  7983. #u52486_text {
  7984. border-width:0px;
  7985. white-space:nowrap;
  7986. text-transform:none;
  7987. }
  7988. #u52487_div {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:0px;
  7992. top:0px;
  7993. width:60px;
  7994. height:30px;
  7995. background:inherit;
  7996. background-color:rgba(24, 144, 255, 1);
  7997. border-radius:4px;
  7998. filter:drop-shadow(none);
  7999. transition:none;
  8000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:12px;
  8004. color:#FFFFFF;
  8005. }
  8006. #u52487 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:1242px;
  8010. top:596px;
  8011. width:60px;
  8012. height:30px;
  8013. display:flex;
  8014. transition:none;
  8015. transform-origin:50% 50%;
  8016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:12px;
  8020. color:#FFFFFF;
  8021. }
  8022. #u52487 .text {
  8023. position:absolute;
  8024. align-self:center;
  8025. padding:2px 2px 2px 2px;
  8026. box-sizing:border-box;
  8027. width:100%;
  8028. }
  8029. #u52487_text {
  8030. border-width:0px;
  8031. word-wrap:break-word;
  8032. text-transform:none;
  8033. }
  8034. #u52488_div {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:60px;
  8040. height:30px;
  8041. background:inherit;
  8042. background-color:rgba(255, 255, 255, 1);
  8043. box-sizing:border-box;
  8044. border-width:1px;
  8045. border-style:solid;
  8046. border-color:rgba(170, 170, 170, 1);
  8047. border-radius:4px;
  8048. filter:drop-shadow(none);
  8049. transition:none;
  8050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8051. font-weight:400;
  8052. font-style:normal;
  8053. font-size:12px;
  8054. }
  8055. #u52488 {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:1172px;
  8059. top:596px;
  8060. width:60px;
  8061. height:30px;
  8062. display:flex;
  8063. transition:none;
  8064. transform-origin:50% 50%;
  8065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8066. font-weight:400;
  8067. font-style:normal;
  8068. font-size:12px;
  8069. }
  8070. #u52488 .text {
  8071. position:absolute;
  8072. align-self:center;
  8073. padding:2px 2px 2px 2px;
  8074. box-sizing:border-box;
  8075. width:100%;
  8076. }
  8077. #u52488_text {
  8078. border-width:0px;
  8079. word-wrap:break-word;
  8080. text-transform:none;
  8081. }
  8082. #u52489_div {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:0px;
  8086. top:0px;
  8087. width:60px;
  8088. height:30px;
  8089. background:inherit;
  8090. background-color:rgba(24, 144, 255, 1);
  8091. border-radius:4px;
  8092. filter:drop-shadow(none);
  8093. transition:none;
  8094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8095. font-weight:400;
  8096. font-style:normal;
  8097. font-size:12px;
  8098. color:#FFFFFF;
  8099. }
  8100. #u52489 {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:1167px;
  8104. top:294px;
  8105. width:60px;
  8106. height:30px;
  8107. display:flex;
  8108. transition:none;
  8109. transform-origin:50% 50%;
  8110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8111. font-weight:400;
  8112. font-style:normal;
  8113. font-size:12px;
  8114. color:#FFFFFF;
  8115. }
  8116. #u52489 .text {
  8117. position:absolute;
  8118. align-self:center;
  8119. padding:2px 2px 2px 2px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u52489_text {
  8124. border-width:0px;
  8125. word-wrap:break-word;
  8126. text-transform:none;
  8127. }
  8128. #u52490_div {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:60px;
  8134. height:30px;
  8135. background:inherit;
  8136. background-color:rgba(255, 255, 255, 1);
  8137. box-sizing:border-box;
  8138. border-width:1px;
  8139. border-style:solid;
  8140. border-color:rgba(170, 170, 170, 1);
  8141. border-radius:4px;
  8142. filter:drop-shadow(none);
  8143. transition:none;
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:12px;
  8148. }
  8149. #u52490 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:1237px;
  8153. top:294px;
  8154. width:60px;
  8155. height:30px;
  8156. display:flex;
  8157. transition:none;
  8158. transform-origin:50% 50%;
  8159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:12px;
  8163. }
  8164. #u52490 .text {
  8165. position:absolute;
  8166. align-self:center;
  8167. padding:2px 2px 2px 2px;
  8168. box-sizing:border-box;
  8169. width:100%;
  8170. }
  8171. #u52490_text {
  8172. border-width:0px;
  8173. word-wrap:break-word;
  8174. text-transform:none;
  8175. }
  8176. #u52491 {
  8177. border-width:0px;
  8178. position:absolute;
  8179. left:0px;
  8180. top:0px;
  8181. width:0px;
  8182. height:0px;
  8183. }
  8184. #u52492_div {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:0px;
  8188. top:0px;
  8189. width:375px;
  8190. height:115px;
  8191. background:inherit;
  8192. background-color:rgba(255, 255, 255, 1);
  8193. box-sizing:border-box;
  8194. border-width:1px;
  8195. border-style:solid;
  8196. border-color:rgba(215, 215, 215, 1);
  8197. border-left:0px;
  8198. border-top:0px;
  8199. border-right:0px;
  8200. border-radius:0px;
  8201. border-bottom-right-radius:0px;
  8202. border-bottom-left-radius:0px;
  8203. filter:drop-shadow(none);
  8204. transition:none;
  8205. }
  8206. #u52492 {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:484px;
  8210. top:108px;
  8211. width:375px;
  8212. height:115px;
  8213. display:flex;
  8214. transition:none;
  8215. transform-origin:50% 50%;
  8216. }
  8217. #u52492 .text {
  8218. position:absolute;
  8219. align-self:center;
  8220. padding:2px 2px 2px 2px;
  8221. box-sizing:border-box;
  8222. width:100%;
  8223. }
  8224. #u52492_text {
  8225. border-width:0px;
  8226. word-wrap:break-word;
  8227. text-transform:none;
  8228. visibility:hidden;
  8229. }
  8230. #u52493_div {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:0px;
  8234. top:0px;
  8235. width:353px;
  8236. height:40px;
  8237. background:inherit;
  8238. background-color:rgba(255, 255, 255, 0);
  8239. border-top:0px;
  8240. border-right:0px;
  8241. border-bottom:0px;
  8242. border-radius:0px;
  8243. border-top-left-radius:0px;
  8244. border-bottom-left-radius:0px;
  8245. filter:drop-shadow(none);
  8246. transition:none;
  8247. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8248. font-weight:500;
  8249. font-style:normal;
  8250. font-size:14px;
  8251. line-height:30px;
  8252. }
  8253. #u52493 {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:497px;
  8257. top:116px;
  8258. width:353px;
  8259. height:40px;
  8260. display:flex;
  8261. transition:none;
  8262. transform-origin:50% 50%;
  8263. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8264. font-weight:500;
  8265. font-style:normal;
  8266. font-size:14px;
  8267. line-height:30px;
  8268. }
  8269. #u52493 .text {
  8270. position:absolute;
  8271. align-self:flex-start;
  8272. padding:5px 10px 5px 0px;
  8273. box-sizing:border-box;
  8274. width:100%;
  8275. }
  8276. #u52493_text {
  8277. border-width:0px;
  8278. word-wrap:break-word;
  8279. text-transform:none;
  8280. }
  8281. #u52494_div {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:11px;
  8287. height:11px;
  8288. background:inherit;
  8289. background-color:rgba(255, 255, 255, 0);
  8290. box-sizing:border-box;
  8291. border-width:2px;
  8292. border-style:solid;
  8293. border-color:rgba(51, 51, 51, 1);
  8294. border-right:0px;
  8295. border-bottom:0px;
  8296. border-radius:0px;
  8297. border-top-right-radius:0px;
  8298. border-bottom-left-radius:0px;
  8299. filter:drop-shadow(none);
  8300. transition:none;
  8301. }
  8302. #u52494 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:829px;
  8306. top:130px;
  8307. width:11px;
  8308. height:11px;
  8309. display:flex;
  8310. -webkit-transform:rotate(225deg);
  8311. -moz-transform:rotate(225deg);
  8312. -ms-transform:rotate(225deg);
  8313. transform:rotate(225deg);
  8314. transition:none;
  8315. transform-origin:50% 50%;
  8316. }
  8317. #u52494 .text {
  8318. position:absolute;
  8319. align-self:center;
  8320. padding:2px 2px 2px 2px;
  8321. box-sizing:border-box;
  8322. width:100%;
  8323. }
  8324. #u52494_text {
  8325. border-width:0px;
  8326. word-wrap:break-word;
  8327. text-transform:none;
  8328. visibility:hidden;
  8329. }
  8330. #u52495_div {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:353px;
  8336. height:65px;
  8337. background:inherit;
  8338. background-color:rgba(255, 255, 255, 0);
  8339. border-top:0px;
  8340. border-right:0px;
  8341. border-bottom:0px;
  8342. border-radius:0px;
  8343. border-top-left-radius:0px;
  8344. border-bottom-left-radius:0px;
  8345. filter:drop-shadow(none);
  8346. transition:none;
  8347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8348. font-style:normal;
  8349. }
  8350. #u52495 {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:499px;
  8354. top:156px;
  8355. width:353px;
  8356. height:65px;
  8357. display:flex;
  8358. transition:none;
  8359. transform-origin:50% 50%;
  8360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8361. font-style:normal;
  8362. }
  8363. #u52495 .text {
  8364. position:absolute;
  8365. align-self:flex-start;
  8366. padding:5px 10px 5px 0px;
  8367. box-sizing:border-box;
  8368. width:100%;
  8369. }
  8370. #u52495_text {
  8371. border-width:0px;
  8372. word-wrap:break-word;
  8373. text-transform:none;
  8374. }
  8375. #u52496_div {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:35px;
  8381. height:17px;
  8382. background:inherit;
  8383. background-color:rgba(245, 154, 35, 1);
  8384. border-radius:14px;
  8385. filter:drop-shadow(none);
  8386. transition:none;
  8387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:12px;
  8391. color:#FFFFFF;
  8392. }
  8393. #u52496 {
  8394. border-width:0px;
  8395. position:absolute;
  8396. left:647px;
  8397. top:166px;
  8398. width:35px;
  8399. height:17px;
  8400. display:flex;
  8401. transition:none;
  8402. transform-origin:50% 50%;
  8403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:12px;
  8407. color:#FFFFFF;
  8408. }
  8409. #u52496 .text {
  8410. position:absolute;
  8411. align-self:flex-start;
  8412. padding:0px 5px 0px 5px;
  8413. box-sizing:border-box;
  8414. width:100%;
  8415. }
  8416. #u52496_text {
  8417. border-width:0px;
  8418. white-space:nowrap;
  8419. text-transform:none;
  8420. }
  8421. #u52497 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:0px;
  8425. top:0px;
  8426. width:0px;
  8427. height:0px;
  8428. }
  8429. #u52498_div {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:0px;
  8433. top:0px;
  8434. width:375px;
  8435. height:115px;
  8436. background:inherit;
  8437. background-color:rgba(255, 255, 255, 1);
  8438. box-sizing:border-box;
  8439. border-width:1px;
  8440. border-style:solid;
  8441. border-color:rgba(215, 215, 215, 1);
  8442. border-left:0px;
  8443. border-top:0px;
  8444. border-right:0px;
  8445. border-radius:0px;
  8446. border-bottom-right-radius:0px;
  8447. border-bottom-left-radius:0px;
  8448. filter:drop-shadow(none);
  8449. transition:none;
  8450. }
  8451. #u52498 {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:29px;
  8455. top:108px;
  8456. width:375px;
  8457. height:115px;
  8458. display:flex;
  8459. transition:none;
  8460. transform-origin:50% 50%;
  8461. }
  8462. #u52498 .text {
  8463. position:absolute;
  8464. align-self:center;
  8465. padding:2px 2px 2px 2px;
  8466. box-sizing:border-box;
  8467. width:100%;
  8468. }
  8469. #u52498_text {
  8470. border-width:0px;
  8471. word-wrap:break-word;
  8472. text-transform:none;
  8473. visibility:hidden;
  8474. }
  8475. #u52499_div {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:353px;
  8481. height:40px;
  8482. background:inherit;
  8483. background-color:rgba(255, 255, 255, 0);
  8484. border-top:0px;
  8485. border-right:0px;
  8486. border-bottom:0px;
  8487. border-radius:0px;
  8488. border-top-left-radius:0px;
  8489. border-bottom-left-radius:0px;
  8490. filter:drop-shadow(none);
  8491. transition:none;
  8492. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8493. font-weight:500;
  8494. font-style:normal;
  8495. font-size:14px;
  8496. line-height:30px;
  8497. }
  8498. #u52499 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:42px;
  8502. top:116px;
  8503. width:353px;
  8504. height:40px;
  8505. display:flex;
  8506. transition:none;
  8507. transform-origin:50% 50%;
  8508. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8509. font-weight:500;
  8510. font-style:normal;
  8511. font-size:14px;
  8512. line-height:30px;
  8513. }
  8514. #u52499 .text {
  8515. position:absolute;
  8516. align-self:flex-start;
  8517. padding:5px 10px 5px 0px;
  8518. box-sizing:border-box;
  8519. width:100%;
  8520. }
  8521. #u52499_text {
  8522. border-width:0px;
  8523. word-wrap:break-word;
  8524. text-transform:none;
  8525. }
  8526. #u52500_div {
  8527. border-width:0px;
  8528. position:absolute;
  8529. left:0px;
  8530. top:0px;
  8531. width:11px;
  8532. height:11px;
  8533. background:inherit;
  8534. background-color:rgba(255, 255, 255, 0);
  8535. box-sizing:border-box;
  8536. border-width:2px;
  8537. border-style:solid;
  8538. border-color:rgba(51, 51, 51, 1);
  8539. border-right:0px;
  8540. border-bottom:0px;
  8541. border-radius:0px;
  8542. border-top-right-radius:0px;
  8543. border-bottom-left-radius:0px;
  8544. filter:drop-shadow(none);
  8545. transition:none;
  8546. }
  8547. #u52500 {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:374px;
  8551. top:130px;
  8552. width:11px;
  8553. height:11px;
  8554. display:flex;
  8555. -webkit-transform:rotate(225deg);
  8556. -moz-transform:rotate(225deg);
  8557. -ms-transform:rotate(225deg);
  8558. transform:rotate(225deg);
  8559. transition:none;
  8560. transform-origin:50% 50%;
  8561. }
  8562. #u52500 .text {
  8563. position:absolute;
  8564. align-self:center;
  8565. padding:2px 2px 2px 2px;
  8566. box-sizing:border-box;
  8567. width:100%;
  8568. }
  8569. #u52500_text {
  8570. border-width:0px;
  8571. word-wrap:break-word;
  8572. text-transform:none;
  8573. visibility:hidden;
  8574. }
  8575. #u52501_div {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:353px;
  8581. height:65px;
  8582. background:inherit;
  8583. background-color:rgba(255, 255, 255, 0);
  8584. border-top:0px;
  8585. border-right:0px;
  8586. border-bottom:0px;
  8587. border-radius:0px;
  8588. border-top-left-radius:0px;
  8589. border-bottom-left-radius:0px;
  8590. filter:drop-shadow(none);
  8591. transition:none;
  8592. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8593. font-style:normal;
  8594. }
  8595. #u52501 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:44px;
  8599. top:156px;
  8600. width:353px;
  8601. height:65px;
  8602. display:flex;
  8603. transition:none;
  8604. transform-origin:50% 50%;
  8605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8606. font-style:normal;
  8607. }
  8608. #u52501 .text {
  8609. position:absolute;
  8610. align-self:flex-start;
  8611. padding:5px 10px 5px 0px;
  8612. box-sizing:border-box;
  8613. width:100%;
  8614. }
  8615. #u52501_text {
  8616. border-width:0px;
  8617. word-wrap:break-word;
  8618. text-transform:none;
  8619. }
  8620. #u52502_div {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:0px;
  8624. top:0px;
  8625. width:35px;
  8626. height:17px;
  8627. background:inherit;
  8628. background-color:rgba(245, 154, 35, 1);
  8629. border-radius:14px;
  8630. filter:drop-shadow(none);
  8631. transition:none;
  8632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8633. font-weight:400;
  8634. font-style:normal;
  8635. font-size:12px;
  8636. color:#FFFFFF;
  8637. }
  8638. #u52502 {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:192px;
  8642. top:166px;
  8643. width:35px;
  8644. height:17px;
  8645. display:flex;
  8646. transition:none;
  8647. transform-origin:50% 50%;
  8648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8649. font-weight:400;
  8650. font-style:normal;
  8651. font-size:12px;
  8652. color:#FFFFFF;
  8653. }
  8654. #u52502 .text {
  8655. position:absolute;
  8656. align-self:flex-start;
  8657. padding:0px 5px 0px 5px;
  8658. box-sizing:border-box;
  8659. width:100%;
  8660. }
  8661. #u52502_text {
  8662. border-width:0px;
  8663. white-space:nowrap;
  8664. text-transform:none;
  8665. }
  8666. #u52503 {
  8667. border-width:0px;
  8668. position:absolute;
  8669. left:0px;
  8670. top:0px;
  8671. width:0px;
  8672. height:0px;
  8673. }
  8674. #u52504_div {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:0px;
  8678. top:0px;
  8679. width:375px;
  8680. height:115px;
  8681. background:inherit;
  8682. background-color:rgba(255, 255, 255, 1);
  8683. box-sizing:border-box;
  8684. border-width:1px;
  8685. border-style:solid;
  8686. border-color:rgba(215, 215, 215, 1);
  8687. border-left:0px;
  8688. border-top:0px;
  8689. border-right:0px;
  8690. border-radius:0px;
  8691. border-bottom-right-radius:0px;
  8692. border-bottom-left-radius:0px;
  8693. filter:drop-shadow(none);
  8694. transition:none;
  8695. }
  8696. #u52504 {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:937px;
  8700. top:108px;
  8701. width:375px;
  8702. height:115px;
  8703. display:flex;
  8704. transition:none;
  8705. transform-origin:50% 50%;
  8706. }
  8707. #u52504 .text {
  8708. position:absolute;
  8709. align-self:center;
  8710. padding:2px 2px 2px 2px;
  8711. box-sizing:border-box;
  8712. width:100%;
  8713. }
  8714. #u52504_text {
  8715. border-width:0px;
  8716. word-wrap:break-word;
  8717. text-transform:none;
  8718. visibility:hidden;
  8719. }
  8720. #u52505_div {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:0px;
  8724. top:0px;
  8725. width:353px;
  8726. height:40px;
  8727. background:inherit;
  8728. background-color:rgba(255, 255, 255, 0);
  8729. border-top:0px;
  8730. border-right:0px;
  8731. border-bottom:0px;
  8732. border-radius:0px;
  8733. border-top-left-radius:0px;
  8734. border-bottom-left-radius:0px;
  8735. filter:drop-shadow(none);
  8736. transition:none;
  8737. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8738. font-weight:500;
  8739. font-style:normal;
  8740. font-size:14px;
  8741. line-height:30px;
  8742. }
  8743. #u52505 {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:950px;
  8747. top:116px;
  8748. width:353px;
  8749. height:40px;
  8750. display:flex;
  8751. transition:none;
  8752. transform-origin:50% 50%;
  8753. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8754. font-weight:500;
  8755. font-style:normal;
  8756. font-size:14px;
  8757. line-height:30px;
  8758. }
  8759. #u52505 .text {
  8760. position:absolute;
  8761. align-self:flex-start;
  8762. padding:5px 10px 5px 0px;
  8763. box-sizing:border-box;
  8764. width:100%;
  8765. }
  8766. #u52505_text {
  8767. border-width:0px;
  8768. word-wrap:break-word;
  8769. text-transform:none;
  8770. }
  8771. #u52506_div {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:11px;
  8777. height:11px;
  8778. background:inherit;
  8779. background-color:rgba(255, 255, 255, 0);
  8780. box-sizing:border-box;
  8781. border-width:2px;
  8782. border-style:solid;
  8783. border-color:rgba(51, 51, 51, 1);
  8784. border-right:0px;
  8785. border-bottom:0px;
  8786. border-radius:0px;
  8787. border-top-right-radius:0px;
  8788. border-bottom-left-radius:0px;
  8789. filter:drop-shadow(none);
  8790. transition:none;
  8791. }
  8792. #u52506 {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:1282px;
  8796. top:130px;
  8797. width:11px;
  8798. height:11px;
  8799. display:flex;
  8800. -webkit-transform:rotate(225deg);
  8801. -moz-transform:rotate(225deg);
  8802. -ms-transform:rotate(225deg);
  8803. transform:rotate(225deg);
  8804. transition:none;
  8805. transform-origin:50% 50%;
  8806. }
  8807. #u52506 .text {
  8808. position:absolute;
  8809. align-self:center;
  8810. padding:2px 2px 2px 2px;
  8811. box-sizing:border-box;
  8812. width:100%;
  8813. }
  8814. #u52506_text {
  8815. border-width:0px;
  8816. word-wrap:break-word;
  8817. text-transform:none;
  8818. visibility:hidden;
  8819. }
  8820. #u52507_div {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:0px;
  8824. top:0px;
  8825. width:353px;
  8826. height:65px;
  8827. background:inherit;
  8828. background-color:rgba(255, 255, 255, 0);
  8829. border-top:0px;
  8830. border-right:0px;
  8831. border-bottom:0px;
  8832. border-radius:0px;
  8833. border-top-left-radius:0px;
  8834. border-bottom-left-radius:0px;
  8835. filter:drop-shadow(none);
  8836. transition:none;
  8837. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8838. font-style:normal;
  8839. }
  8840. #u52507 {
  8841. border-width:0px;
  8842. position:absolute;
  8843. left:952px;
  8844. top:156px;
  8845. width:353px;
  8846. height:65px;
  8847. display:flex;
  8848. transition:none;
  8849. transform-origin:50% 50%;
  8850. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8851. font-style:normal;
  8852. }
  8853. #u52507 .text {
  8854. position:absolute;
  8855. align-self:flex-start;
  8856. padding:5px 10px 5px 0px;
  8857. box-sizing:border-box;
  8858. width:100%;
  8859. }
  8860. #u52507_text {
  8861. border-width:0px;
  8862. word-wrap:break-word;
  8863. text-transform:none;
  8864. }
  8865. #u52508_div {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:0px;
  8869. top:0px;
  8870. width:35px;
  8871. height:17px;
  8872. background:inherit;
  8873. background-color:rgba(245, 154, 35, 1);
  8874. border-radius:14px;
  8875. filter:drop-shadow(none);
  8876. transition:none;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:12px;
  8881. color:#FFFFFF;
  8882. }
  8883. #u52508 {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:1100px;
  8887. top:166px;
  8888. width:35px;
  8889. height:17px;
  8890. display:flex;
  8891. transition:none;
  8892. transform-origin:50% 50%;
  8893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8894. font-weight:400;
  8895. font-style:normal;
  8896. font-size:12px;
  8897. color:#FFFFFF;
  8898. }
  8899. #u52508 .text {
  8900. position:absolute;
  8901. align-self:flex-start;
  8902. padding:0px 5px 0px 5px;
  8903. box-sizing:border-box;
  8904. width:100%;
  8905. }
  8906. #u52508_text {
  8907. border-width:0px;
  8908. white-space:nowrap;
  8909. text-transform:none;
  8910. }