styles.css 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2250px;
  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. #u48337 {
  20. border-width:0px;
  21. position:absolute;
  22. left:1364px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u48338 {
  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. #u48338 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u48338_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u48338_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u48339_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. #u48339 {
  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. #u48339 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u48339_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u48340 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u48341_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. #u48341 {
  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. #u48341 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u48341_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u48342 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u48343 {
  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. #u48343 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u48343_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u48343_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u48344 {
  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. #u48344 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u48344_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u48344_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u48345 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u48346 {
  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. #u48346 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u48346_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u48346_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u48347 {
  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. #u48347 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u48347_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u48347_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u48348 {
  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. #u48348 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u48348_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u48348_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u48349 {
  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. #u48349 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u48349_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u48349_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u48350 {
  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. #u48350 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u48350_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u48350_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u48351_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. #u48351 {
  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. #u48351 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u48351_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u48352 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u48353 {
  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. #u48353 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u48353_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u48353_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u48354_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. #u48354 {
  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. #u48354 .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. #u48354_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u48355 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u48356 {
  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. #u48356 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u48356_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u48356_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u48357_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. #u48357 {
  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. #u48357 .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. #u48357_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u48358_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. #u48358 {
  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. #u48358 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u48358_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u48359 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u48360 {
  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. #u48360 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u48360_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u48360_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u48361_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. #u48361 {
  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. #u48361 .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. #u48361_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u48362 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u48363 {
  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. #u48363 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u48363_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u48363_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u48364_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. #u48364 {
  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. #u48364 .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. #u48364_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u48365_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:735px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 1);
  811. border-top:0px;
  812. border-radius:25px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u48365 {
  819. border-width:0px;
  820. position:absolute;
  821. left:1393px;
  822. top:105px;
  823. width:375px;
  824. height:735px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u48365 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u48365_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u48366_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:57px;
  848. height:30px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 0);
  851. border-left:0px;
  852. border-top:0px;
  853. border-right:0px;
  854. border-radius:0px;
  855. border-bottom-right-radius:0px;
  856. border-bottom-left-radius:0px;
  857. filter:drop-shadow(none);
  858. transition:none;
  859. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  860. font-weight:500;
  861. font-style:normal;
  862. font-size:14px;
  863. line-height:30px;
  864. }
  865. #u48366 {
  866. border-width:0px;
  867. position:absolute;
  868. left:1545px;
  869. top:73px;
  870. width:57px;
  871. height:30px;
  872. display:flex;
  873. transition:none;
  874. transform-origin:50% 50%;
  875. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  876. font-weight:500;
  877. font-style:normal;
  878. font-size:14px;
  879. line-height:30px;
  880. }
  881. #u48366 .text {
  882. position:absolute;
  883. align-self:flex-start;
  884. padding:0px 0px 0px 0px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u48366_text {
  889. border-width:0px;
  890. white-space:nowrap;
  891. text-transform:none;
  892. }
  893. #u48367 {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:0px;
  899. height:0px;
  900. }
  901. #u48368 {
  902. border-width:0px;
  903. position:absolute;
  904. left:1406px;
  905. top:79px;
  906. width:11px;
  907. height:18px;
  908. display:flex;
  909. transition:none;
  910. }
  911. #u48368 .text {
  912. position:absolute;
  913. align-self:center;
  914. padding:2px 2px 2px 2px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u48368_img {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:11px;
  924. height:18px;
  925. }
  926. #u48368_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u48369_div {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:375px;
  938. height:92px;
  939. background:inherit;
  940. background-color:rgba(255, 255, 255, 1);
  941. border-left:0px;
  942. border-top:0px;
  943. border-right:0px;
  944. border-radius:0px;
  945. border-bottom-right-radius:0px;
  946. border-bottom-left-radius:0px;
  947. filter:drop-shadow(none);
  948. transition:none;
  949. }
  950. #u48369 {
  951. border-width:0px;
  952. position:absolute;
  953. left:1393px;
  954. top:115px;
  955. width:375px;
  956. height:92px;
  957. display:flex;
  958. transition:none;
  959. transform-origin:50% 50%;
  960. }
  961. #u48369 .text {
  962. position:absolute;
  963. align-self:center;
  964. padding:2px 2px 2px 2px;
  965. box-sizing:border-box;
  966. width:100%;
  967. }
  968. #u48369_text {
  969. border-width:0px;
  970. word-wrap:break-word;
  971. text-transform:none;
  972. visibility:hidden;
  973. }
  974. #u48370 {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:0px;
  980. height:0px;
  981. }
  982. #u48371_div {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:375px;
  988. height:80px;
  989. background:inherit;
  990. background-color:rgba(255, 255, 255, 1);
  991. border-left:0px;
  992. border-top:0px;
  993. border-right:0px;
  994. border-radius:0px;
  995. border-bottom-right-radius:0px;
  996. border-bottom-left-radius:0px;
  997. filter:drop-shadow(none);
  998. transition:none;
  999. }
  1000. #u48371 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:1393px;
  1004. top:208px;
  1005. width:375px;
  1006. height:80px;
  1007. display:flex;
  1008. transition:none;
  1009. transform-origin:50% 50%;
  1010. }
  1011. #u48371 .text {
  1012. position:absolute;
  1013. align-self:center;
  1014. padding:2px 2px 2px 2px;
  1015. box-sizing:border-box;
  1016. width:100%;
  1017. }
  1018. #u48371_text {
  1019. border-width:0px;
  1020. word-wrap:break-word;
  1021. text-transform:none;
  1022. visibility:hidden;
  1023. }
  1024. #u48372_div {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:0px;
  1028. top:0px;
  1029. width:177px;
  1030. height:30px;
  1031. background:inherit;
  1032. background-color:rgba(255, 255, 255, 0);
  1033. border-left:0px;
  1034. border-top:0px;
  1035. border-right:0px;
  1036. border-radius:0px;
  1037. border-bottom-right-radius:0px;
  1038. border-bottom-left-radius:0px;
  1039. filter:drop-shadow(none);
  1040. transition:none;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:16px;
  1045. line-height:30px;
  1046. }
  1047. #u48372 {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:1470px;
  1051. top:247px;
  1052. width:177px;
  1053. height:30px;
  1054. display:flex;
  1055. transition:none;
  1056. transform-origin:50% 50%;
  1057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1058. font-weight:400;
  1059. font-style:normal;
  1060. font-size:16px;
  1061. line-height:30px;
  1062. }
  1063. #u48372 .text {
  1064. position:absolute;
  1065. align-self:flex-start;
  1066. padding:0px 0px 0px 0px;
  1067. box-sizing:border-box;
  1068. width:100%;
  1069. }
  1070. #u48372_text {
  1071. border-width:0px;
  1072. white-space:nowrap;
  1073. text-transform:none;
  1074. }
  1075. #u48373_div {
  1076. border-width:0px;
  1077. position:absolute;
  1078. left:0px;
  1079. top:0px;
  1080. width:49px;
  1081. height:25px;
  1082. background:inherit;
  1083. background-color:rgba(255, 255, 255, 0);
  1084. border-left:0px;
  1085. border-top:0px;
  1086. border-right:0px;
  1087. border-radius:0px;
  1088. border-bottom-right-radius:0px;
  1089. border-bottom-left-radius:0px;
  1090. filter:drop-shadow(none);
  1091. transition:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:12px;
  1096. color:#7F7F7F;
  1097. line-height:25px;
  1098. }
  1099. #u48373 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:1470px;
  1103. top:222px;
  1104. width:49px;
  1105. height:25px;
  1106. display:flex;
  1107. transition:none;
  1108. transform-origin:50% 50%;
  1109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1110. font-weight:400;
  1111. font-style:normal;
  1112. font-size:12px;
  1113. color:#7F7F7F;
  1114. line-height:25px;
  1115. }
  1116. #u48373 .text {
  1117. position:absolute;
  1118. align-self:flex-start;
  1119. padding:0px 0px 0px 0px;
  1120. box-sizing:border-box;
  1121. width:100%;
  1122. }
  1123. #u48373_text {
  1124. border-width:0px;
  1125. white-space:nowrap;
  1126. text-transform:none;
  1127. }
  1128. #u48374 {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:0px;
  1134. height:0px;
  1135. }
  1136. #u48375_div {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:375px;
  1142. height:80px;
  1143. background:inherit;
  1144. background-color:rgba(255, 255, 255, 1);
  1145. border-left:0px;
  1146. border-top:0px;
  1147. border-right:0px;
  1148. border-radius:0px;
  1149. border-bottom-right-radius:0px;
  1150. border-bottom-left-radius:0px;
  1151. filter:drop-shadow(none);
  1152. transition:none;
  1153. }
  1154. #u48375 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1393px;
  1158. top:289px;
  1159. width:375px;
  1160. height:80px;
  1161. display:flex;
  1162. transition:none;
  1163. transform-origin:50% 50%;
  1164. }
  1165. #u48375 .text {
  1166. position:absolute;
  1167. align-self:center;
  1168. padding:2px 2px 2px 2px;
  1169. box-sizing:border-box;
  1170. width:100%;
  1171. }
  1172. #u48375_text {
  1173. border-width:0px;
  1174. word-wrap:break-word;
  1175. text-transform:none;
  1176. visibility:hidden;
  1177. }
  1178. #u48376_div {
  1179. border-width:0px;
  1180. position:absolute;
  1181. left:0px;
  1182. top:0px;
  1183. width:129px;
  1184. height:30px;
  1185. background:inherit;
  1186. background-color:rgba(255, 255, 255, 0);
  1187. border-left:0px;
  1188. border-top:0px;
  1189. border-right:0px;
  1190. border-radius:0px;
  1191. border-bottom-right-radius:0px;
  1192. border-bottom-left-radius:0px;
  1193. filter:drop-shadow(none);
  1194. transition:none;
  1195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1196. font-weight:400;
  1197. font-style:normal;
  1198. font-size:16px;
  1199. line-height:30px;
  1200. }
  1201. #u48376 {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:1470px;
  1205. top:328px;
  1206. width:129px;
  1207. height:30px;
  1208. display:flex;
  1209. transition:none;
  1210. transform-origin:50% 50%;
  1211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:16px;
  1215. line-height:30px;
  1216. }
  1217. #u48376 .text {
  1218. position:absolute;
  1219. align-self:flex-start;
  1220. padding:0px 0px 0px 0px;
  1221. box-sizing:border-box;
  1222. width:100%;
  1223. }
  1224. #u48376_text {
  1225. border-width:0px;
  1226. white-space:nowrap;
  1227. text-transform:none;
  1228. }
  1229. #u48377_div {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:73px;
  1235. height:25px;
  1236. background:inherit;
  1237. background-color:rgba(255, 255, 255, 0);
  1238. border-left:0px;
  1239. border-top:0px;
  1240. border-right:0px;
  1241. border-radius:0px;
  1242. border-bottom-right-radius:0px;
  1243. border-bottom-left-radius:0px;
  1244. filter:drop-shadow(none);
  1245. transition:none;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:12px;
  1250. color:#7F7F7F;
  1251. line-height:25px;
  1252. }
  1253. #u48377 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:1470px;
  1257. top:303px;
  1258. width:73px;
  1259. height:25px;
  1260. display:flex;
  1261. transition:none;
  1262. transform-origin:50% 50%;
  1263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1264. font-weight:400;
  1265. font-style:normal;
  1266. font-size:12px;
  1267. color:#7F7F7F;
  1268. line-height:25px;
  1269. }
  1270. #u48377 .text {
  1271. position:absolute;
  1272. align-self:flex-start;
  1273. padding:0px 0px 0px 0px;
  1274. box-sizing:border-box;
  1275. width:100%;
  1276. }
  1277. #u48377_text {
  1278. border-width:0px;
  1279. white-space:nowrap;
  1280. text-transform:none;
  1281. }
  1282. #u48378_div {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:375px;
  1288. height:90px;
  1289. background:inherit;
  1290. background-color:rgba(255, 255, 255, 1);
  1291. border-left:0px;
  1292. border-top:0px;
  1293. border-right:0px;
  1294. border-radius:0px;
  1295. border-bottom-right-radius:0px;
  1296. border-bottom-left-radius:0px;
  1297. filter:drop-shadow(none);
  1298. transition:none;
  1299. }
  1300. #u48378 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:1393px;
  1304. top:532px;
  1305. width:375px;
  1306. height:90px;
  1307. display:flex;
  1308. transition:none;
  1309. transform-origin:50% 50%;
  1310. }
  1311. #u48378 .text {
  1312. position:absolute;
  1313. align-self:center;
  1314. padding:2px 2px 2px 2px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u48378_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. visibility:hidden;
  1323. }
  1324. #u48379_div {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:129px;
  1330. height:60px;
  1331. background:inherit;
  1332. background-color:rgba(255, 255, 255, 0);
  1333. border-left:0px;
  1334. border-top:0px;
  1335. border-right:0px;
  1336. border-radius:0px;
  1337. border-bottom-right-radius:0px;
  1338. border-bottom-left-radius:0px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. font-size:16px;
  1345. line-height:30px;
  1346. }
  1347. #u48379 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1470px;
  1351. top:547px;
  1352. width:129px;
  1353. height:60px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:16px;
  1361. line-height:30px;
  1362. }
  1363. #u48379 .text {
  1364. position:absolute;
  1365. align-self:flex-start;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u48379_text {
  1371. border-width:0px;
  1372. white-space:nowrap;
  1373. text-transform:none;
  1374. }
  1375. #u48380_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:68px;
  1381. height:30px;
  1382. background:inherit;
  1383. background-color:rgba(242, 242, 242, 1);
  1384. border-radius:40px;
  1385. filter:drop-shadow(none);
  1386. transition:none;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. font-size:12px;
  1391. color:#7F7F7F;
  1392. }
  1393. #u48380 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:1678px;
  1397. top:136px;
  1398. width:68px;
  1399. height:30px;
  1400. display:flex;
  1401. transition:none;
  1402. transform-origin:50% 50%;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:12px;
  1407. color:#7F7F7F;
  1408. }
  1409. #u48380 .text {
  1410. position:absolute;
  1411. align-self:center;
  1412. padding:2px 2px 2px 2px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u48380_text {
  1417. border-width:0px;
  1418. word-wrap:break-word;
  1419. text-transform:none;
  1420. }
  1421. #u48381 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:433px;
  1427. height:865px;
  1428. }
  1429. #u48382 {
  1430. border-width:0px;
  1431. position:absolute;
  1432. left:0px;
  1433. top:0px;
  1434. width:433px;
  1435. height:865px;
  1436. display:flex;
  1437. transition:none;
  1438. }
  1439. #u48382 .text {
  1440. position:absolute;
  1441. align-self:center;
  1442. padding:2px 2px 2px 2px;
  1443. box-sizing:border-box;
  1444. width:100%;
  1445. }
  1446. #u48382_img {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:433px;
  1452. height:865px;
  1453. }
  1454. #u48382_text {
  1455. border-width:0px;
  1456. word-wrap:break-word;
  1457. text-transform:none;
  1458. visibility:hidden;
  1459. }
  1460. #u48383_div {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:0px;
  1464. top:0px;
  1465. width:375px;
  1466. height:40px;
  1467. background:inherit;
  1468. background-color:rgba(255, 255, 255, 1);
  1469. box-sizing:border-box;
  1470. border-width:1px;
  1471. border-style:solid;
  1472. border-color:rgba(215, 215, 215, 1);
  1473. border-left:0px;
  1474. border-top:0px;
  1475. border-right:0px;
  1476. border-radius:0px;
  1477. border-bottom-right-radius:0px;
  1478. border-bottom-left-radius:0px;
  1479. filter:drop-shadow(none);
  1480. transition:none;
  1481. }
  1482. #u48383 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:29px;
  1486. top:67px;
  1487. width:375px;
  1488. height:40px;
  1489. display:flex;
  1490. transition:none;
  1491. transform-origin:50% 50%;
  1492. }
  1493. #u48383 .text {
  1494. position:absolute;
  1495. align-self:center;
  1496. padding:2px 2px 2px 2px;
  1497. box-sizing:border-box;
  1498. width:100%;
  1499. }
  1500. #u48383_text {
  1501. border-width:0px;
  1502. word-wrap:break-word;
  1503. text-transform:none;
  1504. visibility:hidden;
  1505. }
  1506. #u48384 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:0px;
  1512. height:0px;
  1513. }
  1514. #u48385_div {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:0px;
  1518. top:0px;
  1519. width:88px;
  1520. height:32px;
  1521. background:inherit;
  1522. background-color:rgba(255, 255, 255, 1);
  1523. box-sizing:border-box;
  1524. border-width:1px;
  1525. border-style:solid;
  1526. border-color:rgba(242, 242, 242, 1);
  1527. border-radius:33px;
  1528. filter:drop-shadow(none);
  1529. transition:none;
  1530. }
  1531. #u48385 {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:309px;
  1535. top:71px;
  1536. width:88px;
  1537. height:32px;
  1538. display:flex;
  1539. transition:none;
  1540. transform-origin:50% 50%;
  1541. }
  1542. #u48385 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u48385_text {
  1550. border-width:0px;
  1551. word-wrap:break-word;
  1552. text-transform:none;
  1553. visibility:hidden;
  1554. }
  1555. #u48386 {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:0px;
  1561. height:0px;
  1562. }
  1563. #u48387 {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:372px;
  1567. top:78px;
  1568. width:18px;
  1569. height:18px;
  1570. display:flex;
  1571. transition:none;
  1572. }
  1573. #u48387 .text {
  1574. position:absolute;
  1575. align-self:center;
  1576. padding:2px 2px 2px 2px;
  1577. box-sizing:border-box;
  1578. width:100%;
  1579. }
  1580. #u48387_img {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:18px;
  1586. height:18px;
  1587. }
  1588. #u48387_text {
  1589. border-width:0px;
  1590. word-wrap:break-word;
  1591. text-transform:none;
  1592. visibility:hidden;
  1593. }
  1594. #u48388 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:378px;
  1598. top:84px;
  1599. width:6px;
  1600. height:6px;
  1601. display:flex;
  1602. transition:none;
  1603. }
  1604. #u48388 .text {
  1605. position:absolute;
  1606. align-self:center;
  1607. padding:2px 2px 2px 2px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u48388_img {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:0px;
  1615. top:0px;
  1616. width:6px;
  1617. height:6px;
  1618. }
  1619. #u48388_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. visibility:hidden;
  1624. }
  1625. #u48389 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:0px;
  1631. height:0px;
  1632. }
  1633. #u48390 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:323px;
  1637. top:85px;
  1638. width:5px;
  1639. height:5px;
  1640. display:flex;
  1641. transition:none;
  1642. }
  1643. #u48390 .text {
  1644. position:absolute;
  1645. align-self:center;
  1646. padding:2px 2px 2px 2px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u48390_img {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:5px;
  1656. height:5px;
  1657. }
  1658. #u48390_text {
  1659. border-width:0px;
  1660. word-wrap:break-word;
  1661. text-transform:none;
  1662. visibility:hidden;
  1663. }
  1664. #u48391 {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:339px;
  1668. top:85px;
  1669. width:5px;
  1670. height:5px;
  1671. display:flex;
  1672. transition:none;
  1673. }
  1674. #u48391 .text {
  1675. position:absolute;
  1676. align-self:center;
  1677. padding:2px 2px 2px 2px;
  1678. box-sizing:border-box;
  1679. width:100%;
  1680. }
  1681. #u48391_img {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:5px;
  1687. height:5px;
  1688. }
  1689. #u48391_text {
  1690. border-width:0px;
  1691. word-wrap:break-word;
  1692. text-transform:none;
  1693. visibility:hidden;
  1694. }
  1695. #u48392 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:330px;
  1699. top:84px;
  1700. width:7px;
  1701. height:7px;
  1702. display:flex;
  1703. transition:none;
  1704. }
  1705. #u48392 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 2px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u48392_img {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:7px;
  1718. height:7px;
  1719. }
  1720. #u48392_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u48393 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:347px;
  1730. top:87px;
  1731. width:18px;
  1732. height:1px;
  1733. display:flex;
  1734. -webkit-transform:rotate(90deg);
  1735. -moz-transform:rotate(90deg);
  1736. -ms-transform:rotate(90deg);
  1737. transform:rotate(90deg);
  1738. transition:none;
  1739. }
  1740. #u48393 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u48393_img {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:19px;
  1753. height:2px;
  1754. }
  1755. #u48393_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u48394 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:29px;
  1765. top:24px;
  1766. width:375px;
  1767. height:44px;
  1768. display:flex;
  1769. transition:none;
  1770. }
  1771. #u48394 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:2px 2px 2px 2px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u48394_img {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:375px;
  1784. height:44px;
  1785. }
  1786. #u48394_text {
  1787. border-width:0px;
  1788. word-wrap:break-word;
  1789. text-transform:none;
  1790. visibility:hidden;
  1791. }
  1792. #u48395_div {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:375px;
  1798. height:50px;
  1799. background:inherit;
  1800. background-color:rgba(255, 255, 255, 1);
  1801. box-sizing:border-box;
  1802. border-width:1px;
  1803. border-style:solid;
  1804. border-color:rgba(242, 242, 242, 1);
  1805. border-radius:26px;
  1806. border-top-left-radius:0px;
  1807. border-top-right-radius:0px;
  1808. filter:drop-shadow(none);
  1809. transition:none;
  1810. }
  1811. #u48395 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:29px;
  1815. top:788px;
  1816. width:375px;
  1817. height:50px;
  1818. display:flex;
  1819. transition:none;
  1820. transform-origin:50% 50%;
  1821. }
  1822. #u48395 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 2px 2px 2px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u48395_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. visibility:hidden;
  1834. }
  1835. #u48396 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:0px;
  1841. height:0px;
  1842. }
  1843. #u48397 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:69px;
  1847. top:792px;
  1848. width:24px;
  1849. height:24px;
  1850. display:flex;
  1851. transition:none;
  1852. font-size:8px;
  1853. }
  1854. #u48397 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 2px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u48397_img {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:24px;
  1867. height:24px;
  1868. }
  1869. #u48397_text {
  1870. border-width:0px;
  1871. word-wrap:break-word;
  1872. text-transform:none;
  1873. }
  1874. #u48398_div {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:25px;
  1880. height:17px;
  1881. background:inherit;
  1882. background-color:rgba(255, 255, 255, 0);
  1883. border-radius:0px;
  1884. filter:drop-shadow(none);
  1885. transition:none;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:12px;
  1890. }
  1891. #u48398 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:69px;
  1895. top:817px;
  1896. width:25px;
  1897. height:17px;
  1898. display:flex;
  1899. transition:none;
  1900. transform-origin:50% 50%;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:12px;
  1905. }
  1906. #u48398 .text {
  1907. position:absolute;
  1908. align-self:flex-start;
  1909. padding:0px 0px 0px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u48398_text {
  1914. border-width:0px;
  1915. white-space:nowrap;
  1916. text-transform:none;
  1917. }
  1918. #u48399 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:0px;
  1924. height:0px;
  1925. }
  1926. #u48400 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:339px;
  1930. top:794px;
  1931. width:24px;
  1932. height:24px;
  1933. display:flex;
  1934. transition:none;
  1935. font-size:8px;
  1936. }
  1937. #u48400 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 2px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u48400_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:24px;
  1950. height:24px;
  1951. }
  1952. #u48400_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u48401_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:25px;
  1963. height:17px;
  1964. background:inherit;
  1965. background-color:rgba(255, 255, 255, 0);
  1966. border-radius:0px;
  1967. filter:drop-shadow(none);
  1968. transition:none;
  1969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1970. font-weight:400;
  1971. font-style:normal;
  1972. font-size:12px;
  1973. }
  1974. #u48401 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:339px;
  1978. top:819px;
  1979. width:25px;
  1980. height:17px;
  1981. display:flex;
  1982. transition:none;
  1983. transform-origin:50% 50%;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:12px;
  1988. }
  1989. #u48401 .text {
  1990. position:absolute;
  1991. align-self:flex-start;
  1992. padding:0px 0px 0px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u48401_text {
  1997. border-width:0px;
  1998. white-space:nowrap;
  1999. text-transform:none;
  2000. }
  2001. #u48402_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:375px;
  2007. height:681px;
  2008. background:inherit;
  2009. background-color:rgba(242, 242, 242, 0.4627450980392157);
  2010. border-radius:0px;
  2011. filter:drop-shadow(none);
  2012. transition:none;
  2013. }
  2014. #u48402 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:29px;
  2018. top:107px;
  2019. width:375px;
  2020. height:681px;
  2021. display:flex;
  2022. transition:none;
  2023. transform-origin:50% 50%;
  2024. }
  2025. #u48402 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u48402_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. visibility:hidden;
  2037. }
  2038. #u48403 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:0px;
  2044. height:0px;
  2045. }
  2046. #u48404 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:251px;
  2050. top:792px;
  2051. width:24px;
  2052. height:24px;
  2053. display:flex;
  2054. transition:none;
  2055. font-size:8px;
  2056. }
  2057. #u48404 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u48404_img {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:0px;
  2068. top:0px;
  2069. width:24px;
  2070. height:24px;
  2071. }
  2072. #u48404_text {
  2073. border-width:0px;
  2074. word-wrap:break-word;
  2075. text-transform:none;
  2076. }
  2077. #u48405_div {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:37px;
  2083. height:17px;
  2084. background:inherit;
  2085. background-color:rgba(255, 255, 255, 0);
  2086. border-radius:0px;
  2087. filter:drop-shadow(none);
  2088. transition:none;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:12px;
  2093. }
  2094. #u48405 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:245px;
  2098. top:817px;
  2099. width:37px;
  2100. height:17px;
  2101. display:flex;
  2102. transition:none;
  2103. transform-origin:50% 50%;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. }
  2109. #u48405 .text {
  2110. position:absolute;
  2111. align-self:flex-start;
  2112. padding:0px 0px 0px 0px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u48405_text {
  2117. border-width:0px;
  2118. white-space:nowrap;
  2119. text-transform:none;
  2120. }
  2121. #u48406 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:0px;
  2127. height:0px;
  2128. }
  2129. #u48407 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:157px;
  2133. top:792px;
  2134. width:24px;
  2135. height:24px;
  2136. display:flex;
  2137. transition:none;
  2138. font-size:8px;
  2139. }
  2140. #u48407 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 2px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u48407_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:24px;
  2153. height:24px;
  2154. }
  2155. #u48407_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. }
  2160. #u48408_div {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:37px;
  2166. height:17px;
  2167. background:inherit;
  2168. background-color:rgba(255, 255, 255, 0);
  2169. border-radius:0px;
  2170. filter:drop-shadow(none);
  2171. transition:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. }
  2177. #u48408 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:151px;
  2181. top:817px;
  2182. width:37px;
  2183. height:17px;
  2184. display:flex;
  2185. transition:none;
  2186. transform-origin:50% 50%;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. }
  2192. #u48408 .text {
  2193. position:absolute;
  2194. align-self:flex-start;
  2195. padding:0px 0px 0px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u48408_text {
  2200. border-width:0px;
  2201. white-space:nowrap;
  2202. text-transform:none;
  2203. }
  2204. #u48409_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:375px;
  2210. height:735px;
  2211. background:inherit;
  2212. background-color:rgba(242, 242, 242, 1);
  2213. border-top:0px;
  2214. border-radius:25px;
  2215. border-top-left-radius:0px;
  2216. border-top-right-radius:0px;
  2217. filter:drop-shadow(none);
  2218. transition:none;
  2219. }
  2220. #u48409 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:29px;
  2224. top:105px;
  2225. width:375px;
  2226. height:735px;
  2227. display:flex;
  2228. transition:none;
  2229. transform-origin:50% 50%;
  2230. }
  2231. #u48409 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u48409_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u48410_div {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:127px;
  2250. height:30px;
  2251. background:inherit;
  2252. background-color:rgba(255, 255, 255, 0);
  2253. border-left:0px;
  2254. border-top:0px;
  2255. border-right:0px;
  2256. border-radius:0px;
  2257. border-bottom-right-radius:0px;
  2258. border-bottom-left-radius:0px;
  2259. filter:drop-shadow(none);
  2260. transition:none;
  2261. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2262. font-weight:500;
  2263. font-style:normal;
  2264. font-size:14px;
  2265. line-height:30px;
  2266. }
  2267. #u48410 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:146px;
  2271. top:73px;
  2272. width:127px;
  2273. height:30px;
  2274. display:flex;
  2275. transition:none;
  2276. transform-origin:50% 50%;
  2277. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2278. font-weight:500;
  2279. font-style:normal;
  2280. font-size:14px;
  2281. line-height:30px;
  2282. }
  2283. #u48410 .text {
  2284. position:absolute;
  2285. align-self:flex-start;
  2286. padding:0px 0px 0px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u48410_text {
  2291. border-width:0px;
  2292. white-space:nowrap;
  2293. text-transform:none;
  2294. }
  2295. #u48411 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:0px;
  2301. height:0px;
  2302. }
  2303. #u48412 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:42px;
  2307. top:79px;
  2308. width:11px;
  2309. height:18px;
  2310. display:flex;
  2311. transition:none;
  2312. }
  2313. #u48412 .text {
  2314. position:absolute;
  2315. align-self:center;
  2316. padding:2px 2px 2px 2px;
  2317. box-sizing:border-box;
  2318. width:100%;
  2319. }
  2320. #u48412_img {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:0px;
  2324. top:0px;
  2325. width:11px;
  2326. height:18px;
  2327. }
  2328. #u48412_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. visibility:hidden;
  2333. }
  2334. #u48413 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:0px;
  2340. height:0px;
  2341. }
  2342. #u48414_div {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:375px;
  2348. height:40px;
  2349. background:inherit;
  2350. background-color:rgba(255, 255, 255, 1);
  2351. border-radius:0px;
  2352. filter:drop-shadow(none);
  2353. transition:none;
  2354. }
  2355. #u48414 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:29px;
  2359. top:105px;
  2360. width:375px;
  2361. height:40px;
  2362. display:flex;
  2363. transition:none;
  2364. transform-origin:50% 50%;
  2365. }
  2366. #u48414 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u48414_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u48415_div {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:43px;
  2385. height:40px;
  2386. background:inherit;
  2387. background-color:rgba(255, 255, 255, 0);
  2388. border-left:0px;
  2389. border-top:0px;
  2390. border-right:0px;
  2391. border-radius:0px;
  2392. border-bottom-right-radius:0px;
  2393. border-bottom-left-radius:0px;
  2394. filter:drop-shadow(none);
  2395. transition:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:14px;
  2400. line-height:30px;
  2401. }
  2402. #u48415 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:305px;
  2406. top:105px;
  2407. width:43px;
  2408. height:40px;
  2409. display:flex;
  2410. transition:none;
  2411. transform-origin:50% 50%;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:14px;
  2416. line-height:30px;
  2417. }
  2418. #u48415 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:0px 0px 0px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u48415_text {
  2426. border-width:0px;
  2427. white-space:nowrap;
  2428. text-transform:none;
  2429. }
  2430. #u48416_div {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:43px;
  2436. height:40px;
  2437. background:inherit;
  2438. background-color:rgba(255, 255, 255, 0);
  2439. border-left:0px;
  2440. border-top:0px;
  2441. border-right:0px;
  2442. border-radius:0px;
  2443. border-bottom-right-radius:0px;
  2444. border-bottom-left-radius:0px;
  2445. filter:drop-shadow(none);
  2446. transition:none;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. line-height:30px;
  2452. }
  2453. #u48416 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:200px;
  2457. top:105px;
  2458. width:43px;
  2459. height:40px;
  2460. display:flex;
  2461. transition:none;
  2462. transform-origin:50% 50%;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. line-height:30px;
  2468. }
  2469. #u48416 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:0px 0px 0px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u48416_text {
  2477. border-width:0px;
  2478. white-space:nowrap;
  2479. text-transform:none;
  2480. }
  2481. #u48417_div {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:43px;
  2487. height:40px;
  2488. background:inherit;
  2489. background-color:rgba(255, 255, 255, 0);
  2490. box-sizing:border-box;
  2491. border-width:2px;
  2492. border-style:solid;
  2493. border-color:rgba(51, 51, 51, 1);
  2494. border-left:0px;
  2495. border-top:0px;
  2496. border-right:0px;
  2497. border-radius:0px;
  2498. border-bottom-right-radius:0px;
  2499. border-bottom-left-radius:0px;
  2500. filter:drop-shadow(none);
  2501. transition:none;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:14px;
  2506. line-height:40px;
  2507. }
  2508. #u48417 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:85px;
  2512. top:105px;
  2513. width:43px;
  2514. height:40px;
  2515. display:flex;
  2516. transition:none;
  2517. transform-origin:50% 50%;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. line-height:40px;
  2523. }
  2524. #u48417 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:0px 0px 0px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u48417_text {
  2532. border-width:0px;
  2533. white-space:nowrap;
  2534. text-transform:none;
  2535. }
  2536. #u48418 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:453px;
  2540. top:0px;
  2541. width:433px;
  2542. height:865px;
  2543. }
  2544. #u48419 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:433px;
  2550. height:865px;
  2551. display:flex;
  2552. transition:none;
  2553. }
  2554. #u48419 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 2px 2px 2px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u48419_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:433px;
  2567. height:865px;
  2568. }
  2569. #u48419_text {
  2570. border-width:0px;
  2571. word-wrap:break-word;
  2572. text-transform:none;
  2573. visibility:hidden;
  2574. }
  2575. #u48420_div {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:375px;
  2581. height:40px;
  2582. background:inherit;
  2583. background-color:rgba(255, 255, 255, 1);
  2584. box-sizing:border-box;
  2585. border-width:1px;
  2586. border-style:solid;
  2587. border-color:rgba(215, 215, 215, 1);
  2588. border-left:0px;
  2589. border-top:0px;
  2590. border-right:0px;
  2591. border-radius:0px;
  2592. border-bottom-right-radius:0px;
  2593. border-bottom-left-radius:0px;
  2594. filter:drop-shadow(none);
  2595. transition:none;
  2596. }
  2597. #u48420 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:29px;
  2601. top:67px;
  2602. width:375px;
  2603. height:40px;
  2604. display:flex;
  2605. transition:none;
  2606. transform-origin:50% 50%;
  2607. }
  2608. #u48420 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u48420_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u48421 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:0px;
  2627. height:0px;
  2628. }
  2629. #u48422_div {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:88px;
  2635. height:32px;
  2636. background:inherit;
  2637. background-color:rgba(255, 255, 255, 1);
  2638. box-sizing:border-box;
  2639. border-width:1px;
  2640. border-style:solid;
  2641. border-color:rgba(242, 242, 242, 1);
  2642. border-radius:33px;
  2643. filter:drop-shadow(none);
  2644. transition:none;
  2645. }
  2646. #u48422 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:309px;
  2650. top:71px;
  2651. width:88px;
  2652. height:32px;
  2653. display:flex;
  2654. transition:none;
  2655. transform-origin:50% 50%;
  2656. }
  2657. #u48422 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 2px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u48422_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. visibility:hidden;
  2669. }
  2670. #u48423 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:0px;
  2676. height:0px;
  2677. }
  2678. #u48424 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:372px;
  2682. top:78px;
  2683. width:18px;
  2684. height:18px;
  2685. display:flex;
  2686. transition:none;
  2687. }
  2688. #u48424 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u48424_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:18px;
  2701. height:18px;
  2702. }
  2703. #u48424_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u48425 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:378px;
  2713. top:84px;
  2714. width:6px;
  2715. height:6px;
  2716. display:flex;
  2717. transition:none;
  2718. }
  2719. #u48425 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 2px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u48425_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:6px;
  2732. height:6px;
  2733. }
  2734. #u48425_text {
  2735. border-width:0px;
  2736. word-wrap:break-word;
  2737. text-transform:none;
  2738. visibility:hidden;
  2739. }
  2740. #u48426 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:0px;
  2746. height:0px;
  2747. }
  2748. #u48427 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:323px;
  2752. top:85px;
  2753. width:5px;
  2754. height:5px;
  2755. display:flex;
  2756. transition:none;
  2757. }
  2758. #u48427 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:2px 2px 2px 2px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u48427_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:5px;
  2771. height:5px;
  2772. }
  2773. #u48427_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. visibility:hidden;
  2778. }
  2779. #u48428 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:339px;
  2783. top:85px;
  2784. width:5px;
  2785. height:5px;
  2786. display:flex;
  2787. transition:none;
  2788. }
  2789. #u48428 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 2px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u48428_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:5px;
  2802. height:5px;
  2803. }
  2804. #u48428_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u48429 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:330px;
  2814. top:84px;
  2815. width:7px;
  2816. height:7px;
  2817. display:flex;
  2818. transition:none;
  2819. }
  2820. #u48429 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u48429_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:7px;
  2833. height:7px;
  2834. }
  2835. #u48429_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. visibility:hidden;
  2840. }
  2841. #u48430 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:347px;
  2845. top:87px;
  2846. width:18px;
  2847. height:1px;
  2848. display:flex;
  2849. -webkit-transform:rotate(90deg);
  2850. -moz-transform:rotate(90deg);
  2851. -ms-transform:rotate(90deg);
  2852. transform:rotate(90deg);
  2853. transition:none;
  2854. }
  2855. #u48430 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u48430_img {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:19px;
  2868. height:2px;
  2869. }
  2870. #u48430_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u48431 {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:29px;
  2880. top:24px;
  2881. width:375px;
  2882. height:44px;
  2883. display:flex;
  2884. transition:none;
  2885. }
  2886. #u48431 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 2px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u48431_img {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:0px;
  2897. top:0px;
  2898. width:375px;
  2899. height:44px;
  2900. }
  2901. #u48431_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u48432_div {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:375px;
  2913. height:50px;
  2914. background:inherit;
  2915. background-color:rgba(255, 255, 255, 1);
  2916. box-sizing:border-box;
  2917. border-width:1px;
  2918. border-style:solid;
  2919. border-color:rgba(242, 242, 242, 1);
  2920. border-radius:26px;
  2921. border-top-left-radius:0px;
  2922. border-top-right-radius:0px;
  2923. filter:drop-shadow(none);
  2924. transition:none;
  2925. }
  2926. #u48432 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:29px;
  2930. top:788px;
  2931. width:375px;
  2932. height:50px;
  2933. display:flex;
  2934. transition:none;
  2935. transform-origin:50% 50%;
  2936. }
  2937. #u48432 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 2px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u48432_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u48433 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:0px;
  2956. height:0px;
  2957. }
  2958. #u48434 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:69px;
  2962. top:792px;
  2963. width:24px;
  2964. height:24px;
  2965. display:flex;
  2966. transition:none;
  2967. font-size:8px;
  2968. }
  2969. #u48434 .text {
  2970. position:absolute;
  2971. align-self:center;
  2972. padding:2px 2px 2px 2px;
  2973. box-sizing:border-box;
  2974. width:100%;
  2975. }
  2976. #u48434_img {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:24px;
  2982. height:24px;
  2983. }
  2984. #u48434_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. }
  2989. #u48435_div {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:25px;
  2995. height:17px;
  2996. background:inherit;
  2997. background-color:rgba(255, 255, 255, 0);
  2998. border-radius:0px;
  2999. filter:drop-shadow(none);
  3000. transition:none;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:12px;
  3005. }
  3006. #u48435 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:69px;
  3010. top:817px;
  3011. width:25px;
  3012. height:17px;
  3013. display:flex;
  3014. transition:none;
  3015. transform-origin:50% 50%;
  3016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:12px;
  3020. }
  3021. #u48435 .text {
  3022. position:absolute;
  3023. align-self:flex-start;
  3024. padding:0px 0px 0px 0px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u48435_text {
  3029. border-width:0px;
  3030. white-space:nowrap;
  3031. text-transform:none;
  3032. }
  3033. #u48436 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:0px;
  3039. height:0px;
  3040. }
  3041. #u48437 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:339px;
  3045. top:794px;
  3046. width:24px;
  3047. height:24px;
  3048. display:flex;
  3049. transition:none;
  3050. font-size:8px;
  3051. }
  3052. #u48437 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 2px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u48437_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:24px;
  3065. height:24px;
  3066. }
  3067. #u48437_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. }
  3072. #u48438_div {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:25px;
  3078. height:17px;
  3079. background:inherit;
  3080. background-color:rgba(255, 255, 255, 0);
  3081. border-radius:0px;
  3082. filter:drop-shadow(none);
  3083. transition:none;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. }
  3089. #u48438 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:339px;
  3093. top:819px;
  3094. width:25px;
  3095. height:17px;
  3096. display:flex;
  3097. transition:none;
  3098. transform-origin:50% 50%;
  3099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:12px;
  3103. }
  3104. #u48438 .text {
  3105. position:absolute;
  3106. align-self:flex-start;
  3107. padding:0px 0px 0px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u48438_text {
  3112. border-width:0px;
  3113. white-space:nowrap;
  3114. text-transform:none;
  3115. }
  3116. #u48439_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:375px;
  3122. height:681px;
  3123. background:inherit;
  3124. background-color:rgba(242, 242, 242, 0.4627450980392157);
  3125. border-radius:0px;
  3126. filter:drop-shadow(none);
  3127. transition:none;
  3128. }
  3129. #u48439 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:29px;
  3133. top:107px;
  3134. width:375px;
  3135. height:681px;
  3136. display:flex;
  3137. transition:none;
  3138. transform-origin:50% 50%;
  3139. }
  3140. #u48439 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 2px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u48439_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u48440 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:0px;
  3159. height:0px;
  3160. }
  3161. #u48441 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:251px;
  3165. top:792px;
  3166. width:24px;
  3167. height:24px;
  3168. display:flex;
  3169. transition:none;
  3170. font-size:8px;
  3171. }
  3172. #u48441 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 2px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u48441_img {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:24px;
  3185. height:24px;
  3186. }
  3187. #u48441_text {
  3188. border-width:0px;
  3189. word-wrap:break-word;
  3190. text-transform:none;
  3191. }
  3192. #u48442_div {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:37px;
  3198. height:17px;
  3199. background:inherit;
  3200. background-color:rgba(255, 255, 255, 0);
  3201. border-radius:0px;
  3202. filter:drop-shadow(none);
  3203. transition:none;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:12px;
  3208. }
  3209. #u48442 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:245px;
  3213. top:817px;
  3214. width:37px;
  3215. height:17px;
  3216. display:flex;
  3217. transition:none;
  3218. transform-origin:50% 50%;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:12px;
  3223. }
  3224. #u48442 .text {
  3225. position:absolute;
  3226. align-self:flex-start;
  3227. padding:0px 0px 0px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u48442_text {
  3232. border-width:0px;
  3233. white-space:nowrap;
  3234. text-transform:none;
  3235. }
  3236. #u48443 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:0px;
  3242. height:0px;
  3243. }
  3244. #u48444 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:157px;
  3248. top:792px;
  3249. width:24px;
  3250. height:24px;
  3251. display:flex;
  3252. transition:none;
  3253. font-size:8px;
  3254. }
  3255. #u48444 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 2px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u48444_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:24px;
  3268. height:24px;
  3269. }
  3270. #u48444_text {
  3271. border-width:0px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. }
  3275. #u48445_div {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:37px;
  3281. height:17px;
  3282. background:inherit;
  3283. background-color:rgba(255, 255, 255, 0);
  3284. border-radius:0px;
  3285. filter:drop-shadow(none);
  3286. transition:none;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. }
  3292. #u48445 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:151px;
  3296. top:817px;
  3297. width:37px;
  3298. height:17px;
  3299. display:flex;
  3300. transition:none;
  3301. transform-origin:50% 50%;
  3302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:12px;
  3306. }
  3307. #u48445 .text {
  3308. position:absolute;
  3309. align-self:flex-start;
  3310. padding:0px 0px 0px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u48445_text {
  3315. border-width:0px;
  3316. white-space:nowrap;
  3317. text-transform:none;
  3318. }
  3319. #u48446_div {
  3320. border-width:0px;
  3321. position:absolute;
  3322. left:0px;
  3323. top:0px;
  3324. width:375px;
  3325. height:735px;
  3326. background:inherit;
  3327. background-color:rgba(242, 242, 242, 1);
  3328. border-top:0px;
  3329. border-radius:25px;
  3330. border-top-left-radius:0px;
  3331. border-top-right-radius:0px;
  3332. filter:drop-shadow(none);
  3333. transition:none;
  3334. }
  3335. #u48446 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:482px;
  3339. top:105px;
  3340. width:375px;
  3341. height:735px;
  3342. display:flex;
  3343. transition:none;
  3344. transform-origin:50% 50%;
  3345. }
  3346. #u48446 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 2px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u48446_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u48447 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:0px;
  3365. height:0px;
  3366. }
  3367. #u48448 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:495px;
  3371. top:79px;
  3372. width:11px;
  3373. height:18px;
  3374. display:flex;
  3375. transition:none;
  3376. }
  3377. #u48448 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:2px 2px 2px 2px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u48448_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:11px;
  3390. height:18px;
  3391. }
  3392. #u48448_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u48449 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:0px;
  3404. height:0px;
  3405. }
  3406. #u48450_div {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:375px;
  3412. height:40px;
  3413. background:inherit;
  3414. background-color:rgba(255, 255, 255, 1);
  3415. border-radius:0px;
  3416. filter:drop-shadow(none);
  3417. transition:none;
  3418. }
  3419. #u48450 {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:482px;
  3423. top:105px;
  3424. width:375px;
  3425. height:40px;
  3426. display:flex;
  3427. transition:none;
  3428. transform-origin:50% 50%;
  3429. }
  3430. #u48450 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 2px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u48450_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u48451_div {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:43px;
  3449. height:40px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 0);
  3452. box-sizing:border-box;
  3453. border-width:2px;
  3454. border-style:solid;
  3455. border-color:rgba(51, 51, 51, 1);
  3456. border-left:0px;
  3457. border-top:0px;
  3458. border-right:0px;
  3459. border-radius:0px;
  3460. border-bottom-right-radius:0px;
  3461. border-bottom-left-radius:0px;
  3462. filter:drop-shadow(none);
  3463. transition:none;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:14px;
  3468. line-height:30px;
  3469. }
  3470. #u48451 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:758px;
  3474. top:105px;
  3475. width:43px;
  3476. height:40px;
  3477. display:flex;
  3478. transition:none;
  3479. transform-origin:50% 50%;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:14px;
  3484. line-height:30px;
  3485. }
  3486. #u48451 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:0px 0px 0px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u48451_text {
  3494. border-width:0px;
  3495. white-space:nowrap;
  3496. text-transform:none;
  3497. }
  3498. #u48452_div {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:43px;
  3504. height:40px;
  3505. background:inherit;
  3506. background-color:rgba(255, 255, 255, 0);
  3507. box-sizing:border-box;
  3508. border-width:2px;
  3509. border-style:solid;
  3510. border-color:rgba(51, 51, 51, 1);
  3511. border-left:0px;
  3512. border-top:0px;
  3513. border-right:0px;
  3514. border-radius:0px;
  3515. border-bottom-right-radius:0px;
  3516. border-bottom-left-radius:0px;
  3517. filter:drop-shadow(none);
  3518. transition:none;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:14px;
  3523. line-height:30px;
  3524. }
  3525. #u48452 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:653px;
  3529. top:105px;
  3530. width:43px;
  3531. height:40px;
  3532. display:flex;
  3533. transition:none;
  3534. transform-origin:50% 50%;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:14px;
  3539. line-height:30px;
  3540. }
  3541. #u48452 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:0px 0px 0px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u48452_text {
  3549. border-width:0px;
  3550. white-space:nowrap;
  3551. text-transform:none;
  3552. }
  3553. #u48453_div {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:52px;
  3559. height:40px;
  3560. background:inherit;
  3561. background-color:rgba(255, 255, 255, 0);
  3562. border-left:0px;
  3563. border-top:0px;
  3564. border-right:0px;
  3565. border-radius:0px;
  3566. border-bottom-right-radius:0px;
  3567. border-bottom-left-radius:0px;
  3568. filter:drop-shadow(none);
  3569. transition:none;
  3570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:14px;
  3574. line-height:30px;
  3575. }
  3576. #u48453 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:538px;
  3580. top:105px;
  3581. width:52px;
  3582. height:40px;
  3583. display:flex;
  3584. transition:none;
  3585. transform-origin:50% 50%;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. line-height:30px;
  3591. }
  3592. #u48453 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:0px 0px 0px 0px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u48453_text {
  3600. border-width:0px;
  3601. word-wrap:break-word;
  3602. text-transform:none;
  3603. }
  3604. #u48454 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:911px;
  3608. top:0px;
  3609. width:433px;
  3610. height:865px;
  3611. }
  3612. #u48455 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:0px;
  3616. top:0px;
  3617. width:433px;
  3618. height:865px;
  3619. display:flex;
  3620. transition:none;
  3621. }
  3622. #u48455 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:2px 2px 2px 2px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u48455_img {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:433px;
  3635. height:865px;
  3636. }
  3637. #u48455_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. visibility:hidden;
  3642. }
  3643. #u48456_div {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:375px;
  3649. height:40px;
  3650. background:inherit;
  3651. background-color:rgba(255, 255, 255, 1);
  3652. box-sizing:border-box;
  3653. border-width:1px;
  3654. border-style:solid;
  3655. border-color:rgba(215, 215, 215, 1);
  3656. border-left:0px;
  3657. border-top:0px;
  3658. border-right:0px;
  3659. border-radius:0px;
  3660. border-bottom-right-radius:0px;
  3661. border-bottom-left-radius:0px;
  3662. filter:drop-shadow(none);
  3663. transition:none;
  3664. }
  3665. #u48456 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:29px;
  3669. top:67px;
  3670. width:375px;
  3671. height:40px;
  3672. display:flex;
  3673. transition:none;
  3674. transform-origin:50% 50%;
  3675. }
  3676. #u48456 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 2px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u48456_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. visibility:hidden;
  3688. }
  3689. #u48457 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:0px;
  3695. height:0px;
  3696. }
  3697. #u48458_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:88px;
  3703. height:32px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 1);
  3706. box-sizing:border-box;
  3707. border-width:1px;
  3708. border-style:solid;
  3709. border-color:rgba(242, 242, 242, 1);
  3710. border-radius:33px;
  3711. filter:drop-shadow(none);
  3712. transition:none;
  3713. }
  3714. #u48458 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:309px;
  3718. top:71px;
  3719. width:88px;
  3720. height:32px;
  3721. display:flex;
  3722. transition:none;
  3723. transform-origin:50% 50%;
  3724. }
  3725. #u48458 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 2px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u48458_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u48459 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:0px;
  3744. height:0px;
  3745. }
  3746. #u48460 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:372px;
  3750. top:78px;
  3751. width:18px;
  3752. height:18px;
  3753. display:flex;
  3754. transition:none;
  3755. }
  3756. #u48460 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 2px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u48460_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:18px;
  3769. height:18px;
  3770. }
  3771. #u48460_text {
  3772. border-width:0px;
  3773. word-wrap:break-word;
  3774. text-transform:none;
  3775. visibility:hidden;
  3776. }
  3777. #u48461 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:378px;
  3781. top:84px;
  3782. width:6px;
  3783. height:6px;
  3784. display:flex;
  3785. transition:none;
  3786. }
  3787. #u48461 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u48461_img {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:6px;
  3800. height:6px;
  3801. }
  3802. #u48461_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u48462 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:0px;
  3814. height:0px;
  3815. }
  3816. #u48463 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:323px;
  3820. top:85px;
  3821. width:5px;
  3822. height:5px;
  3823. display:flex;
  3824. transition:none;
  3825. }
  3826. #u48463 .text {
  3827. position:absolute;
  3828. align-self:center;
  3829. padding:2px 2px 2px 2px;
  3830. box-sizing:border-box;
  3831. width:100%;
  3832. }
  3833. #u48463_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:5px;
  3839. height:5px;
  3840. }
  3841. #u48463_text {
  3842. border-width:0px;
  3843. word-wrap:break-word;
  3844. text-transform:none;
  3845. visibility:hidden;
  3846. }
  3847. #u48464 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:339px;
  3851. top:85px;
  3852. width:5px;
  3853. height:5px;
  3854. display:flex;
  3855. transition:none;
  3856. }
  3857. #u48464 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 2px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u48464_img {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:5px;
  3870. height:5px;
  3871. }
  3872. #u48464_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. visibility:hidden;
  3877. }
  3878. #u48465 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:330px;
  3882. top:84px;
  3883. width:7px;
  3884. height:7px;
  3885. display:flex;
  3886. transition:none;
  3887. }
  3888. #u48465 .text {
  3889. position:absolute;
  3890. align-self:center;
  3891. padding:2px 2px 2px 2px;
  3892. box-sizing:border-box;
  3893. width:100%;
  3894. }
  3895. #u48465_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:7px;
  3901. height:7px;
  3902. }
  3903. #u48465_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. visibility:hidden;
  3908. }
  3909. #u48466 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:347px;
  3913. top:87px;
  3914. width:18px;
  3915. height:1px;
  3916. display:flex;
  3917. -webkit-transform:rotate(90deg);
  3918. -moz-transform:rotate(90deg);
  3919. -ms-transform:rotate(90deg);
  3920. transform:rotate(90deg);
  3921. transition:none;
  3922. }
  3923. #u48466 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 2px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u48466_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:19px;
  3936. height:2px;
  3937. }
  3938. #u48466_text {
  3939. border-width:0px;
  3940. word-wrap:break-word;
  3941. text-transform:none;
  3942. visibility:hidden;
  3943. }
  3944. #u48467 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:29px;
  3948. top:24px;
  3949. width:375px;
  3950. height:44px;
  3951. display:flex;
  3952. transition:none;
  3953. }
  3954. #u48467 .text {
  3955. position:absolute;
  3956. align-self:center;
  3957. padding:2px 2px 2px 2px;
  3958. box-sizing:border-box;
  3959. width:100%;
  3960. }
  3961. #u48467_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:375px;
  3967. height:44px;
  3968. }
  3969. #u48467_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u48468_div {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:375px;
  3981. height:50px;
  3982. background:inherit;
  3983. background-color:rgba(255, 255, 255, 1);
  3984. box-sizing:border-box;
  3985. border-width:1px;
  3986. border-style:solid;
  3987. border-color:rgba(242, 242, 242, 1);
  3988. border-radius:26px;
  3989. border-top-left-radius:0px;
  3990. border-top-right-radius:0px;
  3991. filter:drop-shadow(none);
  3992. transition:none;
  3993. }
  3994. #u48468 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:29px;
  3998. top:788px;
  3999. width:375px;
  4000. height:50px;
  4001. display:flex;
  4002. transition:none;
  4003. transform-origin:50% 50%;
  4004. }
  4005. #u48468 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 2px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u48468_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u48469 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:0px;
  4024. height:0px;
  4025. }
  4026. #u48470 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:69px;
  4030. top:792px;
  4031. width:24px;
  4032. height:24px;
  4033. display:flex;
  4034. transition:none;
  4035. font-size:8px;
  4036. }
  4037. #u48470 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 2px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u48470_img {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:24px;
  4050. height:24px;
  4051. }
  4052. #u48470_text {
  4053. border-width:0px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. }
  4057. #u48471_div {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:25px;
  4063. height:17px;
  4064. background:inherit;
  4065. background-color:rgba(255, 255, 255, 0);
  4066. border-radius:0px;
  4067. filter:drop-shadow(none);
  4068. transition:none;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:12px;
  4073. }
  4074. #u48471 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:69px;
  4078. top:817px;
  4079. width:25px;
  4080. height:17px;
  4081. display:flex;
  4082. transition:none;
  4083. transform-origin:50% 50%;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:12px;
  4088. }
  4089. #u48471 .text {
  4090. position:absolute;
  4091. align-self:flex-start;
  4092. padding:0px 0px 0px 0px;
  4093. box-sizing:border-box;
  4094. width:100%;
  4095. }
  4096. #u48471_text {
  4097. border-width:0px;
  4098. white-space:nowrap;
  4099. text-transform:none;
  4100. }
  4101. #u48472 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:0px;
  4107. height:0px;
  4108. }
  4109. #u48473 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:339px;
  4113. top:794px;
  4114. width:24px;
  4115. height:24px;
  4116. display:flex;
  4117. transition:none;
  4118. font-size:8px;
  4119. }
  4120. #u48473 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 2px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u48473_img {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:0px;
  4131. top:0px;
  4132. width:24px;
  4133. height:24px;
  4134. }
  4135. #u48473_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. }
  4140. #u48474_div {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:25px;
  4146. height:17px;
  4147. background:inherit;
  4148. background-color:rgba(255, 255, 255, 0);
  4149. border-radius:0px;
  4150. filter:drop-shadow(none);
  4151. transition:none;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. }
  4157. #u48474 {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:339px;
  4161. top:819px;
  4162. width:25px;
  4163. height:17px;
  4164. display:flex;
  4165. transition:none;
  4166. transform-origin:50% 50%;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:12px;
  4171. }
  4172. #u48474 .text {
  4173. position:absolute;
  4174. align-self:flex-start;
  4175. padding:0px 0px 0px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u48474_text {
  4180. border-width:0px;
  4181. white-space:nowrap;
  4182. text-transform:none;
  4183. }
  4184. #u48475_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:375px;
  4190. height:681px;
  4191. background:inherit;
  4192. background-color:rgba(242, 242, 242, 0.4627450980392157);
  4193. border-radius:0px;
  4194. filter:drop-shadow(none);
  4195. transition:none;
  4196. }
  4197. #u48475 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:29px;
  4201. top:107px;
  4202. width:375px;
  4203. height:681px;
  4204. display:flex;
  4205. transition:none;
  4206. transform-origin:50% 50%;
  4207. }
  4208. #u48475 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 2px 2px 2px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u48475_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u48476 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:0px;
  4227. height:0px;
  4228. }
  4229. #u48477 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:251px;
  4233. top:792px;
  4234. width:24px;
  4235. height:24px;
  4236. display:flex;
  4237. transition:none;
  4238. font-size:8px;
  4239. }
  4240. #u48477 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 2px 2px 2px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u48477_img {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:24px;
  4253. height:24px;
  4254. }
  4255. #u48477_text {
  4256. border-width:0px;
  4257. word-wrap:break-word;
  4258. text-transform:none;
  4259. }
  4260. #u48478_div {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:37px;
  4266. height:17px;
  4267. background:inherit;
  4268. background-color:rgba(255, 255, 255, 0);
  4269. border-radius:0px;
  4270. filter:drop-shadow(none);
  4271. transition:none;
  4272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:12px;
  4276. }
  4277. #u48478 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:245px;
  4281. top:817px;
  4282. width:37px;
  4283. height:17px;
  4284. display:flex;
  4285. transition:none;
  4286. transform-origin:50% 50%;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:12px;
  4291. }
  4292. #u48478 .text {
  4293. position:absolute;
  4294. align-self:flex-start;
  4295. padding:0px 0px 0px 0px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u48478_text {
  4300. border-width:0px;
  4301. white-space:nowrap;
  4302. text-transform:none;
  4303. }
  4304. #u48479 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:0px;
  4310. height:0px;
  4311. }
  4312. #u48480 {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:157px;
  4316. top:792px;
  4317. width:24px;
  4318. height:24px;
  4319. display:flex;
  4320. transition:none;
  4321. font-size:8px;
  4322. }
  4323. #u48480 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 2px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u48480_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:24px;
  4336. height:24px;
  4337. }
  4338. #u48480_text {
  4339. border-width:0px;
  4340. word-wrap:break-word;
  4341. text-transform:none;
  4342. }
  4343. #u48481_div {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:37px;
  4349. height:17px;
  4350. background:inherit;
  4351. background-color:rgba(255, 255, 255, 0);
  4352. border-radius:0px;
  4353. filter:drop-shadow(none);
  4354. transition:none;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:12px;
  4359. }
  4360. #u48481 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:151px;
  4364. top:817px;
  4365. width:37px;
  4366. height:17px;
  4367. display:flex;
  4368. transition:none;
  4369. transform-origin:50% 50%;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:12px;
  4374. }
  4375. #u48481 .text {
  4376. position:absolute;
  4377. align-self:flex-start;
  4378. padding:0px 0px 0px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u48481_text {
  4383. border-width:0px;
  4384. white-space:nowrap;
  4385. text-transform:none;
  4386. }
  4387. #u48482_div {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:375px;
  4393. height:735px;
  4394. background:inherit;
  4395. background-color:rgba(242, 242, 242, 1);
  4396. border-top:0px;
  4397. border-radius:25px;
  4398. border-top-left-radius:0px;
  4399. border-top-right-radius:0px;
  4400. filter:drop-shadow(none);
  4401. transition:none;
  4402. }
  4403. #u48482 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:940px;
  4407. top:105px;
  4408. width:375px;
  4409. height:735px;
  4410. display:flex;
  4411. transition:none;
  4412. transform-origin:50% 50%;
  4413. }
  4414. #u48482 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 2px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u48482_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u48483 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:0px;
  4433. height:0px;
  4434. }
  4435. #u48484 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:953px;
  4439. top:79px;
  4440. width:11px;
  4441. height:18px;
  4442. display:flex;
  4443. transition:none;
  4444. }
  4445. #u48484 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 2px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u48484_img {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:11px;
  4458. height:18px;
  4459. }
  4460. #u48484_text {
  4461. border-width:0px;
  4462. word-wrap:break-word;
  4463. text-transform:none;
  4464. visibility:hidden;
  4465. }
  4466. #u48485 {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:0px;
  4472. height:0px;
  4473. }
  4474. #u48486_div {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:375px;
  4480. height:40px;
  4481. background:inherit;
  4482. background-color:rgba(255, 255, 255, 1);
  4483. border-radius:0px;
  4484. filter:drop-shadow(none);
  4485. transition:none;
  4486. }
  4487. #u48486 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:940px;
  4491. top:105px;
  4492. width:375px;
  4493. height:40px;
  4494. display:flex;
  4495. transition:none;
  4496. transform-origin:50% 50%;
  4497. }
  4498. #u48486 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u48486_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u48487_div {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:43px;
  4517. height:40px;
  4518. background:inherit;
  4519. background-color:rgba(255, 255, 255, 0);
  4520. box-sizing:border-box;
  4521. border-width:2px;
  4522. border-style:solid;
  4523. border-color:rgba(51, 51, 51, 1);
  4524. border-left:0px;
  4525. border-top:0px;
  4526. border-right:0px;
  4527. border-radius:0px;
  4528. border-bottom-right-radius:0px;
  4529. border-bottom-left-radius:0px;
  4530. filter:drop-shadow(none);
  4531. transition:none;
  4532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:14px;
  4536. line-height:30px;
  4537. }
  4538. #u48487 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:1216px;
  4542. top:105px;
  4543. width:43px;
  4544. height:40px;
  4545. display:flex;
  4546. transition:none;
  4547. transform-origin:50% 50%;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:14px;
  4552. line-height:30px;
  4553. }
  4554. #u48487 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:0px 0px 0px 0px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u48487_text {
  4562. border-width:0px;
  4563. white-space:nowrap;
  4564. text-transform:none;
  4565. }
  4566. #u48488_div {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:43px;
  4572. height:40px;
  4573. background:inherit;
  4574. background-color:rgba(255, 255, 255, 0);
  4575. border-left:0px;
  4576. border-top:0px;
  4577. border-right:0px;
  4578. border-radius:0px;
  4579. border-bottom-right-radius:0px;
  4580. border-bottom-left-radius:0px;
  4581. filter:drop-shadow(none);
  4582. transition:none;
  4583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:14px;
  4587. line-height:30px;
  4588. }
  4589. #u48488 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:1111px;
  4593. top:105px;
  4594. width:43px;
  4595. height:40px;
  4596. display:flex;
  4597. transition:none;
  4598. transform-origin:50% 50%;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:14px;
  4603. line-height:30px;
  4604. }
  4605. #u48488 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:0px 0px 0px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u48488_text {
  4613. border-width:0px;
  4614. white-space:nowrap;
  4615. text-transform:none;
  4616. }
  4617. #u48489_div {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:52px;
  4623. height:40px;
  4624. background:inherit;
  4625. background-color:rgba(255, 255, 255, 0);
  4626. border-left:0px;
  4627. border-top:0px;
  4628. border-right:0px;
  4629. border-radius:0px;
  4630. border-bottom-right-radius:0px;
  4631. border-bottom-left-radius:0px;
  4632. filter:drop-shadow(none);
  4633. transition:none;
  4634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. font-size:14px;
  4638. line-height:30px;
  4639. }
  4640. #u48489 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:996px;
  4644. top:105px;
  4645. width:52px;
  4646. height:40px;
  4647. display:flex;
  4648. transition:none;
  4649. transform-origin:50% 50%;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:14px;
  4654. line-height:30px;
  4655. }
  4656. #u48489 .text {
  4657. position:absolute;
  4658. align-self:center;
  4659. padding:0px 0px 0px 0px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u48489_text {
  4664. border-width:0px;
  4665. word-wrap:break-word;
  4666. text-transform:none;
  4667. }
  4668. #u48490 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:0px;
  4674. height:0px;
  4675. }
  4676. #u48491_div {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:300px;
  4682. height:149px;
  4683. background:inherit;
  4684. background-color:rgba(255, 255, 255, 1);
  4685. border-radius:10px;
  4686. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  4687. transition:none;
  4688. }
  4689. #u48491 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:86px;
  4693. top:417px;
  4694. width:300px;
  4695. height:149px;
  4696. display:flex;
  4697. transition:none;
  4698. transform-origin:50% 50%;
  4699. }
  4700. #u48491 .text {
  4701. position:absolute;
  4702. align-self:center;
  4703. padding:2px 2px 2px 2px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u48491_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u48492_div {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:235px;
  4719. height:30px;
  4720. background:inherit;
  4721. background-color:rgba(255, 255, 255, 0);
  4722. border-left:0px;
  4723. border-top:0px;
  4724. border-right:0px;
  4725. border-radius:0px;
  4726. border-bottom-right-radius:0px;
  4727. border-bottom-left-radius:0px;
  4728. filter:drop-shadow(none);
  4729. transition:none;
  4730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:18px;
  4734. text-align:center;
  4735. line-height:30px;
  4736. }
  4737. #u48492 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:118px;
  4741. top:451px;
  4742. width:235px;
  4743. height:30px;
  4744. display:flex;
  4745. transition:none;
  4746. transform-origin:50% 50%;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:18px;
  4751. text-align:center;
  4752. line-height:30px;
  4753. }
  4754. #u48492 .text {
  4755. position:absolute;
  4756. align-self:flex-start;
  4757. padding:0px 0px 0px 0px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u48492_text {
  4762. border-width:0px;
  4763. white-space:nowrap;
  4764. text-transform:none;
  4765. }
  4766. #u48493 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:86px;
  4770. top:517px;
  4771. width:300px;
  4772. height:1px;
  4773. display:flex;
  4774. transition:none;
  4775. }
  4776. #u48493 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 2px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u48493_img {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:301px;
  4789. height:2px;
  4790. }
  4791. #u48493_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u48494_div {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:41px;
  4803. height:30px;
  4804. background:inherit;
  4805. background-color:rgba(255, 255, 255, 0);
  4806. border-left:0px;
  4807. border-top:0px;
  4808. border-right:0px;
  4809. border-radius:0px;
  4810. border-bottom-right-radius:0px;
  4811. border-bottom-left-radius:0px;
  4812. filter:drop-shadow(none);
  4813. transition:none;
  4814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:18px;
  4818. color:#1890FF;
  4819. text-align:center;
  4820. line-height:30px;
  4821. }
  4822. #u48494 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:302px;
  4826. top:527px;
  4827. width:41px;
  4828. height:30px;
  4829. display:flex;
  4830. transition:none;
  4831. transform-origin:50% 50%;
  4832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:18px;
  4836. color:#1890FF;
  4837. text-align:center;
  4838. line-height:30px;
  4839. }
  4840. #u48494 .text {
  4841. position:absolute;
  4842. align-self:flex-start;
  4843. padding:0px 0px 0px 0px;
  4844. box-sizing:border-box;
  4845. width:100%;
  4846. }
  4847. #u48494_text {
  4848. border-width:0px;
  4849. word-wrap:break-word;
  4850. text-transform:none;
  4851. }
  4852. #u48495_div {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:41px;
  4858. height:30px;
  4859. background:inherit;
  4860. background-color:rgba(255, 255, 255, 0);
  4861. border-left:0px;
  4862. border-top:0px;
  4863. border-right:0px;
  4864. border-radius:0px;
  4865. border-bottom-right-radius:0px;
  4866. border-bottom-left-radius:0px;
  4867. filter:drop-shadow(none);
  4868. transition:none;
  4869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:18px;
  4873. color:#1890FF;
  4874. text-align:center;
  4875. line-height:30px;
  4876. }
  4877. #u48495 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:132px;
  4881. top:527px;
  4882. width:41px;
  4883. height:30px;
  4884. display:flex;
  4885. transition:none;
  4886. transform-origin:50% 50%;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:18px;
  4891. color:#1890FF;
  4892. text-align:center;
  4893. line-height:30px;
  4894. }
  4895. #u48495 .text {
  4896. position:absolute;
  4897. align-self:flex-start;
  4898. padding:0px 0px 0px 0px;
  4899. box-sizing:border-box;
  4900. width:100%;
  4901. }
  4902. #u48495_text {
  4903. border-width:0px;
  4904. word-wrap:break-word;
  4905. text-transform:none;
  4906. }
  4907. #u48496 {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:235px;
  4911. top:518px;
  4912. width:1px;
  4913. height:48px;
  4914. display:flex;
  4915. transition:none;
  4916. }
  4917. #u48496 .text {
  4918. position:absolute;
  4919. align-self:center;
  4920. padding:2px 2px 2px 2px;
  4921. box-sizing:border-box;
  4922. width:100%;
  4923. }
  4924. #u48496_img {
  4925. border-width:0px;
  4926. position:absolute;
  4927. left:0px;
  4928. top:0px;
  4929. width:2px;
  4930. height:49px;
  4931. }
  4932. #u48496_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. visibility:hidden;
  4937. }
  4938. #u48497 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:0px;
  4944. height:0px;
  4945. }
  4946. #u48498_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:300px;
  4952. height:149px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 1);
  4955. border-radius:10px;
  4956. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  4957. transition:none;
  4958. }
  4959. #u48498 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:67px;
  4963. top:598px;
  4964. width:300px;
  4965. height:149px;
  4966. display:flex;
  4967. transition:none;
  4968. transform-origin:50% 50%;
  4969. }
  4970. #u48498 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 2px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u48498_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. visibility:hidden;
  4982. }
  4983. #u48499_div {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:235px;
  4989. height:30px;
  4990. background:inherit;
  4991. background-color:rgba(255, 255, 255, 0);
  4992. border-left:0px;
  4993. border-top:0px;
  4994. border-right:0px;
  4995. border-radius:0px;
  4996. border-bottom-right-radius:0px;
  4997. border-bottom-left-radius:0px;
  4998. filter:drop-shadow(none);
  4999. transition:none;
  5000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:18px;
  5004. text-align:center;
  5005. line-height:30px;
  5006. }
  5007. #u48499 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:99px;
  5011. top:632px;
  5012. width:235px;
  5013. height:30px;
  5014. display:flex;
  5015. transition:none;
  5016. transform-origin:50% 50%;
  5017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:18px;
  5021. text-align:center;
  5022. line-height:30px;
  5023. }
  5024. #u48499 .text {
  5025. position:absolute;
  5026. align-self:flex-start;
  5027. padding:0px 0px 0px 0px;
  5028. box-sizing:border-box;
  5029. width:100%;
  5030. }
  5031. #u48499_text {
  5032. border-width:0px;
  5033. white-space:nowrap;
  5034. text-transform:none;
  5035. }
  5036. #u48500 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:67px;
  5040. top:698px;
  5041. width:300px;
  5042. height:1px;
  5043. display:flex;
  5044. transition:none;
  5045. }
  5046. #u48500 .text {
  5047. position:absolute;
  5048. align-self:center;
  5049. padding:2px 2px 2px 2px;
  5050. box-sizing:border-box;
  5051. width:100%;
  5052. }
  5053. #u48500_img {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:301px;
  5059. height:2px;
  5060. }
  5061. #u48500_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u48501_div {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:41px;
  5073. height:30px;
  5074. background:inherit;
  5075. background-color:rgba(255, 255, 255, 0);
  5076. border-left:0px;
  5077. border-top:0px;
  5078. border-right:0px;
  5079. border-radius:0px;
  5080. border-bottom-right-radius:0px;
  5081. border-bottom-left-radius:0px;
  5082. filter:drop-shadow(none);
  5083. transition:none;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:18px;
  5088. color:#1890FF;
  5089. text-align:center;
  5090. line-height:30px;
  5091. }
  5092. #u48501 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:283px;
  5096. top:708px;
  5097. width:41px;
  5098. height:30px;
  5099. display:flex;
  5100. transition:none;
  5101. transform-origin:50% 50%;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:18px;
  5106. color:#1890FF;
  5107. text-align:center;
  5108. line-height:30px;
  5109. }
  5110. #u48501 .text {
  5111. position:absolute;
  5112. align-self:flex-start;
  5113. padding:0px 0px 0px 0px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u48501_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. }
  5122. #u48502_div {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:41px;
  5128. height:30px;
  5129. background:inherit;
  5130. background-color:rgba(255, 255, 255, 0);
  5131. border-left:0px;
  5132. border-top:0px;
  5133. border-right:0px;
  5134. border-radius:0px;
  5135. border-bottom-right-radius:0px;
  5136. border-bottom-left-radius:0px;
  5137. filter:drop-shadow(none);
  5138. transition:none;
  5139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5140. font-weight:400;
  5141. font-style:normal;
  5142. font-size:18px;
  5143. color:#1890FF;
  5144. text-align:center;
  5145. line-height:30px;
  5146. }
  5147. #u48502 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:113px;
  5151. top:708px;
  5152. width:41px;
  5153. height:30px;
  5154. display:flex;
  5155. transition:none;
  5156. transform-origin:50% 50%;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:18px;
  5161. color:#1890FF;
  5162. text-align:center;
  5163. line-height:30px;
  5164. }
  5165. #u48502 .text {
  5166. position:absolute;
  5167. align-self:flex-start;
  5168. padding:0px 0px 0px 0px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u48502_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. }
  5177. #u48503 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:216px;
  5181. top:699px;
  5182. width:1px;
  5183. height:48px;
  5184. display:flex;
  5185. transition:none;
  5186. }
  5187. #u48503 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:2px 2px 2px 2px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u48503_img {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:2px;
  5200. height:49px;
  5201. }
  5202. #u48503_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u48504 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:0px;
  5214. height:0px;
  5215. }
  5216. #u48505_div {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:375px;
  5222. height:80px;
  5223. background:inherit;
  5224. background-color:rgba(255, 255, 255, 1);
  5225. border-left:0px;
  5226. border-top:0px;
  5227. border-right:0px;
  5228. border-radius:0px;
  5229. border-bottom-right-radius:0px;
  5230. border-bottom-left-radius:0px;
  5231. filter:drop-shadow(none);
  5232. transition:none;
  5233. }
  5234. #u48505 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:1393px;
  5238. top:451px;
  5239. width:375px;
  5240. height:80px;
  5241. display:flex;
  5242. transition:none;
  5243. transform-origin:50% 50%;
  5244. }
  5245. #u48505 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:2px 2px 2px 2px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u48505_text {
  5253. border-width:0px;
  5254. word-wrap:break-word;
  5255. text-transform:none;
  5256. visibility:hidden;
  5257. }
  5258. #u48506_div {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:225px;
  5264. height:30px;
  5265. background:inherit;
  5266. background-color:rgba(255, 255, 255, 0);
  5267. border-left:0px;
  5268. border-top:0px;
  5269. border-right:0px;
  5270. border-radius:0px;
  5271. border-bottom-right-radius:0px;
  5272. border-bottom-left-radius:0px;
  5273. filter:drop-shadow(none);
  5274. transition:none;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:16px;
  5279. line-height:30px;
  5280. }
  5281. #u48506 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:1470px;
  5285. top:490px;
  5286. width:225px;
  5287. height:30px;
  5288. display:flex;
  5289. transition:none;
  5290. transform-origin:50% 50%;
  5291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5292. font-weight:400;
  5293. font-style:normal;
  5294. font-size:16px;
  5295. line-height:30px;
  5296. }
  5297. #u48506 .text {
  5298. position:absolute;
  5299. align-self:flex-start;
  5300. padding:0px 0px 0px 0px;
  5301. box-sizing:border-box;
  5302. width:100%;
  5303. }
  5304. #u48506_text {
  5305. border-width:0px;
  5306. white-space:nowrap;
  5307. text-transform:none;
  5308. }
  5309. #u48507_div {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:49px;
  5315. height:25px;
  5316. background:inherit;
  5317. background-color:rgba(255, 255, 255, 0);
  5318. border-left:0px;
  5319. border-top:0px;
  5320. border-right:0px;
  5321. border-radius:0px;
  5322. border-bottom-right-radius:0px;
  5323. border-bottom-left-radius:0px;
  5324. filter:drop-shadow(none);
  5325. transition:none;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:12px;
  5330. color:#7F7F7F;
  5331. line-height:25px;
  5332. }
  5333. #u48507 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:1470px;
  5337. top:465px;
  5338. width:49px;
  5339. height:25px;
  5340. display:flex;
  5341. transition:none;
  5342. transform-origin:50% 50%;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:12px;
  5347. color:#7F7F7F;
  5348. line-height:25px;
  5349. }
  5350. #u48507 .text {
  5351. position:absolute;
  5352. align-self:flex-start;
  5353. padding:0px 0px 0px 0px;
  5354. box-sizing:border-box;
  5355. width:100%;
  5356. }
  5357. #u48507_text {
  5358. border-width:0px;
  5359. white-space:nowrap;
  5360. text-transform:none;
  5361. }
  5362. #u48508 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:0px;
  5368. height:0px;
  5369. }
  5370. #u48509_div {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:0px;
  5375. width:358px;
  5376. height:200px;
  5377. background:inherit;
  5378. background-color:rgba(255, 255, 255, 1);
  5379. border-radius:4px;
  5380. filter:drop-shadow(none);
  5381. transition:none;
  5382. }
  5383. #u48509 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:38px;
  5387. top:155px;
  5388. width:358px;
  5389. height:200px;
  5390. display:flex;
  5391. transition:none;
  5392. transform-origin:50% 50%;
  5393. }
  5394. #u48509 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:2px 2px 2px 2px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u48509_text {
  5402. border-width:0px;
  5403. word-wrap:break-word;
  5404. text-transform:none;
  5405. visibility:hidden;
  5406. }
  5407. #u48510_div {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:48px;
  5413. height:50px;
  5414. background:inherit;
  5415. background-color:rgba(24, 144, 255, 1);
  5416. border-radius:4px;
  5417. filter:drop-shadow(none);
  5418. transition:none;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. color:#FFFFFF;
  5423. }
  5424. #u48510 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:54px;
  5428. top:175px;
  5429. width:48px;
  5430. height:50px;
  5431. display:flex;
  5432. transition:none;
  5433. transform-origin:50% 50%;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. color:#FFFFFF;
  5438. }
  5439. #u48510 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u48510_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. }
  5451. #u48511_div {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:127px;
  5457. height:30px;
  5458. background:inherit;
  5459. background-color:rgba(255, 255, 255, 0);
  5460. border-left:0px;
  5461. border-top:0px;
  5462. border-right:0px;
  5463. border-radius:0px;
  5464. border-bottom-right-radius:0px;
  5465. border-bottom-left-radius:0px;
  5466. filter:drop-shadow(none);
  5467. transition:none;
  5468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5469. font-weight:400;
  5470. font-style:normal;
  5471. font-size:18px;
  5472. line-height:30px;
  5473. }
  5474. #u48511 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:116px;
  5478. top:175px;
  5479. width:127px;
  5480. height:30px;
  5481. display:flex;
  5482. transition:none;
  5483. transform-origin:50% 50%;
  5484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:18px;
  5488. line-height:30px;
  5489. }
  5490. #u48511 .text {
  5491. position:absolute;
  5492. align-self:flex-start;
  5493. padding:0px 0px 0px 0px;
  5494. box-sizing:border-box;
  5495. width:100%;
  5496. }
  5497. #u48511_text {
  5498. border-width:0px;
  5499. white-space:nowrap;
  5500. text-transform:none;
  5501. }
  5502. #u48512_div {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:181px;
  5508. height:80px;
  5509. background:inherit;
  5510. background-color:rgba(2, 167, 240, 0);
  5511. border-radius:4px;
  5512. filter:drop-shadow(none);
  5513. transition:none;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:12px;
  5518. color:#7F7F7F;
  5519. line-height:20px;
  5520. }
  5521. #u48512 {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:120px;
  5525. top:234px;
  5526. width:181px;
  5527. height:80px;
  5528. display:flex;
  5529. transition:none;
  5530. transform-origin:50% 50%;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:12px;
  5535. color:#7F7F7F;
  5536. line-height:20px;
  5537. }
  5538. #u48512 .text {
  5539. position:absolute;
  5540. align-self:center;
  5541. padding:0px 0px 0px 0px;
  5542. box-sizing:border-box;
  5543. width:100%;
  5544. }
  5545. #u48512_text {
  5546. border-width:0px;
  5547. white-space:nowrap;
  5548. text-transform:none;
  5549. }
  5550. #u48513 {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:0px;
  5556. height:0px;
  5557. }
  5558. #u48514_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:60px;
  5564. height:20px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 1);
  5567. box-sizing:border-box;
  5568. border-width:1px;
  5569. border-style:solid;
  5570. border-color:rgba(215, 215, 215, 1);
  5571. border-radius:2px;
  5572. filter:drop-shadow(none);
  5573. transition:none;
  5574. }
  5575. #u48514 {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:116px;
  5579. top:205px;
  5580. width:60px;
  5581. height:20px;
  5582. display:flex;
  5583. transition:none;
  5584. transform-origin:50% 50%;
  5585. }
  5586. #u48514 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u48514_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. visibility:hidden;
  5598. }
  5599. #u48515 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:0px;
  5605. height:0px;
  5606. }
  5607. #u48516_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:37px;
  5613. height:17px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 0);
  5616. border-left:0px;
  5617. border-top:0px;
  5618. border-right:0px;
  5619. border-radius:0px;
  5620. border-bottom-right-radius:0px;
  5621. border-bottom-left-radius:0px;
  5622. filter:drop-shadow(none);
  5623. transition:none;
  5624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:12px;
  5628. color:#7F7F7F;
  5629. }
  5630. #u48516 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:135px;
  5634. top:207px;
  5635. width:37px;
  5636. height:17px;
  5637. display:flex;
  5638. transition:none;
  5639. transform-origin:50% 50%;
  5640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:12px;
  5644. color:#7F7F7F;
  5645. }
  5646. #u48516 .text {
  5647. position:absolute;
  5648. align-self:flex-start;
  5649. padding:0px 0px 0px 0px;
  5650. box-sizing:border-box;
  5651. width:100%;
  5652. }
  5653. #u48516_text {
  5654. border-width:0px;
  5655. white-space:nowrap;
  5656. text-transform:none;
  5657. }
  5658. #u48517 {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:0px;
  5664. height:0px;
  5665. }
  5666. #u48518 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:120px;
  5670. top:209px;
  5671. width:12px;
  5672. height:12px;
  5673. display:flex;
  5674. transition:none;
  5675. }
  5676. #u48518 .text {
  5677. position:absolute;
  5678. align-self:center;
  5679. padding:2px 2px 2px 2px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u48518_img {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:12px;
  5689. height:12px;
  5690. }
  5691. #u48518_text {
  5692. border-width:0px;
  5693. word-wrap:break-word;
  5694. text-transform:none;
  5695. visibility:hidden;
  5696. }
  5697. #u48519 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:123px;
  5701. top:213px;
  5702. width:6px;
  5703. height:4px;
  5704. display:flex;
  5705. transition:none;
  5706. }
  5707. #u48519 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:2px 2px 2px 2px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u48519_img {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:6px;
  5720. height:4px;
  5721. }
  5722. #u48519_text {
  5723. border-width:0px;
  5724. word-wrap:break-word;
  5725. text-transform:none;
  5726. visibility:hidden;
  5727. }
  5728. #u48520_div {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:58px;
  5734. height:30px;
  5735. background:inherit;
  5736. background-color:rgba(24, 144, 255, 1);
  5737. border-radius:40px;
  5738. filter:drop-shadow(none);
  5739. transition:none;
  5740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:12px;
  5744. color:#FFFFFF;
  5745. }
  5746. #u48520 {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:328px;
  5750. top:318px;
  5751. width:58px;
  5752. height:30px;
  5753. display:flex;
  5754. transition:none;
  5755. transform-origin:50% 50%;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:12px;
  5760. color:#FFFFFF;
  5761. }
  5762. #u48520 .text {
  5763. position:absolute;
  5764. align-self:center;
  5765. padding:2px 2px 2px 2px;
  5766. box-sizing:border-box;
  5767. width:100%;
  5768. }
  5769. #u48520_text {
  5770. border-width:0px;
  5771. word-wrap:break-word;
  5772. text-transform:none;
  5773. }
  5774. #u48521_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:58px;
  5780. height:30px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 1);
  5783. box-sizing:border-box;
  5784. border-width:1px;
  5785. border-style:solid;
  5786. border-color:rgba(127, 127, 127, 1);
  5787. border-radius:40px;
  5788. filter:drop-shadow(none);
  5789. transition:none;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:12px;
  5794. }
  5795. #u48521 {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:260px;
  5799. top:318px;
  5800. width:58px;
  5801. height:30px;
  5802. display:flex;
  5803. transition:none;
  5804. transform-origin:50% 50%;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:12px;
  5809. }
  5810. #u48521 .text {
  5811. position:absolute;
  5812. align-self:center;
  5813. padding:2px 2px 2px 2px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u48521_text {
  5818. border-width:0px;
  5819. word-wrap:break-word;
  5820. text-transform:none;
  5821. }
  5822. #u48522 {
  5823. border-width:0px;
  5824. position:absolute;
  5825. left:0px;
  5826. top:0px;
  5827. width:0px;
  5828. height:0px;
  5829. }
  5830. #u48523_div {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:358px;
  5836. height:200px;
  5837. background:inherit;
  5838. background-color:rgba(255, 255, 255, 1);
  5839. border-radius:4px;
  5840. filter:drop-shadow(none);
  5841. transition:none;
  5842. }
  5843. #u48523 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:492px;
  5847. top:155px;
  5848. width:358px;
  5849. height:200px;
  5850. display:flex;
  5851. transition:none;
  5852. transform-origin:50% 50%;
  5853. }
  5854. #u48523 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u48523_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u48524_div {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:48px;
  5873. height:50px;
  5874. background:inherit;
  5875. background-color:rgba(24, 144, 255, 1);
  5876. border-radius:4px;
  5877. filter:drop-shadow(none);
  5878. transition:none;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. color:#FFFFFF;
  5883. }
  5884. #u48524 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:508px;
  5888. top:175px;
  5889. width:48px;
  5890. height:50px;
  5891. display:flex;
  5892. transition:none;
  5893. transform-origin:50% 50%;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. color:#FFFFFF;
  5898. }
  5899. #u48524 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 2px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u48524_text {
  5907. border-width:0px;
  5908. word-wrap:break-word;
  5909. text-transform:none;
  5910. }
  5911. #u48525_div {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:127px;
  5917. height:30px;
  5918. background:inherit;
  5919. background-color:rgba(255, 255, 255, 0);
  5920. border-left:0px;
  5921. border-top:0px;
  5922. border-right:0px;
  5923. border-radius:0px;
  5924. border-bottom-right-radius:0px;
  5925. border-bottom-left-radius:0px;
  5926. filter:drop-shadow(none);
  5927. transition:none;
  5928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:18px;
  5932. line-height:30px;
  5933. }
  5934. #u48525 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:570px;
  5938. top:175px;
  5939. width:127px;
  5940. height:30px;
  5941. display:flex;
  5942. transition:none;
  5943. transform-origin:50% 50%;
  5944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:18px;
  5948. line-height:30px;
  5949. }
  5950. #u48525 .text {
  5951. position:absolute;
  5952. align-self:flex-start;
  5953. padding:0px 0px 0px 0px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u48525_text {
  5958. border-width:0px;
  5959. white-space:nowrap;
  5960. text-transform:none;
  5961. }
  5962. #u48526_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:181px;
  5968. height:80px;
  5969. background:inherit;
  5970. background-color:rgba(2, 167, 240, 0);
  5971. border-radius:4px;
  5972. filter:drop-shadow(none);
  5973. transition:none;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:12px;
  5978. color:#7F7F7F;
  5979. line-height:20px;
  5980. }
  5981. #u48526 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:574px;
  5985. top:234px;
  5986. width:181px;
  5987. height:80px;
  5988. display:flex;
  5989. transition:none;
  5990. transform-origin:50% 50%;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:12px;
  5995. color:#7F7F7F;
  5996. line-height:20px;
  5997. }
  5998. #u48526 .text {
  5999. position:absolute;
  6000. align-self:center;
  6001. padding:0px 0px 0px 0px;
  6002. box-sizing:border-box;
  6003. width:100%;
  6004. }
  6005. #u48526_text {
  6006. border-width:0px;
  6007. white-space:nowrap;
  6008. text-transform:none;
  6009. }
  6010. #u48527 {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:0px;
  6016. height:0px;
  6017. }
  6018. #u48528_div {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:60px;
  6024. height:20px;
  6025. background:inherit;
  6026. background-color:rgba(255, 255, 255, 1);
  6027. box-sizing:border-box;
  6028. border-width:1px;
  6029. border-style:solid;
  6030. border-color:rgba(215, 215, 215, 1);
  6031. border-radius:2px;
  6032. filter:drop-shadow(none);
  6033. transition:none;
  6034. }
  6035. #u48528 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:570px;
  6039. top:205px;
  6040. width:60px;
  6041. height:20px;
  6042. display:flex;
  6043. transition:none;
  6044. transform-origin:50% 50%;
  6045. }
  6046. #u48528 .text {
  6047. position:absolute;
  6048. align-self:center;
  6049. padding:2px 2px 2px 2px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u48528_text {
  6054. border-width:0px;
  6055. word-wrap:break-word;
  6056. text-transform:none;
  6057. visibility:hidden;
  6058. }
  6059. #u48529 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:0px;
  6065. height:0px;
  6066. }
  6067. #u48530_div {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:37px;
  6073. height:17px;
  6074. background:inherit;
  6075. background-color:rgba(255, 255, 255, 0);
  6076. border-left:0px;
  6077. border-top:0px;
  6078. border-right:0px;
  6079. border-radius:0px;
  6080. border-bottom-right-radius:0px;
  6081. border-bottom-left-radius:0px;
  6082. filter:drop-shadow(none);
  6083. transition:none;
  6084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:12px;
  6088. color:#7F7F7F;
  6089. }
  6090. #u48530 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:589px;
  6094. top:207px;
  6095. width:37px;
  6096. height:17px;
  6097. display:flex;
  6098. transition:none;
  6099. transform-origin:50% 50%;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:12px;
  6104. color:#7F7F7F;
  6105. }
  6106. #u48530 .text {
  6107. position:absolute;
  6108. align-self:flex-start;
  6109. padding:0px 0px 0px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u48530_text {
  6114. border-width:0px;
  6115. white-space:nowrap;
  6116. text-transform:none;
  6117. }
  6118. #u48531 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:0px;
  6124. height:0px;
  6125. }
  6126. #u48532 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:574px;
  6130. top:209px;
  6131. width:12px;
  6132. height:12px;
  6133. display:flex;
  6134. transition:none;
  6135. }
  6136. #u48532 .text {
  6137. position:absolute;
  6138. align-self:center;
  6139. padding:2px 2px 2px 2px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u48532_img {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:12px;
  6149. height:12px;
  6150. }
  6151. #u48532_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u48533 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:577px;
  6161. top:213px;
  6162. width:6px;
  6163. height:4px;
  6164. display:flex;
  6165. transition:none;
  6166. }
  6167. #u48533 .text {
  6168. position:absolute;
  6169. align-self:center;
  6170. padding:2px 2px 2px 2px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u48533_img {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:6px;
  6180. height:4px;
  6181. }
  6182. #u48533_text {
  6183. border-width:0px;
  6184. word-wrap:break-word;
  6185. text-transform:none;
  6186. visibility:hidden;
  6187. }
  6188. #u48534_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:85px;
  6194. height:30px;
  6195. background:inherit;
  6196. background-color:rgba(242, 242, 242, 1);
  6197. border-radius:40px;
  6198. filter:drop-shadow(none);
  6199. transition:none;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:12px;
  6204. color:#AAAAAA;
  6205. }
  6206. #u48534 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:754px;
  6210. top:315px;
  6211. width:85px;
  6212. height:30px;
  6213. display:flex;
  6214. transition:none;
  6215. transform-origin:50% 50%;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:12px;
  6220. color:#AAAAAA;
  6221. }
  6222. #u48534 .text {
  6223. position:absolute;
  6224. align-self:center;
  6225. padding:2px 2px 2px 2px;
  6226. box-sizing:border-box;
  6227. width:100%;
  6228. }
  6229. #u48534_text {
  6230. border-width:0px;
  6231. word-wrap:break-word;
  6232. text-transform:none;
  6233. }
  6234. #u48535 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:0px;
  6240. height:0px;
  6241. }
  6242. #u48536_div {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:358px;
  6248. height:200px;
  6249. background:inherit;
  6250. background-color:rgba(255, 255, 255, 1);
  6251. border-radius:4px;
  6252. filter:drop-shadow(none);
  6253. transition:none;
  6254. }
  6255. #u48536 {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:947px;
  6259. top:155px;
  6260. width:358px;
  6261. height:200px;
  6262. display:flex;
  6263. transition:none;
  6264. transform-origin:50% 50%;
  6265. }
  6266. #u48536 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 2px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u48536_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. visibility:hidden;
  6278. }
  6279. #u48537_div {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:48px;
  6285. height:50px;
  6286. background:inherit;
  6287. background-color:rgba(24, 144, 255, 1);
  6288. border-radius:4px;
  6289. filter:drop-shadow(none);
  6290. transition:none;
  6291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6292. font-weight:400;
  6293. font-style:normal;
  6294. color:#FFFFFF;
  6295. }
  6296. #u48537 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:963px;
  6300. top:175px;
  6301. width:48px;
  6302. height:50px;
  6303. display:flex;
  6304. transition:none;
  6305. transform-origin:50% 50%;
  6306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6307. font-weight:400;
  6308. font-style:normal;
  6309. color:#FFFFFF;
  6310. }
  6311. #u48537 .text {
  6312. position:absolute;
  6313. align-self:center;
  6314. padding:2px 2px 2px 2px;
  6315. box-sizing:border-box;
  6316. width:100%;
  6317. }
  6318. #u48537_text {
  6319. border-width:0px;
  6320. word-wrap:break-word;
  6321. text-transform:none;
  6322. }
  6323. #u48538_div {
  6324. border-width:0px;
  6325. position:absolute;
  6326. left:0px;
  6327. top:0px;
  6328. width:127px;
  6329. height:30px;
  6330. background:inherit;
  6331. background-color:rgba(255, 255, 255, 0);
  6332. border-left:0px;
  6333. border-top:0px;
  6334. border-right:0px;
  6335. border-radius:0px;
  6336. border-bottom-right-radius:0px;
  6337. border-bottom-left-radius:0px;
  6338. filter:drop-shadow(none);
  6339. transition:none;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:18px;
  6344. line-height:30px;
  6345. }
  6346. #u48538 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:1025px;
  6350. top:175px;
  6351. width:127px;
  6352. height:30px;
  6353. display:flex;
  6354. transition:none;
  6355. transform-origin:50% 50%;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:18px;
  6360. line-height:30px;
  6361. }
  6362. #u48538 .text {
  6363. position:absolute;
  6364. align-self:flex-start;
  6365. padding:0px 0px 0px 0px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u48538_text {
  6370. border-width:0px;
  6371. white-space:nowrap;
  6372. text-transform:none;
  6373. }
  6374. #u48539_div {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:181px;
  6380. height:80px;
  6381. background:inherit;
  6382. background-color:rgba(2, 167, 240, 0);
  6383. border-radius:4px;
  6384. filter:drop-shadow(none);
  6385. transition:none;
  6386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:12px;
  6390. color:#7F7F7F;
  6391. line-height:20px;
  6392. }
  6393. #u48539 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:1029px;
  6397. top:234px;
  6398. width:181px;
  6399. height:80px;
  6400. display:flex;
  6401. transition:none;
  6402. transform-origin:50% 50%;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:12px;
  6407. color:#7F7F7F;
  6408. line-height:20px;
  6409. }
  6410. #u48539 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:0px 0px 0px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u48539_text {
  6418. border-width:0px;
  6419. white-space:nowrap;
  6420. text-transform:none;
  6421. }
  6422. #u48540 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:0px;
  6428. height:0px;
  6429. }
  6430. #u48541_div {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:60px;
  6436. height:20px;
  6437. background:inherit;
  6438. background-color:rgba(255, 255, 255, 1);
  6439. box-sizing:border-box;
  6440. border-width:1px;
  6441. border-style:solid;
  6442. border-color:rgba(215, 215, 215, 1);
  6443. border-radius:2px;
  6444. filter:drop-shadow(none);
  6445. transition:none;
  6446. }
  6447. #u48541 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:1025px;
  6451. top:205px;
  6452. width:60px;
  6453. height:20px;
  6454. display:flex;
  6455. transition:none;
  6456. transform-origin:50% 50%;
  6457. }
  6458. #u48541 .text {
  6459. position:absolute;
  6460. align-self:center;
  6461. padding:2px 2px 2px 2px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u48541_text {
  6466. border-width:0px;
  6467. word-wrap:break-word;
  6468. text-transform:none;
  6469. visibility:hidden;
  6470. }
  6471. #u48542 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:0px;
  6477. height:0px;
  6478. }
  6479. #u48543_div {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:37px;
  6485. height:17px;
  6486. background:inherit;
  6487. background-color:rgba(255, 255, 255, 0);
  6488. border-left:0px;
  6489. border-top:0px;
  6490. border-right:0px;
  6491. border-radius:0px;
  6492. border-bottom-right-radius:0px;
  6493. border-bottom-left-radius:0px;
  6494. filter:drop-shadow(none);
  6495. transition:none;
  6496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. font-size:12px;
  6500. color:#7F7F7F;
  6501. }
  6502. #u48543 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:1044px;
  6506. top:207px;
  6507. width:37px;
  6508. height:17px;
  6509. display:flex;
  6510. transition:none;
  6511. transform-origin:50% 50%;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:12px;
  6516. color:#7F7F7F;
  6517. }
  6518. #u48543 .text {
  6519. position:absolute;
  6520. align-self:flex-start;
  6521. padding:0px 0px 0px 0px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u48543_text {
  6526. border-width:0px;
  6527. white-space:nowrap;
  6528. text-transform:none;
  6529. }
  6530. #u48544 {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:0px;
  6536. height:0px;
  6537. }
  6538. #u48545 {
  6539. border-width:0px;
  6540. position:absolute;
  6541. left:1029px;
  6542. top:209px;
  6543. width:12px;
  6544. height:12px;
  6545. display:flex;
  6546. transition:none;
  6547. }
  6548. #u48545 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:2px 2px 2px 2px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u48545_img {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:12px;
  6561. height:12px;
  6562. }
  6563. #u48545_text {
  6564. border-width:0px;
  6565. word-wrap:break-word;
  6566. text-transform:none;
  6567. visibility:hidden;
  6568. }
  6569. #u48546 {
  6570. border-width:0px;
  6571. position:absolute;
  6572. left:1032px;
  6573. top:213px;
  6574. width:6px;
  6575. height:4px;
  6576. display:flex;
  6577. transition:none;
  6578. }
  6579. #u48546 .text {
  6580. position:absolute;
  6581. align-self:center;
  6582. padding:2px 2px 2px 2px;
  6583. box-sizing:border-box;
  6584. width:100%;
  6585. }
  6586. #u48546_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:6px;
  6592. height:4px;
  6593. }
  6594. #u48546_text {
  6595. border-width:0px;
  6596. word-wrap:break-word;
  6597. text-transform:none;
  6598. visibility:hidden;
  6599. }
  6600. #u48547_div {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:85px;
  6606. height:30px;
  6607. background:inherit;
  6608. background-color:rgba(242, 242, 242, 1);
  6609. border-radius:40px;
  6610. filter:drop-shadow(none);
  6611. transition:none;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. color:#AAAAAA;
  6617. }
  6618. #u48547 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:1209px;
  6622. top:315px;
  6623. width:85px;
  6624. height:30px;
  6625. display:flex;
  6626. transition:none;
  6627. transform-origin:50% 50%;
  6628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:12px;
  6632. color:#AAAAAA;
  6633. }
  6634. #u48547 .text {
  6635. position:absolute;
  6636. align-self:center;
  6637. padding:2px 2px 2px 2px;
  6638. box-sizing:border-box;
  6639. width:100%;
  6640. }
  6641. #u48547_text {
  6642. border-width:0px;
  6643. word-wrap:break-word;
  6644. text-transform:none;
  6645. }
  6646. #u48548 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:0px;
  6652. height:0px;
  6653. }
  6654. #u48549_div {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:358px;
  6660. height:200px;
  6661. background:inherit;
  6662. background-color:rgba(255, 255, 255, 1);
  6663. border-radius:4px;
  6664. filter:drop-shadow(none);
  6665. transition:none;
  6666. }
  6667. #u48549 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:947px;
  6671. top:365px;
  6672. width:358px;
  6673. height:200px;
  6674. display:flex;
  6675. transition:none;
  6676. transform-origin:50% 50%;
  6677. }
  6678. #u48549 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:2px 2px 2px 2px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u48549_text {
  6686. border-width:0px;
  6687. word-wrap:break-word;
  6688. text-transform:none;
  6689. visibility:hidden;
  6690. }
  6691. #u48550_div {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:48px;
  6697. height:50px;
  6698. background:inherit;
  6699. background-color:rgba(24, 144, 255, 1);
  6700. border-radius:4px;
  6701. filter:drop-shadow(none);
  6702. transition:none;
  6703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6704. font-weight:400;
  6705. font-style:normal;
  6706. color:#FFFFFF;
  6707. }
  6708. #u48550 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:963px;
  6712. top:385px;
  6713. width:48px;
  6714. height:50px;
  6715. display:flex;
  6716. transition:none;
  6717. transform-origin:50% 50%;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. color:#FFFFFF;
  6722. }
  6723. #u48550 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:2px 2px 2px 2px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u48550_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. }
  6735. #u48551_div {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:127px;
  6741. height:30px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 0);
  6744. border-left:0px;
  6745. border-top:0px;
  6746. border-right:0px;
  6747. border-radius:0px;
  6748. border-bottom-right-radius:0px;
  6749. border-bottom-left-radius:0px;
  6750. filter:drop-shadow(none);
  6751. transition:none;
  6752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6753. font-weight:400;
  6754. font-style:normal;
  6755. font-size:18px;
  6756. line-height:30px;
  6757. }
  6758. #u48551 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:1025px;
  6762. top:385px;
  6763. width:127px;
  6764. height:30px;
  6765. display:flex;
  6766. transition:none;
  6767. transform-origin:50% 50%;
  6768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6769. font-weight:400;
  6770. font-style:normal;
  6771. font-size:18px;
  6772. line-height:30px;
  6773. }
  6774. #u48551 .text {
  6775. position:absolute;
  6776. align-self:flex-start;
  6777. padding:0px 0px 0px 0px;
  6778. box-sizing:border-box;
  6779. width:100%;
  6780. }
  6781. #u48551_text {
  6782. border-width:0px;
  6783. white-space:nowrap;
  6784. text-transform:none;
  6785. }
  6786. #u48552_div {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:0px;
  6790. top:0px;
  6791. width:181px;
  6792. height:80px;
  6793. background:inherit;
  6794. background-color:rgba(2, 167, 240, 0);
  6795. border-radius:4px;
  6796. filter:drop-shadow(none);
  6797. transition:none;
  6798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6799. font-weight:400;
  6800. font-style:normal;
  6801. font-size:12px;
  6802. color:#7F7F7F;
  6803. line-height:20px;
  6804. }
  6805. #u48552 {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:1029px;
  6809. top:444px;
  6810. width:181px;
  6811. height:80px;
  6812. display:flex;
  6813. transition:none;
  6814. transform-origin:50% 50%;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:12px;
  6819. color:#7F7F7F;
  6820. line-height:20px;
  6821. }
  6822. #u48552 .text {
  6823. position:absolute;
  6824. align-self:center;
  6825. padding:0px 0px 0px 0px;
  6826. box-sizing:border-box;
  6827. width:100%;
  6828. }
  6829. #u48552_text {
  6830. border-width:0px;
  6831. white-space:nowrap;
  6832. text-transform:none;
  6833. }
  6834. #u48553 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:0px;
  6840. height:0px;
  6841. }
  6842. #u48554_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:60px;
  6848. height:20px;
  6849. background:inherit;
  6850. background-color:rgba(255, 255, 255, 1);
  6851. box-sizing:border-box;
  6852. border-width:1px;
  6853. border-style:solid;
  6854. border-color:rgba(215, 215, 215, 1);
  6855. border-radius:2px;
  6856. filter:drop-shadow(none);
  6857. transition:none;
  6858. }
  6859. #u48554 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:1025px;
  6863. top:415px;
  6864. width:60px;
  6865. height:20px;
  6866. display:flex;
  6867. transition:none;
  6868. transform-origin:50% 50%;
  6869. }
  6870. #u48554 .text {
  6871. position:absolute;
  6872. align-self:center;
  6873. padding:2px 2px 2px 2px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u48554_text {
  6878. border-width:0px;
  6879. word-wrap:break-word;
  6880. text-transform:none;
  6881. visibility:hidden;
  6882. }
  6883. #u48555 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:0px;
  6887. top:0px;
  6888. width:0px;
  6889. height:0px;
  6890. }
  6891. #u48556_div {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:37px;
  6897. height:17px;
  6898. background:inherit;
  6899. background-color:rgba(255, 255, 255, 0);
  6900. border-left:0px;
  6901. border-top:0px;
  6902. border-right:0px;
  6903. border-radius:0px;
  6904. border-bottom-right-radius:0px;
  6905. border-bottom-left-radius:0px;
  6906. filter:drop-shadow(none);
  6907. transition:none;
  6908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. font-size:12px;
  6912. color:#7F7F7F;
  6913. }
  6914. #u48556 {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:1044px;
  6918. top:417px;
  6919. width:37px;
  6920. height:17px;
  6921. display:flex;
  6922. transition:none;
  6923. transform-origin:50% 50%;
  6924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6925. font-weight:400;
  6926. font-style:normal;
  6927. font-size:12px;
  6928. color:#7F7F7F;
  6929. }
  6930. #u48556 .text {
  6931. position:absolute;
  6932. align-self:flex-start;
  6933. padding:0px 0px 0px 0px;
  6934. box-sizing:border-box;
  6935. width:100%;
  6936. }
  6937. #u48556_text {
  6938. border-width:0px;
  6939. white-space:nowrap;
  6940. text-transform:none;
  6941. }
  6942. #u48557 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:0px;
  6948. height:0px;
  6949. }
  6950. #u48558 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:1029px;
  6954. top:419px;
  6955. width:12px;
  6956. height:12px;
  6957. display:flex;
  6958. transition:none;
  6959. }
  6960. #u48558 .text {
  6961. position:absolute;
  6962. align-self:center;
  6963. padding:2px 2px 2px 2px;
  6964. box-sizing:border-box;
  6965. width:100%;
  6966. }
  6967. #u48558_img {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:12px;
  6973. height:12px;
  6974. }
  6975. #u48558_text {
  6976. border-width:0px;
  6977. word-wrap:break-word;
  6978. text-transform:none;
  6979. visibility:hidden;
  6980. }
  6981. #u48559 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:1032px;
  6985. top:423px;
  6986. width:6px;
  6987. height:4px;
  6988. display:flex;
  6989. transition:none;
  6990. }
  6991. #u48559 .text {
  6992. position:absolute;
  6993. align-self:center;
  6994. padding:2px 2px 2px 2px;
  6995. box-sizing:border-box;
  6996. width:100%;
  6997. }
  6998. #u48559_img {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:0px;
  7002. top:0px;
  7003. width:6px;
  7004. height:4px;
  7005. }
  7006. #u48559_text {
  7007. border-width:0px;
  7008. word-wrap:break-word;
  7009. text-transform:none;
  7010. visibility:hidden;
  7011. }
  7012. #u48560_div {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:0px;
  7016. top:0px;
  7017. width:85px;
  7018. height:30px;
  7019. background:inherit;
  7020. background-color:rgba(242, 242, 242, 1);
  7021. border-radius:40px;
  7022. filter:drop-shadow(none);
  7023. transition:none;
  7024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7025. font-weight:400;
  7026. font-style:normal;
  7027. font-size:12px;
  7028. color:#AAAAAA;
  7029. }
  7030. #u48560 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:1209px;
  7034. top:525px;
  7035. width:85px;
  7036. height:30px;
  7037. display:flex;
  7038. transition:none;
  7039. transform-origin:50% 50%;
  7040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:12px;
  7044. color:#AAAAAA;
  7045. }
  7046. #u48560 .text {
  7047. position:absolute;
  7048. align-self:center;
  7049. padding:2px 2px 2px 2px;
  7050. box-sizing:border-box;
  7051. width:100%;
  7052. }
  7053. #u48560_text {
  7054. border-width:0px;
  7055. word-wrap:break-word;
  7056. text-transform:none;
  7057. }
  7058. #u48561_div {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:48px;
  7064. height:50px;
  7065. background:inherit;
  7066. background-color:rgba(24, 144, 255, 1);
  7067. border-radius:4px;
  7068. filter:drop-shadow(none);
  7069. transition:none;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. color:#FFFFFF;
  7074. }
  7075. #u48561 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:1413px;
  7079. top:136px;
  7080. width:48px;
  7081. height:50px;
  7082. display:flex;
  7083. transition:none;
  7084. transform-origin:50% 50%;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. color:#FFFFFF;
  7089. }
  7090. #u48561 .text {
  7091. position:absolute;
  7092. align-self:center;
  7093. padding:2px 2px 2px 2px;
  7094. box-sizing:border-box;
  7095. width:100%;
  7096. }
  7097. #u48561_text {
  7098. border-width:0px;
  7099. word-wrap:break-word;
  7100. text-transform:none;
  7101. }
  7102. #u48562_div {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:127px;
  7108. height:30px;
  7109. background:inherit;
  7110. background-color:rgba(255, 255, 255, 0);
  7111. border-left:0px;
  7112. border-top:0px;
  7113. border-right:0px;
  7114. border-radius:0px;
  7115. border-bottom-right-radius:0px;
  7116. border-bottom-left-radius:0px;
  7117. filter:drop-shadow(none);
  7118. transition:none;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:18px;
  7123. line-height:30px;
  7124. }
  7125. #u48562 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:1475px;
  7129. top:136px;
  7130. width:127px;
  7131. height:30px;
  7132. display:flex;
  7133. transition:none;
  7134. transform-origin:50% 50%;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:18px;
  7139. line-height:30px;
  7140. }
  7141. #u48562 .text {
  7142. position:absolute;
  7143. align-self:flex-start;
  7144. padding:0px 0px 0px 0px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u48562_text {
  7149. border-width:0px;
  7150. white-space:nowrap;
  7151. text-transform:none;
  7152. }
  7153. #u48563 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:0px;
  7159. height:0px;
  7160. }
  7161. #u48564_div {
  7162. border-width:0px;
  7163. position:absolute;
  7164. left:0px;
  7165. top:0px;
  7166. width:60px;
  7167. height:20px;
  7168. background:inherit;
  7169. background-color:rgba(255, 255, 255, 1);
  7170. box-sizing:border-box;
  7171. border-width:1px;
  7172. border-style:solid;
  7173. border-color:rgba(215, 215, 215, 1);
  7174. border-radius:2px;
  7175. filter:drop-shadow(none);
  7176. transition:none;
  7177. }
  7178. #u48564 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:1475px;
  7182. top:171px;
  7183. width:60px;
  7184. height:20px;
  7185. display:flex;
  7186. transition:none;
  7187. transform-origin:50% 50%;
  7188. }
  7189. #u48564 .text {
  7190. position:absolute;
  7191. align-self:center;
  7192. padding:2px 2px 2px 2px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u48564_text {
  7197. border-width:0px;
  7198. word-wrap:break-word;
  7199. text-transform:none;
  7200. visibility:hidden;
  7201. }
  7202. #u48565 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:0px;
  7208. height:0px;
  7209. }
  7210. #u48566_div {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:0px;
  7214. top:0px;
  7215. width:37px;
  7216. height:17px;
  7217. background:inherit;
  7218. background-color:rgba(255, 255, 255, 0);
  7219. border-left:0px;
  7220. border-top:0px;
  7221. border-right:0px;
  7222. border-radius:0px;
  7223. border-bottom-right-radius:0px;
  7224. border-bottom-left-radius:0px;
  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:#7F7F7F;
  7232. }
  7233. #u48566 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:1494px;
  7237. top:173px;
  7238. width:37px;
  7239. height:17px;
  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:#7F7F7F;
  7248. }
  7249. #u48566 .text {
  7250. position:absolute;
  7251. align-self:flex-start;
  7252. padding:0px 0px 0px 0px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u48566_text {
  7257. border-width:0px;
  7258. white-space:nowrap;
  7259. text-transform:none;
  7260. }
  7261. #u48567 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:0px;
  7267. height:0px;
  7268. }
  7269. #u48568 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:1479px;
  7273. top:175px;
  7274. width:12px;
  7275. height:12px;
  7276. display:flex;
  7277. transition:none;
  7278. }
  7279. #u48568 .text {
  7280. position:absolute;
  7281. align-self:center;
  7282. padding:2px 2px 2px 2px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u48568_img {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:12px;
  7292. height:12px;
  7293. }
  7294. #u48568_text {
  7295. border-width:0px;
  7296. word-wrap:break-word;
  7297. text-transform:none;
  7298. visibility:hidden;
  7299. }
  7300. #u48569 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:1482px;
  7304. top:179px;
  7305. width:6px;
  7306. height:4px;
  7307. display:flex;
  7308. transition:none;
  7309. }
  7310. #u48569 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:2px 2px 2px 2px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u48569_img {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:6px;
  7323. height:4px;
  7324. }
  7325. #u48569_text {
  7326. border-width:0px;
  7327. word-wrap:break-word;
  7328. text-transform:none;
  7329. visibility:hidden;
  7330. }
  7331. #u48570 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:0px;
  7337. height:0px;
  7338. }
  7339. #u48571_div {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:0px;
  7343. top:0px;
  7344. width:375px;
  7345. height:80px;
  7346. background:inherit;
  7347. background-color:rgba(255, 255, 255, 1);
  7348. border-left:0px;
  7349. border-top:0px;
  7350. border-right:0px;
  7351. border-radius:0px;
  7352. border-bottom-right-radius:0px;
  7353. border-bottom-left-radius:0px;
  7354. filter:drop-shadow(none);
  7355. transition:none;
  7356. }
  7357. #u48571 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:1393px;
  7361. top:370px;
  7362. width:375px;
  7363. height:80px;
  7364. display:flex;
  7365. transition:none;
  7366. transform-origin:50% 50%;
  7367. }
  7368. #u48571 .text {
  7369. position:absolute;
  7370. align-self:center;
  7371. padding:2px 2px 2px 2px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u48571_text {
  7376. border-width:0px;
  7377. word-wrap:break-word;
  7378. text-transform:none;
  7379. visibility:hidden;
  7380. }
  7381. #u48572_div {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:193px;
  7387. height:30px;
  7388. background:inherit;
  7389. background-color:rgba(255, 255, 255, 0);
  7390. border-left:0px;
  7391. border-top:0px;
  7392. border-right:0px;
  7393. border-radius:0px;
  7394. border-bottom-right-radius:0px;
  7395. border-bottom-left-radius:0px;
  7396. filter:drop-shadow(none);
  7397. transition:none;
  7398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7399. font-weight:400;
  7400. font-style:normal;
  7401. font-size:16px;
  7402. line-height:30px;
  7403. }
  7404. #u48572 {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:1470px;
  7408. top:409px;
  7409. width:193px;
  7410. height:30px;
  7411. display:flex;
  7412. transition:none;
  7413. transform-origin:50% 50%;
  7414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:16px;
  7418. line-height:30px;
  7419. }
  7420. #u48572 .text {
  7421. position:absolute;
  7422. align-self:flex-start;
  7423. padding:0px 0px 0px 0px;
  7424. box-sizing:border-box;
  7425. width:100%;
  7426. }
  7427. #u48572_text {
  7428. border-width:0px;
  7429. white-space:nowrap;
  7430. text-transform:none;
  7431. }
  7432. #u48573_div {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:49px;
  7438. height:25px;
  7439. background:inherit;
  7440. background-color:rgba(255, 255, 255, 0);
  7441. border-left:0px;
  7442. border-top:0px;
  7443. border-right:0px;
  7444. border-radius:0px;
  7445. border-bottom-right-radius:0px;
  7446. border-bottom-left-radius:0px;
  7447. filter:drop-shadow(none);
  7448. transition:none;
  7449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7450. font-weight:400;
  7451. font-style:normal;
  7452. font-size:12px;
  7453. color:#7F7F7F;
  7454. line-height:25px;
  7455. }
  7456. #u48573 {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:1470px;
  7460. top:384px;
  7461. width:49px;
  7462. height:25px;
  7463. display:flex;
  7464. transition:none;
  7465. transform-origin:50% 50%;
  7466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:12px;
  7470. color:#7F7F7F;
  7471. line-height:25px;
  7472. }
  7473. #u48573 .text {
  7474. position:absolute;
  7475. align-self:flex-start;
  7476. padding:0px 0px 0px 0px;
  7477. box-sizing:border-box;
  7478. width:100%;
  7479. }
  7480. #u48573_text {
  7481. border-width:0px;
  7482. white-space:nowrap;
  7483. text-transform:none;
  7484. }
  7485. #u48574 {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:1817px;
  7489. top:0px;
  7490. width:433px;
  7491. height:865px;
  7492. }
  7493. #u48575 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:433px;
  7499. height:865px;
  7500. display:flex;
  7501. transition:none;
  7502. }
  7503. #u48575 .text {
  7504. position:absolute;
  7505. align-self:center;
  7506. padding:2px 2px 2px 2px;
  7507. box-sizing:border-box;
  7508. width:100%;
  7509. }
  7510. #u48575_img {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:433px;
  7516. height:865px;
  7517. }
  7518. #u48575_text {
  7519. border-width:0px;
  7520. word-wrap:break-word;
  7521. text-transform:none;
  7522. visibility:hidden;
  7523. }
  7524. #u48576_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:375px;
  7530. height:40px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 1);
  7533. box-sizing:border-box;
  7534. border-width:1px;
  7535. border-style:solid;
  7536. border-color:rgba(215, 215, 215, 1);
  7537. border-left:0px;
  7538. border-top:0px;
  7539. border-right:0px;
  7540. border-radius:0px;
  7541. border-bottom-right-radius:0px;
  7542. border-bottom-left-radius:0px;
  7543. filter:drop-shadow(none);
  7544. transition:none;
  7545. }
  7546. #u48576 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:29px;
  7550. top:67px;
  7551. width:375px;
  7552. height:40px;
  7553. display:flex;
  7554. transition:none;
  7555. transform-origin:50% 50%;
  7556. }
  7557. #u48576 .text {
  7558. position:absolute;
  7559. align-self:center;
  7560. padding:2px 2px 2px 2px;
  7561. box-sizing:border-box;
  7562. width:100%;
  7563. }
  7564. #u48576_text {
  7565. border-width:0px;
  7566. word-wrap:break-word;
  7567. text-transform:none;
  7568. visibility:hidden;
  7569. }
  7570. #u48577 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:0px;
  7575. width:0px;
  7576. height:0px;
  7577. }
  7578. #u48578_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:88px;
  7584. height:32px;
  7585. background:inherit;
  7586. background-color:rgba(255, 255, 255, 1);
  7587. box-sizing:border-box;
  7588. border-width:1px;
  7589. border-style:solid;
  7590. border-color:rgba(242, 242, 242, 1);
  7591. border-radius:33px;
  7592. filter:drop-shadow(none);
  7593. transition:none;
  7594. }
  7595. #u48578 {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:309px;
  7599. top:71px;
  7600. width:88px;
  7601. height:32px;
  7602. display:flex;
  7603. transition:none;
  7604. transform-origin:50% 50%;
  7605. }
  7606. #u48578 .text {
  7607. position:absolute;
  7608. align-self:center;
  7609. padding:2px 2px 2px 2px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u48578_text {
  7614. border-width:0px;
  7615. word-wrap:break-word;
  7616. text-transform:none;
  7617. visibility:hidden;
  7618. }
  7619. #u48579 {
  7620. border-width:0px;
  7621. position:absolute;
  7622. left:0px;
  7623. top:0px;
  7624. width:0px;
  7625. height:0px;
  7626. }
  7627. #u48580 {
  7628. border-width:0px;
  7629. position:absolute;
  7630. left:372px;
  7631. top:78px;
  7632. width:18px;
  7633. height:18px;
  7634. display:flex;
  7635. transition:none;
  7636. }
  7637. #u48580 .text {
  7638. position:absolute;
  7639. align-self:center;
  7640. padding:2px 2px 2px 2px;
  7641. box-sizing:border-box;
  7642. width:100%;
  7643. }
  7644. #u48580_img {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:18px;
  7650. height:18px;
  7651. }
  7652. #u48580_text {
  7653. border-width:0px;
  7654. word-wrap:break-word;
  7655. text-transform:none;
  7656. visibility:hidden;
  7657. }
  7658. #u48581 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:378px;
  7662. top:84px;
  7663. width:6px;
  7664. height:6px;
  7665. display:flex;
  7666. transition:none;
  7667. }
  7668. #u48581 .text {
  7669. position:absolute;
  7670. align-self:center;
  7671. padding:2px 2px 2px 2px;
  7672. box-sizing:border-box;
  7673. width:100%;
  7674. }
  7675. #u48581_img {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:0px;
  7679. top:0px;
  7680. width:6px;
  7681. height:6px;
  7682. }
  7683. #u48581_text {
  7684. border-width:0px;
  7685. word-wrap:break-word;
  7686. text-transform:none;
  7687. visibility:hidden;
  7688. }
  7689. #u48582 {
  7690. border-width:0px;
  7691. position:absolute;
  7692. left:0px;
  7693. top:0px;
  7694. width:0px;
  7695. height:0px;
  7696. }
  7697. #u48583 {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:323px;
  7701. top:85px;
  7702. width:5px;
  7703. height:5px;
  7704. display:flex;
  7705. transition:none;
  7706. }
  7707. #u48583 .text {
  7708. position:absolute;
  7709. align-self:center;
  7710. padding:2px 2px 2px 2px;
  7711. box-sizing:border-box;
  7712. width:100%;
  7713. }
  7714. #u48583_img {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:5px;
  7720. height:5px;
  7721. }
  7722. #u48583_text {
  7723. border-width:0px;
  7724. word-wrap:break-word;
  7725. text-transform:none;
  7726. visibility:hidden;
  7727. }
  7728. #u48584 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:339px;
  7732. top:85px;
  7733. width:5px;
  7734. height:5px;
  7735. display:flex;
  7736. transition:none;
  7737. }
  7738. #u48584 .text {
  7739. position:absolute;
  7740. align-self:center;
  7741. padding:2px 2px 2px 2px;
  7742. box-sizing:border-box;
  7743. width:100%;
  7744. }
  7745. #u48584_img {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:0px;
  7749. top:0px;
  7750. width:5px;
  7751. height:5px;
  7752. }
  7753. #u48584_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. visibility:hidden;
  7758. }
  7759. #u48585 {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:330px;
  7763. top:84px;
  7764. width:7px;
  7765. height:7px;
  7766. display:flex;
  7767. transition:none;
  7768. }
  7769. #u48585 .text {
  7770. position:absolute;
  7771. align-self:center;
  7772. padding:2px 2px 2px 2px;
  7773. box-sizing:border-box;
  7774. width:100%;
  7775. }
  7776. #u48585_img {
  7777. border-width:0px;
  7778. position:absolute;
  7779. left:0px;
  7780. top:0px;
  7781. width:7px;
  7782. height:7px;
  7783. }
  7784. #u48585_text {
  7785. border-width:0px;
  7786. word-wrap:break-word;
  7787. text-transform:none;
  7788. visibility:hidden;
  7789. }
  7790. #u48586 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:347px;
  7794. top:87px;
  7795. width:18px;
  7796. height:1px;
  7797. display:flex;
  7798. -webkit-transform:rotate(90deg);
  7799. -moz-transform:rotate(90deg);
  7800. -ms-transform:rotate(90deg);
  7801. transform:rotate(90deg);
  7802. transition:none;
  7803. }
  7804. #u48586 .text {
  7805. position:absolute;
  7806. align-self:center;
  7807. padding:2px 2px 2px 2px;
  7808. box-sizing:border-box;
  7809. width:100%;
  7810. }
  7811. #u48586_img {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:19px;
  7817. height:2px;
  7818. }
  7819. #u48586_text {
  7820. border-width:0px;
  7821. word-wrap:break-word;
  7822. text-transform:none;
  7823. visibility:hidden;
  7824. }
  7825. #u48587 {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:29px;
  7829. top:24px;
  7830. width:375px;
  7831. height:44px;
  7832. display:flex;
  7833. transition:none;
  7834. }
  7835. #u48587 .text {
  7836. position:absolute;
  7837. align-self:center;
  7838. padding:2px 2px 2px 2px;
  7839. box-sizing:border-box;
  7840. width:100%;
  7841. }
  7842. #u48587_img {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:375px;
  7848. height:44px;
  7849. }
  7850. #u48587_text {
  7851. border-width:0px;
  7852. word-wrap:break-word;
  7853. text-transform:none;
  7854. visibility:hidden;
  7855. }
  7856. #u48588_div {
  7857. border-width:0px;
  7858. position:absolute;
  7859. left:0px;
  7860. top:0px;
  7861. width:375px;
  7862. height:50px;
  7863. background:inherit;
  7864. background-color:rgba(255, 255, 255, 1);
  7865. box-sizing:border-box;
  7866. border-width:1px;
  7867. border-style:solid;
  7868. border-color:rgba(242, 242, 242, 1);
  7869. border-radius:26px;
  7870. border-top-left-radius:0px;
  7871. border-top-right-radius:0px;
  7872. filter:drop-shadow(none);
  7873. transition:none;
  7874. }
  7875. #u48588 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:29px;
  7879. top:788px;
  7880. width:375px;
  7881. height:50px;
  7882. display:flex;
  7883. transition:none;
  7884. transform-origin:50% 50%;
  7885. }
  7886. #u48588 .text {
  7887. position:absolute;
  7888. align-self:center;
  7889. padding:2px 2px 2px 2px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u48588_text {
  7894. border-width:0px;
  7895. word-wrap:break-word;
  7896. text-transform:none;
  7897. visibility:hidden;
  7898. }
  7899. #u48589 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:0px;
  7903. top:0px;
  7904. width:0px;
  7905. height:0px;
  7906. }
  7907. #u48590 {
  7908. border-width:0px;
  7909. position:absolute;
  7910. left:69px;
  7911. top:792px;
  7912. width:24px;
  7913. height:24px;
  7914. display:flex;
  7915. transition:none;
  7916. font-size:8px;
  7917. }
  7918. #u48590 .text {
  7919. position:absolute;
  7920. align-self:center;
  7921. padding:2px 2px 2px 2px;
  7922. box-sizing:border-box;
  7923. width:100%;
  7924. }
  7925. #u48590_img {
  7926. border-width:0px;
  7927. position:absolute;
  7928. left:0px;
  7929. top:0px;
  7930. width:24px;
  7931. height:24px;
  7932. }
  7933. #u48590_text {
  7934. border-width:0px;
  7935. word-wrap:break-word;
  7936. text-transform:none;
  7937. }
  7938. #u48591_div {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:25px;
  7944. height:17px;
  7945. background:inherit;
  7946. background-color:rgba(255, 255, 255, 0);
  7947. border-radius:0px;
  7948. filter:drop-shadow(none);
  7949. transition:none;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:12px;
  7954. }
  7955. #u48591 {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:69px;
  7959. top:817px;
  7960. width:25px;
  7961. height:17px;
  7962. display:flex;
  7963. transition:none;
  7964. transform-origin:50% 50%;
  7965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7966. font-weight:400;
  7967. font-style:normal;
  7968. font-size:12px;
  7969. }
  7970. #u48591 .text {
  7971. position:absolute;
  7972. align-self:flex-start;
  7973. padding:0px 0px 0px 0px;
  7974. box-sizing:border-box;
  7975. width:100%;
  7976. }
  7977. #u48591_text {
  7978. border-width:0px;
  7979. white-space:nowrap;
  7980. text-transform:none;
  7981. }
  7982. #u48592 {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:0px;
  7986. top:0px;
  7987. width:0px;
  7988. height:0px;
  7989. }
  7990. #u48593 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:339px;
  7994. top:794px;
  7995. width:24px;
  7996. height:24px;
  7997. display:flex;
  7998. transition:none;
  7999. font-size:8px;
  8000. }
  8001. #u48593 .text {
  8002. position:absolute;
  8003. align-self:center;
  8004. padding:2px 2px 2px 2px;
  8005. box-sizing:border-box;
  8006. width:100%;
  8007. }
  8008. #u48593_img {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:0px;
  8012. top:0px;
  8013. width:24px;
  8014. height:24px;
  8015. }
  8016. #u48593_text {
  8017. border-width:0px;
  8018. word-wrap:break-word;
  8019. text-transform:none;
  8020. }
  8021. #u48594_div {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:0px;
  8025. top:0px;
  8026. width:25px;
  8027. height:17px;
  8028. background:inherit;
  8029. background-color:rgba(255, 255, 255, 0);
  8030. border-radius:0px;
  8031. filter:drop-shadow(none);
  8032. transition:none;
  8033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8034. font-weight:400;
  8035. font-style:normal;
  8036. font-size:12px;
  8037. }
  8038. #u48594 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:339px;
  8042. top:819px;
  8043. width:25px;
  8044. height:17px;
  8045. display:flex;
  8046. transition:none;
  8047. transform-origin:50% 50%;
  8048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. font-size:12px;
  8052. }
  8053. #u48594 .text {
  8054. position:absolute;
  8055. align-self:flex-start;
  8056. padding:0px 0px 0px 0px;
  8057. box-sizing:border-box;
  8058. width:100%;
  8059. }
  8060. #u48594_text {
  8061. border-width:0px;
  8062. white-space:nowrap;
  8063. text-transform:none;
  8064. }
  8065. #u48595_div {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:375px;
  8071. height:681px;
  8072. background:inherit;
  8073. background-color:rgba(242, 242, 242, 0.4627450980392157);
  8074. border-radius:0px;
  8075. filter:drop-shadow(none);
  8076. transition:none;
  8077. }
  8078. #u48595 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:29px;
  8082. top:107px;
  8083. width:375px;
  8084. height:681px;
  8085. display:flex;
  8086. transition:none;
  8087. transform-origin:50% 50%;
  8088. }
  8089. #u48595 .text {
  8090. position:absolute;
  8091. align-self:center;
  8092. padding:2px 2px 2px 2px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u48595_text {
  8097. border-width:0px;
  8098. word-wrap:break-word;
  8099. text-transform:none;
  8100. visibility:hidden;
  8101. }
  8102. #u48596 {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:0px;
  8108. height:0px;
  8109. }
  8110. #u48597 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:251px;
  8114. top:792px;
  8115. width:24px;
  8116. height:24px;
  8117. display:flex;
  8118. transition:none;
  8119. font-size:8px;
  8120. }
  8121. #u48597 .text {
  8122. position:absolute;
  8123. align-self:center;
  8124. padding:2px 2px 2px 2px;
  8125. box-sizing:border-box;
  8126. width:100%;
  8127. }
  8128. #u48597_img {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:24px;
  8134. height:24px;
  8135. }
  8136. #u48597_text {
  8137. border-width:0px;
  8138. word-wrap:break-word;
  8139. text-transform:none;
  8140. }
  8141. #u48598_div {
  8142. border-width:0px;
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:37px;
  8147. height:17px;
  8148. background:inherit;
  8149. background-color:rgba(255, 255, 255, 0);
  8150. border-radius:0px;
  8151. filter:drop-shadow(none);
  8152. transition:none;
  8153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:12px;
  8157. }
  8158. #u48598 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:245px;
  8162. top:817px;
  8163. width:37px;
  8164. height:17px;
  8165. display:flex;
  8166. transition:none;
  8167. transform-origin:50% 50%;
  8168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8169. font-weight:400;
  8170. font-style:normal;
  8171. font-size:12px;
  8172. }
  8173. #u48598 .text {
  8174. position:absolute;
  8175. align-self:flex-start;
  8176. padding:0px 0px 0px 0px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u48598_text {
  8181. border-width:0px;
  8182. white-space:nowrap;
  8183. text-transform:none;
  8184. }
  8185. #u48599 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:0px;
  8191. height:0px;
  8192. }
  8193. #u48600 {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:157px;
  8197. top:792px;
  8198. width:24px;
  8199. height:24px;
  8200. display:flex;
  8201. transition:none;
  8202. font-size:8px;
  8203. }
  8204. #u48600 .text {
  8205. position:absolute;
  8206. align-self:center;
  8207. padding:2px 2px 2px 2px;
  8208. box-sizing:border-box;
  8209. width:100%;
  8210. }
  8211. #u48600_img {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:24px;
  8217. height:24px;
  8218. }
  8219. #u48600_text {
  8220. border-width:0px;
  8221. word-wrap:break-word;
  8222. text-transform:none;
  8223. }
  8224. #u48601_div {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:37px;
  8230. height:17px;
  8231. background:inherit;
  8232. background-color:rgba(255, 255, 255, 0);
  8233. border-radius:0px;
  8234. filter:drop-shadow(none);
  8235. transition:none;
  8236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8237. font-weight:400;
  8238. font-style:normal;
  8239. font-size:12px;
  8240. }
  8241. #u48601 {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:151px;
  8245. top:817px;
  8246. width:37px;
  8247. height:17px;
  8248. display:flex;
  8249. transition:none;
  8250. transform-origin:50% 50%;
  8251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:12px;
  8255. }
  8256. #u48601 .text {
  8257. position:absolute;
  8258. align-self:flex-start;
  8259. padding:0px 0px 0px 0px;
  8260. box-sizing:border-box;
  8261. width:100%;
  8262. }
  8263. #u48601_text {
  8264. border-width:0px;
  8265. white-space:nowrap;
  8266. text-transform:none;
  8267. }
  8268. #u48602_div {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:375px;
  8274. height:735px;
  8275. background:inherit;
  8276. background-color:rgba(242, 242, 242, 1);
  8277. border-top:0px;
  8278. border-radius:25px;
  8279. border-top-left-radius:0px;
  8280. border-top-right-radius:0px;
  8281. filter:drop-shadow(none);
  8282. transition:none;
  8283. }
  8284. #u48602 {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:1846px;
  8288. top:105px;
  8289. width:375px;
  8290. height:735px;
  8291. display:flex;
  8292. transition:none;
  8293. transform-origin:50% 50%;
  8294. }
  8295. #u48602 .text {
  8296. position:absolute;
  8297. align-self:center;
  8298. padding:2px 2px 2px 2px;
  8299. box-sizing:border-box;
  8300. width:100%;
  8301. }
  8302. #u48602_text {
  8303. border-width:0px;
  8304. word-wrap:break-word;
  8305. text-transform:none;
  8306. visibility:hidden;
  8307. }
  8308. #u48603_div {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:0px;
  8312. top:0px;
  8313. width:57px;
  8314. height:30px;
  8315. background:inherit;
  8316. background-color:rgba(255, 255, 255, 0);
  8317. border-left:0px;
  8318. border-top:0px;
  8319. border-right:0px;
  8320. border-radius:0px;
  8321. border-bottom-right-radius:0px;
  8322. border-bottom-left-radius:0px;
  8323. filter:drop-shadow(none);
  8324. transition:none;
  8325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8326. font-weight:500;
  8327. font-style:normal;
  8328. font-size:14px;
  8329. line-height:30px;
  8330. }
  8331. #u48603 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:1998px;
  8335. top:73px;
  8336. width:57px;
  8337. height:30px;
  8338. display:flex;
  8339. transition:none;
  8340. transform-origin:50% 50%;
  8341. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8342. font-weight:500;
  8343. font-style:normal;
  8344. font-size:14px;
  8345. line-height:30px;
  8346. }
  8347. #u48603 .text {
  8348. position:absolute;
  8349. align-self:flex-start;
  8350. padding:0px 0px 0px 0px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u48603_text {
  8355. border-width:0px;
  8356. white-space:nowrap;
  8357. text-transform:none;
  8358. }
  8359. #u48604 {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:0px;
  8364. width:0px;
  8365. height:0px;
  8366. }
  8367. #u48605 {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:1859px;
  8371. top:79px;
  8372. width:11px;
  8373. height:18px;
  8374. display:flex;
  8375. transition:none;
  8376. }
  8377. #u48605 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:2px 2px 2px 2px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u48605_img {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:11px;
  8390. height:18px;
  8391. }
  8392. #u48605_text {
  8393. border-width:0px;
  8394. word-wrap:break-word;
  8395. text-transform:none;
  8396. visibility:hidden;
  8397. }
  8398. #u48606_div {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:0px;
  8402. top:0px;
  8403. width:375px;
  8404. height:92px;
  8405. background:inherit;
  8406. background-color:rgba(255, 255, 255, 1);
  8407. border-left:0px;
  8408. border-top:0px;
  8409. border-right:0px;
  8410. border-radius:0px;
  8411. border-bottom-right-radius:0px;
  8412. border-bottom-left-radius:0px;
  8413. filter:drop-shadow(none);
  8414. transition:none;
  8415. }
  8416. #u48606 {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:1846px;
  8420. top:115px;
  8421. width:375px;
  8422. height:92px;
  8423. display:flex;
  8424. transition:none;
  8425. transform-origin:50% 50%;
  8426. }
  8427. #u48606 .text {
  8428. position:absolute;
  8429. align-self:center;
  8430. padding:2px 2px 2px 2px;
  8431. box-sizing:border-box;
  8432. width:100%;
  8433. }
  8434. #u48606_text {
  8435. border-width:0px;
  8436. word-wrap:break-word;
  8437. text-transform:none;
  8438. visibility:hidden;
  8439. }
  8440. #u48607 {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:0px;
  8446. height:0px;
  8447. }
  8448. #u48608_div {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:0px;
  8452. top:0px;
  8453. width:375px;
  8454. height:80px;
  8455. background:inherit;
  8456. background-color:rgba(255, 255, 255, 1);
  8457. border-left:0px;
  8458. border-top:0px;
  8459. border-right:0px;
  8460. border-radius:0px;
  8461. border-bottom-right-radius:0px;
  8462. border-bottom-left-radius:0px;
  8463. filter:drop-shadow(none);
  8464. transition:none;
  8465. }
  8466. #u48608 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:1846px;
  8470. top:208px;
  8471. width:375px;
  8472. height:80px;
  8473. display:flex;
  8474. transition:none;
  8475. transform-origin:50% 50%;
  8476. }
  8477. #u48608 .text {
  8478. position:absolute;
  8479. align-self:center;
  8480. padding:2px 2px 2px 2px;
  8481. box-sizing:border-box;
  8482. width:100%;
  8483. }
  8484. #u48608_text {
  8485. border-width:0px;
  8486. word-wrap:break-word;
  8487. text-transform:none;
  8488. visibility:hidden;
  8489. }
  8490. #u48609_div {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:177px;
  8496. height:30px;
  8497. background:inherit;
  8498. background-color:rgba(255, 255, 255, 0);
  8499. border-left:0px;
  8500. border-top:0px;
  8501. border-right:0px;
  8502. border-radius:0px;
  8503. border-bottom-right-radius:0px;
  8504. border-bottom-left-radius:0px;
  8505. filter:drop-shadow(none);
  8506. transition:none;
  8507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8508. font-weight:400;
  8509. font-style:normal;
  8510. font-size:16px;
  8511. line-height:30px;
  8512. }
  8513. #u48609 {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:1923px;
  8517. top:247px;
  8518. width:177px;
  8519. height:30px;
  8520. display:flex;
  8521. transition:none;
  8522. transform-origin:50% 50%;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:16px;
  8527. line-height:30px;
  8528. }
  8529. #u48609 .text {
  8530. position:absolute;
  8531. align-self:flex-start;
  8532. padding:0px 0px 0px 0px;
  8533. box-sizing:border-box;
  8534. width:100%;
  8535. }
  8536. #u48609_text {
  8537. border-width:0px;
  8538. white-space:nowrap;
  8539. text-transform:none;
  8540. }
  8541. #u48610_div {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:49px;
  8547. height:25px;
  8548. background:inherit;
  8549. background-color:rgba(255, 255, 255, 0);
  8550. border-left:0px;
  8551. border-top:0px;
  8552. border-right:0px;
  8553. border-radius:0px;
  8554. border-bottom-right-radius:0px;
  8555. border-bottom-left-radius:0px;
  8556. filter:drop-shadow(none);
  8557. transition:none;
  8558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8559. font-weight:400;
  8560. font-style:normal;
  8561. font-size:12px;
  8562. color:#7F7F7F;
  8563. line-height:25px;
  8564. }
  8565. #u48610 {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:1923px;
  8569. top:222px;
  8570. width:49px;
  8571. height:25px;
  8572. display:flex;
  8573. transition:none;
  8574. transform-origin:50% 50%;
  8575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8576. font-weight:400;
  8577. font-style:normal;
  8578. font-size:12px;
  8579. color:#7F7F7F;
  8580. line-height:25px;
  8581. }
  8582. #u48610 .text {
  8583. position:absolute;
  8584. align-self:flex-start;
  8585. padding:0px 0px 0px 0px;
  8586. box-sizing:border-box;
  8587. width:100%;
  8588. }
  8589. #u48610_text {
  8590. border-width:0px;
  8591. white-space:nowrap;
  8592. text-transform:none;
  8593. }
  8594. #u48611 {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:0px;
  8598. top:0px;
  8599. width:0px;
  8600. height:0px;
  8601. }
  8602. #u48612_div {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:0px;
  8606. top:0px;
  8607. width:375px;
  8608. height:80px;
  8609. background:inherit;
  8610. background-color:rgba(255, 255, 255, 1);
  8611. border-left:0px;
  8612. border-top:0px;
  8613. border-right:0px;
  8614. border-radius:0px;
  8615. border-bottom-right-radius:0px;
  8616. border-bottom-left-radius:0px;
  8617. filter:drop-shadow(none);
  8618. transition:none;
  8619. }
  8620. #u48612 {
  8621. border-width:0px;
  8622. position:absolute;
  8623. left:1846px;
  8624. top:289px;
  8625. width:375px;
  8626. height:80px;
  8627. display:flex;
  8628. transition:none;
  8629. transform-origin:50% 50%;
  8630. }
  8631. #u48612 .text {
  8632. position:absolute;
  8633. align-self:center;
  8634. padding:2px 2px 2px 2px;
  8635. box-sizing:border-box;
  8636. width:100%;
  8637. }
  8638. #u48612_text {
  8639. border-width:0px;
  8640. word-wrap:break-word;
  8641. text-transform:none;
  8642. visibility:hidden;
  8643. }
  8644. #u48613_div {
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:129px;
  8650. height:30px;
  8651. background:inherit;
  8652. background-color:rgba(255, 255, 255, 0);
  8653. border-left:0px;
  8654. border-top:0px;
  8655. border-right:0px;
  8656. border-radius:0px;
  8657. border-bottom-right-radius:0px;
  8658. border-bottom-left-radius:0px;
  8659. filter:drop-shadow(none);
  8660. transition:none;
  8661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8662. font-weight:400;
  8663. font-style:normal;
  8664. font-size:16px;
  8665. line-height:30px;
  8666. }
  8667. #u48613 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:1923px;
  8671. top:328px;
  8672. width:129px;
  8673. height:30px;
  8674. display:flex;
  8675. transition:none;
  8676. transform-origin:50% 50%;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:16px;
  8681. line-height:30px;
  8682. }
  8683. #u48613 .text {
  8684. position:absolute;
  8685. align-self:flex-start;
  8686. padding:0px 0px 0px 0px;
  8687. box-sizing:border-box;
  8688. width:100%;
  8689. }
  8690. #u48613_text {
  8691. border-width:0px;
  8692. white-space:nowrap;
  8693. text-transform:none;
  8694. }
  8695. #u48614_div {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:0px;
  8699. top:0px;
  8700. width:73px;
  8701. height:25px;
  8702. background:inherit;
  8703. background-color:rgba(255, 255, 255, 0);
  8704. border-left:0px;
  8705. border-top:0px;
  8706. border-right:0px;
  8707. border-radius:0px;
  8708. border-bottom-right-radius:0px;
  8709. border-bottom-left-radius:0px;
  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:#7F7F7F;
  8717. line-height:25px;
  8718. }
  8719. #u48614 {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:1923px;
  8723. top:303px;
  8724. width:73px;
  8725. height:25px;
  8726. display:flex;
  8727. transition:none;
  8728. transform-origin:50% 50%;
  8729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8730. font-weight:400;
  8731. font-style:normal;
  8732. font-size:12px;
  8733. color:#7F7F7F;
  8734. line-height:25px;
  8735. }
  8736. #u48614 .text {
  8737. position:absolute;
  8738. align-self:flex-start;
  8739. padding:0px 0px 0px 0px;
  8740. box-sizing:border-box;
  8741. width:100%;
  8742. }
  8743. #u48614_text {
  8744. border-width:0px;
  8745. white-space:nowrap;
  8746. text-transform:none;
  8747. }
  8748. #u48615_div {
  8749. border-width:0px;
  8750. position:absolute;
  8751. left:0px;
  8752. top:0px;
  8753. width:375px;
  8754. height:60px;
  8755. background:inherit;
  8756. background-color:rgba(255, 255, 255, 1);
  8757. border-left:0px;
  8758. border-top:0px;
  8759. border-right:0px;
  8760. border-radius:0px;
  8761. border-bottom-right-radius:0px;
  8762. border-bottom-left-radius:0px;
  8763. filter:drop-shadow(none);
  8764. transition:none;
  8765. }
  8766. #u48615 {
  8767. border-width:0px;
  8768. position:absolute;
  8769. left:1846px;
  8770. top:532px;
  8771. width:375px;
  8772. height:60px;
  8773. display:flex;
  8774. transition:none;
  8775. transform-origin:50% 50%;
  8776. }
  8777. #u48615 .text {
  8778. position:absolute;
  8779. align-self:center;
  8780. padding:2px 2px 2px 2px;
  8781. box-sizing:border-box;
  8782. width:100%;
  8783. }
  8784. #u48615_text {
  8785. border-width:0px;
  8786. word-wrap:break-word;
  8787. text-transform:none;
  8788. visibility:hidden;
  8789. }
  8790. #u48616_div {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:124px;
  8796. height:30px;
  8797. background:inherit;
  8798. background-color:rgba(255, 255, 255, 0);
  8799. border-left:0px;
  8800. border-top:0px;
  8801. border-right:0px;
  8802. border-radius:0px;
  8803. border-bottom-right-radius:0px;
  8804. border-bottom-left-radius:0px;
  8805. filter:drop-shadow(none);
  8806. transition:none;
  8807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8808. font-weight:400;
  8809. font-style:normal;
  8810. font-size:16px;
  8811. line-height:30px;
  8812. }
  8813. #u48616 {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:1923px;
  8817. top:547px;
  8818. width:124px;
  8819. height:30px;
  8820. display:flex;
  8821. transition:none;
  8822. transform-origin:50% 50%;
  8823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8824. font-weight:400;
  8825. font-style:normal;
  8826. font-size:16px;
  8827. line-height:30px;
  8828. }
  8829. #u48616 .text {
  8830. position:absolute;
  8831. align-self:flex-start;
  8832. padding:0px 0px 0px 0px;
  8833. box-sizing:border-box;
  8834. width:100%;
  8835. }
  8836. #u48616_text {
  8837. border-width:0px;
  8838. white-space:nowrap;
  8839. text-transform:none;
  8840. }
  8841. #u48617_div {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:0px;
  8845. top:0px;
  8846. width:68px;
  8847. height:30px;
  8848. background:inherit;
  8849. background-color:rgba(242, 242, 242, 1);
  8850. border-radius:40px;
  8851. filter:drop-shadow(none);
  8852. transition:none;
  8853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8854. font-weight:400;
  8855. font-style:normal;
  8856. font-size:12px;
  8857. color:#7F7F7F;
  8858. }
  8859. #u48617 {
  8860. border-width:0px;
  8861. position:absolute;
  8862. left:2131px;
  8863. top:136px;
  8864. width:68px;
  8865. height:30px;
  8866. display:flex;
  8867. transition:none;
  8868. transform-origin:50% 50%;
  8869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8870. font-weight:400;
  8871. font-style:normal;
  8872. font-size:12px;
  8873. color:#7F7F7F;
  8874. }
  8875. #u48617 .text {
  8876. position:absolute;
  8877. align-self:center;
  8878. padding:2px 2px 2px 2px;
  8879. box-sizing:border-box;
  8880. width:100%;
  8881. }
  8882. #u48617_text {
  8883. border-width:0px;
  8884. word-wrap:break-word;
  8885. text-transform:none;
  8886. }
  8887. #u48618 {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:0px;
  8891. top:0px;
  8892. width:0px;
  8893. height:0px;
  8894. }
  8895. #u48619_div {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:0px;
  8899. top:0px;
  8900. width:375px;
  8901. height:80px;
  8902. background:inherit;
  8903. background-color:rgba(255, 255, 255, 1);
  8904. border-left:0px;
  8905. border-top:0px;
  8906. border-right:0px;
  8907. border-radius:0px;
  8908. border-bottom-right-radius:0px;
  8909. border-bottom-left-radius:0px;
  8910. filter:drop-shadow(none);
  8911. transition:none;
  8912. }
  8913. #u48619 {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:1846px;
  8917. top:451px;
  8918. width:375px;
  8919. height:80px;
  8920. display:flex;
  8921. transition:none;
  8922. transform-origin:50% 50%;
  8923. }
  8924. #u48619 .text {
  8925. position:absolute;
  8926. align-self:center;
  8927. padding:2px 2px 2px 2px;
  8928. box-sizing:border-box;
  8929. width:100%;
  8930. }
  8931. #u48619_text {
  8932. border-width:0px;
  8933. word-wrap:break-word;
  8934. text-transform:none;
  8935. visibility:hidden;
  8936. }
  8937. #u48620_div {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:0px;
  8941. top:0px;
  8942. width:225px;
  8943. height:30px;
  8944. background:inherit;
  8945. background-color:rgba(255, 255, 255, 0);
  8946. border-left:0px;
  8947. border-top:0px;
  8948. border-right:0px;
  8949. border-radius:0px;
  8950. border-bottom-right-radius:0px;
  8951. border-bottom-left-radius:0px;
  8952. filter:drop-shadow(none);
  8953. transition:none;
  8954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8955. font-weight:400;
  8956. font-style:normal;
  8957. font-size:16px;
  8958. line-height:30px;
  8959. }
  8960. #u48620 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:1923px;
  8964. top:490px;
  8965. width:225px;
  8966. height:30px;
  8967. display:flex;
  8968. transition:none;
  8969. transform-origin:50% 50%;
  8970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. font-size:16px;
  8974. line-height:30px;
  8975. }
  8976. #u48620 .text {
  8977. position:absolute;
  8978. align-self:flex-start;
  8979. padding:0px 0px 0px 0px;
  8980. box-sizing:border-box;
  8981. width:100%;
  8982. }
  8983. #u48620_text {
  8984. border-width:0px;
  8985. white-space:nowrap;
  8986. text-transform:none;
  8987. }
  8988. #u48621_div {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:49px;
  8994. height:25px;
  8995. background:inherit;
  8996. background-color:rgba(255, 255, 255, 0);
  8997. border-left:0px;
  8998. border-top:0px;
  8999. border-right:0px;
  9000. border-radius:0px;
  9001. border-bottom-right-radius:0px;
  9002. border-bottom-left-radius:0px;
  9003. filter:drop-shadow(none);
  9004. transition:none;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:12px;
  9009. color:#7F7F7F;
  9010. line-height:25px;
  9011. }
  9012. #u48621 {
  9013. border-width:0px;
  9014. position:absolute;
  9015. left:1923px;
  9016. top:465px;
  9017. width:49px;
  9018. height:25px;
  9019. display:flex;
  9020. transition:none;
  9021. transform-origin:50% 50%;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:12px;
  9026. color:#7F7F7F;
  9027. line-height:25px;
  9028. }
  9029. #u48621 .text {
  9030. position:absolute;
  9031. align-self:flex-start;
  9032. padding:0px 0px 0px 0px;
  9033. box-sizing:border-box;
  9034. width:100%;
  9035. }
  9036. #u48621_text {
  9037. border-width:0px;
  9038. white-space:nowrap;
  9039. text-transform:none;
  9040. }
  9041. #u48622_div {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:0px;
  9045. top:0px;
  9046. width:48px;
  9047. height:50px;
  9048. background:inherit;
  9049. background-color:rgba(24, 144, 255, 1);
  9050. border-radius:4px;
  9051. filter:drop-shadow(none);
  9052. transition:none;
  9053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9054. font-weight:400;
  9055. font-style:normal;
  9056. color:#FFFFFF;
  9057. }
  9058. #u48622 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:1866px;
  9062. top:136px;
  9063. width:48px;
  9064. height:50px;
  9065. display:flex;
  9066. transition:none;
  9067. transform-origin:50% 50%;
  9068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9069. font-weight:400;
  9070. font-style:normal;
  9071. color:#FFFFFF;
  9072. }
  9073. #u48622 .text {
  9074. position:absolute;
  9075. align-self:center;
  9076. padding:2px 2px 2px 2px;
  9077. box-sizing:border-box;
  9078. width:100%;
  9079. }
  9080. #u48622_text {
  9081. border-width:0px;
  9082. word-wrap:break-word;
  9083. text-transform:none;
  9084. }
  9085. #u48623_div {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:127px;
  9091. height:30px;
  9092. background:inherit;
  9093. background-color:rgba(255, 255, 255, 0);
  9094. border-left:0px;
  9095. border-top:0px;
  9096. border-right:0px;
  9097. border-radius:0px;
  9098. border-bottom-right-radius:0px;
  9099. border-bottom-left-radius:0px;
  9100. filter:drop-shadow(none);
  9101. transition:none;
  9102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9103. font-weight:400;
  9104. font-style:normal;
  9105. font-size:18px;
  9106. line-height:30px;
  9107. }
  9108. #u48623 {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:1928px;
  9112. top:136px;
  9113. width:127px;
  9114. height:30px;
  9115. display:flex;
  9116. transition:none;
  9117. transform-origin:50% 50%;
  9118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9119. font-weight:400;
  9120. font-style:normal;
  9121. font-size:18px;
  9122. line-height:30px;
  9123. }
  9124. #u48623 .text {
  9125. position:absolute;
  9126. align-self:flex-start;
  9127. padding:0px 0px 0px 0px;
  9128. box-sizing:border-box;
  9129. width:100%;
  9130. }
  9131. #u48623_text {
  9132. border-width:0px;
  9133. white-space:nowrap;
  9134. text-transform:none;
  9135. }
  9136. #u48624 {
  9137. border-width:0px;
  9138. position:absolute;
  9139. left:0px;
  9140. top:0px;
  9141. width:0px;
  9142. height:0px;
  9143. }
  9144. #u48625_div {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:0px;
  9149. width:60px;
  9150. height:20px;
  9151. background:inherit;
  9152. background-color:rgba(255, 255, 255, 1);
  9153. box-sizing:border-box;
  9154. border-width:1px;
  9155. border-style:solid;
  9156. border-color:rgba(215, 215, 215, 1);
  9157. border-radius:2px;
  9158. filter:drop-shadow(none);
  9159. transition:none;
  9160. }
  9161. #u48625 {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:1928px;
  9165. top:171px;
  9166. width:60px;
  9167. height:20px;
  9168. display:flex;
  9169. transition:none;
  9170. transform-origin:50% 50%;
  9171. }
  9172. #u48625 .text {
  9173. position:absolute;
  9174. align-self:center;
  9175. padding:2px 2px 2px 2px;
  9176. box-sizing:border-box;
  9177. width:100%;
  9178. }
  9179. #u48625_text {
  9180. border-width:0px;
  9181. word-wrap:break-word;
  9182. text-transform:none;
  9183. visibility:hidden;
  9184. }
  9185. #u48626 {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:0px;
  9191. height:0px;
  9192. }
  9193. #u48627_div {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:0px;
  9197. top:0px;
  9198. width:37px;
  9199. height:17px;
  9200. background:inherit;
  9201. background-color:rgba(255, 255, 255, 0);
  9202. border-left:0px;
  9203. border-top:0px;
  9204. border-right:0px;
  9205. border-radius:0px;
  9206. border-bottom-right-radius:0px;
  9207. border-bottom-left-radius:0px;
  9208. filter:drop-shadow(none);
  9209. transition:none;
  9210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9211. font-weight:400;
  9212. font-style:normal;
  9213. font-size:12px;
  9214. color:#7F7F7F;
  9215. }
  9216. #u48627 {
  9217. border-width:0px;
  9218. position:absolute;
  9219. left:1947px;
  9220. top:173px;
  9221. width:37px;
  9222. height:17px;
  9223. display:flex;
  9224. transition:none;
  9225. transform-origin:50% 50%;
  9226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9227. font-weight:400;
  9228. font-style:normal;
  9229. font-size:12px;
  9230. color:#7F7F7F;
  9231. }
  9232. #u48627 .text {
  9233. position:absolute;
  9234. align-self:flex-start;
  9235. padding:0px 0px 0px 0px;
  9236. box-sizing:border-box;
  9237. width:100%;
  9238. }
  9239. #u48627_text {
  9240. border-width:0px;
  9241. white-space:nowrap;
  9242. text-transform:none;
  9243. }
  9244. #u48628 {
  9245. border-width:0px;
  9246. position:absolute;
  9247. left:0px;
  9248. top:0px;
  9249. width:0px;
  9250. height:0px;
  9251. }
  9252. #u48629 {
  9253. border-width:0px;
  9254. position:absolute;
  9255. left:1932px;
  9256. top:175px;
  9257. width:12px;
  9258. height:12px;
  9259. display:flex;
  9260. transition:none;
  9261. }
  9262. #u48629 .text {
  9263. position:absolute;
  9264. align-self:center;
  9265. padding:2px 2px 2px 2px;
  9266. box-sizing:border-box;
  9267. width:100%;
  9268. }
  9269. #u48629_img {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:0px;
  9273. top:0px;
  9274. width:12px;
  9275. height:12px;
  9276. }
  9277. #u48629_text {
  9278. border-width:0px;
  9279. word-wrap:break-word;
  9280. text-transform:none;
  9281. visibility:hidden;
  9282. }
  9283. #u48630 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:1935px;
  9287. top:179px;
  9288. width:6px;
  9289. height:4px;
  9290. display:flex;
  9291. transition:none;
  9292. }
  9293. #u48630 .text {
  9294. position:absolute;
  9295. align-self:center;
  9296. padding:2px 2px 2px 2px;
  9297. box-sizing:border-box;
  9298. width:100%;
  9299. }
  9300. #u48630_img {
  9301. border-width:0px;
  9302. position:absolute;
  9303. left:0px;
  9304. top:0px;
  9305. width:6px;
  9306. height:4px;
  9307. }
  9308. #u48630_text {
  9309. border-width:0px;
  9310. word-wrap:break-word;
  9311. text-transform:none;
  9312. visibility:hidden;
  9313. }
  9314. #u48631 {
  9315. border-width:0px;
  9316. position:absolute;
  9317. left:0px;
  9318. top:0px;
  9319. width:0px;
  9320. height:0px;
  9321. }
  9322. #u48632_div {
  9323. border-width:0px;
  9324. position:absolute;
  9325. left:0px;
  9326. top:0px;
  9327. width:375px;
  9328. height:80px;
  9329. background:inherit;
  9330. background-color:rgba(255, 255, 255, 1);
  9331. border-left:0px;
  9332. border-top:0px;
  9333. border-right:0px;
  9334. border-radius:0px;
  9335. border-bottom-right-radius:0px;
  9336. border-bottom-left-radius:0px;
  9337. filter:drop-shadow(none);
  9338. transition:none;
  9339. }
  9340. #u48632 {
  9341. border-width:0px;
  9342. position:absolute;
  9343. left:1846px;
  9344. top:370px;
  9345. width:375px;
  9346. height:80px;
  9347. display:flex;
  9348. transition:none;
  9349. transform-origin:50% 50%;
  9350. }
  9351. #u48632 .text {
  9352. position:absolute;
  9353. align-self:center;
  9354. padding:2px 2px 2px 2px;
  9355. box-sizing:border-box;
  9356. width:100%;
  9357. }
  9358. #u48632_text {
  9359. border-width:0px;
  9360. word-wrap:break-word;
  9361. text-transform:none;
  9362. visibility:hidden;
  9363. }
  9364. #u48633_div {
  9365. border-width:0px;
  9366. position:absolute;
  9367. left:0px;
  9368. top:0px;
  9369. width:193px;
  9370. height:30px;
  9371. background:inherit;
  9372. background-color:rgba(255, 255, 255, 0);
  9373. border-left:0px;
  9374. border-top:0px;
  9375. border-right:0px;
  9376. border-radius:0px;
  9377. border-bottom-right-radius:0px;
  9378. border-bottom-left-radius:0px;
  9379. filter:drop-shadow(none);
  9380. transition:none;
  9381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:16px;
  9385. line-height:30px;
  9386. }
  9387. #u48633 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:1923px;
  9391. top:409px;
  9392. width:193px;
  9393. height:30px;
  9394. display:flex;
  9395. transition:none;
  9396. transform-origin:50% 50%;
  9397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9398. font-weight:400;
  9399. font-style:normal;
  9400. font-size:16px;
  9401. line-height:30px;
  9402. }
  9403. #u48633 .text {
  9404. position:absolute;
  9405. align-self:flex-start;
  9406. padding:0px 0px 0px 0px;
  9407. box-sizing:border-box;
  9408. width:100%;
  9409. }
  9410. #u48633_text {
  9411. border-width:0px;
  9412. white-space:nowrap;
  9413. text-transform:none;
  9414. }
  9415. #u48634_div {
  9416. border-width:0px;
  9417. position:absolute;
  9418. left:0px;
  9419. top:0px;
  9420. width:49px;
  9421. height:25px;
  9422. background:inherit;
  9423. background-color:rgba(255, 255, 255, 0);
  9424. border-left:0px;
  9425. border-top:0px;
  9426. border-right:0px;
  9427. border-radius:0px;
  9428. border-bottom-right-radius:0px;
  9429. border-bottom-left-radius:0px;
  9430. filter:drop-shadow(none);
  9431. transition:none;
  9432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9433. font-weight:400;
  9434. font-style:normal;
  9435. font-size:12px;
  9436. color:#7F7F7F;
  9437. line-height:25px;
  9438. }
  9439. #u48634 {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:1923px;
  9443. top:384px;
  9444. width:49px;
  9445. height:25px;
  9446. display:flex;
  9447. transition:none;
  9448. transform-origin:50% 50%;
  9449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9450. font-weight:400;
  9451. font-style:normal;
  9452. font-size:12px;
  9453. color:#7F7F7F;
  9454. line-height:25px;
  9455. }
  9456. #u48634 .text {
  9457. position:absolute;
  9458. align-self:flex-start;
  9459. padding:0px 0px 0px 0px;
  9460. box-sizing:border-box;
  9461. width:100%;
  9462. }
  9463. #u48634_text {
  9464. border-width:0px;
  9465. white-space:nowrap;
  9466. text-transform:none;
  9467. }
  9468. #u48635_div {
  9469. border-width:0px;
  9470. position:absolute;
  9471. left:0px;
  9472. top:0px;
  9473. width:144px;
  9474. height:40px;
  9475. background:inherit;
  9476. background-color:rgba(24, 144, 255, 1);
  9477. border-radius:40px;
  9478. filter:drop-shadow(none);
  9479. transition:none;
  9480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9481. font-weight:400;
  9482. font-style:normal;
  9483. font-size:14px;
  9484. color:#FFFFFF;
  9485. }
  9486. #u48635 {
  9487. border-width:0px;
  9488. position:absolute;
  9489. left:2044px;
  9490. top:619px;
  9491. width:144px;
  9492. height:40px;
  9493. display:flex;
  9494. transition:none;
  9495. transform-origin:50% 50%;
  9496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9497. font-weight:400;
  9498. font-style:normal;
  9499. font-size:14px;
  9500. color:#FFFFFF;
  9501. }
  9502. #u48635 .text {
  9503. position:absolute;
  9504. align-self:center;
  9505. padding:2px 2px 2px 2px;
  9506. box-sizing:border-box;
  9507. width:100%;
  9508. }
  9509. #u48635_text {
  9510. border-width:0px;
  9511. word-wrap:break-word;
  9512. text-transform:none;
  9513. }
  9514. #u48636_div {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:0px;
  9518. top:0px;
  9519. width:144px;
  9520. height:40px;
  9521. background:inherit;
  9522. background-color:rgba(255, 255, 255, 1);
  9523. box-sizing:border-box;
  9524. border-width:1px;
  9525. border-style:solid;
  9526. border-color:rgba(127, 127, 127, 1);
  9527. border-radius:40px;
  9528. filter:drop-shadow(none);
  9529. transition:none;
  9530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9531. font-weight:400;
  9532. font-style:normal;
  9533. font-size:14px;
  9534. }
  9535. #u48636 {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:1880px;
  9539. top:619px;
  9540. width:144px;
  9541. height:40px;
  9542. display:flex;
  9543. transition:none;
  9544. transform-origin:50% 50%;
  9545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9546. font-weight:400;
  9547. font-style:normal;
  9548. font-size:14px;
  9549. }
  9550. #u48636 .text {
  9551. position:absolute;
  9552. align-self:center;
  9553. padding:2px 2px 2px 2px;
  9554. box-sizing:border-box;
  9555. width:100%;
  9556. }
  9557. #u48636_text {
  9558. border-width:0px;
  9559. word-wrap:break-word;
  9560. text-transform:none;
  9561. }
  9562. #u48637_div {
  9563. border-width:0px;
  9564. position:absolute;
  9565. left:0px;
  9566. top:0px;
  9567. width:127px;
  9568. height:30px;
  9569. background:inherit;
  9570. background-color:rgba(255, 255, 255, 0);
  9571. border-left:0px;
  9572. border-top:0px;
  9573. border-right:0px;
  9574. border-radius:0px;
  9575. border-bottom-right-radius:0px;
  9576. border-bottom-left-radius:0px;
  9577. filter:drop-shadow(none);
  9578. transition:none;
  9579. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9580. font-weight:500;
  9581. font-style:normal;
  9582. font-size:14px;
  9583. line-height:30px;
  9584. }
  9585. #u48637 {
  9586. border-width:0px;
  9587. position:absolute;
  9588. left:608px;
  9589. top:73px;
  9590. width:127px;
  9591. height:30px;
  9592. display:flex;
  9593. transition:none;
  9594. transform-origin:50% 50%;
  9595. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9596. font-weight:500;
  9597. font-style:normal;
  9598. font-size:14px;
  9599. line-height:30px;
  9600. }
  9601. #u48637 .text {
  9602. position:absolute;
  9603. align-self:flex-start;
  9604. padding:0px 0px 0px 0px;
  9605. box-sizing:border-box;
  9606. width:100%;
  9607. }
  9608. #u48637_text {
  9609. border-width:0px;
  9610. white-space:nowrap;
  9611. text-transform:none;
  9612. }
  9613. #u48638_div {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:0px;
  9617. top:0px;
  9618. width:127px;
  9619. height:30px;
  9620. background:inherit;
  9621. background-color:rgba(255, 255, 255, 0);
  9622. border-left:0px;
  9623. border-top:0px;
  9624. border-right:0px;
  9625. border-radius:0px;
  9626. border-bottom-right-radius:0px;
  9627. border-bottom-left-radius:0px;
  9628. filter:drop-shadow(none);
  9629. transition:none;
  9630. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9631. font-weight:500;
  9632. font-style:normal;
  9633. font-size:14px;
  9634. line-height:30px;
  9635. }
  9636. #u48638 {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:1063px;
  9640. top:72px;
  9641. width:127px;
  9642. height:30px;
  9643. display:flex;
  9644. transition:none;
  9645. transform-origin:50% 50%;
  9646. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9647. font-weight:500;
  9648. font-style:normal;
  9649. font-size:14px;
  9650. line-height:30px;
  9651. }
  9652. #u48638 .text {
  9653. position:absolute;
  9654. align-self:flex-start;
  9655. padding:0px 0px 0px 0px;
  9656. box-sizing:border-box;
  9657. width:100%;
  9658. }
  9659. #u48638_text {
  9660. border-width:0px;
  9661. white-space:nowrap;
  9662. text-transform:none;
  9663. }