styles.css 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1339px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u53481 {
  20. border-width:0px;
  21. position:absolute;
  22. left:453px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u53482 {
  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. #u53482 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u53482_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u53482_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u53483_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. #u53483 {
  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. #u53483 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u53483_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u53484 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u53485_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. #u53485 {
  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. #u53485 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u53485_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u53486 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u53487 {
  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. #u53487 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u53487_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u53487_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u53488 {
  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. #u53488 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u53488_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u53488_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u53489 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u53490 {
  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. #u53490 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u53490_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u53490_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u53491 {
  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. #u53491 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u53491_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u53491_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u53492 {
  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. #u53492 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u53492_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u53492_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u53493 {
  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. #u53493 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u53493_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u53493_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u53494 {
  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. #u53494 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u53494_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u53494_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u53495_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. #u53495 {
  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. #u53495 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u53495_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u53496 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u53497 {
  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. #u53497 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u53497_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u53497_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u53498_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. #u53498 {
  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. #u53498 .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. #u53498_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u53499 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u53500 {
  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. #u53500 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u53500_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u53500_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u53501_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. #u53501 {
  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. #u53501 .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. #u53501_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u53502_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. #u53502 {
  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. #u53502 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u53502_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u53503 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u53504 {
  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. #u53504 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u53504_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u53504_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u53505_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. #u53505 {
  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. #u53505 .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. #u53505_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u53506 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u53507 {
  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. #u53507 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u53507_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u53507_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u53508_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. #u53508 {
  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. #u53508 .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. #u53508_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u53509_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. #u53509 {
  819. border-width:0px;
  820. position:absolute;
  821. left:482px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u53509 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u53509_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u53510_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. #u53510 {
  865. border-width:0px;
  866. position:absolute;
  867. left:482px;
  868. top:67px;
  869. width:375px;
  870. height:41px;
  871. display:flex;
  872. transition:none;
  873. transform-origin:50% 50%;
  874. }
  875. #u53510 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u53510_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. visibility:hidden;
  887. }
  888. #u53511 {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:0px;
  894. height:0px;
  895. }
  896. #u53512_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. #u53512 {
  914. border-width:0px;
  915. position:absolute;
  916. left:762px;
  917. top:71px;
  918. width:88px;
  919. height:32px;
  920. display:flex;
  921. transition:none;
  922. transform-origin:50% 50%;
  923. }
  924. #u53512 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u53512_text {
  932. border-width:0px;
  933. word-wrap:break-word;
  934. text-transform:none;
  935. visibility:hidden;
  936. }
  937. #u53513 {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:0px;
  943. height:0px;
  944. }
  945. #u53514 {
  946. border-width:0px;
  947. position:absolute;
  948. left:825px;
  949. top:78px;
  950. width:18px;
  951. height:18px;
  952. display:flex;
  953. transition:none;
  954. }
  955. #u53514 .text {
  956. position:absolute;
  957. align-self:center;
  958. padding:2px 2px 2px 2px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u53514_img {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:18px;
  968. height:18px;
  969. }
  970. #u53514_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. visibility:hidden;
  975. }
  976. #u53515 {
  977. border-width:0px;
  978. position:absolute;
  979. left:831px;
  980. top:84px;
  981. width:6px;
  982. height:6px;
  983. display:flex;
  984. transition:none;
  985. }
  986. #u53515 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:2px 2px 2px 2px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u53515_img {
  994. border-width:0px;
  995. position:absolute;
  996. left:0px;
  997. top:0px;
  998. width:6px;
  999. height:6px;
  1000. }
  1001. #u53515_text {
  1002. border-width:0px;
  1003. word-wrap:break-word;
  1004. text-transform:none;
  1005. visibility:hidden;
  1006. }
  1007. #u53516 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:0px;
  1013. height:0px;
  1014. }
  1015. #u53517 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:776px;
  1019. top:85px;
  1020. width:5px;
  1021. height:5px;
  1022. display:flex;
  1023. transition:none;
  1024. }
  1025. #u53517 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u53517_img {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:5px;
  1038. height:5px;
  1039. }
  1040. #u53517_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u53518 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:792px;
  1050. top:85px;
  1051. width:5px;
  1052. height:5px;
  1053. display:flex;
  1054. transition:none;
  1055. }
  1056. #u53518 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u53518_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:5px;
  1069. height:5px;
  1070. }
  1071. #u53518_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u53519 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:783px;
  1081. top:84px;
  1082. width:7px;
  1083. height:7px;
  1084. display:flex;
  1085. transition:none;
  1086. }
  1087. #u53519 .text {
  1088. position:absolute;
  1089. align-self:center;
  1090. padding:2px 2px 2px 2px;
  1091. box-sizing:border-box;
  1092. width:100%;
  1093. }
  1094. #u53519_img {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:7px;
  1100. height:7px;
  1101. }
  1102. #u53519_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u53520 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:800px;
  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. #u53520 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u53520_img {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:0px;
  1133. top:0px;
  1134. width:19px;
  1135. height:2px;
  1136. }
  1137. #u53520_text {
  1138. border-width:0px;
  1139. word-wrap:break-word;
  1140. text-transform:none;
  1141. visibility:hidden;
  1142. }
  1143. #u53521_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. #u53521 {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:497px;
  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. #u53521 .text {
  1180. position:absolute;
  1181. align-self:center;
  1182. padding:2px 2px 2px 2px;
  1183. box-sizing:border-box;
  1184. width:100%;
  1185. }
  1186. #u53521_text {
  1187. border-width:0px;
  1188. word-wrap:break-word;
  1189. text-transform:none;
  1190. visibility:hidden;
  1191. }
  1192. #u53522 {
  1193. border-width:0px;
  1194. position:absolute;
  1195. left:0px;
  1196. top:0px;
  1197. width:0px;
  1198. height:0px;
  1199. }
  1200. #u53523_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. #u53523 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:482px;
  1223. top:779px;
  1224. width:375px;
  1225. height:60px;
  1226. display:flex;
  1227. transition:none;
  1228. transform-origin:50% 50%;
  1229. }
  1230. #u53523 .text {
  1231. position:absolute;
  1232. align-self:center;
  1233. padding:2px 2px 2px 2px;
  1234. box-sizing:border-box;
  1235. width:100%;
  1236. }
  1237. #u53523_text {
  1238. border-width:0px;
  1239. word-wrap:break-word;
  1240. text-transform:none;
  1241. visibility:hidden;
  1242. }
  1243. #u53524_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. #u53524 {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:639px;
  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. #u53524 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u53524_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. }
  1293. #u53525_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. #u53525 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:746px;
  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. #u53525 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:2px 2px 2px 2px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u53525_text {
  1335. border-width:0px;
  1336. word-wrap:break-word;
  1337. text-transform:none;
  1338. }
  1339. #u53526_div {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:73px;
  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. #u53526 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:517px;
  1360. top:75px;
  1361. width:73px;
  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. #u53526 .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. #u53526_text {
  1379. border-width:0px;
  1380. white-space:nowrap;
  1381. text-transform:none;
  1382. }
  1383. #u53527_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. #u53527 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:482px;
  1405. top:284px;
  1406. width:375px;
  1407. height:50px;
  1408. display:flex;
  1409. transition:none;
  1410. transform-origin:50% 50%;
  1411. }
  1412. #u53527 .text {
  1413. position:absolute;
  1414. align-self:center;
  1415. padding:2px 2px 2px 2px;
  1416. box-sizing:border-box;
  1417. width:100%;
  1418. }
  1419. #u53527_text {
  1420. border-width:0px;
  1421. word-wrap:break-word;
  1422. text-transform:none;
  1423. visibility:hidden;
  1424. }
  1425. #u53528_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. #u53528 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:502px;
  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. #u53528 .text {
  1465. position:absolute;
  1466. align-self:center;
  1467. padding:0px 0px 0px 0px;
  1468. box-sizing:border-box;
  1469. width:100%;
  1470. }
  1471. #u53528_text {
  1472. border-width:0px;
  1473. white-space:nowrap;
  1474. text-transform:none;
  1475. }
  1476. #u53529_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. #u53529 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:782px;
  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. #u53529 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 2px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u53529_text {
  1518. border-width:0px;
  1519. word-wrap:break-word;
  1520. text-transform:none;
  1521. }
  1522. #u53530_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. #u53530 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:712px;
  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. #u53530 .text {
  1559. position:absolute;
  1560. align-self:center;
  1561. padding:2px 2px 2px 2px;
  1562. box-sizing:border-box;
  1563. width:100%;
  1564. }
  1565. #u53530_text {
  1566. border-width:0px;
  1567. word-wrap:break-word;
  1568. text-transform:none;
  1569. }
  1570. #u53531_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. #u53531 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:482px;
  1592. top:233px;
  1593. width:375px;
  1594. height:50px;
  1595. display:flex;
  1596. transition:none;
  1597. transform-origin:50% 50%;
  1598. }
  1599. #u53531 .text {
  1600. position:absolute;
  1601. align-self:center;
  1602. padding:2px 2px 2px 2px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u53531_text {
  1607. border-width:0px;
  1608. word-wrap:break-word;
  1609. text-transform:none;
  1610. visibility:hidden;
  1611. }
  1612. #u53532_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. #u53532 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:502px;
  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. #u53532 .text {
  1652. position:absolute;
  1653. align-self:center;
  1654. padding:0px 0px 0px 0px;
  1655. box-sizing:border-box;
  1656. width:100%;
  1657. }
  1658. #u53532_text {
  1659. border-width:0px;
  1660. white-space:nowrap;
  1661. text-transform:none;
  1662. }
  1663. #u53533 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:0px;
  1667. top:0px;
  1668. width:0px;
  1669. height:0px;
  1670. }
  1671. #u53534_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. #u53534 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:832px;
  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. #u53534 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 2px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u53534_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. visibility:hidden;
  1719. }
  1720. #u53535_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. #u53535 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:768px;
  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. #u53535 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:0px 0px 0px 0px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u53535_text {
  1771. border-width:0px;
  1772. white-space:nowrap;
  1773. text-transform:none;
  1774. }
  1775. #u53536 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:0px;
  1781. height:0px;
  1782. }
  1783. #u53537_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. #u53537 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:482px;
  1805. top:446px;
  1806. width:375px;
  1807. height:50px;
  1808. display:flex;
  1809. transition:none;
  1810. transform-origin:50% 50%;
  1811. }
  1812. #u53537 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u53537_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. visibility:hidden;
  1824. }
  1825. #u53538_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. #u53538 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:502px;
  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. #u53538 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:0px 0px 0px 0px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u53538_text {
  1872. border-width:0px;
  1873. white-space:nowrap;
  1874. text-transform:none;
  1875. }
  1876. #u53539 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:0px;
  1882. height:0px;
  1883. }
  1884. #u53540_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:43px;
  1890. height:30px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border-left:0px;
  1894. border-top:0px;
  1895. border-right:0px;
  1896. border-radius:0px;
  1897. border-bottom-right-radius:0px;
  1898. border-bottom-left-radius:0px;
  1899. filter:drop-shadow(none);
  1900. transition:none;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:14px;
  1905. color:#AAAAAA;
  1906. text-align:right;
  1907. line-height:30px;
  1908. }
  1909. #u53540 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:782px;
  1913. top:456px;
  1914. width:43px;
  1915. height:30px;
  1916. display:flex;
  1917. transition:none;
  1918. transform-origin:50% 50%;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:14px;
  1923. color:#AAAAAA;
  1924. text-align:right;
  1925. line-height:30px;
  1926. }
  1927. #u53540 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:0px 0px 0px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u53540_text {
  1935. border-width:0px;
  1936. white-space:nowrap;
  1937. text-transform:none;
  1938. }
  1939. #u53541 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u53542_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:375px;
  1953. height:140px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 1);
  1956. border-left:0px;
  1957. border-top:0px;
  1958. border-right:0px;
  1959. border-radius:0px;
  1960. border-bottom-right-radius:0px;
  1961. border-bottom-left-radius:0px;
  1962. filter:drop-shadow(none);
  1963. transition:none;
  1964. }
  1965. #u53542 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:482px;
  1969. top:497px;
  1970. width:375px;
  1971. height:140px;
  1972. display:flex;
  1973. transition:none;
  1974. transform-origin:50% 50%;
  1975. }
  1976. #u53542 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:2px 2px 2px 2px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u53542_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. visibility:hidden;
  1988. }
  1989. #u53543_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:57px;
  1995. height:30px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border-left:0px;
  1999. border-top:0px;
  2000. border-right:0px;
  2001. border-radius:0px;
  2002. border-bottom-right-radius:0px;
  2003. border-bottom-left-radius:0px;
  2004. filter:drop-shadow(none);
  2005. transition:none;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:14px;
  2010. line-height:30px;
  2011. }
  2012. #u53543 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:502px;
  2016. top:507px;
  2017. width:57px;
  2018. height:30px;
  2019. display:flex;
  2020. transition:none;
  2021. transform-origin:50% 50%;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:14px;
  2026. line-height:30px;
  2027. }
  2028. #u53543 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:0px 0px 0px 0px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u53543_text {
  2036. border-width:0px;
  2037. white-space:nowrap;
  2038. text-transform:none;
  2039. }
  2040. #u53544_div {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:99px;
  2046. height:30px;
  2047. background:inherit;
  2048. background-color:rgba(255, 255, 255, 0);
  2049. border-left:0px;
  2050. border-top:0px;
  2051. border-right:0px;
  2052. border-radius:0px;
  2053. border-bottom-right-radius:0px;
  2054. border-bottom-left-radius:0px;
  2055. filter:drop-shadow(none);
  2056. transition:none;
  2057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:14px;
  2061. color:#AAAAAA;
  2062. line-height:30px;
  2063. }
  2064. #u53544 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:502px;
  2068. top:537px;
  2069. width:99px;
  2070. height:30px;
  2071. display:flex;
  2072. transition:none;
  2073. transform-origin:50% 50%;
  2074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2075. font-weight:400;
  2076. font-style:normal;
  2077. font-size:14px;
  2078. color:#AAAAAA;
  2079. line-height:30px;
  2080. }
  2081. #u53544 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:0px 0px 0px 0px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u53544_text {
  2089. border-width:0px;
  2090. white-space:nowrap;
  2091. text-transform:none;
  2092. }
  2093. #u53545_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:40px;
  2099. height:40px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 1);
  2102. box-sizing:border-box;
  2103. border-width:1px;
  2104. border-style:solid;
  2105. border-color:rgba(170, 170, 170, 1);
  2106. border-radius:4px;
  2107. filter:drop-shadow(none);
  2108. transition:none;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:18px;
  2113. }
  2114. #u53545 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:502px;
  2118. top:587px;
  2119. width:40px;
  2120. height:40px;
  2121. display:flex;
  2122. transition:none;
  2123. transform-origin:50% 50%;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:18px;
  2128. }
  2129. #u53545 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 2px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u53545_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. }
  2141. #u53546 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:0px;
  2147. height:0px;
  2148. }
  2149. #u53547_div {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:375px;
  2155. height:50px;
  2156. background:inherit;
  2157. background-color:rgba(255, 255, 255, 1);
  2158. border-left:0px;
  2159. border-top:0px;
  2160. border-right:0px;
  2161. border-radius:0px;
  2162. border-bottom-right-radius:0px;
  2163. border-bottom-left-radius:0px;
  2164. filter:drop-shadow(none);
  2165. transition:none;
  2166. }
  2167. #u53547 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:482px;
  2171. top:344px;
  2172. width:375px;
  2173. height:50px;
  2174. display:flex;
  2175. transition:none;
  2176. transform-origin:50% 50%;
  2177. }
  2178. #u53547 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 2px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u53547_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u53548_div {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:57px;
  2197. height:30px;
  2198. background:inherit;
  2199. background-color:rgba(255, 255, 255, 0);
  2200. border-left:0px;
  2201. border-top:0px;
  2202. border-right:0px;
  2203. border-radius:0px;
  2204. border-bottom-right-radius:0px;
  2205. border-bottom-left-radius:0px;
  2206. filter:drop-shadow(none);
  2207. transition:none;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. line-height:30px;
  2213. }
  2214. #u53548 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:502px;
  2218. top:354px;
  2219. width:57px;
  2220. height:30px;
  2221. display:flex;
  2222. transition:none;
  2223. transform-origin:50% 50%;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:14px;
  2228. line-height:30px;
  2229. }
  2230. #u53548 .text {
  2231. position:absolute;
  2232. align-self:center;
  2233. padding:0px 0px 0px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u53548_text {
  2238. border-width:0px;
  2239. white-space:nowrap;
  2240. text-transform:none;
  2241. }
  2242. #u53549 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:0px;
  2248. height:0px;
  2249. }
  2250. #u53550_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:8px;
  2256. height:8px;
  2257. background:inherit;
  2258. background-color:rgba(255, 255, 255, 0);
  2259. box-sizing:border-box;
  2260. border-width:1px;
  2261. border-style:solid;
  2262. border-color:rgba(127, 127, 127, 1);
  2263. border-right:0px;
  2264. border-bottom:0px;
  2265. border-radius:0px;
  2266. border-top-right-radius:0px;
  2267. border-bottom-left-radius:0px;
  2268. filter:drop-shadow(none);
  2269. transition:none;
  2270. }
  2271. #u53550 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:832px;
  2275. top:365px;
  2276. width:8px;
  2277. height:8px;
  2278. display:flex;
  2279. -webkit-transform:rotate(135deg);
  2280. -moz-transform:rotate(135deg);
  2281. -ms-transform:rotate(135deg);
  2282. transform:rotate(135deg);
  2283. transition:none;
  2284. transform-origin:50% 50%;
  2285. }
  2286. #u53550 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 2px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u53550_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u53551_div {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:43px;
  2305. height:30px;
  2306. background:inherit;
  2307. background-color:rgba(255, 255, 255, 0);
  2308. border-left:0px;
  2309. border-top:0px;
  2310. border-right:0px;
  2311. border-radius:0px;
  2312. border-bottom-right-radius:0px;
  2313. border-bottom-left-radius:0px;
  2314. filter:drop-shadow(none);
  2315. transition:none;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:14px;
  2320. color:#AAAAAA;
  2321. text-align:right;
  2322. line-height:30px;
  2323. }
  2324. #u53551 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:782px;
  2328. top:354px;
  2329. width:43px;
  2330. height:30px;
  2331. display:flex;
  2332. transition:none;
  2333. transform-origin:50% 50%;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:14px;
  2338. color:#AAAAAA;
  2339. text-align:right;
  2340. line-height:30px;
  2341. }
  2342. #u53551 .text {
  2343. position:absolute;
  2344. align-self:center;
  2345. padding:0px 0px 0px 0px;
  2346. box-sizing:border-box;
  2347. width:100%;
  2348. }
  2349. #u53551_text {
  2350. border-width:0px;
  2351. white-space:nowrap;
  2352. text-transform:none;
  2353. }
  2354. #u53552 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:0px;
  2360. height:0px;
  2361. }
  2362. #u53553_div {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:375px;
  2368. height:50px;
  2369. background:inherit;
  2370. background-color:rgba(255, 255, 255, 1);
  2371. border-left:0px;
  2372. border-top:0px;
  2373. border-right:0px;
  2374. border-radius:0px;
  2375. border-bottom-right-radius:0px;
  2376. border-bottom-left-radius:0px;
  2377. filter:drop-shadow(none);
  2378. transition:none;
  2379. }
  2380. #u53553 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:482px;
  2384. top:395px;
  2385. width:375px;
  2386. height:50px;
  2387. display:flex;
  2388. transition:none;
  2389. transform-origin:50% 50%;
  2390. }
  2391. #u53553 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 2px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u53553_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. visibility:hidden;
  2403. }
  2404. #u53554_div {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:43px;
  2410. height:30px;
  2411. background:inherit;
  2412. background-color:rgba(255, 255, 255, 0);
  2413. border-left:0px;
  2414. border-top:0px;
  2415. border-right:0px;
  2416. border-radius:0px;
  2417. border-bottom-right-radius:0px;
  2418. border-bottom-left-radius:0px;
  2419. filter:drop-shadow(none);
  2420. transition:none;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:14px;
  2425. line-height:30px;
  2426. }
  2427. #u53554 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:502px;
  2431. top:405px;
  2432. width:43px;
  2433. height:30px;
  2434. display:flex;
  2435. transition:none;
  2436. transform-origin:50% 50%;
  2437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:14px;
  2441. line-height:30px;
  2442. }
  2443. #u53554 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:0px 0px 0px 0px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u53554_text {
  2451. border-width:0px;
  2452. white-space:nowrap;
  2453. text-transform:none;
  2454. }
  2455. #u53555 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:0px;
  2461. height:0px;
  2462. }
  2463. #u53556_div {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:8px;
  2469. height:8px;
  2470. background:inherit;
  2471. background-color:rgba(255, 255, 255, 0);
  2472. box-sizing:border-box;
  2473. border-width:1px;
  2474. border-style:solid;
  2475. border-color:rgba(127, 127, 127, 1);
  2476. border-right:0px;
  2477. border-bottom:0px;
  2478. border-radius:0px;
  2479. border-top-right-radius:0px;
  2480. border-bottom-left-radius:0px;
  2481. filter:drop-shadow(none);
  2482. transition:none;
  2483. }
  2484. #u53556 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:832px;
  2488. top:416px;
  2489. width:8px;
  2490. height:8px;
  2491. display:flex;
  2492. -webkit-transform:rotate(135deg);
  2493. -moz-transform:rotate(135deg);
  2494. -ms-transform:rotate(135deg);
  2495. transform:rotate(135deg);
  2496. transition:none;
  2497. transform-origin:50% 50%;
  2498. }
  2499. #u53556 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 2px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u53556_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u53557_div {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:43px;
  2518. height:30px;
  2519. background:inherit;
  2520. background-color:rgba(255, 255, 255, 0);
  2521. border-left:0px;
  2522. border-top:0px;
  2523. border-right:0px;
  2524. border-radius:0px;
  2525. border-bottom-right-radius:0px;
  2526. border-bottom-left-radius:0px;
  2527. filter:drop-shadow(none);
  2528. transition:none;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:14px;
  2533. color:#AAAAAA;
  2534. text-align:right;
  2535. line-height:30px;
  2536. }
  2537. #u53557 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:782px;
  2541. top:405px;
  2542. width:43px;
  2543. height:30px;
  2544. display:flex;
  2545. transition:none;
  2546. transform-origin:50% 50%;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. color:#AAAAAA;
  2552. text-align:right;
  2553. line-height:30px;
  2554. }
  2555. #u53557 .text {
  2556. position:absolute;
  2557. align-self:center;
  2558. padding:0px 0px 0px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u53557_text {
  2563. border-width:0px;
  2564. white-space:nowrap;
  2565. text-transform:none;
  2566. }
  2567. #u53558 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:906px;
  2571. top:0px;
  2572. width:433px;
  2573. height:865px;
  2574. }
  2575. #u53559 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:433px;
  2581. height:865px;
  2582. display:flex;
  2583. transition:none;
  2584. }
  2585. #u53559 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u53559_img {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:433px;
  2598. height:865px;
  2599. }
  2600. #u53559_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u53560_div {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:375px;
  2612. height:40px;
  2613. background:inherit;
  2614. background-color:rgba(255, 255, 255, 1);
  2615. box-sizing:border-box;
  2616. border-width:1px;
  2617. border-style:solid;
  2618. border-color:rgba(215, 215, 215, 1);
  2619. border-left:0px;
  2620. border-top:0px;
  2621. border-right:0px;
  2622. border-radius:0px;
  2623. border-bottom-right-radius:0px;
  2624. border-bottom-left-radius:0px;
  2625. filter:drop-shadow(none);
  2626. transition:none;
  2627. }
  2628. #u53560 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:29px;
  2632. top:67px;
  2633. width:375px;
  2634. height:40px;
  2635. display:flex;
  2636. transition:none;
  2637. transform-origin:50% 50%;
  2638. }
  2639. #u53560 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 2px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u53560_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. visibility:hidden;
  2651. }
  2652. #u53561 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:0px;
  2658. height:0px;
  2659. }
  2660. #u53562_div {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:88px;
  2666. height:32px;
  2667. background:inherit;
  2668. background-color:rgba(255, 255, 255, 1);
  2669. box-sizing:border-box;
  2670. border-width:1px;
  2671. border-style:solid;
  2672. border-color:rgba(242, 242, 242, 1);
  2673. border-radius:33px;
  2674. filter:drop-shadow(none);
  2675. transition:none;
  2676. }
  2677. #u53562 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:309px;
  2681. top:71px;
  2682. width:88px;
  2683. height:32px;
  2684. display:flex;
  2685. transition:none;
  2686. transform-origin:50% 50%;
  2687. }
  2688. #u53562 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u53562_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u53563 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:0px;
  2707. height:0px;
  2708. }
  2709. #u53564 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:372px;
  2713. top:78px;
  2714. width:18px;
  2715. height:18px;
  2716. display:flex;
  2717. transition:none;
  2718. }
  2719. #u53564 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 2px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u53564_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:18px;
  2732. height:18px;
  2733. }
  2734. #u53564_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u53565 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:378px;
  2744. top:84px;
  2745. width:6px;
  2746. height:6px;
  2747. display:flex;
  2748. transition:none;
  2749. }
  2750. #u53565 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 2px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u53565_img {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:6px;
  2763. height:6px;
  2764. }
  2765. #u53565_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. visibility:hidden;
  2770. }
  2771. #u53566 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:0px;
  2777. height:0px;
  2778. }
  2779. #u53567 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:323px;
  2783. top:85px;
  2784. width:5px;
  2785. height:5px;
  2786. display:flex;
  2787. transition:none;
  2788. }
  2789. #u53567 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 2px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u53567_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:5px;
  2802. height:5px;
  2803. }
  2804. #u53567_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u53568 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:339px;
  2814. top:85px;
  2815. width:5px;
  2816. height:5px;
  2817. display:flex;
  2818. transition:none;
  2819. }
  2820. #u53568 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u53568_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:5px;
  2833. height:5px;
  2834. }
  2835. #u53568_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. visibility:hidden;
  2840. }
  2841. #u53569 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:330px;
  2845. top:84px;
  2846. width:7px;
  2847. height:7px;
  2848. display:flex;
  2849. transition:none;
  2850. }
  2851. #u53569 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 2px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u53569_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:7px;
  2864. height:7px;
  2865. }
  2866. #u53569_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u53570 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:347px;
  2876. top:87px;
  2877. width:18px;
  2878. height:1px;
  2879. display:flex;
  2880. -webkit-transform:rotate(90deg);
  2881. -moz-transform:rotate(90deg);
  2882. -ms-transform:rotate(90deg);
  2883. transform:rotate(90deg);
  2884. transition:none;
  2885. }
  2886. #u53570 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 2px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u53570_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:19px;
  2899. height:2px;
  2900. }
  2901. #u53570_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u53571 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:29px;
  2911. top:24px;
  2912. width:375px;
  2913. height:44px;
  2914. display:flex;
  2915. transition:none;
  2916. }
  2917. #u53571 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u53571_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:375px;
  2930. height:44px;
  2931. }
  2932. #u53571_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u53572_div {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:375px;
  2944. height:50px;
  2945. background:inherit;
  2946. background-color:rgba(255, 255, 255, 1);
  2947. box-sizing:border-box;
  2948. border-width:1px;
  2949. border-style:solid;
  2950. border-color:rgba(242, 242, 242, 1);
  2951. border-radius:26px;
  2952. border-top-left-radius:0px;
  2953. border-top-right-radius:0px;
  2954. filter:drop-shadow(none);
  2955. transition:none;
  2956. }
  2957. #u53572 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:29px;
  2961. top:788px;
  2962. width:375px;
  2963. height:50px;
  2964. display:flex;
  2965. transition:none;
  2966. transform-origin:50% 50%;
  2967. }
  2968. #u53572 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 2px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u53572_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u53573 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:0px;
  2987. height:0px;
  2988. }
  2989. #u53574 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:69px;
  2993. top:792px;
  2994. width:24px;
  2995. height:24px;
  2996. display:flex;
  2997. transition:none;
  2998. font-size:8px;
  2999. }
  3000. #u53574 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 2px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u53574_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:24px;
  3013. height:24px;
  3014. }
  3015. #u53574_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. }
  3020. #u53575_div {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:25px;
  3026. height:17px;
  3027. background:inherit;
  3028. background-color:rgba(255, 255, 255, 0);
  3029. border-radius:0px;
  3030. filter:drop-shadow(none);
  3031. transition:none;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:12px;
  3036. }
  3037. #u53575 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:69px;
  3041. top:817px;
  3042. width:25px;
  3043. height:17px;
  3044. display:flex;
  3045. transition:none;
  3046. transform-origin:50% 50%;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:12px;
  3051. }
  3052. #u53575 .text {
  3053. position:absolute;
  3054. align-self:flex-start;
  3055. padding:0px 0px 0px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u53575_text {
  3060. border-width:0px;
  3061. white-space:nowrap;
  3062. text-transform:none;
  3063. }
  3064. #u53576 {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:0px;
  3070. height:0px;
  3071. }
  3072. #u53577 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:339px;
  3076. top:794px;
  3077. width:24px;
  3078. height:24px;
  3079. display:flex;
  3080. transition:none;
  3081. font-size:8px;
  3082. }
  3083. #u53577 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 2px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u53577_img {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:24px;
  3096. height:24px;
  3097. }
  3098. #u53577_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. }
  3103. #u53578_div {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:25px;
  3109. height:17px;
  3110. background:inherit;
  3111. background-color:rgba(255, 255, 255, 0);
  3112. border-radius:0px;
  3113. filter:drop-shadow(none);
  3114. transition:none;
  3115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. }
  3120. #u53578 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:339px;
  3124. top:819px;
  3125. width:25px;
  3126. height:17px;
  3127. display:flex;
  3128. transition:none;
  3129. transform-origin:50% 50%;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:12px;
  3134. }
  3135. #u53578 .text {
  3136. position:absolute;
  3137. align-self:flex-start;
  3138. padding:0px 0px 0px 0px;
  3139. box-sizing:border-box;
  3140. width:100%;
  3141. }
  3142. #u53578_text {
  3143. border-width:0px;
  3144. white-space:nowrap;
  3145. text-transform:none;
  3146. }
  3147. #u53579_div {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:375px;
  3153. height:681px;
  3154. background:inherit;
  3155. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3156. border-radius:0px;
  3157. filter:drop-shadow(none);
  3158. transition:none;
  3159. }
  3160. #u53579 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:29px;
  3164. top:107px;
  3165. width:375px;
  3166. height:681px;
  3167. display:flex;
  3168. transition:none;
  3169. transform-origin:50% 50%;
  3170. }
  3171. #u53579 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 2px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u53579_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u53580 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:0px;
  3190. height:0px;
  3191. }
  3192. #u53581 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:251px;
  3196. top:792px;
  3197. width:24px;
  3198. height:24px;
  3199. display:flex;
  3200. transition:none;
  3201. font-size:8px;
  3202. }
  3203. #u53581 .text {
  3204. position:absolute;
  3205. align-self:center;
  3206. padding:2px 2px 2px 2px;
  3207. box-sizing:border-box;
  3208. width:100%;
  3209. }
  3210. #u53581_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:24px;
  3216. height:24px;
  3217. }
  3218. #u53581_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. }
  3223. #u53582_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:37px;
  3229. height:17px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border-radius:0px;
  3233. filter:drop-shadow(none);
  3234. transition:none;
  3235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:12px;
  3239. }
  3240. #u53582 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:245px;
  3244. top:817px;
  3245. width:37px;
  3246. height:17px;
  3247. display:flex;
  3248. transition:none;
  3249. transform-origin:50% 50%;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. }
  3255. #u53582 .text {
  3256. position:absolute;
  3257. align-self:flex-start;
  3258. padding:0px 0px 0px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u53582_text {
  3263. border-width:0px;
  3264. white-space:nowrap;
  3265. text-transform:none;
  3266. }
  3267. #u53583 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:0px;
  3273. height:0px;
  3274. }
  3275. #u53584 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:157px;
  3279. top:792px;
  3280. width:24px;
  3281. height:24px;
  3282. display:flex;
  3283. transition:none;
  3284. font-size:8px;
  3285. }
  3286. #u53584 .text {
  3287. position:absolute;
  3288. align-self:center;
  3289. padding:2px 2px 2px 2px;
  3290. box-sizing:border-box;
  3291. width:100%;
  3292. }
  3293. #u53584_img {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:24px;
  3299. height:24px;
  3300. }
  3301. #u53584_text {
  3302. border-width:0px;
  3303. word-wrap:break-word;
  3304. text-transform:none;
  3305. }
  3306. #u53585_div {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:37px;
  3312. height:17px;
  3313. background:inherit;
  3314. background-color:rgba(255, 255, 255, 0);
  3315. border-radius:0px;
  3316. filter:drop-shadow(none);
  3317. transition:none;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:12px;
  3322. }
  3323. #u53585 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:151px;
  3327. top:817px;
  3328. width:37px;
  3329. height:17px;
  3330. display:flex;
  3331. transition:none;
  3332. transform-origin:50% 50%;
  3333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3334. font-weight:400;
  3335. font-style:normal;
  3336. font-size:12px;
  3337. }
  3338. #u53585 .text {
  3339. position:absolute;
  3340. align-self:flex-start;
  3341. padding:0px 0px 0px 0px;
  3342. box-sizing:border-box;
  3343. width:100%;
  3344. }
  3345. #u53585_text {
  3346. border-width:0px;
  3347. white-space:nowrap;
  3348. text-transform:none;
  3349. }
  3350. #u53586_div {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:375px;
  3356. height:732px;
  3357. background:inherit;
  3358. background-color:rgba(242, 242, 242, 0.996078431372549);
  3359. border-top:0px;
  3360. border-radius:28px;
  3361. border-top-left-radius:0px;
  3362. border-top-right-radius:0px;
  3363. filter:drop-shadow(none);
  3364. transition:none;
  3365. }
  3366. #u53586 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:935px;
  3370. top:107px;
  3371. width:375px;
  3372. height:732px;
  3373. display:flex;
  3374. transition:none;
  3375. transform-origin:50% 50%;
  3376. }
  3377. #u53586 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:2px 2px 2px 2px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u53586_text {
  3385. border-width:0px;
  3386. word-wrap:break-word;
  3387. text-transform:none;
  3388. visibility:hidden;
  3389. }
  3390. #u53587_div {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:375px;
  3396. height:41px;
  3397. background:inherit;
  3398. background-color:rgba(255, 255, 255, 1);
  3399. box-sizing:border-box;
  3400. border-width:1px;
  3401. border-style:solid;
  3402. border-color:rgba(215, 215, 215, 1);
  3403. border-left:0px;
  3404. border-top:0px;
  3405. border-right:0px;
  3406. border-radius:0px;
  3407. border-bottom-right-radius:0px;
  3408. border-bottom-left-radius:0px;
  3409. filter:drop-shadow(none);
  3410. transition:none;
  3411. }
  3412. #u53587 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:935px;
  3416. top:67px;
  3417. width:375px;
  3418. height:41px;
  3419. display:flex;
  3420. transition:none;
  3421. transform-origin:50% 50%;
  3422. }
  3423. #u53587 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 2px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u53587_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u53588 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:0px;
  3442. height:0px;
  3443. }
  3444. #u53589_div {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:88px;
  3450. height:32px;
  3451. background:inherit;
  3452. background-color:rgba(255, 255, 255, 1);
  3453. box-sizing:border-box;
  3454. border-width:1px;
  3455. border-style:solid;
  3456. border-color:rgba(242, 242, 242, 1);
  3457. border-radius:33px;
  3458. filter:drop-shadow(none);
  3459. transition:none;
  3460. }
  3461. #u53589 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:1215px;
  3465. top:71px;
  3466. width:88px;
  3467. height:32px;
  3468. display:flex;
  3469. transition:none;
  3470. transform-origin:50% 50%;
  3471. }
  3472. #u53589 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u53589_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u53590 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:0px;
  3491. height:0px;
  3492. }
  3493. #u53591 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:1278px;
  3497. top:78px;
  3498. width:18px;
  3499. height:18px;
  3500. display:flex;
  3501. transition:none;
  3502. }
  3503. #u53591 .text {
  3504. position:absolute;
  3505. align-self:center;
  3506. padding:2px 2px 2px 2px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u53591_img {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:18px;
  3516. height:18px;
  3517. }
  3518. #u53591_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. visibility:hidden;
  3523. }
  3524. #u53592 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:1284px;
  3528. top:84px;
  3529. width:6px;
  3530. height:6px;
  3531. display:flex;
  3532. transition:none;
  3533. }
  3534. #u53592 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:2px 2px 2px 2px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u53592_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:6px;
  3547. height:6px;
  3548. }
  3549. #u53592_text {
  3550. border-width:0px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. visibility:hidden;
  3554. }
  3555. #u53593 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:0px;
  3561. height:0px;
  3562. }
  3563. #u53594 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:1229px;
  3567. top:85px;
  3568. width:5px;
  3569. height:5px;
  3570. display:flex;
  3571. transition:none;
  3572. }
  3573. #u53594 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 2px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u53594_img {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:5px;
  3586. height:5px;
  3587. }
  3588. #u53594_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u53595 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:1245px;
  3598. top:85px;
  3599. width:5px;
  3600. height:5px;
  3601. display:flex;
  3602. transition:none;
  3603. }
  3604. #u53595 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:2px 2px 2px 2px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u53595_img {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:5px;
  3617. height:5px;
  3618. }
  3619. #u53595_text {
  3620. border-width:0px;
  3621. word-wrap:break-word;
  3622. text-transform:none;
  3623. visibility:hidden;
  3624. }
  3625. #u53596 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:1236px;
  3629. top:84px;
  3630. width:7px;
  3631. height:7px;
  3632. display:flex;
  3633. transition:none;
  3634. }
  3635. #u53596 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 2px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u53596_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:7px;
  3648. height:7px;
  3649. }
  3650. #u53596_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. visibility:hidden;
  3655. }
  3656. #u53597 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:1253px;
  3660. top:87px;
  3661. width:18px;
  3662. height:1px;
  3663. display:flex;
  3664. -webkit-transform:rotate(90deg);
  3665. -moz-transform:rotate(90deg);
  3666. -ms-transform:rotate(90deg);
  3667. transform:rotate(90deg);
  3668. transition:none;
  3669. }
  3670. #u53597 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 2px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u53597_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:19px;
  3683. height:2px;
  3684. }
  3685. #u53597_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. visibility:hidden;
  3690. }
  3691. #u53598_div {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:12px;
  3697. height:12px;
  3698. background:inherit;
  3699. background-color:rgba(255, 255, 255, 0);
  3700. box-sizing:border-box;
  3701. border-width:2px;
  3702. border-style:solid;
  3703. border-color:rgba(51, 51, 51, 1);
  3704. border-right:0px;
  3705. border-bottom:0px;
  3706. border-radius:0px;
  3707. border-top-right-radius:0px;
  3708. border-bottom-left-radius:0px;
  3709. filter:drop-shadow(none);
  3710. transition:none;
  3711. }
  3712. #u53598 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:950px;
  3716. top:81px;
  3717. width:12px;
  3718. height:12px;
  3719. display:flex;
  3720. -webkit-transform:rotate(315deg);
  3721. -moz-transform:rotate(315deg);
  3722. -ms-transform:rotate(315deg);
  3723. transform:rotate(315deg);
  3724. transition:none;
  3725. transform-origin:50% 50%;
  3726. }
  3727. #u53598 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u53598_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u53599 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:0px;
  3746. height:0px;
  3747. }
  3748. #u53600_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:375px;
  3754. height:60px;
  3755. background:inherit;
  3756. background-color:rgba(255, 255, 255, 1);
  3757. box-sizing:border-box;
  3758. border-width:1px;
  3759. border-style:solid;
  3760. border-color:rgba(242, 242, 242, 1);
  3761. border-radius:20px;
  3762. border-top-left-radius:0px;
  3763. border-top-right-radius:0px;
  3764. filter:drop-shadow(none);
  3765. transition:none;
  3766. }
  3767. #u53600 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:935px;
  3771. top:779px;
  3772. width:375px;
  3773. height:60px;
  3774. display:flex;
  3775. transition:none;
  3776. transform-origin:50% 50%;
  3777. }
  3778. #u53600 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 2px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u53600_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. visibility:hidden;
  3790. }
  3791. #u53601_div {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:97px;
  3797. height:40px;
  3798. background:inherit;
  3799. background-color:rgba(255, 255, 255, 1);
  3800. box-sizing:border-box;
  3801. border-width:1px;
  3802. border-style:solid;
  3803. border-color:rgba(121, 121, 121, 1);
  3804. border-radius:63px;
  3805. filter:drop-shadow(none);
  3806. transition:none;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:14px;
  3811. color:#555555;
  3812. }
  3813. #u53601 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:1092px;
  3817. top:789px;
  3818. width:97px;
  3819. height:40px;
  3820. display:flex;
  3821. transition:none;
  3822. transform-origin:50% 50%;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:14px;
  3827. color:#555555;
  3828. }
  3829. #u53601 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u53601_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. }
  3841. #u53602_div {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:97px;
  3847. height:40px;
  3848. background:inherit;
  3849. background-color:rgba(24, 144, 255, 1);
  3850. border-radius:63px;
  3851. filter:drop-shadow(none);
  3852. transition:none;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:14px;
  3857. color:#FFFFFF;
  3858. }
  3859. #u53602 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:1199px;
  3863. top:789px;
  3864. width:97px;
  3865. height:40px;
  3866. display:flex;
  3867. transition:none;
  3868. transform-origin:50% 50%;
  3869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:14px;
  3873. color:#FFFFFF;
  3874. }
  3875. #u53602 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u53602_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. }
  3887. #u53603_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:73px;
  3893. height:25px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 0);
  3896. border-radius:0px;
  3897. filter:drop-shadow(none);
  3898. transition:none;
  3899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:18px;
  3903. }
  3904. #u53603 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:970px;
  3908. top:75px;
  3909. width:73px;
  3910. height:25px;
  3911. display:flex;
  3912. transition:none;
  3913. transform-origin:50% 50%;
  3914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3915. font-weight:400;
  3916. font-style:normal;
  3917. font-size:18px;
  3918. }
  3919. #u53603 .text {
  3920. position:absolute;
  3921. align-self:flex-start;
  3922. padding:0px 0px 0px 0px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u53603_text {
  3927. border-width:0px;
  3928. white-space:nowrap;
  3929. text-transform:none;
  3930. }
  3931. #u53604_div {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:375px;
  3937. height:50px;
  3938. background:inherit;
  3939. background-color:rgba(255, 255, 255, 1);
  3940. border-left:0px;
  3941. border-top:0px;
  3942. border-right:0px;
  3943. border-radius:0px;
  3944. border-bottom-right-radius:0px;
  3945. border-bottom-left-radius:0px;
  3946. filter:drop-shadow(none);
  3947. transition:none;
  3948. }
  3949. #u53604 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:935px;
  3953. top:284px;
  3954. width:375px;
  3955. height:50px;
  3956. display:flex;
  3957. transition:none;
  3958. transform-origin:50% 50%;
  3959. }
  3960. #u53604 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 2px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u53604_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u53605_div {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:57px;
  3979. height:30px;
  3980. background:inherit;
  3981. background-color:rgba(255, 255, 255, 0);
  3982. border-left:0px;
  3983. border-top:0px;
  3984. border-right:0px;
  3985. border-radius:0px;
  3986. border-bottom-right-radius:0px;
  3987. border-bottom-left-radius:0px;
  3988. filter:drop-shadow(none);
  3989. transition:none;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. line-height:30px;
  3995. }
  3996. #u53605 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:955px;
  4000. top:294px;
  4001. width:57px;
  4002. height:30px;
  4003. display:flex;
  4004. transition:none;
  4005. transform-origin:50% 50%;
  4006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4007. font-weight:400;
  4008. font-style:normal;
  4009. font-size:14px;
  4010. line-height:30px;
  4011. }
  4012. #u53605 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:0px 0px 0px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u53605_text {
  4020. border-width:0px;
  4021. white-space:nowrap;
  4022. text-transform:none;
  4023. }
  4024. #u53606_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:60px;
  4030. height:30px;
  4031. background:inherit;
  4032. background-color:rgba(24, 144, 255, 1);
  4033. border-radius:4px;
  4034. filter:drop-shadow(none);
  4035. transition:none;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. color:#FFFFFF;
  4041. }
  4042. #u53606 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:1235px;
  4046. top:294px;
  4047. width:60px;
  4048. height:30px;
  4049. display:flex;
  4050. transition:none;
  4051. transform-origin:50% 50%;
  4052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4053. font-weight:400;
  4054. font-style:normal;
  4055. font-size:12px;
  4056. color:#FFFFFF;
  4057. }
  4058. #u53606 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u53606_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. }
  4070. #u53607_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:60px;
  4076. height:30px;
  4077. background:inherit;
  4078. background-color:rgba(255, 255, 255, 1);
  4079. box-sizing:border-box;
  4080. border-width:1px;
  4081. border-style:solid;
  4082. border-color:rgba(170, 170, 170, 1);
  4083. border-radius:4px;
  4084. filter:drop-shadow(none);
  4085. transition:none;
  4086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. font-size:12px;
  4090. }
  4091. #u53607 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:1165px;
  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. }
  4106. #u53607 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 2px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u53607_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. }
  4118. #u53608_div {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:375px;
  4124. height:50px;
  4125. background:inherit;
  4126. background-color:rgba(255, 255, 255, 1);
  4127. border-left:0px;
  4128. border-top:0px;
  4129. border-right:0px;
  4130. border-radius:0px;
  4131. border-bottom-right-radius:0px;
  4132. border-bottom-left-radius:0px;
  4133. filter:drop-shadow(none);
  4134. transition:none;
  4135. }
  4136. #u53608 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:935px;
  4140. top:233px;
  4141. width:375px;
  4142. height:50px;
  4143. display:flex;
  4144. transition:none;
  4145. transform-origin:50% 50%;
  4146. }
  4147. #u53608 .text {
  4148. position:absolute;
  4149. align-self:center;
  4150. padding:2px 2px 2px 2px;
  4151. box-sizing:border-box;
  4152. width:100%;
  4153. }
  4154. #u53608_text {
  4155. border-width:0px;
  4156. word-wrap:break-word;
  4157. text-transform:none;
  4158. visibility:hidden;
  4159. }
  4160. #u53609_div {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:57px;
  4166. height:30px;
  4167. background:inherit;
  4168. background-color:rgba(255, 255, 255, 0);
  4169. border-left:0px;
  4170. border-top:0px;
  4171. border-right:0px;
  4172. border-radius:0px;
  4173. border-bottom-right-radius:0px;
  4174. border-bottom-left-radius:0px;
  4175. filter:drop-shadow(none);
  4176. transition:none;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:14px;
  4181. line-height:30px;
  4182. }
  4183. #u53609 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:955px;
  4187. top:243px;
  4188. width:57px;
  4189. height:30px;
  4190. display:flex;
  4191. transition:none;
  4192. transform-origin:50% 50%;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. line-height:30px;
  4198. }
  4199. #u53609 .text {
  4200. position:absolute;
  4201. align-self:center;
  4202. padding:0px 0px 0px 0px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u53609_text {
  4207. border-width:0px;
  4208. white-space:nowrap;
  4209. text-transform:none;
  4210. }
  4211. #u53610 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:0px;
  4217. height:0px;
  4218. }
  4219. #u53611_div {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:8px;
  4225. height:8px;
  4226. background:inherit;
  4227. background-color:rgba(255, 255, 255, 0);
  4228. box-sizing:border-box;
  4229. border-width:1px;
  4230. border-style:solid;
  4231. border-color:rgba(127, 127, 127, 1);
  4232. border-right:0px;
  4233. border-bottom:0px;
  4234. border-radius:0px;
  4235. border-top-right-radius:0px;
  4236. border-bottom-left-radius:0px;
  4237. filter:drop-shadow(none);
  4238. transition:none;
  4239. }
  4240. #u53611 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:1285px;
  4244. top:254px;
  4245. width:8px;
  4246. height:8px;
  4247. display:flex;
  4248. -webkit-transform:rotate(135deg);
  4249. -moz-transform:rotate(135deg);
  4250. -ms-transform:rotate(135deg);
  4251. transform:rotate(135deg);
  4252. transition:none;
  4253. transform-origin:50% 50%;
  4254. }
  4255. #u53611 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 2px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u53611_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. visibility:hidden;
  4267. }
  4268. #u53612_div {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:57px;
  4274. height:30px;
  4275. background:inherit;
  4276. background-color:rgba(255, 255, 255, 0);
  4277. border-left:0px;
  4278. border-top:0px;
  4279. border-right:0px;
  4280. border-radius:0px;
  4281. border-bottom-right-radius:0px;
  4282. border-bottom-left-radius:0px;
  4283. filter:drop-shadow(none);
  4284. transition:none;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:14px;
  4289. color:#AAAAAA;
  4290. text-align:right;
  4291. line-height:30px;
  4292. }
  4293. #u53612 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:1221px;
  4297. top:243px;
  4298. width:57px;
  4299. height:30px;
  4300. display:flex;
  4301. transition:none;
  4302. transform-origin:50% 50%;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:14px;
  4307. color:#AAAAAA;
  4308. text-align:right;
  4309. line-height:30px;
  4310. }
  4311. #u53612 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:0px 0px 0px 0px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u53612_text {
  4319. border-width:0px;
  4320. white-space:nowrap;
  4321. text-transform:none;
  4322. }
  4323. #u53613 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:0px;
  4329. height:0px;
  4330. }
  4331. #u53614_div {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:375px;
  4337. height:140px;
  4338. background:inherit;
  4339. background-color:rgba(255, 255, 255, 1);
  4340. border-left:0px;
  4341. border-top:0px;
  4342. border-right:0px;
  4343. border-radius:0px;
  4344. border-bottom-right-radius:0px;
  4345. border-bottom-left-radius:0px;
  4346. filter:drop-shadow(none);
  4347. transition:none;
  4348. }
  4349. #u53614 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:935px;
  4353. top:497px;
  4354. width:375px;
  4355. height:140px;
  4356. display:flex;
  4357. transition:none;
  4358. transform-origin:50% 50%;
  4359. }
  4360. #u53614 .text {
  4361. position:absolute;
  4362. align-self:center;
  4363. padding:2px 2px 2px 2px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u53614_text {
  4368. border-width:0px;
  4369. word-wrap:break-word;
  4370. text-transform:none;
  4371. visibility:hidden;
  4372. }
  4373. #u53615_div {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:57px;
  4379. height:30px;
  4380. background:inherit;
  4381. background-color:rgba(255, 255, 255, 0);
  4382. border-left:0px;
  4383. border-top:0px;
  4384. border-right:0px;
  4385. border-radius:0px;
  4386. border-bottom-right-radius:0px;
  4387. border-bottom-left-radius:0px;
  4388. filter:drop-shadow(none);
  4389. transition:none;
  4390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:14px;
  4394. line-height:30px;
  4395. }
  4396. #u53615 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:955px;
  4400. top:507px;
  4401. width:57px;
  4402. height:30px;
  4403. display:flex;
  4404. transition:none;
  4405. transform-origin:50% 50%;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:14px;
  4410. line-height:30px;
  4411. }
  4412. #u53615 .text {
  4413. position:absolute;
  4414. align-self:center;
  4415. padding:0px 0px 0px 0px;
  4416. box-sizing:border-box;
  4417. width:100%;
  4418. }
  4419. #u53615_text {
  4420. border-width:0px;
  4421. white-space:nowrap;
  4422. text-transform:none;
  4423. }
  4424. #u53616_div {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:99px;
  4430. height:30px;
  4431. background:inherit;
  4432. background-color:rgba(255, 255, 255, 0);
  4433. border-left:0px;
  4434. border-top:0px;
  4435. border-right:0px;
  4436. border-radius:0px;
  4437. border-bottom-right-radius:0px;
  4438. border-bottom-left-radius:0px;
  4439. filter:drop-shadow(none);
  4440. transition:none;
  4441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4442. font-weight:400;
  4443. font-style:normal;
  4444. font-size:14px;
  4445. color:#AAAAAA;
  4446. line-height:30px;
  4447. }
  4448. #u53616 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:955px;
  4452. top:537px;
  4453. width:99px;
  4454. height:30px;
  4455. display:flex;
  4456. transition:none;
  4457. transform-origin:50% 50%;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:14px;
  4462. color:#AAAAAA;
  4463. line-height:30px;
  4464. }
  4465. #u53616 .text {
  4466. position:absolute;
  4467. align-self:center;
  4468. padding:0px 0px 0px 0px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u53616_text {
  4473. border-width:0px;
  4474. white-space:nowrap;
  4475. text-transform:none;
  4476. }
  4477. #u53617_div {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:40px;
  4483. height:40px;
  4484. background:inherit;
  4485. background-color:rgba(255, 255, 255, 1);
  4486. box-sizing:border-box;
  4487. border-width:1px;
  4488. border-style:solid;
  4489. border-color:rgba(170, 170, 170, 1);
  4490. border-radius:4px;
  4491. filter:drop-shadow(none);
  4492. transition:none;
  4493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4494. font-weight:400;
  4495. font-style:normal;
  4496. font-size:18px;
  4497. }
  4498. #u53617 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:955px;
  4502. top:587px;
  4503. width:40px;
  4504. height:40px;
  4505. display:flex;
  4506. transition:none;
  4507. transform-origin:50% 50%;
  4508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4509. font-weight:400;
  4510. font-style:normal;
  4511. font-size:18px;
  4512. }
  4513. #u53617 .text {
  4514. position:absolute;
  4515. align-self:center;
  4516. padding:2px 2px 2px 2px;
  4517. box-sizing:border-box;
  4518. width:100%;
  4519. }
  4520. #u53617_text {
  4521. border-width:0px;
  4522. word-wrap:break-word;
  4523. text-transform:none;
  4524. }
  4525. #u53618 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:0px;
  4531. height:0px;
  4532. }
  4533. #u53619_div {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:375px;
  4539. height:50px;
  4540. background:inherit;
  4541. background-color:rgba(255, 255, 255, 1);
  4542. border-left:0px;
  4543. border-top:0px;
  4544. border-right:0px;
  4545. border-radius:0px;
  4546. border-bottom-right-radius:0px;
  4547. border-bottom-left-radius:0px;
  4548. filter:drop-shadow(none);
  4549. transition:none;
  4550. }
  4551. #u53619 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:935px;
  4555. top:344px;
  4556. width:375px;
  4557. height:50px;
  4558. display:flex;
  4559. transition:none;
  4560. transform-origin:50% 50%;
  4561. }
  4562. #u53619 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 2px 2px 2px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u53619_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u53620_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:57px;
  4581. height:30px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 0);
  4584. border-left:0px;
  4585. border-top:0px;
  4586. border-right:0px;
  4587. border-radius:0px;
  4588. border-bottom-right-radius:0px;
  4589. border-bottom-left-radius:0px;
  4590. filter:drop-shadow(none);
  4591. transition:none;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:14px;
  4596. line-height:30px;
  4597. }
  4598. #u53620 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:955px;
  4602. top:354px;
  4603. width:57px;
  4604. height:30px;
  4605. display:flex;
  4606. transition:none;
  4607. transform-origin:50% 50%;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:14px;
  4612. line-height:30px;
  4613. }
  4614. #u53620 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:0px 0px 0px 0px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u53620_text {
  4622. border-width:0px;
  4623. white-space:nowrap;
  4624. text-transform:none;
  4625. }
  4626. #u53621 {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:0px;
  4632. height:0px;
  4633. }
  4634. #u53622_div {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:8px;
  4640. height:8px;
  4641. background:inherit;
  4642. background-color:rgba(255, 255, 255, 0);
  4643. box-sizing:border-box;
  4644. border-width:1px;
  4645. border-style:solid;
  4646. border-color:rgba(127, 127, 127, 1);
  4647. border-right:0px;
  4648. border-bottom:0px;
  4649. border-radius:0px;
  4650. border-top-right-radius:0px;
  4651. border-bottom-left-radius:0px;
  4652. filter:drop-shadow(none);
  4653. transition:none;
  4654. }
  4655. #u53622 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:1285px;
  4659. top:365px;
  4660. width:8px;
  4661. height:8px;
  4662. display:flex;
  4663. -webkit-transform:rotate(135deg);
  4664. -moz-transform:rotate(135deg);
  4665. -ms-transform:rotate(135deg);
  4666. transform:rotate(135deg);
  4667. transition:none;
  4668. transform-origin:50% 50%;
  4669. }
  4670. #u53622 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u53622_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u53623_div {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:196px;
  4689. height:30px;
  4690. background:inherit;
  4691. background-color:rgba(255, 255, 255, 0);
  4692. border-left:0px;
  4693. border-top:0px;
  4694. border-right:0px;
  4695. border-radius:0px;
  4696. border-bottom-right-radius:0px;
  4697. border-bottom-left-radius:0px;
  4698. filter:drop-shadow(none);
  4699. transition:none;
  4700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. text-align:right;
  4705. line-height:30px;
  4706. }
  4707. #u53623 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:1082px;
  4711. top:354px;
  4712. width:196px;
  4713. height:30px;
  4714. display:flex;
  4715. transition:none;
  4716. transform-origin:50% 50%;
  4717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:12px;
  4721. text-align:right;
  4722. line-height:30px;
  4723. }
  4724. #u53623 .text {
  4725. position:absolute;
  4726. align-self:center;
  4727. padding:0px 0px 0px 0px;
  4728. box-sizing:border-box;
  4729. width:100%;
  4730. }
  4731. #u53623_text {
  4732. border-width:0px;
  4733. white-space:nowrap;
  4734. text-transform:none;
  4735. }
  4736. #u53624 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:0px;
  4742. height:0px;
  4743. }
  4744. #u53625_div {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:375px;
  4750. height:50px;
  4751. background:inherit;
  4752. background-color:rgba(255, 255, 255, 1);
  4753. border-left:0px;
  4754. border-top:0px;
  4755. border-right:0px;
  4756. border-radius:0px;
  4757. border-bottom-right-radius:0px;
  4758. border-bottom-left-radius:0px;
  4759. filter:drop-shadow(none);
  4760. transition:none;
  4761. }
  4762. #u53625 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:935px;
  4766. top:395px;
  4767. width:375px;
  4768. height:50px;
  4769. display:flex;
  4770. transition:none;
  4771. transform-origin:50% 50%;
  4772. }
  4773. #u53625 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u53625_text {
  4781. border-width:0px;
  4782. word-wrap:break-word;
  4783. text-transform:none;
  4784. visibility:hidden;
  4785. }
  4786. #u53626_div {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:43px;
  4792. height:30px;
  4793. background:inherit;
  4794. background-color:rgba(255, 255, 255, 0);
  4795. border-left:0px;
  4796. border-top:0px;
  4797. border-right:0px;
  4798. border-radius:0px;
  4799. border-bottom-right-radius:0px;
  4800. border-bottom-left-radius:0px;
  4801. filter:drop-shadow(none);
  4802. transition:none;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:14px;
  4807. line-height:30px;
  4808. }
  4809. #u53626 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:955px;
  4813. top:405px;
  4814. width:43px;
  4815. height:30px;
  4816. display:flex;
  4817. transition:none;
  4818. transform-origin:50% 50%;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. line-height:30px;
  4824. }
  4825. #u53626 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:0px 0px 0px 0px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u53626_text {
  4833. border-width:0px;
  4834. white-space:nowrap;
  4835. text-transform:none;
  4836. }
  4837. #u53627 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:0px;
  4843. height:0px;
  4844. }
  4845. #u53628_div {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:8px;
  4851. height:8px;
  4852. background:inherit;
  4853. background-color:rgba(255, 255, 255, 0);
  4854. box-sizing:border-box;
  4855. border-width:1px;
  4856. border-style:solid;
  4857. border-color:rgba(127, 127, 127, 1);
  4858. border-right:0px;
  4859. border-bottom:0px;
  4860. border-radius:0px;
  4861. border-top-right-radius:0px;
  4862. border-bottom-left-radius:0px;
  4863. filter:drop-shadow(none);
  4864. transition:none;
  4865. }
  4866. #u53628 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:1285px;
  4870. top:416px;
  4871. width:8px;
  4872. height:8px;
  4873. display:flex;
  4874. -webkit-transform:rotate(135deg);
  4875. -moz-transform:rotate(135deg);
  4876. -ms-transform:rotate(135deg);
  4877. transform:rotate(135deg);
  4878. transition:none;
  4879. transform-origin:50% 50%;
  4880. }
  4881. #u53628 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 2px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u53628_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u53629_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:215px;
  4900. height:30px;
  4901. background:inherit;
  4902. background-color:rgba(255, 255, 255, 0);
  4903. border-left:0px;
  4904. border-top:0px;
  4905. border-right:0px;
  4906. border-radius:0px;
  4907. border-bottom-right-radius:0px;
  4908. border-bottom-left-radius:0px;
  4909. filter:drop-shadow(none);
  4910. transition:none;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:12px;
  4915. text-align:right;
  4916. line-height:30px;
  4917. }
  4918. #u53629 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:1063px;
  4922. top:405px;
  4923. width:215px;
  4924. height:30px;
  4925. display:flex;
  4926. transition:none;
  4927. transform-origin:50% 50%;
  4928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:12px;
  4932. text-align:right;
  4933. line-height:30px;
  4934. }
  4935. #u53629 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:0px 0px 0px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u53629_text {
  4943. border-width:0px;
  4944. white-space:nowrap;
  4945. text-transform:none;
  4946. }
  4947. #u53630 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:433px;
  4953. height:865px;
  4954. }
  4955. #u53631 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:433px;
  4961. height:865px;
  4962. display:flex;
  4963. transition:none;
  4964. }
  4965. #u53631 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 2px 2px 2px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u53631_img {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:433px;
  4978. height:865px;
  4979. }
  4980. #u53631_text {
  4981. border-width:0px;
  4982. word-wrap:break-word;
  4983. text-transform:none;
  4984. visibility:hidden;
  4985. }
  4986. #u53632_div {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:375px;
  4992. height:40px;
  4993. background:inherit;
  4994. background-color:rgba(255, 255, 255, 1);
  4995. box-sizing:border-box;
  4996. border-width:1px;
  4997. border-style:solid;
  4998. border-color:rgba(215, 215, 215, 1);
  4999. border-left:0px;
  5000. border-top:0px;
  5001. border-right:0px;
  5002. border-radius:0px;
  5003. border-bottom-right-radius:0px;
  5004. border-bottom-left-radius:0px;
  5005. filter:drop-shadow(none);
  5006. transition:none;
  5007. }
  5008. #u53632 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:29px;
  5012. top:67px;
  5013. width:375px;
  5014. height:40px;
  5015. display:flex;
  5016. transition:none;
  5017. transform-origin:50% 50%;
  5018. }
  5019. #u53632 .text {
  5020. position:absolute;
  5021. align-self:center;
  5022. padding:2px 2px 2px 2px;
  5023. box-sizing:border-box;
  5024. width:100%;
  5025. }
  5026. #u53632_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. visibility:hidden;
  5031. }
  5032. #u53633 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:0px;
  5038. height:0px;
  5039. }
  5040. #u53634_div {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:0px;
  5044. top:0px;
  5045. width:88px;
  5046. height:32px;
  5047. background:inherit;
  5048. background-color:rgba(255, 255, 255, 1);
  5049. box-sizing:border-box;
  5050. border-width:1px;
  5051. border-style:solid;
  5052. border-color:rgba(242, 242, 242, 1);
  5053. border-radius:33px;
  5054. filter:drop-shadow(none);
  5055. transition:none;
  5056. }
  5057. #u53634 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:309px;
  5061. top:71px;
  5062. width:88px;
  5063. height:32px;
  5064. display:flex;
  5065. transition:none;
  5066. transform-origin:50% 50%;
  5067. }
  5068. #u53634 .text {
  5069. position:absolute;
  5070. align-self:center;
  5071. padding:2px 2px 2px 2px;
  5072. box-sizing:border-box;
  5073. width:100%;
  5074. }
  5075. #u53634_text {
  5076. border-width:0px;
  5077. word-wrap:break-word;
  5078. text-transform:none;
  5079. visibility:hidden;
  5080. }
  5081. #u53635 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:0px;
  5087. height:0px;
  5088. }
  5089. #u53636 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:372px;
  5093. top:78px;
  5094. width:18px;
  5095. height:18px;
  5096. display:flex;
  5097. transition:none;
  5098. }
  5099. #u53636 .text {
  5100. position:absolute;
  5101. align-self:center;
  5102. padding:2px 2px 2px 2px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u53636_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:18px;
  5112. height:18px;
  5113. }
  5114. #u53636_text {
  5115. border-width:0px;
  5116. word-wrap:break-word;
  5117. text-transform:none;
  5118. visibility:hidden;
  5119. }
  5120. #u53637 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:378px;
  5124. top:84px;
  5125. width:6px;
  5126. height:6px;
  5127. display:flex;
  5128. transition:none;
  5129. }
  5130. #u53637 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 2px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u53637_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:6px;
  5143. height:6px;
  5144. }
  5145. #u53637_text {
  5146. border-width:0px;
  5147. word-wrap:break-word;
  5148. text-transform:none;
  5149. visibility:hidden;
  5150. }
  5151. #u53638 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:0px;
  5157. height:0px;
  5158. }
  5159. #u53639 {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:323px;
  5163. top:85px;
  5164. width:5px;
  5165. height:5px;
  5166. display:flex;
  5167. transition:none;
  5168. }
  5169. #u53639 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 2px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u53639_img {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:5px;
  5182. height:5px;
  5183. }
  5184. #u53639_text {
  5185. border-width:0px;
  5186. word-wrap:break-word;
  5187. text-transform:none;
  5188. visibility:hidden;
  5189. }
  5190. #u53640 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:339px;
  5194. top:85px;
  5195. width:5px;
  5196. height:5px;
  5197. display:flex;
  5198. transition:none;
  5199. }
  5200. #u53640 .text {
  5201. position:absolute;
  5202. align-self:center;
  5203. padding:2px 2px 2px 2px;
  5204. box-sizing:border-box;
  5205. width:100%;
  5206. }
  5207. #u53640_img {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:5px;
  5213. height:5px;
  5214. }
  5215. #u53640_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u53641 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:330px;
  5225. top:84px;
  5226. width:7px;
  5227. height:7px;
  5228. display:flex;
  5229. transition:none;
  5230. }
  5231. #u53641 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 2px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u53641_img {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:7px;
  5244. height:7px;
  5245. }
  5246. #u53641_text {
  5247. border-width:0px;
  5248. word-wrap:break-word;
  5249. text-transform:none;
  5250. visibility:hidden;
  5251. }
  5252. #u53642 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:347px;
  5256. top:87px;
  5257. width:18px;
  5258. height:1px;
  5259. display:flex;
  5260. -webkit-transform:rotate(90deg);
  5261. -moz-transform:rotate(90deg);
  5262. -ms-transform:rotate(90deg);
  5263. transform:rotate(90deg);
  5264. transition:none;
  5265. }
  5266. #u53642 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 2px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u53642_img {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:19px;
  5279. height:2px;
  5280. }
  5281. #u53642_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u53643 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:29px;
  5291. top:24px;
  5292. width:375px;
  5293. height:44px;
  5294. display:flex;
  5295. transition:none;
  5296. }
  5297. #u53643 .text {
  5298. position:absolute;
  5299. align-self:center;
  5300. padding:2px 2px 2px 2px;
  5301. box-sizing:border-box;
  5302. width:100%;
  5303. }
  5304. #u53643_img {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:375px;
  5310. height:44px;
  5311. }
  5312. #u53643_text {
  5313. border-width:0px;
  5314. word-wrap:break-word;
  5315. text-transform:none;
  5316. visibility:hidden;
  5317. }
  5318. #u53644_div {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:375px;
  5324. height:50px;
  5325. background:inherit;
  5326. background-color:rgba(255, 255, 255, 1);
  5327. box-sizing:border-box;
  5328. border-width:1px;
  5329. border-style:solid;
  5330. border-color:rgba(242, 242, 242, 1);
  5331. border-radius:26px;
  5332. border-top-left-radius:0px;
  5333. border-top-right-radius:0px;
  5334. filter:drop-shadow(none);
  5335. transition:none;
  5336. }
  5337. #u53644 {
  5338. border-width:0px;
  5339. position:absolute;
  5340. left:29px;
  5341. top:788px;
  5342. width:375px;
  5343. height:50px;
  5344. display:flex;
  5345. transition:none;
  5346. transform-origin:50% 50%;
  5347. }
  5348. #u53644 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:2px 2px 2px 2px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u53644_text {
  5356. border-width:0px;
  5357. word-wrap:break-word;
  5358. text-transform:none;
  5359. visibility:hidden;
  5360. }
  5361. #u53645 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:0px;
  5367. height:0px;
  5368. }
  5369. #u53646 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:69px;
  5373. top:792px;
  5374. width:24px;
  5375. height:24px;
  5376. display:flex;
  5377. transition:none;
  5378. font-size:8px;
  5379. }
  5380. #u53646 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 2px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u53646_img {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:24px;
  5393. height:24px;
  5394. }
  5395. #u53646_text {
  5396. border-width:0px;
  5397. word-wrap:break-word;
  5398. text-transform:none;
  5399. }
  5400. #u53647_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:25px;
  5406. height:17px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 0);
  5409. border-radius:0px;
  5410. filter:drop-shadow(none);
  5411. transition:none;
  5412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5413. font-weight:400;
  5414. font-style:normal;
  5415. font-size:12px;
  5416. }
  5417. #u53647 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:69px;
  5421. top:817px;
  5422. width:25px;
  5423. height:17px;
  5424. display:flex;
  5425. transition:none;
  5426. transform-origin:50% 50%;
  5427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5428. font-weight:400;
  5429. font-style:normal;
  5430. font-size:12px;
  5431. }
  5432. #u53647 .text {
  5433. position:absolute;
  5434. align-self:flex-start;
  5435. padding:0px 0px 0px 0px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u53647_text {
  5440. border-width:0px;
  5441. white-space:nowrap;
  5442. text-transform:none;
  5443. }
  5444. #u53648 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:0px;
  5450. height:0px;
  5451. }
  5452. #u53649 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:339px;
  5456. top:794px;
  5457. width:24px;
  5458. height:24px;
  5459. display:flex;
  5460. transition:none;
  5461. font-size:8px;
  5462. }
  5463. #u53649 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 2px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u53649_img {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:24px;
  5476. height:24px;
  5477. }
  5478. #u53649_text {
  5479. border-width:0px;
  5480. word-wrap:break-word;
  5481. text-transform:none;
  5482. }
  5483. #u53650_div {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:25px;
  5489. height:17px;
  5490. background:inherit;
  5491. background-color:rgba(255, 255, 255, 0);
  5492. border-radius:0px;
  5493. filter:drop-shadow(none);
  5494. transition:none;
  5495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5496. font-weight:400;
  5497. font-style:normal;
  5498. font-size:12px;
  5499. }
  5500. #u53650 {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:339px;
  5504. top:819px;
  5505. width:25px;
  5506. height:17px;
  5507. display:flex;
  5508. transition:none;
  5509. transform-origin:50% 50%;
  5510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:12px;
  5514. }
  5515. #u53650 .text {
  5516. position:absolute;
  5517. align-self:flex-start;
  5518. padding:0px 0px 0px 0px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u53650_text {
  5523. border-width:0px;
  5524. white-space:nowrap;
  5525. text-transform:none;
  5526. }
  5527. #u53651_div {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:375px;
  5533. height:681px;
  5534. background:inherit;
  5535. background-color:rgba(242, 242, 242, 0.4627450980392157);
  5536. border-radius:0px;
  5537. filter:drop-shadow(none);
  5538. transition:none;
  5539. }
  5540. #u53651 {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:29px;
  5544. top:107px;
  5545. width:375px;
  5546. height:681px;
  5547. display:flex;
  5548. transition:none;
  5549. transform-origin:50% 50%;
  5550. }
  5551. #u53651 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u53651_text {
  5559. border-width:0px;
  5560. word-wrap:break-word;
  5561. text-transform:none;
  5562. visibility:hidden;
  5563. }
  5564. #u53652 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:0px;
  5570. height:0px;
  5571. }
  5572. #u53653 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:251px;
  5576. top:792px;
  5577. width:24px;
  5578. height:24px;
  5579. display:flex;
  5580. transition:none;
  5581. font-size:8px;
  5582. }
  5583. #u53653 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 2px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u53653_img {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:0px;
  5594. top:0px;
  5595. width:24px;
  5596. height:24px;
  5597. }
  5598. #u53653_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. }
  5603. #u53654_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:37px;
  5609. height:17px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 0);
  5612. border-radius:0px;
  5613. filter:drop-shadow(none);
  5614. transition:none;
  5615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. font-size:12px;
  5619. }
  5620. #u53654 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:245px;
  5624. top:817px;
  5625. width:37px;
  5626. height:17px;
  5627. display:flex;
  5628. transition:none;
  5629. transform-origin:50% 50%;
  5630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:12px;
  5634. }
  5635. #u53654 .text {
  5636. position:absolute;
  5637. align-self:flex-start;
  5638. padding:0px 0px 0px 0px;
  5639. box-sizing:border-box;
  5640. width:100%;
  5641. }
  5642. #u53654_text {
  5643. border-width:0px;
  5644. white-space:nowrap;
  5645. text-transform:none;
  5646. }
  5647. #u53655 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:0px;
  5653. height:0px;
  5654. }
  5655. #u53656 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:157px;
  5659. top:792px;
  5660. width:24px;
  5661. height:24px;
  5662. display:flex;
  5663. transition:none;
  5664. font-size:8px;
  5665. }
  5666. #u53656 .text {
  5667. position:absolute;
  5668. align-self:center;
  5669. padding:2px 2px 2px 2px;
  5670. box-sizing:border-box;
  5671. width:100%;
  5672. }
  5673. #u53656_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:24px;
  5679. height:24px;
  5680. }
  5681. #u53656_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. }
  5686. #u53657_div {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:0px;
  5690. top:0px;
  5691. width:37px;
  5692. height:17px;
  5693. background:inherit;
  5694. background-color:rgba(255, 255, 255, 0);
  5695. border-radius:0px;
  5696. filter:drop-shadow(none);
  5697. transition:none;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:12px;
  5702. }
  5703. #u53657 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:151px;
  5707. top:817px;
  5708. width:37px;
  5709. height:17px;
  5710. display:flex;
  5711. transition:none;
  5712. transform-origin:50% 50%;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:12px;
  5717. }
  5718. #u53657 .text {
  5719. position:absolute;
  5720. align-self:flex-start;
  5721. padding:0px 0px 0px 0px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u53657_text {
  5726. border-width:0px;
  5727. white-space:nowrap;
  5728. text-transform:none;
  5729. }
  5730. #u53658_div {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:375px;
  5736. height:732px;
  5737. background:inherit;
  5738. background-color:rgba(242, 242, 242, 0.996078431372549);
  5739. border-top:0px;
  5740. border-radius:28px;
  5741. border-top-left-radius:0px;
  5742. border-top-right-radius:0px;
  5743. filter:drop-shadow(none);
  5744. transition:none;
  5745. }
  5746. #u53658 {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:29px;
  5750. top:107px;
  5751. width:375px;
  5752. height:732px;
  5753. display:flex;
  5754. transition:none;
  5755. transform-origin:50% 50%;
  5756. }
  5757. #u53658 .text {
  5758. position:absolute;
  5759. align-self:center;
  5760. padding:2px 2px 2px 2px;
  5761. box-sizing:border-box;
  5762. width:100%;
  5763. }
  5764. #u53658_text {
  5765. border-width:0px;
  5766. word-wrap:break-word;
  5767. text-transform:none;
  5768. visibility:hidden;
  5769. }
  5770. #u53659_div {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:375px;
  5776. height:41px;
  5777. background:inherit;
  5778. background-color:rgba(255, 255, 255, 1);
  5779. box-sizing:border-box;
  5780. border-width:1px;
  5781. border-style:solid;
  5782. border-color:rgba(215, 215, 215, 1);
  5783. border-left:0px;
  5784. border-top:0px;
  5785. border-right:0px;
  5786. border-radius:0px;
  5787. border-bottom-right-radius:0px;
  5788. border-bottom-left-radius:0px;
  5789. filter:drop-shadow(none);
  5790. transition:none;
  5791. }
  5792. #u53659 {
  5793. border-width:0px;
  5794. position:absolute;
  5795. left:29px;
  5796. top:67px;
  5797. width:375px;
  5798. height:41px;
  5799. display:flex;
  5800. transition:none;
  5801. transform-origin:50% 50%;
  5802. }
  5803. #u53659 .text {
  5804. position:absolute;
  5805. align-self:center;
  5806. padding:2px 2px 2px 2px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u53659_text {
  5811. border-width:0px;
  5812. word-wrap:break-word;
  5813. text-transform:none;
  5814. visibility:hidden;
  5815. }
  5816. #u53660 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:0px;
  5822. height:0px;
  5823. }
  5824. #u53661_div {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:88px;
  5830. height:32px;
  5831. background:inherit;
  5832. background-color:rgba(255, 255, 255, 1);
  5833. box-sizing:border-box;
  5834. border-width:1px;
  5835. border-style:solid;
  5836. border-color:rgba(242, 242, 242, 1);
  5837. border-radius:33px;
  5838. filter:drop-shadow(none);
  5839. transition:none;
  5840. }
  5841. #u53661 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:309px;
  5845. top:71px;
  5846. width:88px;
  5847. height:32px;
  5848. display:flex;
  5849. transition:none;
  5850. transform-origin:50% 50%;
  5851. }
  5852. #u53661 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 2px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u53661_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. visibility:hidden;
  5864. }
  5865. #u53662 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:0px;
  5871. height:0px;
  5872. }
  5873. #u53663 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:372px;
  5877. top:78px;
  5878. width:18px;
  5879. height:18px;
  5880. display:flex;
  5881. transition:none;
  5882. }
  5883. #u53663 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 2px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u53663_img {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:18px;
  5896. height:18px;
  5897. }
  5898. #u53663_text {
  5899. border-width:0px;
  5900. word-wrap:break-word;
  5901. text-transform:none;
  5902. visibility:hidden;
  5903. }
  5904. #u53664 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:378px;
  5908. top:84px;
  5909. width:6px;
  5910. height:6px;
  5911. display:flex;
  5912. transition:none;
  5913. }
  5914. #u53664 .text {
  5915. position:absolute;
  5916. align-self:center;
  5917. padding:2px 2px 2px 2px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u53664_img {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:6px;
  5927. height:6px;
  5928. }
  5929. #u53664_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u53665 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:0px;
  5941. height:0px;
  5942. }
  5943. #u53666 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:323px;
  5947. top:85px;
  5948. width:5px;
  5949. height:5px;
  5950. display:flex;
  5951. transition:none;
  5952. }
  5953. #u53666 .text {
  5954. position:absolute;
  5955. align-self:center;
  5956. padding:2px 2px 2px 2px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u53666_img {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:5px;
  5966. height:5px;
  5967. }
  5968. #u53666_text {
  5969. border-width:0px;
  5970. word-wrap:break-word;
  5971. text-transform:none;
  5972. visibility:hidden;
  5973. }
  5974. #u53667 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:339px;
  5978. top:85px;
  5979. width:5px;
  5980. height:5px;
  5981. display:flex;
  5982. transition:none;
  5983. }
  5984. #u53667 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:2px 2px 2px 2px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u53667_img {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:5px;
  5997. height:5px;
  5998. }
  5999. #u53667_text {
  6000. border-width:0px;
  6001. word-wrap:break-word;
  6002. text-transform:none;
  6003. visibility:hidden;
  6004. }
  6005. #u53668 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:330px;
  6009. top:84px;
  6010. width:7px;
  6011. height:7px;
  6012. display:flex;
  6013. transition:none;
  6014. }
  6015. #u53668 .text {
  6016. position:absolute;
  6017. align-self:center;
  6018. padding:2px 2px 2px 2px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u53668_img {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:7px;
  6028. height:7px;
  6029. }
  6030. #u53668_text {
  6031. border-width:0px;
  6032. word-wrap:break-word;
  6033. text-transform:none;
  6034. visibility:hidden;
  6035. }
  6036. #u53669 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:347px;
  6040. top:87px;
  6041. width:18px;
  6042. height:1px;
  6043. display:flex;
  6044. -webkit-transform:rotate(90deg);
  6045. -moz-transform:rotate(90deg);
  6046. -ms-transform:rotate(90deg);
  6047. transform:rotate(90deg);
  6048. transition:none;
  6049. }
  6050. #u53669 .text {
  6051. position:absolute;
  6052. align-self:center;
  6053. padding:2px 2px 2px 2px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u53669_img {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:19px;
  6063. height:2px;
  6064. }
  6065. #u53669_text {
  6066. border-width:0px;
  6067. word-wrap:break-word;
  6068. text-transform:none;
  6069. visibility:hidden;
  6070. }
  6071. #u53670_div {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:12px;
  6077. height:12px;
  6078. background:inherit;
  6079. background-color:rgba(255, 255, 255, 0);
  6080. box-sizing:border-box;
  6081. border-width:2px;
  6082. border-style:solid;
  6083. border-color:rgba(51, 51, 51, 1);
  6084. border-right:0px;
  6085. border-bottom:0px;
  6086. border-radius:0px;
  6087. border-top-right-radius:0px;
  6088. border-bottom-left-radius:0px;
  6089. filter:drop-shadow(none);
  6090. transition:none;
  6091. }
  6092. #u53670 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:44px;
  6096. top:81px;
  6097. width:12px;
  6098. height:12px;
  6099. display:flex;
  6100. -webkit-transform:rotate(315deg);
  6101. -moz-transform:rotate(315deg);
  6102. -ms-transform:rotate(315deg);
  6103. transform:rotate(315deg);
  6104. transition:none;
  6105. transform-origin:50% 50%;
  6106. }
  6107. #u53670 .text {
  6108. position:absolute;
  6109. align-self:center;
  6110. padding:2px 2px 2px 2px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u53670_text {
  6115. border-width:0px;
  6116. word-wrap:break-word;
  6117. text-transform:none;
  6118. visibility:hidden;
  6119. }
  6120. #u53671 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:0px;
  6126. height:0px;
  6127. }
  6128. #u53672_div {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:375px;
  6134. height:60px;
  6135. background:inherit;
  6136. background-color:rgba(255, 255, 255, 1);
  6137. box-sizing:border-box;
  6138. border-width:1px;
  6139. border-style:solid;
  6140. border-color:rgba(242, 242, 242, 1);
  6141. border-radius:20px;
  6142. border-top-left-radius:0px;
  6143. border-top-right-radius:0px;
  6144. filter:drop-shadow(none);
  6145. transition:none;
  6146. }
  6147. #u53672 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:29px;
  6151. top:779px;
  6152. width:375px;
  6153. height:60px;
  6154. display:flex;
  6155. transition:none;
  6156. transform-origin:50% 50%;
  6157. }
  6158. #u53672 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 2px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u53672_text {
  6166. border-width:0px;
  6167. word-wrap:break-word;
  6168. text-transform:none;
  6169. visibility:hidden;
  6170. }
  6171. #u53673_div {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:97px;
  6177. height:40px;
  6178. background:inherit;
  6179. background-color:rgba(24, 144, 255, 1);
  6180. border-radius:63px;
  6181. filter:drop-shadow(none);
  6182. transition:none;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:14px;
  6187. color:#FFFFFF;
  6188. }
  6189. #u53673 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:293px;
  6193. top:789px;
  6194. width:97px;
  6195. height:40px;
  6196. display:flex;
  6197. transition:none;
  6198. transform-origin:50% 50%;
  6199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6200. font-weight:400;
  6201. font-style:normal;
  6202. font-size:14px;
  6203. color:#FFFFFF;
  6204. }
  6205. #u53673 .text {
  6206. position:absolute;
  6207. align-self:center;
  6208. padding:2px 2px 2px 2px;
  6209. box-sizing:border-box;
  6210. width:100%;
  6211. }
  6212. #u53673_text {
  6213. border-width:0px;
  6214. word-wrap:break-word;
  6215. text-transform:none;
  6216. }
  6217. #u53674_div {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:73px;
  6223. height:25px;
  6224. background:inherit;
  6225. background-color:rgba(255, 255, 255, 0);
  6226. border-radius:0px;
  6227. filter:drop-shadow(none);
  6228. transition:none;
  6229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:18px;
  6233. }
  6234. #u53674 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:64px;
  6238. top:75px;
  6239. width:73px;
  6240. height:25px;
  6241. display:flex;
  6242. transition:none;
  6243. transform-origin:50% 50%;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:18px;
  6248. }
  6249. #u53674 .text {
  6250. position:absolute;
  6251. align-self:flex-start;
  6252. padding:0px 0px 0px 0px;
  6253. box-sizing:border-box;
  6254. width:100%;
  6255. }
  6256. #u53674_text {
  6257. border-width:0px;
  6258. white-space:nowrap;
  6259. text-transform:none;
  6260. }
  6261. #u53675_div {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:375px;
  6267. height:50px;
  6268. background:inherit;
  6269. background-color:rgba(255, 255, 255, 1);
  6270. border-left:0px;
  6271. border-top:0px;
  6272. border-right:0px;
  6273. border-radius:0px;
  6274. border-bottom-right-radius:0px;
  6275. border-bottom-left-radius:0px;
  6276. filter:drop-shadow(none);
  6277. transition:none;
  6278. }
  6279. #u53675 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:29px;
  6283. top:284px;
  6284. width:375px;
  6285. height:50px;
  6286. display:flex;
  6287. transition:none;
  6288. transform-origin:50% 50%;
  6289. }
  6290. #u53675 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:2px 2px 2px 2px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u53675_text {
  6298. border-width:0px;
  6299. word-wrap:break-word;
  6300. text-transform:none;
  6301. visibility:hidden;
  6302. }
  6303. #u53676_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:57px;
  6309. height:30px;
  6310. background:inherit;
  6311. background-color:rgba(255, 255, 255, 0);
  6312. border-left:0px;
  6313. border-top:0px;
  6314. border-right:0px;
  6315. border-radius:0px;
  6316. border-bottom-right-radius:0px;
  6317. border-bottom-left-radius:0px;
  6318. filter:drop-shadow(none);
  6319. transition:none;
  6320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. font-size:14px;
  6324. line-height:30px;
  6325. }
  6326. #u53676 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:49px;
  6330. top:294px;
  6331. width:57px;
  6332. height:30px;
  6333. display:flex;
  6334. transition:none;
  6335. transform-origin:50% 50%;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. font-size:14px;
  6340. line-height:30px;
  6341. }
  6342. #u53676 .text {
  6343. position:absolute;
  6344. align-self:center;
  6345. padding:0px 0px 0px 0px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u53676_text {
  6350. border-width:0px;
  6351. white-space:nowrap;
  6352. text-transform:none;
  6353. }
  6354. #u53677_div {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:375px;
  6360. height:50px;
  6361. background:inherit;
  6362. background-color:rgba(255, 255, 255, 1);
  6363. border-left:0px;
  6364. border-top:0px;
  6365. border-right:0px;
  6366. border-radius:0px;
  6367. border-bottom-right-radius:0px;
  6368. border-bottom-left-radius:0px;
  6369. filter:drop-shadow(none);
  6370. transition:none;
  6371. }
  6372. #u53677 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:29px;
  6376. top:233px;
  6377. width:375px;
  6378. height:50px;
  6379. display:flex;
  6380. transition:none;
  6381. transform-origin:50% 50%;
  6382. }
  6383. #u53677 .text {
  6384. position:absolute;
  6385. align-self:center;
  6386. padding:2px 2px 2px 2px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u53677_text {
  6391. border-width:0px;
  6392. word-wrap:break-word;
  6393. text-transform:none;
  6394. visibility:hidden;
  6395. }
  6396. #u53678_div {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:57px;
  6402. height:30px;
  6403. background:inherit;
  6404. background-color:rgba(255, 255, 255, 0);
  6405. border-left:0px;
  6406. border-top:0px;
  6407. border-right:0px;
  6408. border-radius:0px;
  6409. border-bottom-right-radius:0px;
  6410. border-bottom-left-radius:0px;
  6411. filter:drop-shadow(none);
  6412. transition:none;
  6413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:14px;
  6417. line-height:30px;
  6418. }
  6419. #u53678 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:49px;
  6423. top:243px;
  6424. width:57px;
  6425. height:30px;
  6426. display:flex;
  6427. transition:none;
  6428. transform-origin:50% 50%;
  6429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6430. font-weight:400;
  6431. font-style:normal;
  6432. font-size:14px;
  6433. line-height:30px;
  6434. }
  6435. #u53678 .text {
  6436. position:absolute;
  6437. align-self:center;
  6438. padding:0px 0px 0px 0px;
  6439. box-sizing:border-box;
  6440. width:100%;
  6441. }
  6442. #u53678_text {
  6443. border-width:0px;
  6444. white-space:nowrap;
  6445. text-transform:none;
  6446. }
  6447. #u53679 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:0px;
  6451. top:0px;
  6452. width:0px;
  6453. height:0px;
  6454. }
  6455. #u53680_div {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:0px;
  6459. top:0px;
  6460. width:8px;
  6461. height:8px;
  6462. background:inherit;
  6463. background-color:rgba(255, 255, 255, 0);
  6464. box-sizing:border-box;
  6465. border-width:1px;
  6466. border-style:solid;
  6467. border-color:rgba(127, 127, 127, 1);
  6468. border-right:0px;
  6469. border-bottom:0px;
  6470. border-radius:0px;
  6471. border-top-right-radius:0px;
  6472. border-bottom-left-radius:0px;
  6473. filter:drop-shadow(none);
  6474. transition:none;
  6475. }
  6476. #u53680 {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:379px;
  6480. top:254px;
  6481. width:8px;
  6482. height:8px;
  6483. display:flex;
  6484. -webkit-transform:rotate(135deg);
  6485. -moz-transform:rotate(135deg);
  6486. -ms-transform:rotate(135deg);
  6487. transform:rotate(135deg);
  6488. transition:none;
  6489. transform-origin:50% 50%;
  6490. }
  6491. #u53680 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 2px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u53680_text {
  6499. border-width:0px;
  6500. word-wrap:break-word;
  6501. text-transform:none;
  6502. visibility:hidden;
  6503. }
  6504. #u53681_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:57px;
  6510. height:30px;
  6511. background:inherit;
  6512. background-color:rgba(255, 255, 255, 0);
  6513. border-left:0px;
  6514. border-top:0px;
  6515. border-right:0px;
  6516. border-radius:0px;
  6517. border-bottom-right-radius:0px;
  6518. border-bottom-left-radius:0px;
  6519. filter:drop-shadow(none);
  6520. transition:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. color:#AAAAAA;
  6526. text-align:right;
  6527. line-height:30px;
  6528. }
  6529. #u53681 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:315px;
  6533. top:243px;
  6534. width:57px;
  6535. height:30px;
  6536. display:flex;
  6537. transition:none;
  6538. transform-origin:50% 50%;
  6539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6540. font-weight:400;
  6541. font-style:normal;
  6542. font-size:14px;
  6543. color:#AAAAAA;
  6544. text-align:right;
  6545. line-height:30px;
  6546. }
  6547. #u53681 .text {
  6548. position:absolute;
  6549. align-self:center;
  6550. padding:0px 0px 0px 0px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u53681_text {
  6555. border-width:0px;
  6556. white-space:nowrap;
  6557. text-transform:none;
  6558. }
  6559. #u53682 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:0px;
  6565. height:0px;
  6566. }
  6567. #u53683_div {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:375px;
  6573. height:140px;
  6574. background:inherit;
  6575. background-color:rgba(255, 255, 255, 1);
  6576. border-left:0px;
  6577. border-top:0px;
  6578. border-right:0px;
  6579. border-radius:0px;
  6580. border-bottom-right-radius:0px;
  6581. border-bottom-left-radius:0px;
  6582. filter:drop-shadow(none);
  6583. transition:none;
  6584. }
  6585. #u53683 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:29px;
  6589. top:446px;
  6590. width:375px;
  6591. height:140px;
  6592. display:flex;
  6593. transition:none;
  6594. transform-origin:50% 50%;
  6595. }
  6596. #u53683 .text {
  6597. position:absolute;
  6598. align-self:center;
  6599. padding:2px 2px 2px 2px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u53683_text {
  6604. border-width:0px;
  6605. word-wrap:break-word;
  6606. text-transform:none;
  6607. visibility:hidden;
  6608. }
  6609. #u53684_div {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:57px;
  6615. height:30px;
  6616. background:inherit;
  6617. background-color:rgba(255, 255, 255, 0);
  6618. border-left:0px;
  6619. border-top:0px;
  6620. border-right:0px;
  6621. border-radius:0px;
  6622. border-bottom-right-radius:0px;
  6623. border-bottom-left-radius:0px;
  6624. filter:drop-shadow(none);
  6625. transition:none;
  6626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6627. font-weight:400;
  6628. font-style:normal;
  6629. font-size:14px;
  6630. line-height:30px;
  6631. }
  6632. #u53684 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:49px;
  6636. top:456px;
  6637. width:57px;
  6638. height:30px;
  6639. display:flex;
  6640. transition:none;
  6641. transform-origin:50% 50%;
  6642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:14px;
  6646. line-height:30px;
  6647. }
  6648. #u53684 .text {
  6649. position:absolute;
  6650. align-self:center;
  6651. padding:0px 0px 0px 0px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u53684_text {
  6656. border-width:0px;
  6657. white-space:nowrap;
  6658. text-transform:none;
  6659. }
  6660. #u53685_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:99px;
  6666. height:30px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 0);
  6669. border-left:0px;
  6670. border-top:0px;
  6671. border-right:0px;
  6672. border-radius:0px;
  6673. border-bottom-right-radius:0px;
  6674. border-bottom-left-radius:0px;
  6675. filter:drop-shadow(none);
  6676. transition:none;
  6677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:14px;
  6681. color:#AAAAAA;
  6682. line-height:30px;
  6683. }
  6684. #u53685 {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:49px;
  6688. top:486px;
  6689. width:99px;
  6690. height:30px;
  6691. display:flex;
  6692. transition:none;
  6693. transform-origin:50% 50%;
  6694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:14px;
  6698. color:#AAAAAA;
  6699. line-height:30px;
  6700. }
  6701. #u53685 .text {
  6702. position:absolute;
  6703. align-self:center;
  6704. padding:0px 0px 0px 0px;
  6705. box-sizing:border-box;
  6706. width:100%;
  6707. }
  6708. #u53685_text {
  6709. border-width:0px;
  6710. white-space:nowrap;
  6711. text-transform:none;
  6712. }
  6713. #u53686_div {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:40px;
  6719. height:40px;
  6720. background:inherit;
  6721. background-color:rgba(255, 255, 255, 1);
  6722. box-sizing:border-box;
  6723. border-width:1px;
  6724. border-style:solid;
  6725. border-color:rgba(170, 170, 170, 1);
  6726. border-radius:4px;
  6727. filter:drop-shadow(none);
  6728. transition:none;
  6729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6730. font-weight:400;
  6731. font-style:normal;
  6732. font-size:18px;
  6733. }
  6734. #u53686 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:49px;
  6738. top:536px;
  6739. width:40px;
  6740. height:40px;
  6741. display:flex;
  6742. transition:none;
  6743. transform-origin:50% 50%;
  6744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6745. font-weight:400;
  6746. font-style:normal;
  6747. font-size:18px;
  6748. }
  6749. #u53686 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u53686_text {
  6757. border-width:0px;
  6758. word-wrap:break-word;
  6759. text-transform:none;
  6760. }
  6761. #u53687 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:0px;
  6767. height:0px;
  6768. }
  6769. #u53688_div {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:375px;
  6775. height:50px;
  6776. background:inherit;
  6777. background-color:rgba(255, 255, 255, 1);
  6778. border-left:0px;
  6779. border-top:0px;
  6780. border-right:0px;
  6781. border-radius:0px;
  6782. border-bottom-right-radius:0px;
  6783. border-bottom-left-radius:0px;
  6784. filter:drop-shadow(none);
  6785. transition:none;
  6786. }
  6787. #u53688 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:29px;
  6791. top:344px;
  6792. width:375px;
  6793. height:50px;
  6794. display:flex;
  6795. transition:none;
  6796. transform-origin:50% 50%;
  6797. }
  6798. #u53688 .text {
  6799. position:absolute;
  6800. align-self:center;
  6801. padding:2px 2px 2px 2px;
  6802. box-sizing:border-box;
  6803. width:100%;
  6804. }
  6805. #u53688_text {
  6806. border-width:0px;
  6807. word-wrap:break-word;
  6808. text-transform:none;
  6809. visibility:hidden;
  6810. }
  6811. #u53689_div {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:0px;
  6815. top:0px;
  6816. width:57px;
  6817. height:30px;
  6818. background:inherit;
  6819. background-color:rgba(255, 255, 255, 0);
  6820. border-left:0px;
  6821. border-top:0px;
  6822. border-right:0px;
  6823. border-radius:0px;
  6824. border-bottom-right-radius:0px;
  6825. border-bottom-left-radius:0px;
  6826. filter:drop-shadow(none);
  6827. transition:none;
  6828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6829. font-weight:400;
  6830. font-style:normal;
  6831. font-size:14px;
  6832. line-height:30px;
  6833. }
  6834. #u53689 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:49px;
  6838. top:354px;
  6839. width:57px;
  6840. height:30px;
  6841. display:flex;
  6842. transition:none;
  6843. transform-origin:50% 50%;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:14px;
  6848. line-height:30px;
  6849. }
  6850. #u53689 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:0px 0px 0px 0px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u53689_text {
  6858. border-width:0px;
  6859. white-space:nowrap;
  6860. text-transform:none;
  6861. }
  6862. #u53690 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:0px;
  6868. height:0px;
  6869. }
  6870. #u53691_div {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:0px;
  6874. top:0px;
  6875. width:8px;
  6876. height:8px;
  6877. background:inherit;
  6878. background-color:rgba(255, 255, 255, 0);
  6879. box-sizing:border-box;
  6880. border-width:1px;
  6881. border-style:solid;
  6882. border-color:rgba(127, 127, 127, 1);
  6883. border-right:0px;
  6884. border-bottom:0px;
  6885. border-radius:0px;
  6886. border-top-right-radius:0px;
  6887. border-bottom-left-radius:0px;
  6888. filter:drop-shadow(none);
  6889. transition:none;
  6890. }
  6891. #u53691 {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:379px;
  6895. top:365px;
  6896. width:8px;
  6897. height:8px;
  6898. display:flex;
  6899. -webkit-transform:rotate(135deg);
  6900. -moz-transform:rotate(135deg);
  6901. -ms-transform:rotate(135deg);
  6902. transform:rotate(135deg);
  6903. transition:none;
  6904. transform-origin:50% 50%;
  6905. }
  6906. #u53691 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 2px 2px 2px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u53691_text {
  6914. border-width:0px;
  6915. word-wrap:break-word;
  6916. text-transform:none;
  6917. visibility:hidden;
  6918. }
  6919. #u53692_div {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:85px;
  6925. height:30px;
  6926. background:inherit;
  6927. background-color:rgba(255, 255, 255, 0);
  6928. border-left:0px;
  6929. border-top:0px;
  6930. border-right:0px;
  6931. border-radius:0px;
  6932. border-bottom-right-radius:0px;
  6933. border-bottom-left-radius:0px;
  6934. filter:drop-shadow(none);
  6935. transition:none;
  6936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6937. font-weight:400;
  6938. font-style:normal;
  6939. font-size:12px;
  6940. text-align:right;
  6941. line-height:30px;
  6942. }
  6943. #u53692 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:287px;
  6947. top:354px;
  6948. width:85px;
  6949. height:30px;
  6950. display:flex;
  6951. transition:none;
  6952. transform-origin:50% 50%;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:12px;
  6957. text-align:right;
  6958. line-height:30px;
  6959. }
  6960. #u53692 .text {
  6961. position:absolute;
  6962. align-self:center;
  6963. padding:0px 0px 0px 0px;
  6964. box-sizing:border-box;
  6965. width:100%;
  6966. }
  6967. #u53692_text {
  6968. border-width:0px;
  6969. white-space:nowrap;
  6970. text-transform:none;
  6971. }
  6972. #u53693 {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:0px;
  6978. height:0px;
  6979. }
  6980. #u53694_div {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:375px;
  6986. height:100px;
  6987. background:inherit;
  6988. background-color:rgba(255, 255, 255, 1);
  6989. border-left:0px;
  6990. border-top:0px;
  6991. border-right:0px;
  6992. border-radius:0px;
  6993. border-bottom-right-radius:0px;
  6994. border-bottom-left-radius:0px;
  6995. filter:drop-shadow(none);
  6996. transition:none;
  6997. }
  6998. #u53694 {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:29px;
  7002. top:587px;
  7003. width:375px;
  7004. height:100px;
  7005. display:flex;
  7006. transition:none;
  7007. transform-origin:50% 50%;
  7008. }
  7009. #u53694 .text {
  7010. position:absolute;
  7011. align-self:center;
  7012. padding:2px 2px 2px 2px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u53694_text {
  7017. border-width:0px;
  7018. word-wrap:break-word;
  7019. text-transform:none;
  7020. visibility:hidden;
  7021. }
  7022. #u53695_div {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:57px;
  7028. height:30px;
  7029. background:inherit;
  7030. background-color:rgba(255, 255, 255, 0);
  7031. border-left:0px;
  7032. border-top:0px;
  7033. border-right:0px;
  7034. border-radius:0px;
  7035. border-bottom-right-radius:0px;
  7036. border-bottom-left-radius:0px;
  7037. filter:drop-shadow(none);
  7038. transition:none;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:14px;
  7043. line-height:30px;
  7044. }
  7045. #u53695 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:49px;
  7049. top:597px;
  7050. width:57px;
  7051. height:30px;
  7052. display:flex;
  7053. transition:none;
  7054. transform-origin:50% 50%;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:14px;
  7059. line-height:30px;
  7060. }
  7061. #u53695 .text {
  7062. position:absolute;
  7063. align-self:center;
  7064. padding:0px 0px 0px 0px;
  7065. box-sizing:border-box;
  7066. width:100%;
  7067. }
  7068. #u53695_text {
  7069. border-width:0px;
  7070. white-space:nowrap;
  7071. text-transform:none;
  7072. }
  7073. #u53696_div {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:0px;
  7077. top:0px;
  7078. width:60px;
  7079. height:30px;
  7080. background:inherit;
  7081. background-color:rgba(24, 144, 255, 1);
  7082. border-radius:4px;
  7083. filter:drop-shadow(none);
  7084. transition:none;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:12px;
  7089. color:#FFFFFF;
  7090. }
  7091. #u53696 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:129px;
  7095. top:638px;
  7096. width:60px;
  7097. height:30px;
  7098. display:flex;
  7099. transition:none;
  7100. transform-origin:50% 50%;
  7101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7102. font-weight:400;
  7103. font-style:normal;
  7104. font-size:12px;
  7105. color:#FFFFFF;
  7106. }
  7107. #u53696 .text {
  7108. position:absolute;
  7109. align-self:center;
  7110. padding:2px 2px 2px 2px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u53696_text {
  7115. border-width:0px;
  7116. word-wrap:break-word;
  7117. text-transform:none;
  7118. }
  7119. #u53697_div {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:60px;
  7125. height:30px;
  7126. background:inherit;
  7127. background-color:rgba(255, 255, 255, 1);
  7128. box-sizing:border-box;
  7129. border-width:1px;
  7130. border-style:solid;
  7131. border-color:rgba(170, 170, 170, 1);
  7132. border-radius:4px;
  7133. filter:drop-shadow(none);
  7134. transition:none;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:12px;
  7139. }
  7140. #u53697 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:49px;
  7144. top:638px;
  7145. width:60px;
  7146. height:30px;
  7147. display:flex;
  7148. transition:none;
  7149. transform-origin:50% 50%;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:12px;
  7154. }
  7155. #u53697 .text {
  7156. position:absolute;
  7157. align-self:center;
  7158. padding:2px 2px 2px 2px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u53697_text {
  7163. border-width:0px;
  7164. word-wrap:break-word;
  7165. text-transform:none;
  7166. }
  7167. #u53698_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:60px;
  7173. height:30px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 1);
  7176. box-sizing:border-box;
  7177. border-width:1px;
  7178. border-style:solid;
  7179. border-color:rgba(170, 170, 170, 1);
  7180. border-radius:4px;
  7181. filter:drop-shadow(none);
  7182. transition:none;
  7183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:12px;
  7187. }
  7188. #u53698 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:209px;
  7192. top:638px;
  7193. width:60px;
  7194. height:30px;
  7195. display:flex;
  7196. transition:none;
  7197. transform-origin:50% 50%;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:12px;
  7202. }
  7203. #u53698 .text {
  7204. position:absolute;
  7205. align-self:center;
  7206. padding:2px 2px 2px 2px;
  7207. box-sizing:border-box;
  7208. width:100%;
  7209. }
  7210. #u53698_text {
  7211. border-width:0px;
  7212. word-wrap:break-word;
  7213. text-transform:none;
  7214. }
  7215. #u53699_div {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:60px;
  7221. height:30px;
  7222. background:inherit;
  7223. background-color:rgba(24, 144, 255, 1);
  7224. border-radius:4px;
  7225. filter:drop-shadow(none);
  7226. transition:none;
  7227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7228. font-weight:400;
  7229. font-style:normal;
  7230. font-size:12px;
  7231. color:#FFFFFF;
  7232. }
  7233. #u53699 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:259px;
  7237. top:294px;
  7238. width:60px;
  7239. height:30px;
  7240. display:flex;
  7241. transition:none;
  7242. transform-origin:50% 50%;
  7243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7244. font-weight:400;
  7245. font-style:normal;
  7246. font-size:12px;
  7247. color:#FFFFFF;
  7248. }
  7249. #u53699 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 2px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u53699_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. }
  7261. #u53700_div {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:60px;
  7267. height:30px;
  7268. background:inherit;
  7269. background-color:rgba(255, 255, 255, 1);
  7270. box-sizing:border-box;
  7271. border-width:1px;
  7272. border-style:solid;
  7273. border-color:rgba(170, 170, 170, 1);
  7274. border-radius:4px;
  7275. filter:drop-shadow(none);
  7276. transition:none;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:12px;
  7281. }
  7282. #u53700 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:329px;
  7286. top:294px;
  7287. width:60px;
  7288. height:30px;
  7289. display:flex;
  7290. transition:none;
  7291. transform-origin:50% 50%;
  7292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7293. font-weight:400;
  7294. font-style:normal;
  7295. font-size:12px;
  7296. }
  7297. #u53700 .text {
  7298. position:absolute;
  7299. align-self:center;
  7300. padding:2px 2px 2px 2px;
  7301. box-sizing:border-box;
  7302. width:100%;
  7303. }
  7304. #u53700_text {
  7305. border-width:0px;
  7306. word-wrap:break-word;
  7307. text-transform:none;
  7308. }
  7309. #u53701 {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:0px;
  7315. height:0px;
  7316. }
  7317. #u53702_div {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:375px;
  7323. height:115px;
  7324. background:inherit;
  7325. background-color:rgba(255, 255, 255, 1);
  7326. box-sizing:border-box;
  7327. border-width:1px;
  7328. border-style:solid;
  7329. border-color:rgba(215, 215, 215, 1);
  7330. border-left:0px;
  7331. border-top:0px;
  7332. border-right:0px;
  7333. border-radius:0px;
  7334. border-bottom-right-radius:0px;
  7335. border-bottom-left-radius:0px;
  7336. filter:drop-shadow(none);
  7337. transition:none;
  7338. }
  7339. #u53702 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:935px;
  7343. top:108px;
  7344. width:375px;
  7345. height:115px;
  7346. display:flex;
  7347. transition:none;
  7348. transform-origin:50% 50%;
  7349. }
  7350. #u53702 .text {
  7351. position:absolute;
  7352. align-self:center;
  7353. padding:2px 2px 2px 2px;
  7354. box-sizing:border-box;
  7355. width:100%;
  7356. }
  7357. #u53702_text {
  7358. border-width:0px;
  7359. word-wrap:break-word;
  7360. text-transform:none;
  7361. visibility:hidden;
  7362. }
  7363. #u53703_div {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:0px;
  7367. top:0px;
  7368. width:353px;
  7369. height:40px;
  7370. background:inherit;
  7371. background-color:rgba(255, 255, 255, 0);
  7372. border-top:0px;
  7373. border-right:0px;
  7374. border-bottom:0px;
  7375. border-radius:0px;
  7376. border-top-left-radius:0px;
  7377. border-bottom-left-radius:0px;
  7378. filter:drop-shadow(none);
  7379. transition:none;
  7380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7381. font-weight:500;
  7382. font-style:normal;
  7383. font-size:14px;
  7384. line-height:30px;
  7385. }
  7386. #u53703 {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:948px;
  7390. top:116px;
  7391. width:353px;
  7392. height:40px;
  7393. display:flex;
  7394. transition:none;
  7395. transform-origin:50% 50%;
  7396. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7397. font-weight:500;
  7398. font-style:normal;
  7399. font-size:14px;
  7400. line-height:30px;
  7401. }
  7402. #u53703 .text {
  7403. position:absolute;
  7404. align-self:flex-start;
  7405. padding:5px 10px 5px 0px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u53703_text {
  7410. border-width:0px;
  7411. word-wrap:break-word;
  7412. text-transform:none;
  7413. }
  7414. #u53704_div {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:0px;
  7418. top:0px;
  7419. width:11px;
  7420. height:11px;
  7421. background:inherit;
  7422. background-color:rgba(255, 255, 255, 0);
  7423. box-sizing:border-box;
  7424. border-width:2px;
  7425. border-style:solid;
  7426. border-color:rgba(51, 51, 51, 1);
  7427. border-right:0px;
  7428. border-bottom:0px;
  7429. border-radius:0px;
  7430. border-top-right-radius:0px;
  7431. border-bottom-left-radius:0px;
  7432. filter:drop-shadow(none);
  7433. transition:none;
  7434. }
  7435. #u53704 {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:1280px;
  7439. top:130px;
  7440. width:11px;
  7441. height:11px;
  7442. display:flex;
  7443. -webkit-transform:rotate(225deg);
  7444. -moz-transform:rotate(225deg);
  7445. -ms-transform:rotate(225deg);
  7446. transform:rotate(225deg);
  7447. transition:none;
  7448. transform-origin:50% 50%;
  7449. }
  7450. #u53704 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:2px 2px 2px 2px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u53704_text {
  7458. border-width:0px;
  7459. word-wrap:break-word;
  7460. text-transform:none;
  7461. visibility:hidden;
  7462. }
  7463. #u53705_div {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:353px;
  7469. height:65px;
  7470. background:inherit;
  7471. background-color:rgba(255, 255, 255, 0);
  7472. border-top:0px;
  7473. border-right:0px;
  7474. border-bottom:0px;
  7475. border-radius:0px;
  7476. border-top-left-radius:0px;
  7477. border-bottom-left-radius:0px;
  7478. filter:drop-shadow(none);
  7479. transition:none;
  7480. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7481. font-style:normal;
  7482. }
  7483. #u53705 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:950px;
  7487. top:156px;
  7488. width:353px;
  7489. height:65px;
  7490. display:flex;
  7491. transition:none;
  7492. transform-origin:50% 50%;
  7493. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7494. font-style:normal;
  7495. }
  7496. #u53705 .text {
  7497. position:absolute;
  7498. align-self:flex-start;
  7499. padding:5px 10px 5px 0px;
  7500. box-sizing:border-box;
  7501. width:100%;
  7502. }
  7503. #u53705_text {
  7504. border-width:0px;
  7505. word-wrap:break-word;
  7506. text-transform:none;
  7507. }
  7508. #u53706_div {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:0px;
  7512. top:0px;
  7513. width:35px;
  7514. height:17px;
  7515. background:inherit;
  7516. background-color:rgba(245, 154, 35, 1);
  7517. border-radius:14px;
  7518. filter:drop-shadow(none);
  7519. transition:none;
  7520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7521. font-weight:400;
  7522. font-style:normal;
  7523. font-size:12px;
  7524. color:#FFFFFF;
  7525. }
  7526. #u53706 {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:1098px;
  7530. top:166px;
  7531. width:35px;
  7532. height:17px;
  7533. display:flex;
  7534. transition:none;
  7535. transform-origin:50% 50%;
  7536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7537. font-weight:400;
  7538. font-style:normal;
  7539. font-size:12px;
  7540. color:#FFFFFF;
  7541. }
  7542. #u53706 .text {
  7543. position:absolute;
  7544. align-self:flex-start;
  7545. padding:0px 5px 0px 5px;
  7546. box-sizing:border-box;
  7547. width:100%;
  7548. }
  7549. #u53706_text {
  7550. border-width:0px;
  7551. white-space:nowrap;
  7552. text-transform:none;
  7553. }
  7554. #u53707 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:0px;
  7560. height:0px;
  7561. }
  7562. #u53708_div {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:375px;
  7568. height:115px;
  7569. background:inherit;
  7570. background-color:rgba(255, 255, 255, 1);
  7571. box-sizing:border-box;
  7572. border-width:1px;
  7573. border-style:solid;
  7574. border-color:rgba(215, 215, 215, 1);
  7575. border-left:0px;
  7576. border-top:0px;
  7577. border-right:0px;
  7578. border-radius:0px;
  7579. border-bottom-right-radius:0px;
  7580. border-bottom-left-radius:0px;
  7581. filter:drop-shadow(none);
  7582. transition:none;
  7583. }
  7584. #u53708 {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:482px;
  7588. top:108px;
  7589. width:375px;
  7590. height:115px;
  7591. display:flex;
  7592. transition:none;
  7593. transform-origin:50% 50%;
  7594. }
  7595. #u53708 .text {
  7596. position:absolute;
  7597. align-self:center;
  7598. padding:2px 2px 2px 2px;
  7599. box-sizing:border-box;
  7600. width:100%;
  7601. }
  7602. #u53708_text {
  7603. border-width:0px;
  7604. word-wrap:break-word;
  7605. text-transform:none;
  7606. visibility:hidden;
  7607. }
  7608. #u53709_div {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:353px;
  7614. height:40px;
  7615. background:inherit;
  7616. background-color:rgba(255, 255, 255, 0);
  7617. border-top:0px;
  7618. border-right:0px;
  7619. border-bottom:0px;
  7620. border-radius:0px;
  7621. border-top-left-radius:0px;
  7622. border-bottom-left-radius:0px;
  7623. filter:drop-shadow(none);
  7624. transition:none;
  7625. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7626. font-weight:500;
  7627. font-style:normal;
  7628. font-size:14px;
  7629. line-height:30px;
  7630. }
  7631. #u53709 {
  7632. border-width:0px;
  7633. position:absolute;
  7634. left:495px;
  7635. top:116px;
  7636. width:353px;
  7637. height:40px;
  7638. display:flex;
  7639. transition:none;
  7640. transform-origin:50% 50%;
  7641. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7642. font-weight:500;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. line-height:30px;
  7646. }
  7647. #u53709 .text {
  7648. position:absolute;
  7649. align-self:flex-start;
  7650. padding:5px 10px 5px 0px;
  7651. box-sizing:border-box;
  7652. width:100%;
  7653. }
  7654. #u53709_text {
  7655. border-width:0px;
  7656. word-wrap:break-word;
  7657. text-transform:none;
  7658. }
  7659. #u53710_div {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:0px;
  7663. top:0px;
  7664. width:11px;
  7665. height:11px;
  7666. background:inherit;
  7667. background-color:rgba(255, 255, 255, 0);
  7668. box-sizing:border-box;
  7669. border-width:2px;
  7670. border-style:solid;
  7671. border-color:rgba(51, 51, 51, 1);
  7672. border-right:0px;
  7673. border-bottom:0px;
  7674. border-radius:0px;
  7675. border-top-right-radius:0px;
  7676. border-bottom-left-radius:0px;
  7677. filter:drop-shadow(none);
  7678. transition:none;
  7679. }
  7680. #u53710 {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:827px;
  7684. top:130px;
  7685. width:11px;
  7686. height:11px;
  7687. display:flex;
  7688. -webkit-transform:rotate(225deg);
  7689. -moz-transform:rotate(225deg);
  7690. -ms-transform:rotate(225deg);
  7691. transform:rotate(225deg);
  7692. transition:none;
  7693. transform-origin:50% 50%;
  7694. }
  7695. #u53710 .text {
  7696. position:absolute;
  7697. align-self:center;
  7698. padding:2px 2px 2px 2px;
  7699. box-sizing:border-box;
  7700. width:100%;
  7701. }
  7702. #u53710_text {
  7703. border-width:0px;
  7704. word-wrap:break-word;
  7705. text-transform:none;
  7706. visibility:hidden;
  7707. }
  7708. #u53711_div {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:0px;
  7712. top:0px;
  7713. width:353px;
  7714. height:65px;
  7715. background:inherit;
  7716. background-color:rgba(255, 255, 255, 0);
  7717. border-top:0px;
  7718. border-right:0px;
  7719. border-bottom:0px;
  7720. border-radius:0px;
  7721. border-top-left-radius:0px;
  7722. border-bottom-left-radius:0px;
  7723. filter:drop-shadow(none);
  7724. transition:none;
  7725. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7726. font-style:normal;
  7727. }
  7728. #u53711 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:497px;
  7732. top:156px;
  7733. width:353px;
  7734. height:65px;
  7735. display:flex;
  7736. transition:none;
  7737. transform-origin:50% 50%;
  7738. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7739. font-style:normal;
  7740. }
  7741. #u53711 .text {
  7742. position:absolute;
  7743. align-self:flex-start;
  7744. padding:5px 10px 5px 0px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u53711_text {
  7749. border-width:0px;
  7750. word-wrap:break-word;
  7751. text-transform:none;
  7752. }
  7753. #u53712_div {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:0px;
  7757. top:0px;
  7758. width:35px;
  7759. height:17px;
  7760. background:inherit;
  7761. background-color:rgba(245, 154, 35, 1);
  7762. border-radius:14px;
  7763. filter:drop-shadow(none);
  7764. transition:none;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:12px;
  7769. color:#FFFFFF;
  7770. }
  7771. #u53712 {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:645px;
  7775. top:166px;
  7776. width:35px;
  7777. height:17px;
  7778. display:flex;
  7779. transition:none;
  7780. transform-origin:50% 50%;
  7781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7782. font-weight:400;
  7783. font-style:normal;
  7784. font-size:12px;
  7785. color:#FFFFFF;
  7786. }
  7787. #u53712 .text {
  7788. position:absolute;
  7789. align-self:flex-start;
  7790. padding:0px 5px 0px 5px;
  7791. box-sizing:border-box;
  7792. width:100%;
  7793. }
  7794. #u53712_text {
  7795. border-width:0px;
  7796. white-space:nowrap;
  7797. text-transform:none;
  7798. }
  7799. #u53713 {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:0px;
  7805. height:0px;
  7806. }
  7807. #u53714_div {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:375px;
  7813. height:115px;
  7814. background:inherit;
  7815. background-color:rgba(255, 255, 255, 1);
  7816. box-sizing:border-box;
  7817. border-width:1px;
  7818. border-style:solid;
  7819. border-color:rgba(215, 215, 215, 1);
  7820. border-left:0px;
  7821. border-top:0px;
  7822. border-right:0px;
  7823. border-radius:0px;
  7824. border-bottom-right-radius:0px;
  7825. border-bottom-left-radius:0px;
  7826. filter:drop-shadow(none);
  7827. transition:none;
  7828. }
  7829. #u53714 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:29px;
  7833. top:108px;
  7834. width:375px;
  7835. height:115px;
  7836. display:flex;
  7837. transition:none;
  7838. transform-origin:50% 50%;
  7839. }
  7840. #u53714 .text {
  7841. position:absolute;
  7842. align-self:center;
  7843. padding:2px 2px 2px 2px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u53714_text {
  7848. border-width:0px;
  7849. word-wrap:break-word;
  7850. text-transform:none;
  7851. visibility:hidden;
  7852. }
  7853. #u53715_div {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:0px;
  7857. top:0px;
  7858. width:353px;
  7859. height:40px;
  7860. background:inherit;
  7861. background-color:rgba(255, 255, 255, 0);
  7862. border-top:0px;
  7863. border-right:0px;
  7864. border-bottom:0px;
  7865. border-radius:0px;
  7866. border-top-left-radius:0px;
  7867. border-bottom-left-radius:0px;
  7868. filter:drop-shadow(none);
  7869. transition:none;
  7870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7871. font-weight:500;
  7872. font-style:normal;
  7873. font-size:14px;
  7874. line-height:30px;
  7875. }
  7876. #u53715 {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:42px;
  7880. top:116px;
  7881. width:353px;
  7882. height:40px;
  7883. display:flex;
  7884. transition:none;
  7885. transform-origin:50% 50%;
  7886. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7887. font-weight:500;
  7888. font-style:normal;
  7889. font-size:14px;
  7890. line-height:30px;
  7891. }
  7892. #u53715 .text {
  7893. position:absolute;
  7894. align-self:flex-start;
  7895. padding:5px 10px 5px 0px;
  7896. box-sizing:border-box;
  7897. width:100%;
  7898. }
  7899. #u53715_text {
  7900. border-width:0px;
  7901. word-wrap:break-word;
  7902. text-transform:none;
  7903. }
  7904. #u53716_div {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:11px;
  7910. height:11px;
  7911. background:inherit;
  7912. background-color:rgba(255, 255, 255, 0);
  7913. box-sizing:border-box;
  7914. border-width:2px;
  7915. border-style:solid;
  7916. border-color:rgba(51, 51, 51, 1);
  7917. border-right:0px;
  7918. border-bottom:0px;
  7919. border-radius:0px;
  7920. border-top-right-radius:0px;
  7921. border-bottom-left-radius:0px;
  7922. filter:drop-shadow(none);
  7923. transition:none;
  7924. }
  7925. #u53716 {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:374px;
  7929. top:130px;
  7930. width:11px;
  7931. height:11px;
  7932. display:flex;
  7933. -webkit-transform:rotate(225deg);
  7934. -moz-transform:rotate(225deg);
  7935. -ms-transform:rotate(225deg);
  7936. transform:rotate(225deg);
  7937. transition:none;
  7938. transform-origin:50% 50%;
  7939. }
  7940. #u53716 .text {
  7941. position:absolute;
  7942. align-self:center;
  7943. padding:2px 2px 2px 2px;
  7944. box-sizing:border-box;
  7945. width:100%;
  7946. }
  7947. #u53716_text {
  7948. border-width:0px;
  7949. word-wrap:break-word;
  7950. text-transform:none;
  7951. visibility:hidden;
  7952. }
  7953. #u53717_div {
  7954. border-width:0px;
  7955. position:absolute;
  7956. left:0px;
  7957. top:0px;
  7958. width:353px;
  7959. height:65px;
  7960. background:inherit;
  7961. background-color:rgba(255, 255, 255, 0);
  7962. border-top:0px;
  7963. border-right:0px;
  7964. border-bottom:0px;
  7965. border-radius:0px;
  7966. border-top-left-radius:0px;
  7967. border-bottom-left-radius:0px;
  7968. filter:drop-shadow(none);
  7969. transition:none;
  7970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7971. font-style:normal;
  7972. }
  7973. #u53717 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:44px;
  7977. top:156px;
  7978. width:353px;
  7979. height:65px;
  7980. display:flex;
  7981. transition:none;
  7982. transform-origin:50% 50%;
  7983. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7984. font-style:normal;
  7985. }
  7986. #u53717 .text {
  7987. position:absolute;
  7988. align-self:flex-start;
  7989. padding:5px 10px 5px 0px;
  7990. box-sizing:border-box;
  7991. width:100%;
  7992. }
  7993. #u53717_text {
  7994. border-width:0px;
  7995. word-wrap:break-word;
  7996. text-transform:none;
  7997. }
  7998. #u53718_div {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:35px;
  8004. height:17px;
  8005. background:inherit;
  8006. background-color:rgba(245, 154, 35, 1);
  8007. border-radius:14px;
  8008. filter:drop-shadow(none);
  8009. transition:none;
  8010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:12px;
  8014. color:#FFFFFF;
  8015. }
  8016. #u53718 {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:192px;
  8020. top:166px;
  8021. width:35px;
  8022. height:17px;
  8023. display:flex;
  8024. transition:none;
  8025. transform-origin:50% 50%;
  8026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8027. font-weight:400;
  8028. font-style:normal;
  8029. font-size:12px;
  8030. color:#FFFFFF;
  8031. }
  8032. #u53718 .text {
  8033. position:absolute;
  8034. align-self:flex-start;
  8035. padding:0px 5px 0px 5px;
  8036. box-sizing:border-box;
  8037. width:100%;
  8038. }
  8039. #u53718_text {
  8040. border-width:0px;
  8041. white-space:nowrap;
  8042. text-transform:none;
  8043. }
  8044. #u53719 {
  8045. border-width:0px;
  8046. position:absolute;
  8047. left:0px;
  8048. top:0px;
  8049. width:0px;
  8050. height:0px;
  8051. }
  8052. #u53720_div {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:0px;
  8056. top:0px;
  8057. width:375px;
  8058. height:50px;
  8059. background:inherit;
  8060. background-color:rgba(255, 255, 255, 1);
  8061. border-left:0px;
  8062. border-top:0px;
  8063. border-right:0px;
  8064. border-radius:0px;
  8065. border-bottom-right-radius:0px;
  8066. border-bottom-left-radius:0px;
  8067. filter:drop-shadow(none);
  8068. transition:none;
  8069. }
  8070. #u53720 {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:935px;
  8074. top:446px;
  8075. width:375px;
  8076. height:50px;
  8077. display:flex;
  8078. transition:none;
  8079. transform-origin:50% 50%;
  8080. }
  8081. #u53720 .text {
  8082. position:absolute;
  8083. align-self:center;
  8084. padding:2px 2px 2px 2px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u53720_text {
  8089. border-width:0px;
  8090. word-wrap:break-word;
  8091. text-transform:none;
  8092. visibility:hidden;
  8093. }
  8094. #u53721_div {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:0px;
  8098. top:0px;
  8099. width:43px;
  8100. height:30px;
  8101. background:inherit;
  8102. background-color:rgba(255, 255, 255, 0);
  8103. border-left:0px;
  8104. border-top:0px;
  8105. border-right:0px;
  8106. border-radius:0px;
  8107. border-bottom-right-radius:0px;
  8108. border-bottom-left-radius:0px;
  8109. filter:drop-shadow(none);
  8110. transition:none;
  8111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8112. font-weight:400;
  8113. font-style:normal;
  8114. font-size:14px;
  8115. line-height:30px;
  8116. }
  8117. #u53721 {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:955px;
  8121. top:456px;
  8122. width:43px;
  8123. height:30px;
  8124. display:flex;
  8125. transition:none;
  8126. transform-origin:50% 50%;
  8127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8128. font-weight:400;
  8129. font-style:normal;
  8130. font-size:14px;
  8131. line-height:30px;
  8132. }
  8133. #u53721 .text {
  8134. position:absolute;
  8135. align-self:center;
  8136. padding:0px 0px 0px 0px;
  8137. box-sizing:border-box;
  8138. width:100%;
  8139. }
  8140. #u53721_text {
  8141. border-width:0px;
  8142. white-space:nowrap;
  8143. text-transform:none;
  8144. }
  8145. #u53722 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:0px;
  8149. top:0px;
  8150. width:0px;
  8151. height:0px;
  8152. }
  8153. #u53723_div {
  8154. border-width:0px;
  8155. position:absolute;
  8156. left:0px;
  8157. top:0px;
  8158. width:43px;
  8159. height:30px;
  8160. background:inherit;
  8161. background-color:rgba(255, 255, 255, 0);
  8162. border-left:0px;
  8163. border-top:0px;
  8164. border-right:0px;
  8165. border-radius:0px;
  8166. border-bottom-right-radius:0px;
  8167. border-bottom-left-radius:0px;
  8168. filter:drop-shadow(none);
  8169. transition:none;
  8170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8171. font-weight:400;
  8172. font-style:normal;
  8173. font-size:14px;
  8174. color:#AAAAAA;
  8175. text-align:right;
  8176. line-height:30px;
  8177. }
  8178. #u53723 {
  8179. border-width:0px;
  8180. position:absolute;
  8181. left:1235px;
  8182. top:456px;
  8183. width:43px;
  8184. height:30px;
  8185. display:flex;
  8186. transition:none;
  8187. transform-origin:50% 50%;
  8188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8189. font-weight:400;
  8190. font-style:normal;
  8191. font-size:14px;
  8192. color:#AAAAAA;
  8193. text-align:right;
  8194. line-height:30px;
  8195. }
  8196. #u53723 .text {
  8197. position:absolute;
  8198. align-self:center;
  8199. padding:0px 0px 0px 0px;
  8200. box-sizing:border-box;
  8201. width:100%;
  8202. }
  8203. #u53723_text {
  8204. border-width:0px;
  8205. white-space:nowrap;
  8206. text-transform:none;
  8207. }
  8208. #u53724 {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:0px;
  8212. top:0px;
  8213. width:0px;
  8214. height:0px;
  8215. }
  8216. #u53725_div {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:0px;
  8220. top:0px;
  8221. width:375px;
  8222. height:50px;
  8223. background:inherit;
  8224. background-color:rgba(255, 255, 255, 1);
  8225. border-left:0px;
  8226. border-top:0px;
  8227. border-right:0px;
  8228. border-radius:0px;
  8229. border-bottom-right-radius:0px;
  8230. border-bottom-left-radius:0px;
  8231. filter:drop-shadow(none);
  8232. transition:none;
  8233. }
  8234. #u53725 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:29px;
  8238. top:395px;
  8239. width:375px;
  8240. height:50px;
  8241. display:flex;
  8242. transition:none;
  8243. transform-origin:50% 50%;
  8244. }
  8245. #u53725 .text {
  8246. position:absolute;
  8247. align-self:center;
  8248. padding:2px 2px 2px 2px;
  8249. box-sizing:border-box;
  8250. width:100%;
  8251. }
  8252. #u53725_text {
  8253. border-width:0px;
  8254. word-wrap:break-word;
  8255. text-transform:none;
  8256. visibility:hidden;
  8257. }
  8258. #u53726_div {
  8259. border-width:0px;
  8260. position:absolute;
  8261. left:0px;
  8262. top:0px;
  8263. width:43px;
  8264. height:30px;
  8265. background:inherit;
  8266. background-color:rgba(255, 255, 255, 0);
  8267. border-left:0px;
  8268. border-top:0px;
  8269. border-right:0px;
  8270. border-radius:0px;
  8271. border-bottom-right-radius:0px;
  8272. border-bottom-left-radius:0px;
  8273. filter:drop-shadow(none);
  8274. transition:none;
  8275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8276. font-weight:400;
  8277. font-style:normal;
  8278. font-size:14px;
  8279. line-height:30px;
  8280. }
  8281. #u53726 {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:49px;
  8285. top:405px;
  8286. width:43px;
  8287. height:30px;
  8288. display:flex;
  8289. transition:none;
  8290. transform-origin:50% 50%;
  8291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8292. font-weight:400;
  8293. font-style:normal;
  8294. font-size:14px;
  8295. line-height:30px;
  8296. }
  8297. #u53726 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:0px 0px 0px 0px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u53726_text {
  8305. border-width:0px;
  8306. white-space:nowrap;
  8307. text-transform:none;
  8308. }
  8309. #u53727 {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:0px;
  8315. height:0px;
  8316. }
  8317. #u53728_div {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:0px;
  8321. top:0px;
  8322. width:43px;
  8323. height:30px;
  8324. background:inherit;
  8325. background-color:rgba(255, 255, 255, 0);
  8326. border-left:0px;
  8327. border-top:0px;
  8328. border-right:0px;
  8329. border-radius:0px;
  8330. border-bottom-right-radius:0px;
  8331. border-bottom-left-radius:0px;
  8332. filter:drop-shadow(none);
  8333. transition:none;
  8334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8335. font-weight:400;
  8336. font-style:normal;
  8337. font-size:14px;
  8338. color:#AAAAAA;
  8339. text-align:right;
  8340. line-height:30px;
  8341. }
  8342. #u53728 {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:329px;
  8346. top:405px;
  8347. width:43px;
  8348. height:30px;
  8349. display:flex;
  8350. transition:none;
  8351. transform-origin:50% 50%;
  8352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8353. font-weight:400;
  8354. font-style:normal;
  8355. font-size:14px;
  8356. color:#AAAAAA;
  8357. text-align:right;
  8358. line-height:30px;
  8359. }
  8360. #u53728 .text {
  8361. position:absolute;
  8362. align-self:center;
  8363. padding:0px 0px 0px 0px;
  8364. box-sizing:border-box;
  8365. width:100%;
  8366. }
  8367. #u53728_text {
  8368. border-width:0px;
  8369. white-space:nowrap;
  8370. text-transform:none;
  8371. }
  8372. #u53729_div {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:0px;
  8376. top:0px;
  8377. width:375px;
  8378. height:100px;
  8379. background:inherit;
  8380. background-color:rgba(255, 255, 255, 1);
  8381. border-left:0px;
  8382. border-top:0px;
  8383. border-right:0px;
  8384. border-radius:0px;
  8385. border-bottom-right-radius:0px;
  8386. border-bottom-left-radius:0px;
  8387. filter:drop-shadow(none);
  8388. transition:none;
  8389. }
  8390. #u53729 {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:482px;
  8394. top:638px;
  8395. width:375px;
  8396. height:100px;
  8397. display:flex;
  8398. transition:none;
  8399. transform-origin:50% 50%;
  8400. }
  8401. #u53729 .text {
  8402. position:absolute;
  8403. align-self:center;
  8404. padding:2px 2px 2px 2px;
  8405. box-sizing:border-box;
  8406. width:100%;
  8407. }
  8408. #u53729_text {
  8409. border-width:0px;
  8410. word-wrap:break-word;
  8411. text-transform:none;
  8412. visibility:hidden;
  8413. }
  8414. #u53730_div {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:0px;
  8418. top:0px;
  8419. width:57px;
  8420. height:30px;
  8421. background:inherit;
  8422. background-color:rgba(255, 255, 255, 0);
  8423. border-left:0px;
  8424. border-top:0px;
  8425. border-right:0px;
  8426. border-radius:0px;
  8427. border-bottom-right-radius:0px;
  8428. border-bottom-left-radius:0px;
  8429. filter:drop-shadow(none);
  8430. transition:none;
  8431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8432. font-weight:400;
  8433. font-style:normal;
  8434. font-size:14px;
  8435. line-height:30px;
  8436. }
  8437. #u53730 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:502px;
  8441. top:648px;
  8442. width:57px;
  8443. height:30px;
  8444. display:flex;
  8445. transition:none;
  8446. transform-origin:50% 50%;
  8447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:14px;
  8451. line-height:30px;
  8452. }
  8453. #u53730 .text {
  8454. position:absolute;
  8455. align-self:center;
  8456. padding:0px 0px 0px 0px;
  8457. box-sizing:border-box;
  8458. width:100%;
  8459. }
  8460. #u53730_text {
  8461. border-width:0px;
  8462. white-space:nowrap;
  8463. text-transform:none;
  8464. }
  8465. #u53731_div {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:0px;
  8469. top:0px;
  8470. width:60px;
  8471. height:30px;
  8472. background:inherit;
  8473. background-color:rgba(24, 144, 255, 1);
  8474. border-radius:4px;
  8475. filter:drop-shadow(none);
  8476. transition:none;
  8477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. font-size:12px;
  8481. color:#FFFFFF;
  8482. }
  8483. #u53731 {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:582px;
  8487. top:689px;
  8488. width:60px;
  8489. height:30px;
  8490. display:flex;
  8491. transition:none;
  8492. transform-origin:50% 50%;
  8493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8494. font-weight:400;
  8495. font-style:normal;
  8496. font-size:12px;
  8497. color:#FFFFFF;
  8498. }
  8499. #u53731 .text {
  8500. position:absolute;
  8501. align-self:center;
  8502. padding:2px 2px 2px 2px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u53731_text {
  8507. border-width:0px;
  8508. word-wrap:break-word;
  8509. text-transform:none;
  8510. }
  8511. #u53732_div {
  8512. border-width:0px;
  8513. position:absolute;
  8514. left:0px;
  8515. top:0px;
  8516. width:60px;
  8517. height:30px;
  8518. background:inherit;
  8519. background-color:rgba(255, 255, 255, 1);
  8520. box-sizing:border-box;
  8521. border-width:1px;
  8522. border-style:solid;
  8523. border-color:rgba(170, 170, 170, 1);
  8524. border-radius:4px;
  8525. filter:drop-shadow(none);
  8526. transition:none;
  8527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8528. font-weight:400;
  8529. font-style:normal;
  8530. font-size:12px;
  8531. }
  8532. #u53732 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:502px;
  8536. top:689px;
  8537. width:60px;
  8538. height:30px;
  8539. display:flex;
  8540. transition:none;
  8541. transform-origin:50% 50%;
  8542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8543. font-weight:400;
  8544. font-style:normal;
  8545. font-size:12px;
  8546. }
  8547. #u53732 .text {
  8548. position:absolute;
  8549. align-self:center;
  8550. padding:2px 2px 2px 2px;
  8551. box-sizing:border-box;
  8552. width:100%;
  8553. }
  8554. #u53732_text {
  8555. border-width:0px;
  8556. word-wrap:break-word;
  8557. text-transform:none;
  8558. }
  8559. #u53733_div {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:60px;
  8565. height:30px;
  8566. background:inherit;
  8567. background-color:rgba(255, 255, 255, 1);
  8568. box-sizing:border-box;
  8569. border-width:1px;
  8570. border-style:solid;
  8571. border-color:rgba(170, 170, 170, 1);
  8572. border-radius:4px;
  8573. filter:drop-shadow(none);
  8574. transition:none;
  8575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8576. font-weight:400;
  8577. font-style:normal;
  8578. font-size:12px;
  8579. }
  8580. #u53733 {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:662px;
  8584. top:689px;
  8585. width:60px;
  8586. height:30px;
  8587. display:flex;
  8588. transition:none;
  8589. transform-origin:50% 50%;
  8590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8591. font-weight:400;
  8592. font-style:normal;
  8593. font-size:12px;
  8594. }
  8595. #u53733 .text {
  8596. position:absolute;
  8597. align-self:center;
  8598. padding:2px 2px 2px 2px;
  8599. box-sizing:border-box;
  8600. width:100%;
  8601. }
  8602. #u53733_text {
  8603. border-width:0px;
  8604. word-wrap:break-word;
  8605. text-transform:none;
  8606. }
  8607. #u53734_div {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:0px;
  8611. top:0px;
  8612. width:375px;
  8613. height:100px;
  8614. background:inherit;
  8615. background-color:rgba(255, 255, 255, 1);
  8616. border-left:0px;
  8617. border-top:0px;
  8618. border-right:0px;
  8619. border-radius:0px;
  8620. border-bottom-right-radius:0px;
  8621. border-bottom-left-radius:0px;
  8622. filter:drop-shadow(none);
  8623. transition:none;
  8624. }
  8625. #u53734 {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:935px;
  8629. top:638px;
  8630. width:375px;
  8631. height:100px;
  8632. display:flex;
  8633. transition:none;
  8634. transform-origin:50% 50%;
  8635. }
  8636. #u53734 .text {
  8637. position:absolute;
  8638. align-self:center;
  8639. padding:2px 2px 2px 2px;
  8640. box-sizing:border-box;
  8641. width:100%;
  8642. }
  8643. #u53734_text {
  8644. border-width:0px;
  8645. word-wrap:break-word;
  8646. text-transform:none;
  8647. visibility:hidden;
  8648. }
  8649. #u53735_div {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:0px;
  8653. top:0px;
  8654. width:57px;
  8655. height:30px;
  8656. background:inherit;
  8657. background-color:rgba(255, 255, 255, 0);
  8658. border-left:0px;
  8659. border-top:0px;
  8660. border-right:0px;
  8661. border-radius:0px;
  8662. border-bottom-right-radius:0px;
  8663. border-bottom-left-radius:0px;
  8664. filter:drop-shadow(none);
  8665. transition:none;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. line-height:30px;
  8671. }
  8672. #u53735 {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:955px;
  8676. top:648px;
  8677. width:57px;
  8678. height:30px;
  8679. display:flex;
  8680. transition:none;
  8681. transform-origin:50% 50%;
  8682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8683. font-weight:400;
  8684. font-style:normal;
  8685. font-size:14px;
  8686. line-height:30px;
  8687. }
  8688. #u53735 .text {
  8689. position:absolute;
  8690. align-self:center;
  8691. padding:0px 0px 0px 0px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u53735_text {
  8696. border-width:0px;
  8697. white-space:nowrap;
  8698. text-transform:none;
  8699. }
  8700. #u53736_div {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:0px;
  8704. top:0px;
  8705. width:60px;
  8706. height:30px;
  8707. background:inherit;
  8708. background-color:rgba(24, 144, 255, 1);
  8709. border-radius:4px;
  8710. filter:drop-shadow(none);
  8711. transition:none;
  8712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8713. font-weight:400;
  8714. font-style:normal;
  8715. font-size:12px;
  8716. color:#FFFFFF;
  8717. }
  8718. #u53736 {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:1035px;
  8722. top:689px;
  8723. width:60px;
  8724. height:30px;
  8725. display:flex;
  8726. transition:none;
  8727. transform-origin:50% 50%;
  8728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:12px;
  8732. color:#FFFFFF;
  8733. }
  8734. #u53736 .text {
  8735. position:absolute;
  8736. align-self:center;
  8737. padding:2px 2px 2px 2px;
  8738. box-sizing:border-box;
  8739. width:100%;
  8740. }
  8741. #u53736_text {
  8742. border-width:0px;
  8743. word-wrap:break-word;
  8744. text-transform:none;
  8745. }
  8746. #u53737_div {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:0px;
  8750. top:0px;
  8751. width:60px;
  8752. height:30px;
  8753. background:inherit;
  8754. background-color:rgba(255, 255, 255, 1);
  8755. box-sizing:border-box;
  8756. border-width:1px;
  8757. border-style:solid;
  8758. border-color:rgba(170, 170, 170, 1);
  8759. border-radius:4px;
  8760. filter:drop-shadow(none);
  8761. transition:none;
  8762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8763. font-weight:400;
  8764. font-style:normal;
  8765. font-size:12px;
  8766. }
  8767. #u53737 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:955px;
  8771. top:689px;
  8772. width:60px;
  8773. height:30px;
  8774. display:flex;
  8775. transition:none;
  8776. transform-origin:50% 50%;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:12px;
  8781. }
  8782. #u53737 .text {
  8783. position:absolute;
  8784. align-self:center;
  8785. padding:2px 2px 2px 2px;
  8786. box-sizing:border-box;
  8787. width:100%;
  8788. }
  8789. #u53737_text {
  8790. border-width:0px;
  8791. word-wrap:break-word;
  8792. text-transform:none;
  8793. }
  8794. #u53738_div {
  8795. border-width:0px;
  8796. position:absolute;
  8797. left:0px;
  8798. top:0px;
  8799. width:60px;
  8800. height:30px;
  8801. background:inherit;
  8802. background-color:rgba(255, 255, 255, 1);
  8803. box-sizing:border-box;
  8804. border-width:1px;
  8805. border-style:solid;
  8806. border-color:rgba(170, 170, 170, 1);
  8807. border-radius:4px;
  8808. filter:drop-shadow(none);
  8809. transition:none;
  8810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8811. font-weight:400;
  8812. font-style:normal;
  8813. font-size:12px;
  8814. }
  8815. #u53738 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:1115px;
  8819. top:689px;
  8820. width:60px;
  8821. height:30px;
  8822. display:flex;
  8823. transition:none;
  8824. transform-origin:50% 50%;
  8825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8826. font-weight:400;
  8827. font-style:normal;
  8828. font-size:12px;
  8829. }
  8830. #u53738 .text {
  8831. position:absolute;
  8832. align-self:center;
  8833. padding:2px 2px 2px 2px;
  8834. box-sizing:border-box;
  8835. width:100%;
  8836. }
  8837. #u53738_text {
  8838. border-width:0px;
  8839. word-wrap:break-word;
  8840. text-transform:none;
  8841. }