styles.css 132 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1510px;
  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. #u55320 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u55321 {
  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. #u55321 .text {
  38. position:absolute;
  39. align-self:center;
  40. padding:2px 2px 2px 2px;
  41. box-sizing:border-box;
  42. width:100%;
  43. }
  44. #u55321_img {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:0px;
  49. width:433px;
  50. height:865px;
  51. }
  52. #u55321_text {
  53. border-width:0px;
  54. word-wrap:break-word;
  55. text-transform:none;
  56. visibility:hidden;
  57. }
  58. #u55322_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. #u55322 {
  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. #u55322 .text {
  92. position:absolute;
  93. align-self:center;
  94. padding:2px 2px 2px 2px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u55322_text {
  99. border-width:0px;
  100. word-wrap:break-word;
  101. text-transform:none;
  102. visibility:hidden;
  103. }
  104. #u55323 {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:0px;
  110. height:0px;
  111. }
  112. #u55324_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. #u55324 {
  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. #u55324 .text {
  141. position:absolute;
  142. align-self:center;
  143. padding:2px 2px 2px 2px;
  144. box-sizing:border-box;
  145. width:100%;
  146. }
  147. #u55324_text {
  148. border-width:0px;
  149. word-wrap:break-word;
  150. text-transform:none;
  151. visibility:hidden;
  152. }
  153. #u55325 {
  154. border-width:0px;
  155. position:absolute;
  156. left:0px;
  157. top:0px;
  158. width:0px;
  159. height:0px;
  160. }
  161. #u55326 {
  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. #u55326 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u55326_img {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:18px;
  184. height:18px;
  185. }
  186. #u55326_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u55327 {
  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. #u55327 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:2px 2px 2px 2px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u55327_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:6px;
  215. height:6px;
  216. }
  217. #u55327_text {
  218. border-width:0px;
  219. word-wrap:break-word;
  220. text-transform:none;
  221. visibility:hidden;
  222. }
  223. #u55328 {
  224. border-width:0px;
  225. position:absolute;
  226. left:0px;
  227. top:0px;
  228. width:0px;
  229. height:0px;
  230. }
  231. #u55329 {
  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. #u55329 .text {
  242. position:absolute;
  243. align-self:center;
  244. padding:2px 2px 2px 2px;
  245. box-sizing:border-box;
  246. width:100%;
  247. }
  248. #u55329_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u55329_text {
  257. border-width:0px;
  258. word-wrap:break-word;
  259. text-transform:none;
  260. visibility:hidden;
  261. }
  262. #u55330 {
  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. #u55330 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u55330_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:5px;
  285. height:5px;
  286. }
  287. #u55330_text {
  288. border-width:0px;
  289. word-wrap:break-word;
  290. text-transform:none;
  291. visibility:hidden;
  292. }
  293. #u55331 {
  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. #u55331 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u55331_img {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:7px;
  316. height:7px;
  317. }
  318. #u55331_text {
  319. border-width:0px;
  320. word-wrap:break-word;
  321. text-transform:none;
  322. visibility:hidden;
  323. }
  324. #u55332 {
  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. #u55332 .text {
  339. position:absolute;
  340. align-self:center;
  341. padding:2px 2px 2px 2px;
  342. box-sizing:border-box;
  343. width:100%;
  344. }
  345. #u55332_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u55332_text {
  354. border-width:0px;
  355. word-wrap:break-word;
  356. text-transform:none;
  357. visibility:hidden;
  358. }
  359. #u55333 {
  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. #u55333 .text {
  370. position:absolute;
  371. align-self:center;
  372. padding:2px 2px 2px 2px;
  373. box-sizing:border-box;
  374. width:100%;
  375. }
  376. #u55333_img {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:375px;
  382. height:44px;
  383. }
  384. #u55333_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u55334_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. #u55334 {
  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. #u55334 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u55334_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u55335 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u55336 {
  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. #u55336 .text {
  453. position:absolute;
  454. align-self:center;
  455. padding:2px 2px 2px 2px;
  456. box-sizing:border-box;
  457. width:100%;
  458. }
  459. #u55336_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:0px;
  464. width:24px;
  465. height:24px;
  466. }
  467. #u55336_text {
  468. border-width:0px;
  469. word-wrap:break-word;
  470. text-transform:none;
  471. }
  472. #u55337_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. #u55337 {
  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. #u55337 .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. #u55337_text {
  512. border-width:0px;
  513. white-space:nowrap;
  514. text-transform:none;
  515. }
  516. #u55338 {
  517. border-width:0px;
  518. position:absolute;
  519. left:0px;
  520. top:0px;
  521. width:0px;
  522. height:0px;
  523. }
  524. #u55339 {
  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. #u55339 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u55339_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u55339_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. }
  555. #u55340_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. #u55340 {
  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. #u55340 .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. #u55340_text {
  595. border-width:0px;
  596. white-space:nowrap;
  597. text-transform:none;
  598. }
  599. #u55341_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. #u55341 {
  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. #u55341 .text {
  624. position:absolute;
  625. align-self:center;
  626. padding:2px 2px 2px 2px;
  627. box-sizing:border-box;
  628. width:100%;
  629. }
  630. #u55341_text {
  631. border-width:0px;
  632. word-wrap:break-word;
  633. text-transform:none;
  634. visibility:hidden;
  635. }
  636. #u55342 {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:0px;
  642. height:0px;
  643. }
  644. #u55343 {
  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. #u55343 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:2px 2px 2px 2px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u55343_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:24px;
  668. height:24px;
  669. }
  670. #u55343_text {
  671. border-width:0px;
  672. word-wrap:break-word;
  673. text-transform:none;
  674. }
  675. #u55344_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. #u55344 {
  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. #u55344 .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. #u55344_text {
  715. border-width:0px;
  716. white-space:nowrap;
  717. text-transform:none;
  718. }
  719. #u55345 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u55346 {
  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. #u55346 .text {
  739. position:absolute;
  740. align-self:center;
  741. padding:2px 2px 2px 2px;
  742. box-sizing:border-box;
  743. width:100%;
  744. }
  745. #u55346_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:24px;
  751. height:24px;
  752. }
  753. #u55346_text {
  754. border-width:0px;
  755. word-wrap:break-word;
  756. text-transform:none;
  757. }
  758. #u55347_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. #u55347 {
  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. #u55347 .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. #u55347_text {
  798. border-width:0px;
  799. white-space:nowrap;
  800. text-transform:none;
  801. }
  802. #u55348_div {
  803. border-width:0px;
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:375px;
  808. height:732px;
  809. background:inherit;
  810. background-color:rgba(242, 242, 242, 0.996078431372549);
  811. border-top:0px;
  812. border-radius:28px;
  813. border-top-left-radius:0px;
  814. border-top-right-radius:0px;
  815. filter:drop-shadow(none);
  816. transition:none;
  817. }
  818. #u55348 {
  819. border-width:0px;
  820. position:absolute;
  821. left:29px;
  822. top:107px;
  823. width:375px;
  824. height:732px;
  825. display:flex;
  826. transition:none;
  827. transform-origin:50% 50%;
  828. }
  829. #u55348 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u55348_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u55349_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:375px;
  848. height:50px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  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. }
  860. #u55349 {
  861. border-width:0px;
  862. position:absolute;
  863. left:29px;
  864. top:107px;
  865. width:375px;
  866. height:50px;
  867. display:flex;
  868. transition:none;
  869. transform-origin:50% 50%;
  870. }
  871. #u55349 .text {
  872. position:absolute;
  873. align-self:center;
  874. padding:2px 2px 2px 2px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u55349_text {
  879. border-width:0px;
  880. word-wrap:break-word;
  881. text-transform:none;
  882. visibility:hidden;
  883. }
  884. #u55350_div {
  885. border-width:0px;
  886. position:absolute;
  887. left:0px;
  888. top:0px;
  889. width:375px;
  890. height:1148px;
  891. background:inherit;
  892. background-color:rgba(255, 255, 255, 1);
  893. box-sizing:border-box;
  894. border-width:1px;
  895. border-style:solid;
  896. border-color:rgba(215, 215, 215, 1);
  897. border-left:0px;
  898. border-right:0px;
  899. border-bottom:0px;
  900. border-radius:20px;
  901. border-top-left-radius:0px;
  902. border-top-right-radius:0px;
  903. filter:drop-shadow(none);
  904. transition:none;
  905. }
  906. #u55350 {
  907. border-width:0px;
  908. position:absolute;
  909. left:29px;
  910. top:67px;
  911. width:375px;
  912. height:1148px;
  913. display:flex;
  914. transition:none;
  915. transform-origin:50% 50%;
  916. }
  917. #u55350 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 2px 2px 2px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u55350_text {
  925. border-width:0px;
  926. word-wrap:break-word;
  927. text-transform:none;
  928. visibility:hidden;
  929. }
  930. #u55351 {
  931. border-width:0px;
  932. position:absolute;
  933. left:29px;
  934. top:24px;
  935. width:375px;
  936. height:44px;
  937. display:flex;
  938. transition:none;
  939. }
  940. #u55351 .text {
  941. position:absolute;
  942. align-self:center;
  943. padding:2px 2px 2px 2px;
  944. box-sizing:border-box;
  945. width:100%;
  946. }
  947. #u55351_img {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:375px;
  953. height:44px;
  954. }
  955. #u55351_text {
  956. border-width:0px;
  957. word-wrap:break-word;
  958. text-transform:none;
  959. visibility:hidden;
  960. }
  961. #u55352 {
  962. border-width:0px;
  963. position:absolute;
  964. left:0px;
  965. top:0px;
  966. width:0px;
  967. height:0px;
  968. }
  969. #u55353_div {
  970. border-width:0px;
  971. position:absolute;
  972. left:0px;
  973. top:0px;
  974. width:88px;
  975. height:32px;
  976. background:inherit;
  977. background-color:rgba(255, 255, 255, 1);
  978. box-sizing:border-box;
  979. border-width:1px;
  980. border-style:solid;
  981. border-color:rgba(242, 242, 242, 1);
  982. border-radius:33px;
  983. filter:drop-shadow(none);
  984. transition:none;
  985. }
  986. #u55353 {
  987. border-width:0px;
  988. position:absolute;
  989. left:309px;
  990. top:71px;
  991. width:88px;
  992. height:32px;
  993. display:flex;
  994. transition:none;
  995. transform-origin:50% 50%;
  996. }
  997. #u55353 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u55353_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u55354 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u55355 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:372px;
  1022. top:78px;
  1023. width:18px;
  1024. height:18px;
  1025. display:flex;
  1026. transition:none;
  1027. }
  1028. #u55355 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:2px 2px 2px 2px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u55355_img {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:18px;
  1041. height:18px;
  1042. }
  1043. #u55355_text {
  1044. border-width:0px;
  1045. word-wrap:break-word;
  1046. text-transform:none;
  1047. visibility:hidden;
  1048. }
  1049. #u55356 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:378px;
  1053. top:84px;
  1054. width:6px;
  1055. height:6px;
  1056. display:flex;
  1057. transition:none;
  1058. }
  1059. #u55356 .text {
  1060. position:absolute;
  1061. align-self:center;
  1062. padding:2px 2px 2px 2px;
  1063. box-sizing:border-box;
  1064. width:100%;
  1065. }
  1066. #u55356_img {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:0px;
  1070. top:0px;
  1071. width:6px;
  1072. height:6px;
  1073. }
  1074. #u55356_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. visibility:hidden;
  1079. }
  1080. #u55357 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:0px;
  1086. height:0px;
  1087. }
  1088. #u55358 {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:323px;
  1092. top:85px;
  1093. width:5px;
  1094. height:5px;
  1095. display:flex;
  1096. transition:none;
  1097. }
  1098. #u55358 .text {
  1099. position:absolute;
  1100. align-self:center;
  1101. padding:2px 2px 2px 2px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u55358_img {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:0px;
  1109. top:0px;
  1110. width:5px;
  1111. height:5px;
  1112. }
  1113. #u55358_text {
  1114. border-width:0px;
  1115. word-wrap:break-word;
  1116. text-transform:none;
  1117. visibility:hidden;
  1118. }
  1119. #u55359 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:339px;
  1123. top:85px;
  1124. width:5px;
  1125. height:5px;
  1126. display:flex;
  1127. transition:none;
  1128. }
  1129. #u55359 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u55359_img {
  1137. border-width:0px;
  1138. position:absolute;
  1139. left:0px;
  1140. top:0px;
  1141. width:5px;
  1142. height:5px;
  1143. }
  1144. #u55359_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u55360 {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:330px;
  1154. top:84px;
  1155. width:7px;
  1156. height:7px;
  1157. display:flex;
  1158. transition:none;
  1159. }
  1160. #u55360 .text {
  1161. position:absolute;
  1162. align-self:center;
  1163. padding:2px 2px 2px 2px;
  1164. box-sizing:border-box;
  1165. width:100%;
  1166. }
  1167. #u55360_img {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:7px;
  1173. height:7px;
  1174. }
  1175. #u55360_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. visibility:hidden;
  1180. }
  1181. #u55361 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:347px;
  1185. top:87px;
  1186. width:18px;
  1187. height:1px;
  1188. display:flex;
  1189. -webkit-transform:rotate(90deg);
  1190. -moz-transform:rotate(90deg);
  1191. -ms-transform:rotate(90deg);
  1192. transform:rotate(90deg);
  1193. transition:none;
  1194. }
  1195. #u55361 .text {
  1196. position:absolute;
  1197. align-self:center;
  1198. padding:2px 2px 2px 2px;
  1199. box-sizing:border-box;
  1200. width:100%;
  1201. }
  1202. #u55361_img {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:0px;
  1207. width:19px;
  1208. height:2px;
  1209. }
  1210. #u55361_text {
  1211. border-width:0px;
  1212. word-wrap:break-word;
  1213. text-transform:none;
  1214. visibility:hidden;
  1215. }
  1216. #u55362_div {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:73px;
  1222. height:25px;
  1223. background:inherit;
  1224. background-color:rgba(255, 255, 255, 0);
  1225. border-radius:0px;
  1226. filter:drop-shadow(none);
  1227. transition:none;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:18px;
  1232. color:#000000;
  1233. }
  1234. #u55362 {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:42px;
  1238. top:114px;
  1239. width:73px;
  1240. height:25px;
  1241. display:flex;
  1242. transition:none;
  1243. transform-origin:50% 50%;
  1244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1245. font-weight:400;
  1246. font-style:normal;
  1247. font-size:18px;
  1248. color:#000000;
  1249. }
  1250. #u55362 .text {
  1251. position:absolute;
  1252. align-self:flex-start;
  1253. padding:0px 0px 0px 0px;
  1254. box-sizing:border-box;
  1255. width:100%;
  1256. }
  1257. #u55362_text {
  1258. border-width:0px;
  1259. white-space:nowrap;
  1260. text-transform:none;
  1261. }
  1262. #u55363_div {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:0px;
  1266. top:0px;
  1267. width:12px;
  1268. height:12px;
  1269. background:inherit;
  1270. background-color:rgba(255, 255, 255, 0);
  1271. box-sizing:border-box;
  1272. border-width:2px;
  1273. border-style:solid;
  1274. border-color:rgba(51, 51, 51, 1);
  1275. border-right:0px;
  1276. border-bottom:0px;
  1277. border-radius:0px;
  1278. border-top-right-radius:0px;
  1279. border-bottom-left-radius:0px;
  1280. filter:drop-shadow(none);
  1281. transition:none;
  1282. }
  1283. #u55363 {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:44px;
  1287. top:81px;
  1288. width:12px;
  1289. height:12px;
  1290. display:flex;
  1291. -webkit-transform:rotate(315deg);
  1292. -moz-transform:rotate(315deg);
  1293. -ms-transform:rotate(315deg);
  1294. transform:rotate(315deg);
  1295. transition:none;
  1296. transform-origin:50% 50%;
  1297. }
  1298. #u55363 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u55363_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u55364_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:664px;
  1317. height:109px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. border-top:0px;
  1321. border-right:0px;
  1322. border-bottom:0px;
  1323. border-radius:0px;
  1324. border-top-left-radius:0px;
  1325. border-bottom-left-radius:0px;
  1326. filter:drop-shadow(none);
  1327. transition:none;
  1328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1329. font-weight:400;
  1330. font-style:normal;
  1331. font-size:12px;
  1332. }
  1333. #u55364 {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:79px;
  1337. top:-159px;
  1338. width:664px;
  1339. height:109px;
  1340. display:flex;
  1341. transition:none;
  1342. transform-origin:50% 50%;
  1343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. font-size:12px;
  1347. }
  1348. #u55364 .text {
  1349. position:absolute;
  1350. align-self:center;
  1351. padding:5px 10px 5px 0px;
  1352. box-sizing:border-box;
  1353. width:100%;
  1354. }
  1355. #u55364_text {
  1356. border-width:0px;
  1357. white-space:nowrap;
  1358. text-transform:none;
  1359. }
  1360. #u55365 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:0px;
  1364. top:0px;
  1365. width:0px;
  1366. height:0px;
  1367. }
  1368. #u55366_div {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:0px;
  1372. top:0px;
  1373. width:348px;
  1374. height:80px;
  1375. background:inherit;
  1376. background-color:rgba(255, 255, 255, 1);
  1377. border-radius:5px;
  1378. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  1379. transition:none;
  1380. }
  1381. #u55366 {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:42px;
  1385. top:157px;
  1386. width:348px;
  1387. height:80px;
  1388. display:flex;
  1389. transition:none;
  1390. transform-origin:50% 50%;
  1391. }
  1392. #u55366 .text {
  1393. position:absolute;
  1394. align-self:center;
  1395. padding:2px 2px 2px 2px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u55366_text {
  1400. border-width:0px;
  1401. word-wrap:break-word;
  1402. text-transform:none;
  1403. visibility:hidden;
  1404. }
  1405. #u55367_div {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:322px;
  1411. height:34px;
  1412. background:inherit;
  1413. background-color:rgba(255, 255, 255, 0);
  1414. border-radius:0px;
  1415. filter:drop-shadow(none);
  1416. transition:none;
  1417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1418. font-weight:400;
  1419. font-style:normal;
  1420. font-size:12px;
  1421. }
  1422. #u55367 {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:56px;
  1426. top:167px;
  1427. width:322px;
  1428. height:34px;
  1429. display:flex;
  1430. transition:none;
  1431. transform-origin:50% 50%;
  1432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1433. font-weight:400;
  1434. font-style:normal;
  1435. font-size:12px;
  1436. }
  1437. #u55367 .text {
  1438. position:absolute;
  1439. align-self:flex-start;
  1440. padding:0px 0px 0px 0px;
  1441. box-sizing:border-box;
  1442. width:100%;
  1443. }
  1444. #u55367_text {
  1445. border-width:0px;
  1446. word-wrap:break-word;
  1447. text-transform:none;
  1448. }
  1449. #u55368_div {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:0px;
  1453. top:0px;
  1454. width:49px;
  1455. height:14px;
  1456. background:inherit;
  1457. background-color:rgba(255, 255, 255, 0);
  1458. border-radius:0px;
  1459. filter:drop-shadow(none);
  1460. transition:none;
  1461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1462. font-weight:400;
  1463. font-style:normal;
  1464. font-size:10px;
  1465. color:#7F7F7F;
  1466. }
  1467. #u55368 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:59px;
  1471. top:214px;
  1472. width:49px;
  1473. height:14px;
  1474. display:flex;
  1475. transition:none;
  1476. transform-origin:50% 50%;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:10px;
  1481. color:#7F7F7F;
  1482. }
  1483. #u55368 .text {
  1484. position:absolute;
  1485. align-self:flex-start;
  1486. padding:0px 0px 0px 0px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u55368_text {
  1491. border-width:0px;
  1492. white-space:nowrap;
  1493. text-transform:none;
  1494. }
  1495. #u55369 {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:0px;
  1501. height:0px;
  1502. }
  1503. #u55370_div {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:81px;
  1509. height:14px;
  1510. background:inherit;
  1511. background-color:rgba(255, 255, 255, 0);
  1512. border-radius:0px;
  1513. filter:drop-shadow(none);
  1514. transition:none;
  1515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1516. font-weight:400;
  1517. font-style:normal;
  1518. font-size:10px;
  1519. color:#7F7F7F;
  1520. }
  1521. #u55370 {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:129px;
  1525. top:214px;
  1526. width:81px;
  1527. height:14px;
  1528. display:flex;
  1529. transition:none;
  1530. transform-origin:50% 50%;
  1531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1532. font-weight:400;
  1533. font-style:normal;
  1534. font-size:10px;
  1535. color:#7F7F7F;
  1536. }
  1537. #u55370 .text {
  1538. position:absolute;
  1539. align-self:flex-start;
  1540. padding:0px 0px 0px 0px;
  1541. box-sizing:border-box;
  1542. width:100%;
  1543. }
  1544. #u55370_text {
  1545. border-width:0px;
  1546. white-space:nowrap;
  1547. text-transform:none;
  1548. }
  1549. #u55371 {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:118px;
  1553. top:216px;
  1554. width:7px;
  1555. height:10px;
  1556. display:flex;
  1557. transition:none;
  1558. }
  1559. #u55371 .text {
  1560. position:absolute;
  1561. align-self:center;
  1562. padding:2px 2px 2px 2px;
  1563. box-sizing:border-box;
  1564. width:100%;
  1565. }
  1566. #u55371_img {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:7px;
  1572. height:10px;
  1573. }
  1574. #u55371_text {
  1575. border-width:0px;
  1576. word-wrap:break-word;
  1577. text-transform:none;
  1578. visibility:hidden;
  1579. }
  1580. #u55372 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:0px;
  1586. height:0px;
  1587. }
  1588. #u55373_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:348px;
  1594. height:100px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 1);
  1597. border-radius:5px;
  1598. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  1599. transition:none;
  1600. }
  1601. #u55373 {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:42px;
  1605. top:467px;
  1606. width:348px;
  1607. height:100px;
  1608. display:flex;
  1609. transition:none;
  1610. transform-origin:50% 50%;
  1611. }
  1612. #u55373 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 2px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u55373_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. visibility:hidden;
  1624. }
  1625. #u55374_div {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:322px;
  1631. height:51px;
  1632. background:inherit;
  1633. background-color:rgba(255, 255, 255, 0);
  1634. border-radius:0px;
  1635. filter:drop-shadow(none);
  1636. transition:none;
  1637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1638. font-weight:400;
  1639. font-style:normal;
  1640. font-size:12px;
  1641. }
  1642. #u55374 {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:57px;
  1646. top:477px;
  1647. width:322px;
  1648. height:51px;
  1649. display:flex;
  1650. transition:none;
  1651. transform-origin:50% 50%;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:12px;
  1656. }
  1657. #u55374 .text {
  1658. position:absolute;
  1659. align-self:flex-start;
  1660. padding:0px 0px 0px 0px;
  1661. box-sizing:border-box;
  1662. width:100%;
  1663. }
  1664. #u55374_text {
  1665. border-width:0px;
  1666. word-wrap:break-word;
  1667. text-transform:none;
  1668. }
  1669. #u55375_div {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:49px;
  1675. height:14px;
  1676. background:inherit;
  1677. background-color:rgba(255, 255, 255, 0);
  1678. border-radius:0px;
  1679. filter:drop-shadow(none);
  1680. transition:none;
  1681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1682. font-weight:400;
  1683. font-style:normal;
  1684. font-size:10px;
  1685. color:#7F7F7F;
  1686. }
  1687. #u55375 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:59px;
  1691. top:544px;
  1692. width:49px;
  1693. height:14px;
  1694. display:flex;
  1695. transition:none;
  1696. transform-origin:50% 50%;
  1697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1698. font-weight:400;
  1699. font-style:normal;
  1700. font-size:10px;
  1701. color:#7F7F7F;
  1702. }
  1703. #u55375 .text {
  1704. position:absolute;
  1705. align-self:flex-start;
  1706. padding:0px 0px 0px 0px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u55375_text {
  1711. border-width:0px;
  1712. white-space:nowrap;
  1713. text-transform:none;
  1714. }
  1715. #u55376 {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:0px;
  1721. height:0px;
  1722. }
  1723. #u55377_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:81px;
  1729. height:14px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border-radius:0px;
  1733. filter:drop-shadow(none);
  1734. transition:none;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:10px;
  1739. color:#7F7F7F;
  1740. }
  1741. #u55377 {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:129px;
  1745. top:544px;
  1746. width:81px;
  1747. height:14px;
  1748. display:flex;
  1749. transition:none;
  1750. transform-origin:50% 50%;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:10px;
  1755. color:#7F7F7F;
  1756. }
  1757. #u55377 .text {
  1758. position:absolute;
  1759. align-self:flex-start;
  1760. padding:0px 0px 0px 0px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u55377_text {
  1765. border-width:0px;
  1766. white-space:nowrap;
  1767. text-transform:none;
  1768. }
  1769. #u55378 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:118px;
  1773. top:546px;
  1774. width:7px;
  1775. height:10px;
  1776. display:flex;
  1777. transition:none;
  1778. }
  1779. #u55378 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 2px 2px 2px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u55378_img {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:7px;
  1792. height:10px;
  1793. }
  1794. #u55378_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u55379 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:0px;
  1806. height:0px;
  1807. }
  1808. #u55380_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:348px;
  1814. height:100px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 1);
  1817. border-radius:5px;
  1818. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  1819. transition:none;
  1820. }
  1821. #u55380 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:42px;
  1825. top:247px;
  1826. width:348px;
  1827. height:100px;
  1828. display:flex;
  1829. transition:none;
  1830. transform-origin:50% 50%;
  1831. }
  1832. #u55380 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 2px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u55380_text {
  1840. border-width:0px;
  1841. word-wrap:break-word;
  1842. text-transform:none;
  1843. visibility:hidden;
  1844. }
  1845. #u55381_div {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:322px;
  1851. height:51px;
  1852. background:inherit;
  1853. background-color:rgba(255, 255, 255, 0);
  1854. border-radius:0px;
  1855. filter:drop-shadow(none);
  1856. transition:none;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:12px;
  1861. }
  1862. #u55381 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:57px;
  1866. top:257px;
  1867. width:322px;
  1868. height:51px;
  1869. display:flex;
  1870. transition:none;
  1871. transform-origin:50% 50%;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:12px;
  1876. }
  1877. #u55381 .text {
  1878. position:absolute;
  1879. align-self:flex-start;
  1880. padding:0px 0px 0px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u55381_text {
  1885. border-width:0px;
  1886. word-wrap:break-word;
  1887. text-transform:none;
  1888. }
  1889. #u55382 {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:0px;
  1895. height:0px;
  1896. }
  1897. #u55383_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:49px;
  1903. height:14px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border-radius:0px;
  1907. filter:drop-shadow(none);
  1908. transition:none;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:10px;
  1913. color:#7F7F7F;
  1914. }
  1915. #u55383 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:57px;
  1919. top:318px;
  1920. width:49px;
  1921. height:14px;
  1922. display:flex;
  1923. transition:none;
  1924. transform-origin:50% 50%;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:10px;
  1929. color:#7F7F7F;
  1930. }
  1931. #u55383 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u55383_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u55384_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:81px;
  1949. height:14px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. border-radius:0px;
  1953. filter:drop-shadow(none);
  1954. transition:none;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:10px;
  1959. color:#7F7F7F;
  1960. }
  1961. #u55384 {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:127px;
  1965. top:318px;
  1966. width:81px;
  1967. height:14px;
  1968. display:flex;
  1969. transition:none;
  1970. transform-origin:50% 50%;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:10px;
  1975. color:#7F7F7F;
  1976. }
  1977. #u55384 .text {
  1978. position:absolute;
  1979. align-self:flex-start;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u55384_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u55385 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:116px;
  1993. top:320px;
  1994. width:7px;
  1995. height:10px;
  1996. display:flex;
  1997. transition:none;
  1998. }
  1999. #u55385 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 2px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u55385_img {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:7px;
  2012. height:10px;
  2013. }
  2014. #u55385_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u55386 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:0px;
  2026. height:0px;
  2027. }
  2028. #u55387_div {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:348px;
  2034. height:80px;
  2035. background:inherit;
  2036. background-color:rgba(255, 255, 255, 1);
  2037. border-radius:5px;
  2038. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  2039. transition:none;
  2040. }
  2041. #u55387 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:42px;
  2045. top:807px;
  2046. width:348px;
  2047. height:80px;
  2048. display:flex;
  2049. transition:none;
  2050. transform-origin:50% 50%;
  2051. }
  2052. #u55387 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 2px 2px 2px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u55387_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u55388_div {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:333px;
  2071. height:34px;
  2072. background:inherit;
  2073. background-color:rgba(255, 255, 255, 0);
  2074. border-radius:0px;
  2075. filter:drop-shadow(none);
  2076. transition:none;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. }
  2082. #u55388 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:57px;
  2086. top:817px;
  2087. width:333px;
  2088. height:34px;
  2089. display:flex;
  2090. transition:none;
  2091. transform-origin:50% 50%;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. }
  2097. #u55388 .text {
  2098. position:absolute;
  2099. align-self:flex-start;
  2100. padding:0px 0px 0px 0px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u55388_text {
  2105. border-width:0px;
  2106. word-wrap:break-word;
  2107. text-transform:none;
  2108. }
  2109. #u55389_div {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:0px;
  2113. top:0px;
  2114. width:49px;
  2115. height:14px;
  2116. background:inherit;
  2117. background-color:rgba(255, 255, 255, 0);
  2118. border-radius:0px;
  2119. filter:drop-shadow(none);
  2120. transition:none;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:10px;
  2125. color:#7F7F7F;
  2126. }
  2127. #u55389 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:59px;
  2131. top:864px;
  2132. width:49px;
  2133. height:14px;
  2134. display:flex;
  2135. transition:none;
  2136. transform-origin:50% 50%;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:10px;
  2141. color:#7F7F7F;
  2142. }
  2143. #u55389 .text {
  2144. position:absolute;
  2145. align-self:flex-start;
  2146. padding:0px 0px 0px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u55389_text {
  2151. border-width:0px;
  2152. white-space:nowrap;
  2153. text-transform:none;
  2154. }
  2155. #u55390 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:0px;
  2161. height:0px;
  2162. }
  2163. #u55391_div {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:81px;
  2169. height:14px;
  2170. background:inherit;
  2171. background-color:rgba(255, 255, 255, 0);
  2172. border-radius:0px;
  2173. filter:drop-shadow(none);
  2174. transition:none;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:10px;
  2179. color:#7F7F7F;
  2180. }
  2181. #u55391 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:129px;
  2185. top:864px;
  2186. width:81px;
  2187. height:14px;
  2188. display:flex;
  2189. transition:none;
  2190. transform-origin:50% 50%;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:10px;
  2195. color:#7F7F7F;
  2196. }
  2197. #u55391 .text {
  2198. position:absolute;
  2199. align-self:flex-start;
  2200. padding:0px 0px 0px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u55391_text {
  2205. border-width:0px;
  2206. white-space:nowrap;
  2207. text-transform:none;
  2208. }
  2209. #u55392 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:118px;
  2213. top:866px;
  2214. width:7px;
  2215. height:10px;
  2216. display:flex;
  2217. transition:none;
  2218. }
  2219. #u55392 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u55392_img {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:7px;
  2232. height:10px;
  2233. }
  2234. #u55392_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u55393 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:0px;
  2246. height:0px;
  2247. }
  2248. #u55394_div {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:348px;
  2254. height:80px;
  2255. background:inherit;
  2256. background-color:rgba(255, 255, 255, 1);
  2257. border-radius:5px;
  2258. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  2259. transition:none;
  2260. }
  2261. #u55394 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:42px;
  2265. top:897px;
  2266. width:348px;
  2267. height:80px;
  2268. display:flex;
  2269. transition:none;
  2270. transform-origin:50% 50%;
  2271. }
  2272. #u55394 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:2px 2px 2px 2px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u55394_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. visibility:hidden;
  2284. }
  2285. #u55395_div {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:333px;
  2291. height:34px;
  2292. background:inherit;
  2293. background-color:rgba(255, 255, 255, 0);
  2294. border-radius:0px;
  2295. filter:drop-shadow(none);
  2296. transition:none;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:12px;
  2301. }
  2302. #u55395 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:57px;
  2306. top:907px;
  2307. width:333px;
  2308. height:34px;
  2309. display:flex;
  2310. transition:none;
  2311. transform-origin:50% 50%;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. }
  2317. #u55395 .text {
  2318. position:absolute;
  2319. align-self:flex-start;
  2320. padding:0px 0px 0px 0px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u55395_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. }
  2329. #u55396_div {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:49px;
  2335. height:14px;
  2336. background:inherit;
  2337. background-color:rgba(255, 255, 255, 0);
  2338. border-radius:0px;
  2339. filter:drop-shadow(none);
  2340. transition:none;
  2341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2342. font-weight:400;
  2343. font-style:normal;
  2344. font-size:10px;
  2345. color:#7F7F7F;
  2346. }
  2347. #u55396 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:59px;
  2351. top:954px;
  2352. width:49px;
  2353. height:14px;
  2354. display:flex;
  2355. transition:none;
  2356. transform-origin:50% 50%;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:10px;
  2361. color:#7F7F7F;
  2362. }
  2363. #u55396 .text {
  2364. position:absolute;
  2365. align-self:flex-start;
  2366. padding:0px 0px 0px 0px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u55396_text {
  2371. border-width:0px;
  2372. white-space:nowrap;
  2373. text-transform:none;
  2374. }
  2375. #u55397 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:0px;
  2381. height:0px;
  2382. }
  2383. #u55398_div {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:81px;
  2389. height:14px;
  2390. background:inherit;
  2391. background-color:rgba(255, 255, 255, 0);
  2392. border-radius:0px;
  2393. filter:drop-shadow(none);
  2394. transition:none;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:10px;
  2399. color:#7F7F7F;
  2400. }
  2401. #u55398 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:129px;
  2405. top:954px;
  2406. width:81px;
  2407. height:14px;
  2408. display:flex;
  2409. transition:none;
  2410. transform-origin:50% 50%;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:10px;
  2415. color:#7F7F7F;
  2416. }
  2417. #u55398 .text {
  2418. position:absolute;
  2419. align-self:flex-start;
  2420. padding:0px 0px 0px 0px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u55398_text {
  2425. border-width:0px;
  2426. white-space:nowrap;
  2427. text-transform:none;
  2428. }
  2429. #u55399 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:118px;
  2433. top:956px;
  2434. width:7px;
  2435. height:10px;
  2436. display:flex;
  2437. transition:none;
  2438. }
  2439. #u55399 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:2px 2px 2px 2px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u55399_img {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:7px;
  2452. height:10px;
  2453. }
  2454. #u55399_text {
  2455. border-width:0px;
  2456. word-wrap:break-word;
  2457. text-transform:none;
  2458. visibility:hidden;
  2459. }
  2460. #u55400 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:0px;
  2466. height:0px;
  2467. }
  2468. #u55401_div {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:348px;
  2474. height:100px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 1);
  2477. border-radius:5px;
  2478. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  2479. transition:none;
  2480. }
  2481. #u55401 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:42px;
  2485. top:357px;
  2486. width:348px;
  2487. height:100px;
  2488. display:flex;
  2489. transition:none;
  2490. transform-origin:50% 50%;
  2491. }
  2492. #u55401 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:2px 2px 2px 2px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u55401_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. visibility:hidden;
  2504. }
  2505. #u55402_div {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:322px;
  2511. height:51px;
  2512. background:inherit;
  2513. background-color:rgba(255, 255, 255, 0);
  2514. border-radius:0px;
  2515. filter:drop-shadow(none);
  2516. transition:none;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. }
  2522. #u55402 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:57px;
  2526. top:367px;
  2527. width:322px;
  2528. height:51px;
  2529. display:flex;
  2530. transition:none;
  2531. transform-origin:50% 50%;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. font-size:12px;
  2536. }
  2537. #u55402 .text {
  2538. position:absolute;
  2539. align-self:flex-start;
  2540. padding:0px 0px 0px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u55402_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. }
  2549. #u55403 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:0px;
  2555. height:0px;
  2556. }
  2557. #u55404_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:49px;
  2563. height:14px;
  2564. background:inherit;
  2565. background-color:rgba(255, 255, 255, 0);
  2566. border-radius:0px;
  2567. filter:drop-shadow(none);
  2568. transition:none;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:10px;
  2573. color:#7F7F7F;
  2574. }
  2575. #u55404 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:57px;
  2579. top:428px;
  2580. width:49px;
  2581. height:14px;
  2582. display:flex;
  2583. transition:none;
  2584. transform-origin:50% 50%;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:10px;
  2589. color:#7F7F7F;
  2590. }
  2591. #u55404 .text {
  2592. position:absolute;
  2593. align-self:flex-start;
  2594. padding:0px 0px 0px 0px;
  2595. box-sizing:border-box;
  2596. width:100%;
  2597. }
  2598. #u55404_text {
  2599. border-width:0px;
  2600. white-space:nowrap;
  2601. text-transform:none;
  2602. }
  2603. #u55405_div {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:81px;
  2609. height:14px;
  2610. background:inherit;
  2611. background-color:rgba(255, 255, 255, 0);
  2612. border-radius:0px;
  2613. filter:drop-shadow(none);
  2614. transition:none;
  2615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2616. font-weight:400;
  2617. font-style:normal;
  2618. font-size:10px;
  2619. color:#7F7F7F;
  2620. }
  2621. #u55405 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:127px;
  2625. top:428px;
  2626. width:81px;
  2627. height:14px;
  2628. display:flex;
  2629. transition:none;
  2630. transform-origin:50% 50%;
  2631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2632. font-weight:400;
  2633. font-style:normal;
  2634. font-size:10px;
  2635. color:#7F7F7F;
  2636. }
  2637. #u55405 .text {
  2638. position:absolute;
  2639. align-self:flex-start;
  2640. padding:0px 0px 0px 0px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u55405_text {
  2645. border-width:0px;
  2646. white-space:nowrap;
  2647. text-transform:none;
  2648. }
  2649. #u55406 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:116px;
  2653. top:430px;
  2654. width:7px;
  2655. height:10px;
  2656. display:flex;
  2657. transition:none;
  2658. }
  2659. #u55406 .text {
  2660. position:absolute;
  2661. align-self:center;
  2662. padding:2px 2px 2px 2px;
  2663. box-sizing:border-box;
  2664. width:100%;
  2665. }
  2666. #u55406_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:7px;
  2672. height:10px;
  2673. }
  2674. #u55406_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. visibility:hidden;
  2679. }
  2680. #u55407 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:0px;
  2686. height:0px;
  2687. }
  2688. #u55408_div {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:348px;
  2694. height:110px;
  2695. background:inherit;
  2696. background-color:rgba(255, 255, 255, 1);
  2697. border-radius:5px;
  2698. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  2699. transition:none;
  2700. }
  2701. #u55408 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:42px;
  2705. top:1077px;
  2706. width:348px;
  2707. height:110px;
  2708. display:flex;
  2709. transition:none;
  2710. transform-origin:50% 50%;
  2711. }
  2712. #u55408 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 2px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u55408_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. visibility:hidden;
  2724. }
  2725. #u55409_div {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:322px;
  2731. height:60px;
  2732. background:inherit;
  2733. background-color:rgba(255, 255, 255, 0);
  2734. border-radius:0px;
  2735. filter:drop-shadow(none);
  2736. transition:none;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. line-height:20px;
  2742. }
  2743. #u55409 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:57px;
  2747. top:1087px;
  2748. width:322px;
  2749. height:60px;
  2750. display:flex;
  2751. transition:none;
  2752. transform-origin:50% 50%;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:12px;
  2757. line-height:20px;
  2758. }
  2759. #u55409 .text {
  2760. position:absolute;
  2761. align-self:flex-start;
  2762. padding:0px 0px 0px 0px;
  2763. box-sizing:border-box;
  2764. width:100%;
  2765. }
  2766. #u55409_text {
  2767. border-width:0px;
  2768. word-wrap:break-word;
  2769. text-transform:none;
  2770. }
  2771. #u55410 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:0px;
  2777. height:0px;
  2778. }
  2779. #u55411_div {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:49px;
  2785. height:14px;
  2786. background:inherit;
  2787. background-color:rgba(255, 255, 255, 0);
  2788. border-radius:0px;
  2789. filter:drop-shadow(none);
  2790. transition:none;
  2791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2792. font-weight:400;
  2793. font-style:normal;
  2794. font-size:10px;
  2795. color:#7F7F7F;
  2796. }
  2797. #u55411 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:57px;
  2801. top:1157px;
  2802. width:49px;
  2803. height:14px;
  2804. display:flex;
  2805. transition:none;
  2806. transform-origin:50% 50%;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:10px;
  2811. color:#7F7F7F;
  2812. }
  2813. #u55411 .text {
  2814. position:absolute;
  2815. align-self:flex-start;
  2816. padding:0px 0px 0px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u55411_text {
  2821. border-width:0px;
  2822. white-space:nowrap;
  2823. text-transform:none;
  2824. }
  2825. #u55412_div {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:81px;
  2831. height:14px;
  2832. background:inherit;
  2833. background-color:rgba(255, 255, 255, 0);
  2834. border-radius:0px;
  2835. filter:drop-shadow(none);
  2836. transition:none;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:10px;
  2841. color:#7F7F7F;
  2842. }
  2843. #u55412 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:127px;
  2847. top:1157px;
  2848. width:81px;
  2849. height:14px;
  2850. display:flex;
  2851. transition:none;
  2852. transform-origin:50% 50%;
  2853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:10px;
  2857. color:#7F7F7F;
  2858. }
  2859. #u55412 .text {
  2860. position:absolute;
  2861. align-self:flex-start;
  2862. padding:0px 0px 0px 0px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u55412_text {
  2867. border-width:0px;
  2868. white-space:nowrap;
  2869. text-transform:none;
  2870. }
  2871. #u55413 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:116px;
  2875. top:1159px;
  2876. width:7px;
  2877. height:10px;
  2878. display:flex;
  2879. transition:none;
  2880. }
  2881. #u55413 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 2px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u55413_img {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:7px;
  2894. height:10px;
  2895. }
  2896. #u55413_text {
  2897. border-width:0px;
  2898. word-wrap:break-word;
  2899. text-transform:none;
  2900. visibility:hidden;
  2901. }
  2902. #u55414 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:0px;
  2908. height:0px;
  2909. }
  2910. #u55415_div {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:348px;
  2916. height:110px;
  2917. background:inherit;
  2918. background-color:rgba(255, 255, 255, 1);
  2919. border-radius:5px;
  2920. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  2921. transition:none;
  2922. }
  2923. #u55415 {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:42px;
  2927. top:1297px;
  2928. width:348px;
  2929. height:110px;
  2930. display:flex;
  2931. transition:none;
  2932. transform-origin:50% 50%;
  2933. }
  2934. #u55415 .text {
  2935. position:absolute;
  2936. align-self:center;
  2937. padding:2px 2px 2px 2px;
  2938. box-sizing:border-box;
  2939. width:100%;
  2940. }
  2941. #u55415_text {
  2942. border-width:0px;
  2943. word-wrap:break-word;
  2944. text-transform:none;
  2945. visibility:hidden;
  2946. }
  2947. #u55416_div {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:322px;
  2953. height:60px;
  2954. background:inherit;
  2955. background-color:rgba(255, 255, 255, 0);
  2956. border-radius:0px;
  2957. filter:drop-shadow(none);
  2958. transition:none;
  2959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:12px;
  2963. line-height:20px;
  2964. }
  2965. #u55416 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:57px;
  2969. top:1307px;
  2970. width:322px;
  2971. height:60px;
  2972. display:flex;
  2973. transition:none;
  2974. transform-origin:50% 50%;
  2975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2976. font-weight:400;
  2977. font-style:normal;
  2978. font-size:12px;
  2979. line-height:20px;
  2980. }
  2981. #u55416 .text {
  2982. position:absolute;
  2983. align-self:flex-start;
  2984. padding:0px 0px 0px 0px;
  2985. box-sizing:border-box;
  2986. width:100%;
  2987. }
  2988. #u55416_text {
  2989. border-width:0px;
  2990. word-wrap:break-word;
  2991. text-transform:none;
  2992. }
  2993. #u55417 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:0px;
  2999. height:0px;
  3000. }
  3001. #u55418_div {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:49px;
  3007. height:14px;
  3008. background:inherit;
  3009. background-color:rgba(255, 255, 255, 0);
  3010. border-radius:0px;
  3011. filter:drop-shadow(none);
  3012. transition:none;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:10px;
  3017. color:#7F7F7F;
  3018. }
  3019. #u55418 {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:57px;
  3023. top:1377px;
  3024. width:49px;
  3025. height:14px;
  3026. display:flex;
  3027. transition:none;
  3028. transform-origin:50% 50%;
  3029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:10px;
  3033. color:#7F7F7F;
  3034. }
  3035. #u55418 .text {
  3036. position:absolute;
  3037. align-self:flex-start;
  3038. padding:0px 0px 0px 0px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u55418_text {
  3043. border-width:0px;
  3044. white-space:nowrap;
  3045. text-transform:none;
  3046. }
  3047. #u55419_div {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:81px;
  3053. height:14px;
  3054. background:inherit;
  3055. background-color:rgba(255, 255, 255, 0);
  3056. border-radius:0px;
  3057. filter:drop-shadow(none);
  3058. transition:none;
  3059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3060. font-weight:400;
  3061. font-style:normal;
  3062. font-size:10px;
  3063. color:#7F7F7F;
  3064. }
  3065. #u55419 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:127px;
  3069. top:1377px;
  3070. width:81px;
  3071. height:14px;
  3072. display:flex;
  3073. transition:none;
  3074. transform-origin:50% 50%;
  3075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:10px;
  3079. color:#7F7F7F;
  3080. }
  3081. #u55419 .text {
  3082. position:absolute;
  3083. align-self:flex-start;
  3084. padding:0px 0px 0px 0px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u55419_text {
  3089. border-width:0px;
  3090. white-space:nowrap;
  3091. text-transform:none;
  3092. }
  3093. #u55420 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:116px;
  3097. top:1379px;
  3098. width:7px;
  3099. height:10px;
  3100. display:flex;
  3101. transition:none;
  3102. }
  3103. #u55420 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 2px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u55420_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:7px;
  3116. height:10px;
  3117. }
  3118. #u55420_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u55421 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:0px;
  3129. width:0px;
  3130. height:0px;
  3131. }
  3132. #u55422_div {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:348px;
  3138. height:90px;
  3139. background:inherit;
  3140. background-color:rgba(255, 255, 255, 1);
  3141. border-radius:5px;
  3142. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  3143. transition:none;
  3144. }
  3145. #u55422 {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:42px;
  3149. top:1197px;
  3150. width:348px;
  3151. height:90px;
  3152. display:flex;
  3153. transition:none;
  3154. transform-origin:50% 50%;
  3155. }
  3156. #u55422 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 2px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u55422_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u55423_div {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:322px;
  3175. height:40px;
  3176. background:inherit;
  3177. background-color:rgba(255, 255, 255, 0);
  3178. border-radius:0px;
  3179. filter:drop-shadow(none);
  3180. transition:none;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:12px;
  3185. line-height:20px;
  3186. }
  3187. #u55423 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:57px;
  3191. top:1207px;
  3192. width:322px;
  3193. height:40px;
  3194. display:flex;
  3195. transition:none;
  3196. transform-origin:50% 50%;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:12px;
  3201. line-height:20px;
  3202. }
  3203. #u55423 .text {
  3204. position:absolute;
  3205. align-self:flex-start;
  3206. padding:0px 0px 0px 0px;
  3207. box-sizing:border-box;
  3208. width:100%;
  3209. }
  3210. #u55423_text {
  3211. border-width:0px;
  3212. word-wrap:break-word;
  3213. text-transform:none;
  3214. }
  3215. #u55424 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:0px;
  3219. top:0px;
  3220. width:0px;
  3221. height:0px;
  3222. }
  3223. #u55425_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:49px;
  3229. height:14px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border-radius:0px;
  3233. filter:drop-shadow(none);
  3234. transition:none;
  3235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3236. font-weight:400;
  3237. font-style:normal;
  3238. font-size:10px;
  3239. color:#7F7F7F;
  3240. }
  3241. #u55425 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:57px;
  3245. top:1257px;
  3246. width:49px;
  3247. height:14px;
  3248. display:flex;
  3249. transition:none;
  3250. transform-origin:50% 50%;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:10px;
  3255. color:#7F7F7F;
  3256. }
  3257. #u55425 .text {
  3258. position:absolute;
  3259. align-self:flex-start;
  3260. padding:0px 0px 0px 0px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u55425_text {
  3265. border-width:0px;
  3266. white-space:nowrap;
  3267. text-transform:none;
  3268. }
  3269. #u55426_div {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:81px;
  3275. height:14px;
  3276. background:inherit;
  3277. background-color:rgba(255, 255, 255, 0);
  3278. border-radius:0px;
  3279. filter:drop-shadow(none);
  3280. transition:none;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:10px;
  3285. color:#7F7F7F;
  3286. }
  3287. #u55426 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:127px;
  3291. top:1257px;
  3292. width:81px;
  3293. height:14px;
  3294. display:flex;
  3295. transition:none;
  3296. transform-origin:50% 50%;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:10px;
  3301. color:#7F7F7F;
  3302. }
  3303. #u55426 .text {
  3304. position:absolute;
  3305. align-self:flex-start;
  3306. padding:0px 0px 0px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u55426_text {
  3311. border-width:0px;
  3312. white-space:nowrap;
  3313. text-transform:none;
  3314. }
  3315. #u55427 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:116px;
  3319. top:1259px;
  3320. width:7px;
  3321. height:10px;
  3322. display:flex;
  3323. transition:none;
  3324. }
  3325. #u55427 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 2px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u55427_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:7px;
  3338. height:10px;
  3339. }
  3340. #u55427_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u55428 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:0px;
  3352. height:0px;
  3353. }
  3354. #u55429_div {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:0px;
  3358. top:0px;
  3359. width:348px;
  3360. height:110px;
  3361. background:inherit;
  3362. background-color:rgba(255, 255, 255, 1);
  3363. border-radius:5px;
  3364. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  3365. transition:none;
  3366. }
  3367. #u55429 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:42px;
  3371. top:577px;
  3372. width:348px;
  3373. height:110px;
  3374. display:flex;
  3375. transition:none;
  3376. transform-origin:50% 50%;
  3377. }
  3378. #u55429 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 2px 2px 2px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u55429_text {
  3386. border-width:0px;
  3387. word-wrap:break-word;
  3388. text-transform:none;
  3389. visibility:hidden;
  3390. }
  3391. #u55430_div {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:322px;
  3397. height:68px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 0);
  3400. border-radius:0px;
  3401. filter:drop-shadow(none);
  3402. transition:none;
  3403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3404. font-weight:400;
  3405. font-style:normal;
  3406. font-size:12px;
  3407. }
  3408. #u55430 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:57px;
  3412. top:587px;
  3413. width:322px;
  3414. height:68px;
  3415. display:flex;
  3416. transition:none;
  3417. transform-origin:50% 50%;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:12px;
  3422. }
  3423. #u55430 .text {
  3424. position:absolute;
  3425. align-self:flex-start;
  3426. padding:0px 0px 0px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u55430_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. }
  3435. #u55431_div {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:49px;
  3441. height:14px;
  3442. background:inherit;
  3443. background-color:rgba(255, 255, 255, 0);
  3444. border-radius:0px;
  3445. filter:drop-shadow(none);
  3446. transition:none;
  3447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:10px;
  3451. color:#7F7F7F;
  3452. }
  3453. #u55431 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:59px;
  3457. top:664px;
  3458. width:49px;
  3459. height:14px;
  3460. display:flex;
  3461. transition:none;
  3462. transform-origin:50% 50%;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:10px;
  3467. color:#7F7F7F;
  3468. }
  3469. #u55431 .text {
  3470. position:absolute;
  3471. align-self:flex-start;
  3472. padding:0px 0px 0px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u55431_text {
  3477. border-width:0px;
  3478. white-space:nowrap;
  3479. text-transform:none;
  3480. }
  3481. #u55432 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:0px;
  3487. height:0px;
  3488. }
  3489. #u55433_div {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:81px;
  3495. height:14px;
  3496. background:inherit;
  3497. background-color:rgba(255, 255, 255, 0);
  3498. border-radius:0px;
  3499. filter:drop-shadow(none);
  3500. transition:none;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:10px;
  3505. color:#7F7F7F;
  3506. }
  3507. #u55433 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:129px;
  3511. top:664px;
  3512. width:81px;
  3513. height:14px;
  3514. display:flex;
  3515. transition:none;
  3516. transform-origin:50% 50%;
  3517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:10px;
  3521. color:#7F7F7F;
  3522. }
  3523. #u55433 .text {
  3524. position:absolute;
  3525. align-self:flex-start;
  3526. padding:0px 0px 0px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u55433_text {
  3531. border-width:0px;
  3532. white-space:nowrap;
  3533. text-transform:none;
  3534. }
  3535. #u55434 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:118px;
  3539. top:666px;
  3540. width:7px;
  3541. height:10px;
  3542. display:flex;
  3543. transition:none;
  3544. }
  3545. #u55434 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 2px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u55434_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:7px;
  3558. height:10px;
  3559. }
  3560. #u55434_text {
  3561. border-width:0px;
  3562. word-wrap:break-word;
  3563. text-transform:none;
  3564. visibility:hidden;
  3565. }
  3566. #u55435 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:0px;
  3572. height:0px;
  3573. }
  3574. #u55436_div {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:348px;
  3580. height:100px;
  3581. background:inherit;
  3582. background-color:rgba(255, 255, 255, 1);
  3583. border-radius:5px;
  3584. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  3585. transition:none;
  3586. }
  3587. #u55436 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:42px;
  3591. top:697px;
  3592. width:348px;
  3593. height:100px;
  3594. display:flex;
  3595. transition:none;
  3596. transform-origin:50% 50%;
  3597. }
  3598. #u55436 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 2px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u55436_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u55437_div {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:322px;
  3617. height:51px;
  3618. background:inherit;
  3619. background-color:rgba(255, 255, 255, 0);
  3620. border-radius:0px;
  3621. filter:drop-shadow(none);
  3622. transition:none;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:12px;
  3627. }
  3628. #u55437 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:57px;
  3632. top:707px;
  3633. width:322px;
  3634. height:51px;
  3635. display:flex;
  3636. transition:none;
  3637. transform-origin:50% 50%;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:12px;
  3642. }
  3643. #u55437 .text {
  3644. position:absolute;
  3645. align-self:flex-start;
  3646. padding:0px 0px 0px 0px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u55437_text {
  3651. border-width:0px;
  3652. word-wrap:break-word;
  3653. text-transform:none;
  3654. }
  3655. #u55438_div {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:49px;
  3661. height:14px;
  3662. background:inherit;
  3663. background-color:rgba(255, 255, 255, 0);
  3664. border-radius:0px;
  3665. filter:drop-shadow(none);
  3666. transition:none;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:10px;
  3671. color:#7F7F7F;
  3672. }
  3673. #u55438 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:59px;
  3677. top:774px;
  3678. width:49px;
  3679. height:14px;
  3680. display:flex;
  3681. transition:none;
  3682. transform-origin:50% 50%;
  3683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:10px;
  3687. color:#7F7F7F;
  3688. }
  3689. #u55438 .text {
  3690. position:absolute;
  3691. align-self:flex-start;
  3692. padding:0px 0px 0px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u55438_text {
  3697. border-width:0px;
  3698. white-space:nowrap;
  3699. text-transform:none;
  3700. }
  3701. #u55439 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:0px;
  3707. height:0px;
  3708. }
  3709. #u55440_div {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:81px;
  3715. height:14px;
  3716. background:inherit;
  3717. background-color:rgba(255, 255, 255, 0);
  3718. border-radius:0px;
  3719. filter:drop-shadow(none);
  3720. transition:none;
  3721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. font-size:10px;
  3725. color:#7F7F7F;
  3726. }
  3727. #u55440 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:129px;
  3731. top:774px;
  3732. width:81px;
  3733. height:14px;
  3734. display:flex;
  3735. transition:none;
  3736. transform-origin:50% 50%;
  3737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. font-size:10px;
  3741. color:#7F7F7F;
  3742. }
  3743. #u55440 .text {
  3744. position:absolute;
  3745. align-self:flex-start;
  3746. padding:0px 0px 0px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u55440_text {
  3751. border-width:0px;
  3752. white-space:nowrap;
  3753. text-transform:none;
  3754. }
  3755. #u55441 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:118px;
  3759. top:776px;
  3760. width:7px;
  3761. height:10px;
  3762. display:flex;
  3763. transition:none;
  3764. }
  3765. #u55441 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:2px 2px 2px 2px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u55441_img {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:7px;
  3778. height:10px;
  3779. }
  3780. #u55441_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u55442 {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:0px;
  3792. height:0px;
  3793. }
  3794. #u55443_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:348px;
  3800. height:110px;
  3801. background:inherit;
  3802. background-color:rgba(255, 255, 255, 1);
  3803. border-radius:5px;
  3804. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  3805. transition:none;
  3806. }
  3807. #u55443 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:42px;
  3811. top:1527px;
  3812. width:348px;
  3813. height:110px;
  3814. display:flex;
  3815. transition:none;
  3816. transform-origin:50% 50%;
  3817. }
  3818. #u55443 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 2px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u55443_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u55444_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:322px;
  3837. height:68px;
  3838. background:inherit;
  3839. background-color:rgba(255, 255, 255, 0);
  3840. border-radius:0px;
  3841. filter:drop-shadow(none);
  3842. transition:none;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:12px;
  3847. }
  3848. #u55444 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:57px;
  3852. top:1537px;
  3853. width:322px;
  3854. height:68px;
  3855. display:flex;
  3856. transition:none;
  3857. transform-origin:50% 50%;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:12px;
  3862. }
  3863. #u55444 .text {
  3864. position:absolute;
  3865. align-self:flex-start;
  3866. padding:0px 0px 0px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u55444_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. }
  3875. #u55445_div {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:49px;
  3881. height:14px;
  3882. background:inherit;
  3883. background-color:rgba(255, 255, 255, 0);
  3884. border-radius:0px;
  3885. filter:drop-shadow(none);
  3886. transition:none;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:10px;
  3891. color:#7F7F7F;
  3892. }
  3893. #u55445 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:59px;
  3897. top:1614px;
  3898. width:49px;
  3899. height:14px;
  3900. display:flex;
  3901. transition:none;
  3902. transform-origin:50% 50%;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:10px;
  3907. color:#7F7F7F;
  3908. }
  3909. #u55445 .text {
  3910. position:absolute;
  3911. align-self:flex-start;
  3912. padding:0px 0px 0px 0px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u55445_text {
  3917. border-width:0px;
  3918. white-space:nowrap;
  3919. text-transform:none;
  3920. }
  3921. #u55446 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:0px;
  3927. height:0px;
  3928. }
  3929. #u55447_div {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:81px;
  3935. height:14px;
  3936. background:inherit;
  3937. background-color:rgba(255, 255, 255, 0);
  3938. border-radius:0px;
  3939. filter:drop-shadow(none);
  3940. transition:none;
  3941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3942. font-weight:400;
  3943. font-style:normal;
  3944. font-size:10px;
  3945. color:#7F7F7F;
  3946. }
  3947. #u55447 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:129px;
  3951. top:1614px;
  3952. width:81px;
  3953. height:14px;
  3954. display:flex;
  3955. transition:none;
  3956. transform-origin:50% 50%;
  3957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:10px;
  3961. color:#7F7F7F;
  3962. }
  3963. #u55447 .text {
  3964. position:absolute;
  3965. align-self:flex-start;
  3966. padding:0px 0px 0px 0px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u55447_text {
  3971. border-width:0px;
  3972. white-space:nowrap;
  3973. text-transform:none;
  3974. }
  3975. #u55448 {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:118px;
  3979. top:1616px;
  3980. width:7px;
  3981. height:10px;
  3982. display:flex;
  3983. transition:none;
  3984. }
  3985. #u55448 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u55448_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:7px;
  3998. height:10px;
  3999. }
  4000. #u55448_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u55449 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:0px;
  4012. height:0px;
  4013. }
  4014. #u55450_div {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:348px;
  4020. height:100px;
  4021. background:inherit;
  4022. background-color:rgba(255, 255, 255, 1);
  4023. border-radius:5px;
  4024. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  4025. transition:none;
  4026. }
  4027. #u55450 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:42px;
  4031. top:1417px;
  4032. width:348px;
  4033. height:100px;
  4034. display:flex;
  4035. transition:none;
  4036. transform-origin:50% 50%;
  4037. }
  4038. #u55450 .text {
  4039. position:absolute;
  4040. align-self:center;
  4041. padding:2px 2px 2px 2px;
  4042. box-sizing:border-box;
  4043. width:100%;
  4044. }
  4045. #u55450_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. visibility:hidden;
  4050. }
  4051. #u55451_div {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:322px;
  4057. height:51px;
  4058. background:inherit;
  4059. background-color:rgba(255, 255, 255, 0);
  4060. border-radius:0px;
  4061. filter:drop-shadow(none);
  4062. transition:none;
  4063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4064. font-weight:400;
  4065. font-style:normal;
  4066. font-size:12px;
  4067. }
  4068. #u55451 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:57px;
  4072. top:1427px;
  4073. width:322px;
  4074. height:51px;
  4075. display:flex;
  4076. transition:none;
  4077. transform-origin:50% 50%;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. }
  4083. #u55451 .text {
  4084. position:absolute;
  4085. align-self:flex-start;
  4086. padding:0px 0px 0px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u55451_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. }
  4095. #u55452_div {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:49px;
  4101. height:14px;
  4102. background:inherit;
  4103. background-color:rgba(255, 255, 255, 0);
  4104. border-radius:0px;
  4105. filter:drop-shadow(none);
  4106. transition:none;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:10px;
  4111. color:#7F7F7F;
  4112. }
  4113. #u55452 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:59px;
  4117. top:1494px;
  4118. width:49px;
  4119. height:14px;
  4120. display:flex;
  4121. transition:none;
  4122. transform-origin:50% 50%;
  4123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4124. font-weight:400;
  4125. font-style:normal;
  4126. font-size:10px;
  4127. color:#7F7F7F;
  4128. }
  4129. #u55452 .text {
  4130. position:absolute;
  4131. align-self:flex-start;
  4132. padding:0px 0px 0px 0px;
  4133. box-sizing:border-box;
  4134. width:100%;
  4135. }
  4136. #u55452_text {
  4137. border-width:0px;
  4138. white-space:nowrap;
  4139. text-transform:none;
  4140. }
  4141. #u55453 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:0px;
  4147. height:0px;
  4148. }
  4149. #u55454_div {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:81px;
  4155. height:14px;
  4156. background:inherit;
  4157. background-color:rgba(255, 255, 255, 0);
  4158. border-radius:0px;
  4159. filter:drop-shadow(none);
  4160. transition:none;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:10px;
  4165. color:#7F7F7F;
  4166. }
  4167. #u55454 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:129px;
  4171. top:1494px;
  4172. width:81px;
  4173. height:14px;
  4174. display:flex;
  4175. transition:none;
  4176. transform-origin:50% 50%;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:10px;
  4181. color:#7F7F7F;
  4182. }
  4183. #u55454 .text {
  4184. position:absolute;
  4185. align-self:flex-start;
  4186. padding:0px 0px 0px 0px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u55454_text {
  4191. border-width:0px;
  4192. white-space:nowrap;
  4193. text-transform:none;
  4194. }
  4195. #u55455 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:118px;
  4199. top:1496px;
  4200. width:7px;
  4201. height:10px;
  4202. display:flex;
  4203. transition:none;
  4204. }
  4205. #u55455 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 2px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u55455_img {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:0px;
  4216. top:0px;
  4217. width:7px;
  4218. height:10px;
  4219. }
  4220. #u55455_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u55456 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:0px;
  4232. height:0px;
  4233. }
  4234. #u55457_div {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:348px;
  4240. height:80px;
  4241. background:inherit;
  4242. background-color:rgba(255, 255, 255, 1);
  4243. border-radius:5px;
  4244. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  4245. transition:none;
  4246. }
  4247. #u55457 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:42px;
  4251. top:1647px;
  4252. width:348px;
  4253. height:80px;
  4254. display:flex;
  4255. transition:none;
  4256. transform-origin:50% 50%;
  4257. }
  4258. #u55457 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 2px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u55457_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. visibility:hidden;
  4270. }
  4271. #u55458_div {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:322px;
  4277. height:34px;
  4278. background:inherit;
  4279. background-color:rgba(255, 255, 255, 0);
  4280. border-radius:0px;
  4281. filter:drop-shadow(none);
  4282. transition:none;
  4283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4284. font-weight:400;
  4285. font-style:normal;
  4286. font-size:12px;
  4287. }
  4288. #u55458 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:57px;
  4292. top:1657px;
  4293. width:322px;
  4294. height:34px;
  4295. display:flex;
  4296. transition:none;
  4297. transform-origin:50% 50%;
  4298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4299. font-weight:400;
  4300. font-style:normal;
  4301. font-size:12px;
  4302. }
  4303. #u55458 .text {
  4304. position:absolute;
  4305. align-self:flex-start;
  4306. padding:0px 0px 0px 0px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u55458_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. }
  4315. #u55459_div {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:49px;
  4321. height:14px;
  4322. background:inherit;
  4323. background-color:rgba(255, 255, 255, 0);
  4324. border-radius:0px;
  4325. filter:drop-shadow(none);
  4326. transition:none;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:10px;
  4331. color:#7F7F7F;
  4332. }
  4333. #u55459 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:59px;
  4337. top:1704px;
  4338. width:49px;
  4339. height:14px;
  4340. display:flex;
  4341. transition:none;
  4342. transform-origin:50% 50%;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:10px;
  4347. color:#7F7F7F;
  4348. }
  4349. #u55459 .text {
  4350. position:absolute;
  4351. align-self:flex-start;
  4352. padding:0px 0px 0px 0px;
  4353. box-sizing:border-box;
  4354. width:100%;
  4355. }
  4356. #u55459_text {
  4357. border-width:0px;
  4358. white-space:nowrap;
  4359. text-transform:none;
  4360. }
  4361. #u55460_div {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:81px;
  4367. height:14px;
  4368. background:inherit;
  4369. background-color:rgba(255, 255, 255, 0);
  4370. border-radius:0px;
  4371. filter:drop-shadow(none);
  4372. transition:none;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:10px;
  4377. color:#7F7F7F;
  4378. }
  4379. #u55460 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:129px;
  4383. top:1704px;
  4384. width:81px;
  4385. height:14px;
  4386. display:flex;
  4387. transition:none;
  4388. transform-origin:50% 50%;
  4389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4390. font-weight:400;
  4391. font-style:normal;
  4392. font-size:10px;
  4393. color:#7F7F7F;
  4394. }
  4395. #u55460 .text {
  4396. position:absolute;
  4397. align-self:flex-start;
  4398. padding:0px 0px 0px 0px;
  4399. box-sizing:border-box;
  4400. width:100%;
  4401. }
  4402. #u55460_text {
  4403. border-width:0px;
  4404. white-space:nowrap;
  4405. text-transform:none;
  4406. }
  4407. #u55461 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:118px;
  4411. top:1706px;
  4412. width:7px;
  4413. height:10px;
  4414. display:flex;
  4415. transition:none;
  4416. }
  4417. #u55461 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 2px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u55461_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:7px;
  4430. height:10px;
  4431. }
  4432. #u55461_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. visibility:hidden;
  4437. }
  4438. #u55462_div {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:771px;
  4444. height:150px;
  4445. background:inherit;
  4446. background-color:rgba(255, 255, 255, 0);
  4447. border-radius:0px;
  4448. filter:drop-shadow(none);
  4449. transition:none;
  4450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4451. font-weight:400;
  4452. font-style:normal;
  4453. color:#D9001B;
  4454. line-height:30px;
  4455. }
  4456. #u55462 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:476px;
  4460. top:107px;
  4461. width:771px;
  4462. height:150px;
  4463. display:flex;
  4464. transition:none;
  4465. transform-origin:50% 50%;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. color:#D9001B;
  4470. line-height:30px;
  4471. }
  4472. #u55462 .text {
  4473. position:absolute;
  4474. align-self:flex-start;
  4475. padding:0px 0px 0px 0px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u55462_text {
  4480. border-width:0px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. }
  4484. #u55463 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:0px;
  4490. height:0px;
  4491. }
  4492. #u55464_div {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:25px;
  4498. height:17px;
  4499. background:inherit;
  4500. background-color:rgba(255, 255, 255, 0);
  4501. border-radius:0px;
  4502. filter:drop-shadow(none);
  4503. transition:none;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. color:#1890FF;
  4509. }
  4510. #u55464 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:365px;
  4514. top:118px;
  4515. width:25px;
  4516. height:17px;
  4517. display:flex;
  4518. transition:none;
  4519. transform-origin:50% 50%;
  4520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:12px;
  4524. color:#1890FF;
  4525. }
  4526. #u55464 .text {
  4527. position:absolute;
  4528. align-self:flex-start;
  4529. padding:0px 0px 0px 0px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u55464_text {
  4534. border-width:0px;
  4535. white-space:nowrap;
  4536. text-transform:none;
  4537. }
  4538. #u55465 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:476px;
  4542. top:315px;
  4543. width:1034px;
  4544. height:340px;
  4545. transition:none;
  4546. }
  4547. #u55465_children {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:0px;
  4553. height:0px;
  4554. }
  4555. #u55466 {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:1034px;
  4561. height:20px;
  4562. transition:none;
  4563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4564. font-weight:400;
  4565. font-style:normal;
  4566. }
  4567. #u55467_div {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:1012px;
  4573. height:20px;
  4574. background:inherit;
  4575. background-color:rgba(255, 255, 255, 0);
  4576. border-radius:0px;
  4577. filter:drop-shadow(none);
  4578. transition:none;
  4579. }
  4580. #u55467 {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:22px;
  4584. top:0px;
  4585. width:1012px;
  4586. height:20px;
  4587. display:flex;
  4588. transition:none;
  4589. transform-origin:50% 50%;
  4590. }
  4591. #u55467 .text {
  4592. position:absolute;
  4593. align-self:center;
  4594. padding:2px 2px 2px 3px;
  4595. box-sizing:border-box;
  4596. width:100%;
  4597. }
  4598. #u55467_text {
  4599. border-width:0px;
  4600. white-space:nowrap;
  4601. text-transform:none;
  4602. }
  4603. #u55468 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:20px;
  4608. width:309px;
  4609. height:20px;
  4610. transition:none;
  4611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. }
  4615. #u55469_div {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:287px;
  4621. height:20px;
  4622. background:inherit;
  4623. background-color:rgba(255, 255, 255, 0);
  4624. border-radius:0px;
  4625. filter:drop-shadow(none);
  4626. transition:none;
  4627. }
  4628. #u55469 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:22px;
  4632. top:0px;
  4633. width:287px;
  4634. height:20px;
  4635. display:flex;
  4636. transition:none;
  4637. transform-origin:50% 50%;
  4638. }
  4639. #u55469 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 3px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u55469_text {
  4647. border-width:0px;
  4648. white-space:nowrap;
  4649. text-transform:none;
  4650. }
  4651. #u55470 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:40px;
  4656. width:101px;
  4657. height:20px;
  4658. transition:none;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. }
  4663. #u55471 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:6px;
  4667. top:6px;
  4668. width:9px;
  4669. height:9px;
  4670. display:flex;
  4671. transition:none;
  4672. }
  4673. #u55471 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 2px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u55471_img {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:9px;
  4686. height:9px;
  4687. }
  4688. #u55471_img.selected {
  4689. }
  4690. #u55471.selected {
  4691. }
  4692. #u55471_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. visibility:hidden;
  4697. }
  4698. #u55472_div {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:0px;
  4702. top:0px;
  4703. width:79px;
  4704. height:20px;
  4705. background:inherit;
  4706. background-color:rgba(255, 255, 255, 0);
  4707. border-radius:0px;
  4708. filter:drop-shadow(none);
  4709. transition:none;
  4710. }
  4711. #u55472 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:22px;
  4715. top:0px;
  4716. width:79px;
  4717. height:20px;
  4718. display:flex;
  4719. transition:none;
  4720. transform-origin:50% 50%;
  4721. }
  4722. #u55472 .text {
  4723. position:absolute;
  4724. align-self:center;
  4725. padding:2px 2px 2px 3px;
  4726. box-sizing:border-box;
  4727. width:100%;
  4728. }
  4729. #u55472_text {
  4730. border-width:0px;
  4731. white-space:nowrap;
  4732. text-transform:none;
  4733. }
  4734. #u55470_children {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:0px;
  4740. height:0px;
  4741. }
  4742. #u55473 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:20px;
  4746. top:20px;
  4747. width:210px;
  4748. height:20px;
  4749. transition:none;
  4750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. }
  4754. #u55474_div {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:188px;
  4760. height:20px;
  4761. background:inherit;
  4762. background-color:rgba(255, 255, 255, 0);
  4763. border-radius:0px;
  4764. filter:drop-shadow(none);
  4765. transition:none;
  4766. }
  4767. #u55474 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:22px;
  4771. top:0px;
  4772. width:188px;
  4773. height:20px;
  4774. display:flex;
  4775. transition:none;
  4776. transform-origin:50% 50%;
  4777. }
  4778. #u55474 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 3px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u55474_text {
  4786. border-width:0px;
  4787. white-space:nowrap;
  4788. text-transform:none;
  4789. }
  4790. #u55475 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:20px;
  4794. top:40px;
  4795. width:223px;
  4796. height:20px;
  4797. transition:none;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. }
  4802. #u55476_div {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:201px;
  4808. height:20px;
  4809. background:inherit;
  4810. background-color:rgba(255, 255, 255, 0);
  4811. border-radius:0px;
  4812. filter:drop-shadow(none);
  4813. transition:none;
  4814. }
  4815. #u55476 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:22px;
  4819. top:0px;
  4820. width:201px;
  4821. height:20px;
  4822. display:flex;
  4823. transition:none;
  4824. transform-origin:50% 50%;
  4825. }
  4826. #u55476 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 3px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u55476_text {
  4834. border-width:0px;
  4835. white-space:nowrap;
  4836. text-transform:none;
  4837. }
  4838. #u55477 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:100px;
  4843. width:101px;
  4844. height:20px;
  4845. transition:none;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. }
  4850. #u55478 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:6px;
  4854. top:6px;
  4855. width:9px;
  4856. height:9px;
  4857. display:flex;
  4858. transition:none;
  4859. }
  4860. #u55478 .text {
  4861. position:absolute;
  4862. align-self:center;
  4863. padding:2px 2px 2px 2px;
  4864. box-sizing:border-box;
  4865. width:100%;
  4866. }
  4867. #u55478_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:9px;
  4873. height:9px;
  4874. }
  4875. #u55478_img.selected {
  4876. }
  4877. #u55478.selected {
  4878. }
  4879. #u55478_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. visibility:hidden;
  4884. }
  4885. #u55479_div {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:79px;
  4891. height:20px;
  4892. background:inherit;
  4893. background-color:rgba(255, 255, 255, 0);
  4894. border-radius:0px;
  4895. filter:drop-shadow(none);
  4896. transition:none;
  4897. }
  4898. #u55479 {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:22px;
  4902. top:0px;
  4903. width:79px;
  4904. height:20px;
  4905. display:flex;
  4906. transition:none;
  4907. transform-origin:50% 50%;
  4908. }
  4909. #u55479 .text {
  4910. position:absolute;
  4911. align-self:center;
  4912. padding:2px 2px 2px 3px;
  4913. box-sizing:border-box;
  4914. width:100%;
  4915. }
  4916. #u55479_text {
  4917. border-width:0px;
  4918. white-space:nowrap;
  4919. text-transform:none;
  4920. }
  4921. #u55477_children {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:0px;
  4927. height:0px;
  4928. }
  4929. #u55480 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:20px;
  4933. top:20px;
  4934. width:217px;
  4935. height:20px;
  4936. transition:none;
  4937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4938. font-weight:400;
  4939. font-style:normal;
  4940. }
  4941. #u55481_div {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:195px;
  4947. height:20px;
  4948. background:inherit;
  4949. background-color:rgba(255, 255, 255, 0);
  4950. border-radius:0px;
  4951. filter:drop-shadow(none);
  4952. transition:none;
  4953. }
  4954. #u55481 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:22px;
  4958. top:0px;
  4959. width:195px;
  4960. height:20px;
  4961. display:flex;
  4962. transition:none;
  4963. transform-origin:50% 50%;
  4964. }
  4965. #u55481 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 2px 2px 3px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u55481_text {
  4973. border-width:0px;
  4974. white-space:nowrap;
  4975. text-transform:none;
  4976. }
  4977. #u55482 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:20px;
  4981. top:40px;
  4982. width:171px;
  4983. height:20px;
  4984. transition:none;
  4985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. }
  4989. #u55483_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:149px;
  4995. height:20px;
  4996. background:inherit;
  4997. background-color:rgba(255, 255, 255, 0);
  4998. border-radius:0px;
  4999. filter:drop-shadow(none);
  5000. transition:none;
  5001. }
  5002. #u55483 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:22px;
  5006. top:0px;
  5007. width:149px;
  5008. height:20px;
  5009. display:flex;
  5010. transition:none;
  5011. transform-origin:50% 50%;
  5012. }
  5013. #u55483 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:2px 2px 2px 3px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u55483_text {
  5021. border-width:0px;
  5022. white-space:nowrap;
  5023. text-transform:none;
  5024. }
  5025. #u55484 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:160px;
  5030. width:101px;
  5031. height:20px;
  5032. transition:none;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. }
  5037. #u55485 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:6px;
  5041. top:6px;
  5042. width:9px;
  5043. height:9px;
  5044. display:flex;
  5045. transition:none;
  5046. }
  5047. #u55485 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 2px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u55485_img {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:9px;
  5060. height:9px;
  5061. }
  5062. #u55485_img.selected {
  5063. }
  5064. #u55485.selected {
  5065. }
  5066. #u55485_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u55486_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:79px;
  5078. height:20px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 0);
  5081. border-radius:0px;
  5082. filter:drop-shadow(none);
  5083. transition:none;
  5084. }
  5085. #u55486 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:22px;
  5089. top:0px;
  5090. width:79px;
  5091. height:20px;
  5092. display:flex;
  5093. transition:none;
  5094. transform-origin:50% 50%;
  5095. }
  5096. #u55486 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:2px 2px 2px 3px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u55486_text {
  5104. border-width:0px;
  5105. white-space:nowrap;
  5106. text-transform:none;
  5107. }
  5108. #u55484_children {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:0px;
  5114. height:0px;
  5115. visibility:hidden;
  5116. }
  5117. #u55487 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:20px;
  5121. top:20px;
  5122. width:307px;
  5123. height:20px;
  5124. transition:none;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. }
  5129. #u55488_div {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:285px;
  5135. height:20px;
  5136. background:inherit;
  5137. background-color:rgba(255, 255, 255, 0);
  5138. border-radius:0px;
  5139. filter:drop-shadow(none);
  5140. transition:none;
  5141. }
  5142. #u55488 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:22px;
  5146. top:0px;
  5147. width:285px;
  5148. height:20px;
  5149. display:flex;
  5150. transition:none;
  5151. transform-origin:50% 50%;
  5152. }
  5153. #u55488 .text {
  5154. position:absolute;
  5155. align-self:center;
  5156. padding:2px 2px 2px 3px;
  5157. box-sizing:border-box;
  5158. width:100%;
  5159. }
  5160. #u55488_text {
  5161. border-width:0px;
  5162. white-space:nowrap;
  5163. text-transform:none;
  5164. }
  5165. #u55489 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:20px;
  5169. top:40px;
  5170. width:423px;
  5171. height:20px;
  5172. transition:none;
  5173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. }
  5177. #u55490_div {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:0px;
  5181. top:0px;
  5182. width:401px;
  5183. height:20px;
  5184. background:inherit;
  5185. background-color:rgba(255, 255, 255, 0);
  5186. border-radius:0px;
  5187. filter:drop-shadow(none);
  5188. transition:none;
  5189. }
  5190. #u55490 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:22px;
  5194. top:0px;
  5195. width:401px;
  5196. height:20px;
  5197. display:flex;
  5198. transition:none;
  5199. transform-origin:50% 50%;
  5200. }
  5201. #u55490 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 2px 2px 3px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u55490_text {
  5209. border-width:0px;
  5210. white-space:nowrap;
  5211. text-transform:none;
  5212. }
  5213. #u55491 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:20px;
  5217. top:60px;
  5218. width:270px;
  5219. height:20px;
  5220. transition:none;
  5221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. }
  5225. #u55492_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:248px;
  5231. height:20px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 0);
  5234. border-radius:0px;
  5235. filter:drop-shadow(none);
  5236. transition:none;
  5237. }
  5238. #u55492 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:22px;
  5242. top:0px;
  5243. width:248px;
  5244. height:20px;
  5245. display:flex;
  5246. transition:none;
  5247. transform-origin:50% 50%;
  5248. }
  5249. #u55492 .text {
  5250. position:absolute;
  5251. align-self:center;
  5252. padding:2px 2px 2px 3px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u55492_text {
  5257. border-width:0px;
  5258. white-space:nowrap;
  5259. text-transform:none;
  5260. }
  5261. #u55493 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:20px;
  5265. top:80px;
  5266. width:341px;
  5267. height:20px;
  5268. transition:none;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. }
  5273. #u55494_div {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:319px;
  5279. height:20px;
  5280. background:inherit;
  5281. background-color:rgba(255, 255, 255, 0);
  5282. border-radius:0px;
  5283. filter:drop-shadow(none);
  5284. transition:none;
  5285. }
  5286. #u55494 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:22px;
  5290. top:0px;
  5291. width:319px;
  5292. height:20px;
  5293. display:flex;
  5294. transition:none;
  5295. transform-origin:50% 50%;
  5296. }
  5297. #u55494 .text {
  5298. position:absolute;
  5299. align-self:center;
  5300. padding:2px 2px 2px 3px;
  5301. box-sizing:border-box;
  5302. width:100%;
  5303. }
  5304. #u55494_text {
  5305. border-width:0px;
  5306. white-space:nowrap;
  5307. text-transform:none;
  5308. }
  5309. #u55495 {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:180px;
  5314. width:140px;
  5315. height:20px;
  5316. transition:none;
  5317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. }
  5321. #u55496 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:6px;
  5325. top:6px;
  5326. width:9px;
  5327. height:9px;
  5328. display:flex;
  5329. transition:none;
  5330. }
  5331. #u55496 .text {
  5332. position:absolute;
  5333. align-self:center;
  5334. padding:2px 2px 2px 2px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u55496_img {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:9px;
  5344. height:9px;
  5345. }
  5346. #u55496_img.selected {
  5347. }
  5348. #u55496.selected {
  5349. }
  5350. #u55496_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. visibility:hidden;
  5355. }
  5356. #u55497_div {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:118px;
  5362. height:20px;
  5363. background:inherit;
  5364. background-color:rgba(255, 255, 255, 0);
  5365. border-radius:0px;
  5366. filter:drop-shadow(none);
  5367. transition:none;
  5368. }
  5369. #u55497 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:22px;
  5373. top:0px;
  5374. width:118px;
  5375. height:20px;
  5376. display:flex;
  5377. transition:none;
  5378. transform-origin:50% 50%;
  5379. }
  5380. #u55497 .text {
  5381. position:absolute;
  5382. align-self:center;
  5383. padding:2px 2px 2px 3px;
  5384. box-sizing:border-box;
  5385. width:100%;
  5386. }
  5387. #u55497_text {
  5388. border-width:0px;
  5389. white-space:nowrap;
  5390. text-transform:none;
  5391. }
  5392. #u55495_children {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:0px;
  5398. height:0px;
  5399. visibility:hidden;
  5400. }
  5401. #u55498 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:20px;
  5405. top:20px;
  5406. width:423px;
  5407. height:20px;
  5408. transition:none;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. }
  5413. #u55499_div {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:401px;
  5419. height:20px;
  5420. background:inherit;
  5421. background-color:rgba(255, 255, 255, 0);
  5422. border-radius:0px;
  5423. filter:drop-shadow(none);
  5424. transition:none;
  5425. }
  5426. #u55499 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:22px;
  5430. top:0px;
  5431. width:401px;
  5432. height:20px;
  5433. display:flex;
  5434. transition:none;
  5435. transform-origin:50% 50%;
  5436. }
  5437. #u55499 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:2px 2px 2px 3px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u55499_text {
  5445. border-width:0px;
  5446. white-space:nowrap;
  5447. text-transform:none;
  5448. }
  5449. #u55500 {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:20px;
  5453. top:40px;
  5454. width:449px;
  5455. height:20px;
  5456. transition:none;
  5457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5458. font-weight:400;
  5459. font-style:normal;
  5460. }
  5461. #u55501_div {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:427px;
  5467. height:20px;
  5468. background:inherit;
  5469. background-color:rgba(255, 255, 255, 0);
  5470. border-radius:0px;
  5471. filter:drop-shadow(none);
  5472. transition:none;
  5473. }
  5474. #u55501 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:22px;
  5478. top:0px;
  5479. width:427px;
  5480. height:20px;
  5481. display:flex;
  5482. transition:none;
  5483. transform-origin:50% 50%;
  5484. }
  5485. #u55501 .text {
  5486. position:absolute;
  5487. align-self:center;
  5488. padding:2px 2px 2px 3px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u55501_text {
  5493. border-width:0px;
  5494. white-space:nowrap;
  5495. text-transform:none;
  5496. }
  5497. #u55502 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:20px;
  5501. top:60px;
  5502. width:322px;
  5503. height:20px;
  5504. transition:none;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. }
  5509. #u55503_div {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:0px;
  5513. top:0px;
  5514. width:300px;
  5515. height:20px;
  5516. background:inherit;
  5517. background-color:rgba(255, 255, 255, 0);
  5518. border-radius:0px;
  5519. filter:drop-shadow(none);
  5520. transition:none;
  5521. }
  5522. #u55503 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:22px;
  5526. top:0px;
  5527. width:300px;
  5528. height:20px;
  5529. display:flex;
  5530. transition:none;
  5531. transform-origin:50% 50%;
  5532. }
  5533. #u55503 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:2px 2px 2px 3px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u55503_text {
  5541. border-width:0px;
  5542. white-space:nowrap;
  5543. text-transform:none;
  5544. }
  5545. #u55504 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:20px;
  5549. top:80px;
  5550. width:283px;
  5551. height:20px;
  5552. transition:none;
  5553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5554. font-weight:400;
  5555. font-style:normal;
  5556. }
  5557. #u55505_div {
  5558. border-width:0px;
  5559. position:absolute;
  5560. left:0px;
  5561. top:0px;
  5562. width:261px;
  5563. height:20px;
  5564. background:inherit;
  5565. background-color:rgba(255, 255, 255, 0);
  5566. border-radius:0px;
  5567. filter:drop-shadow(none);
  5568. transition:none;
  5569. }
  5570. #u55505 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:22px;
  5574. top:0px;
  5575. width:261px;
  5576. height:20px;
  5577. display:flex;
  5578. transition:none;
  5579. transform-origin:50% 50%;
  5580. }
  5581. #u55505 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 2px 2px 3px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u55505_text {
  5589. border-width:0px;
  5590. white-space:nowrap;
  5591. text-transform:none;
  5592. }
  5593. #u55506 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:200px;
  5598. width:139px;
  5599. height:20px;
  5600. transition:none;
  5601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. }
  5605. #u55507 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:6px;
  5609. top:6px;
  5610. width:9px;
  5611. height:9px;
  5612. display:flex;
  5613. transition:none;
  5614. }
  5615. #u55507 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 2px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u55507_img {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:9px;
  5628. height:9px;
  5629. }
  5630. #u55507_img.selected {
  5631. }
  5632. #u55507.selected {
  5633. }
  5634. #u55507_text {
  5635. border-width:0px;
  5636. word-wrap:break-word;
  5637. text-transform:none;
  5638. visibility:hidden;
  5639. }
  5640. #u55508_div {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:117px;
  5646. height:20px;
  5647. background:inherit;
  5648. background-color:rgba(255, 255, 255, 0);
  5649. border-radius:0px;
  5650. filter:drop-shadow(none);
  5651. transition:none;
  5652. }
  5653. #u55508 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:22px;
  5657. top:0px;
  5658. width:117px;
  5659. height:20px;
  5660. display:flex;
  5661. transition:none;
  5662. transform-origin:50% 50%;
  5663. }
  5664. #u55508 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 2px 2px 3px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u55508_text {
  5672. border-width:0px;
  5673. white-space:nowrap;
  5674. text-transform:none;
  5675. }
  5676. #u55506_children {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:0px;
  5682. height:0px;
  5683. visibility:hidden;
  5684. }
  5685. #u55509 {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:20px;
  5689. top:20px;
  5690. width:293px;
  5691. height:20px;
  5692. transition:none;
  5693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. }
  5697. #u55510_div {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:271px;
  5703. height:20px;
  5704. background:inherit;
  5705. background-color:rgba(255, 255, 255, 0);
  5706. border-radius:0px;
  5707. filter:drop-shadow(none);
  5708. transition:none;
  5709. }
  5710. #u55510 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:22px;
  5714. top:0px;
  5715. width:271px;
  5716. height:20px;
  5717. display:flex;
  5718. transition:none;
  5719. transform-origin:50% 50%;
  5720. }
  5721. #u55510 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 3px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u55510_text {
  5729. border-width:0px;
  5730. white-space:nowrap;
  5731. text-transform:none;
  5732. }
  5733. #u55511 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:20px;
  5737. top:40px;
  5738. width:449px;
  5739. height:20px;
  5740. transition:none;
  5741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. }
  5745. #u55512_div {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:427px;
  5751. height:20px;
  5752. background:inherit;
  5753. background-color:rgba(255, 255, 255, 0);
  5754. border-radius:0px;
  5755. filter:drop-shadow(none);
  5756. transition:none;
  5757. }
  5758. #u55512 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:22px;
  5762. top:0px;
  5763. width:427px;
  5764. height:20px;
  5765. display:flex;
  5766. transition:none;
  5767. transform-origin:50% 50%;
  5768. }
  5769. #u55512 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 3px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u55512_text {
  5777. border-width:0px;
  5778. white-space:nowrap;
  5779. text-transform:none;
  5780. }
  5781. #u55513 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:20px;
  5785. top:60px;
  5786. width:322px;
  5787. height:20px;
  5788. transition:none;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. }
  5793. #u55514_div {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:300px;
  5799. height:20px;
  5800. background:inherit;
  5801. background-color:rgba(255, 255, 255, 0);
  5802. border-radius:0px;
  5803. filter:drop-shadow(none);
  5804. transition:none;
  5805. }
  5806. #u55514 {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:22px;
  5810. top:0px;
  5811. width:300px;
  5812. height:20px;
  5813. display:flex;
  5814. transition:none;
  5815. transform-origin:50% 50%;
  5816. }
  5817. #u55514 .text {
  5818. position:absolute;
  5819. align-self:center;
  5820. padding:2px 2px 2px 3px;
  5821. box-sizing:border-box;
  5822. width:100%;
  5823. }
  5824. #u55514_text {
  5825. border-width:0px;
  5826. white-space:nowrap;
  5827. text-transform:none;
  5828. }
  5829. #u55515 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:20px;
  5833. top:80px;
  5834. width:283px;
  5835. height:20px;
  5836. transition:none;
  5837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5838. font-weight:400;
  5839. font-style:normal;
  5840. }
  5841. #u55516_div {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:261px;
  5847. height:20px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 0);
  5850. border-radius:0px;
  5851. filter:drop-shadow(none);
  5852. transition:none;
  5853. }
  5854. #u55516 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:22px;
  5858. top:0px;
  5859. width:261px;
  5860. height:20px;
  5861. display:flex;
  5862. transition:none;
  5863. transform-origin:50% 50%;
  5864. }
  5865. #u55516 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 3px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u55516_text {
  5873. border-width:0px;
  5874. white-space:nowrap;
  5875. text-transform:none;
  5876. }
  5877. #u55517 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:220px;
  5882. width:140px;
  5883. height:20px;
  5884. transition:none;
  5885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. }
  5889. #u55518 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:6px;
  5893. top:6px;
  5894. width:9px;
  5895. height:9px;
  5896. display:flex;
  5897. transition:none;
  5898. }
  5899. #u55518 .text {
  5900. position:absolute;
  5901. align-self:center;
  5902. padding:2px 2px 2px 2px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u55518_img {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:9px;
  5912. height:9px;
  5913. }
  5914. #u55518_img.selected {
  5915. }
  5916. #u55518.selected {
  5917. }
  5918. #u55518_text {
  5919. border-width:0px;
  5920. word-wrap:break-word;
  5921. text-transform:none;
  5922. visibility:hidden;
  5923. }
  5924. #u55519_div {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:118px;
  5930. height:20px;
  5931. background:inherit;
  5932. background-color:rgba(255, 255, 255, 0);
  5933. border-radius:0px;
  5934. filter:drop-shadow(none);
  5935. transition:none;
  5936. }
  5937. #u55519 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:22px;
  5941. top:0px;
  5942. width:118px;
  5943. height:20px;
  5944. display:flex;
  5945. transition:none;
  5946. transform-origin:50% 50%;
  5947. }
  5948. #u55519 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:2px 2px 2px 3px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u55519_text {
  5956. border-width:0px;
  5957. white-space:nowrap;
  5958. text-transform:none;
  5959. }
  5960. #u55517_children {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:0px;
  5966. height:0px;
  5967. visibility:hidden;
  5968. }
  5969. #u55520 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:20px;
  5973. top:20px;
  5974. width:293px;
  5975. height:20px;
  5976. transition:none;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. }
  5981. #u55521_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:271px;
  5987. height:20px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 0);
  5990. border-radius:0px;
  5991. filter:drop-shadow(none);
  5992. transition:none;
  5993. }
  5994. #u55521 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:22px;
  5998. top:0px;
  5999. width:271px;
  6000. height:20px;
  6001. display:flex;
  6002. transition:none;
  6003. transform-origin:50% 50%;
  6004. }
  6005. #u55521 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 3px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u55521_text {
  6013. border-width:0px;
  6014. white-space:nowrap;
  6015. text-transform:none;
  6016. }
  6017. #u55522 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:20px;
  6021. top:40px;
  6022. width:449px;
  6023. height:20px;
  6024. transition:none;
  6025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6026. font-weight:400;
  6027. font-style:normal;
  6028. }
  6029. #u55523_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:427px;
  6035. height:20px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 0);
  6038. border-radius:0px;
  6039. filter:drop-shadow(none);
  6040. transition:none;
  6041. }
  6042. #u55523 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:22px;
  6046. top:0px;
  6047. width:427px;
  6048. height:20px;
  6049. display:flex;
  6050. transition:none;
  6051. transform-origin:50% 50%;
  6052. }
  6053. #u55523 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 3px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u55523_text {
  6061. border-width:0px;
  6062. white-space:nowrap;
  6063. text-transform:none;
  6064. }
  6065. #u55524 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:20px;
  6069. top:60px;
  6070. width:322px;
  6071. height:20px;
  6072. transition:none;
  6073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6074. font-weight:400;
  6075. font-style:normal;
  6076. }
  6077. #u55525_div {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:300px;
  6083. height:20px;
  6084. background:inherit;
  6085. background-color:rgba(255, 255, 255, 0);
  6086. border-radius:0px;
  6087. filter:drop-shadow(none);
  6088. transition:none;
  6089. }
  6090. #u55525 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:22px;
  6094. top:0px;
  6095. width:300px;
  6096. height:20px;
  6097. display:flex;
  6098. transition:none;
  6099. transform-origin:50% 50%;
  6100. }
  6101. #u55525 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:2px 2px 2px 3px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u55525_text {
  6109. border-width:0px;
  6110. white-space:nowrap;
  6111. text-transform:none;
  6112. }
  6113. #u55526 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:20px;
  6117. top:80px;
  6118. width:283px;
  6119. height:20px;
  6120. transition:none;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. }
  6125. #u55527_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:261px;
  6131. height:20px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 0);
  6134. border-radius:0px;
  6135. filter:drop-shadow(none);
  6136. transition:none;
  6137. }
  6138. #u55527 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:22px;
  6142. top:0px;
  6143. width:261px;
  6144. height:20px;
  6145. display:flex;
  6146. transition:none;
  6147. transform-origin:50% 50%;
  6148. }
  6149. #u55527 .text {
  6150. position:absolute;
  6151. align-self:center;
  6152. padding:2px 2px 2px 3px;
  6153. box-sizing:border-box;
  6154. width:100%;
  6155. }
  6156. #u55527_text {
  6157. border-width:0px;
  6158. white-space:nowrap;
  6159. text-transform:none;
  6160. }
  6161. #u55528 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:240px;
  6166. width:140px;
  6167. height:20px;
  6168. transition:none;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. }
  6173. #u55529 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:6px;
  6177. top:6px;
  6178. width:9px;
  6179. height:9px;
  6180. display:flex;
  6181. transition:none;
  6182. }
  6183. #u55529 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 2px 2px 2px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u55529_img {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:9px;
  6196. height:9px;
  6197. }
  6198. #u55529_img.selected {
  6199. }
  6200. #u55529.selected {
  6201. }
  6202. #u55529_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u55530_div {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:118px;
  6214. height:20px;
  6215. background:inherit;
  6216. background-color:rgba(255, 255, 255, 0);
  6217. border-radius:0px;
  6218. filter:drop-shadow(none);
  6219. transition:none;
  6220. }
  6221. #u55530 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:22px;
  6225. top:0px;
  6226. width:118px;
  6227. height:20px;
  6228. display:flex;
  6229. transition:none;
  6230. transform-origin:50% 50%;
  6231. }
  6232. #u55530 .text {
  6233. position:absolute;
  6234. align-self:center;
  6235. padding:2px 2px 2px 3px;
  6236. box-sizing:border-box;
  6237. width:100%;
  6238. }
  6239. #u55530_text {
  6240. border-width:0px;
  6241. white-space:nowrap;
  6242. text-transform:none;
  6243. }
  6244. #u55528_children {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:0px;
  6248. top:0px;
  6249. width:0px;
  6250. height:0px;
  6251. visibility:hidden;
  6252. }
  6253. #u55531 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:20px;
  6257. top:20px;
  6258. width:293px;
  6259. height:20px;
  6260. transition:none;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. }
  6265. #u55532_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:271px;
  6271. height:20px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 0);
  6274. border-radius:0px;
  6275. filter:drop-shadow(none);
  6276. transition:none;
  6277. }
  6278. #u55532 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:22px;
  6282. top:0px;
  6283. width:271px;
  6284. height:20px;
  6285. display:flex;
  6286. transition:none;
  6287. transform-origin:50% 50%;
  6288. }
  6289. #u55532 .text {
  6290. position:absolute;
  6291. align-self:center;
  6292. padding:2px 2px 2px 3px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u55532_text {
  6297. border-width:0px;
  6298. white-space:nowrap;
  6299. text-transform:none;
  6300. }
  6301. #u55533 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:20px;
  6305. top:40px;
  6306. width:449px;
  6307. height:20px;
  6308. transition:none;
  6309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6310. font-weight:400;
  6311. font-style:normal;
  6312. }
  6313. #u55534_div {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:427px;
  6319. height:20px;
  6320. background:inherit;
  6321. background-color:rgba(255, 255, 255, 0);
  6322. border-radius:0px;
  6323. filter:drop-shadow(none);
  6324. transition:none;
  6325. }
  6326. #u55534 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:22px;
  6330. top:0px;
  6331. width:427px;
  6332. height:20px;
  6333. display:flex;
  6334. transition:none;
  6335. transform-origin:50% 50%;
  6336. }
  6337. #u55534 .text {
  6338. position:absolute;
  6339. align-self:center;
  6340. padding:2px 2px 2px 3px;
  6341. box-sizing:border-box;
  6342. width:100%;
  6343. }
  6344. #u55534_text {
  6345. border-width:0px;
  6346. white-space:nowrap;
  6347. text-transform:none;
  6348. }
  6349. #u55535 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:20px;
  6353. top:60px;
  6354. width:322px;
  6355. height:20px;
  6356. transition:none;
  6357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. }
  6361. #u55536_div {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:300px;
  6367. height:20px;
  6368. background:inherit;
  6369. background-color:rgba(255, 255, 255, 0);
  6370. border-radius:0px;
  6371. filter:drop-shadow(none);
  6372. transition:none;
  6373. }
  6374. #u55536 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:22px;
  6378. top:0px;
  6379. width:300px;
  6380. height:20px;
  6381. display:flex;
  6382. transition:none;
  6383. transform-origin:50% 50%;
  6384. }
  6385. #u55536 .text {
  6386. position:absolute;
  6387. align-self:center;
  6388. padding:2px 2px 2px 3px;
  6389. box-sizing:border-box;
  6390. width:100%;
  6391. }
  6392. #u55536_text {
  6393. border-width:0px;
  6394. white-space:nowrap;
  6395. text-transform:none;
  6396. }
  6397. #u55537 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:20px;
  6401. top:80px;
  6402. width:283px;
  6403. height:20px;
  6404. transition:none;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. }
  6409. #u55538_div {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:261px;
  6415. height:20px;
  6416. background:inherit;
  6417. background-color:rgba(255, 255, 255, 0);
  6418. border-radius:0px;
  6419. filter:drop-shadow(none);
  6420. transition:none;
  6421. }
  6422. #u55538 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:22px;
  6426. top:0px;
  6427. width:261px;
  6428. height:20px;
  6429. display:flex;
  6430. transition:none;
  6431. transform-origin:50% 50%;
  6432. }
  6433. #u55538 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 3px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u55538_text {
  6441. border-width:0px;
  6442. white-space:nowrap;
  6443. text-transform:none;
  6444. }
  6445. #u55539 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:0px;
  6449. top:260px;
  6450. width:145px;
  6451. height:20px;
  6452. transition:none;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. }
  6457. #u55540 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:6px;
  6461. top:6px;
  6462. width:9px;
  6463. height:9px;
  6464. display:flex;
  6465. transition:none;
  6466. }
  6467. #u55540 .text {
  6468. position:absolute;
  6469. align-self:center;
  6470. padding:2px 2px 2px 2px;
  6471. box-sizing:border-box;
  6472. width:100%;
  6473. }
  6474. #u55540_img {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:9px;
  6480. height:9px;
  6481. }
  6482. #u55540_img.selected {
  6483. }
  6484. #u55540.selected {
  6485. }
  6486. #u55540_text {
  6487. border-width:0px;
  6488. word-wrap:break-word;
  6489. text-transform:none;
  6490. visibility:hidden;
  6491. }
  6492. #u55541_div {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:123px;
  6498. height:20px;
  6499. background:inherit;
  6500. background-color:rgba(255, 255, 255, 0);
  6501. border-radius:0px;
  6502. filter:drop-shadow(none);
  6503. transition:none;
  6504. }
  6505. #u55541 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:22px;
  6509. top:0px;
  6510. width:123px;
  6511. height:20px;
  6512. display:flex;
  6513. transition:none;
  6514. transform-origin:50% 50%;
  6515. }
  6516. #u55541 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:2px 2px 2px 3px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u55541_text {
  6524. border-width:0px;
  6525. white-space:nowrap;
  6526. text-transform:none;
  6527. }
  6528. #u55539_children {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:0px;
  6534. height:0px;
  6535. visibility:hidden;
  6536. }
  6537. #u55542 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:20px;
  6541. top:20px;
  6542. width:293px;
  6543. height:20px;
  6544. transition:none;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. }
  6549. #u55543_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:271px;
  6555. height:20px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 0);
  6558. border-radius:0px;
  6559. filter:drop-shadow(none);
  6560. transition:none;
  6561. }
  6562. #u55543 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:22px;
  6566. top:0px;
  6567. width:271px;
  6568. height:20px;
  6569. display:flex;
  6570. transition:none;
  6571. transform-origin:50% 50%;
  6572. }
  6573. #u55543 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 3px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u55543_text {
  6581. border-width:0px;
  6582. white-space:nowrap;
  6583. text-transform:none;
  6584. }
  6585. #u55544 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:20px;
  6589. top:40px;
  6590. width:527px;
  6591. height:20px;
  6592. transition:none;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. }
  6597. #u55545_div {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:505px;
  6603. height:20px;
  6604. background:inherit;
  6605. background-color:rgba(255, 255, 255, 0);
  6606. border-radius:0px;
  6607. filter:drop-shadow(none);
  6608. transition:none;
  6609. }
  6610. #u55545 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:22px;
  6614. top:0px;
  6615. width:505px;
  6616. height:20px;
  6617. display:flex;
  6618. transition:none;
  6619. transform-origin:50% 50%;
  6620. }
  6621. #u55545 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:2px 2px 2px 3px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u55545_text {
  6629. border-width:0px;
  6630. white-space:nowrap;
  6631. text-transform:none;
  6632. }
  6633. #u55546 {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:20px;
  6637. top:60px;
  6638. width:400px;
  6639. height:20px;
  6640. transition:none;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. }
  6645. #u55547_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:378px;
  6651. height:20px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 0);
  6654. border-radius:0px;
  6655. filter:drop-shadow(none);
  6656. transition:none;
  6657. }
  6658. #u55547 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:22px;
  6662. top:0px;
  6663. width:378px;
  6664. height:20px;
  6665. display:flex;
  6666. transition:none;
  6667. transform-origin:50% 50%;
  6668. }
  6669. #u55547 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:2px 2px 2px 3px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u55547_text {
  6677. border-width:0px;
  6678. white-space:nowrap;
  6679. text-transform:none;
  6680. }
  6681. #u55548 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:20px;
  6685. top:80px;
  6686. width:335px;
  6687. height:20px;
  6688. transition:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. }
  6693. #u55549_div {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:313px;
  6699. height:20px;
  6700. background:inherit;
  6701. background-color:rgba(255, 255, 255, 0);
  6702. border-radius:0px;
  6703. filter:drop-shadow(none);
  6704. transition:none;
  6705. }
  6706. #u55549 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:22px;
  6710. top:0px;
  6711. width:313px;
  6712. height:20px;
  6713. display:flex;
  6714. transition:none;
  6715. transform-origin:50% 50%;
  6716. }
  6717. #u55549 .text {
  6718. position:absolute;
  6719. align-self:center;
  6720. padding:2px 2px 2px 3px;
  6721. box-sizing:border-box;
  6722. width:100%;
  6723. }
  6724. #u55549_text {
  6725. border-width:0px;
  6726. white-space:nowrap;
  6727. text-transform:none;
  6728. }
  6729. #u55550 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:280px;
  6734. width:103px;
  6735. height:20px;
  6736. transition:none;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. }
  6741. #u55551 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:6px;
  6745. top:6px;
  6746. width:9px;
  6747. height:9px;
  6748. display:flex;
  6749. transition:none;
  6750. }
  6751. #u55551 .text {
  6752. position:absolute;
  6753. align-self:center;
  6754. padding:2px 2px 2px 2px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u55551_img {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:9px;
  6764. height:9px;
  6765. }
  6766. #u55551_img.selected {
  6767. }
  6768. #u55551.selected {
  6769. }
  6770. #u55551_text {
  6771. border-width:0px;
  6772. word-wrap:break-word;
  6773. text-transform:none;
  6774. visibility:hidden;
  6775. }
  6776. #u55552_div {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:81px;
  6782. height:20px;
  6783. background:inherit;
  6784. background-color:rgba(255, 255, 255, 0);
  6785. border-radius:0px;
  6786. filter:drop-shadow(none);
  6787. transition:none;
  6788. }
  6789. #u55552 {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:22px;
  6793. top:0px;
  6794. width:81px;
  6795. height:20px;
  6796. display:flex;
  6797. transition:none;
  6798. transform-origin:50% 50%;
  6799. }
  6800. #u55552 .text {
  6801. position:absolute;
  6802. align-self:center;
  6803. padding:2px 2px 2px 3px;
  6804. box-sizing:border-box;
  6805. width:100%;
  6806. }
  6807. #u55552_text {
  6808. border-width:0px;
  6809. white-space:nowrap;
  6810. text-transform:none;
  6811. }
  6812. #u55550_children {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:0px;
  6818. height:0px;
  6819. visibility:hidden;
  6820. }
  6821. #u55553 {
  6822. border-width:0px;
  6823. position:absolute;
  6824. left:20px;
  6825. top:20px;
  6826. width:280px;
  6827. height:20px;
  6828. transition:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. }
  6833. #u55554_div {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:258px;
  6839. height:20px;
  6840. background:inherit;
  6841. background-color:rgba(255, 255, 255, 0);
  6842. border-radius:0px;
  6843. filter:drop-shadow(none);
  6844. transition:none;
  6845. }
  6846. #u55554 {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:22px;
  6850. top:0px;
  6851. width:258px;
  6852. height:20px;
  6853. display:flex;
  6854. transition:none;
  6855. transform-origin:50% 50%;
  6856. }
  6857. #u55554 .text {
  6858. position:absolute;
  6859. align-self:center;
  6860. padding:2px 2px 2px 3px;
  6861. box-sizing:border-box;
  6862. width:100%;
  6863. }
  6864. #u55554_text {
  6865. border-width:0px;
  6866. white-space:nowrap;
  6867. text-transform:none;
  6868. }
  6869. #u55555 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:20px;
  6873. top:40px;
  6874. width:228px;
  6875. height:20px;
  6876. transition:none;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. }
  6881. #u55556_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:206px;
  6887. height:20px;
  6888. background:inherit;
  6889. background-color:rgba(255, 255, 255, 0);
  6890. border-radius:0px;
  6891. filter:drop-shadow(none);
  6892. transition:none;
  6893. }
  6894. #u55556 {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:22px;
  6898. top:0px;
  6899. width:206px;
  6900. height:20px;
  6901. display:flex;
  6902. transition:none;
  6903. transform-origin:50% 50%;
  6904. }
  6905. #u55556 .text {
  6906. position:absolute;
  6907. align-self:center;
  6908. padding:2px 2px 2px 3px;
  6909. box-sizing:border-box;
  6910. width:100%;
  6911. }
  6912. #u55556_text {
  6913. border-width:0px;
  6914. white-space:nowrap;
  6915. text-transform:none;
  6916. }
  6917. #u55557 {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:20px;
  6921. top:60px;
  6922. width:270px;
  6923. height:20px;
  6924. transition:none;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. }
  6929. #u55558_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:248px;
  6935. height:20px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border-radius:0px;
  6939. filter:drop-shadow(none);
  6940. transition:none;
  6941. }
  6942. #u55558 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:22px;
  6946. top:0px;
  6947. width:248px;
  6948. height:20px;
  6949. display:flex;
  6950. transition:none;
  6951. transform-origin:50% 50%;
  6952. }
  6953. #u55558 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:2px 2px 2px 3px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u55558_text {
  6961. border-width:0px;
  6962. white-space:nowrap;
  6963. text-transform:none;
  6964. }
  6965. #u55559 {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:20px;
  6969. top:80px;
  6970. width:231px;
  6971. height:20px;
  6972. transition:none;
  6973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6974. font-weight:400;
  6975. font-style:normal;
  6976. }
  6977. #u55560_div {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:209px;
  6983. height:20px;
  6984. background:inherit;
  6985. background-color:rgba(255, 255, 255, 0);
  6986. border-radius:0px;
  6987. filter:drop-shadow(none);
  6988. transition:none;
  6989. }
  6990. #u55560 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:22px;
  6994. top:0px;
  6995. width:209px;
  6996. height:20px;
  6997. display:flex;
  6998. transition:none;
  6999. transform-origin:50% 50%;
  7000. }
  7001. #u55560 .text {
  7002. position:absolute;
  7003. align-self:center;
  7004. padding:2px 2px 2px 3px;
  7005. box-sizing:border-box;
  7006. width:100%;
  7007. }
  7008. #u55560_text {
  7009. border-width:0px;
  7010. white-space:nowrap;
  7011. text-transform:none;
  7012. }
  7013. #u55561 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:0px;
  7017. top:300px;
  7018. width:106px;
  7019. height:20px;
  7020. transition:none;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. }
  7025. #u55562 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:6px;
  7029. top:6px;
  7030. width:9px;
  7031. height:9px;
  7032. display:flex;
  7033. transition:none;
  7034. }
  7035. #u55562 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:2px 2px 2px 2px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u55562_img {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:9px;
  7048. height:9px;
  7049. }
  7050. #u55562_img.selected {
  7051. }
  7052. #u55562.selected {
  7053. }
  7054. #u55562_text {
  7055. border-width:0px;
  7056. word-wrap:break-word;
  7057. text-transform:none;
  7058. visibility:hidden;
  7059. }
  7060. #u55563_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:84px;
  7066. height:20px;
  7067. background:inherit;
  7068. background-color:rgba(255, 255, 255, 0);
  7069. border-radius:0px;
  7070. filter:drop-shadow(none);
  7071. transition:none;
  7072. }
  7073. #u55563 {
  7074. border-width:0px;
  7075. position:absolute;
  7076. left:22px;
  7077. top:0px;
  7078. width:84px;
  7079. height:20px;
  7080. display:flex;
  7081. transition:none;
  7082. transform-origin:50% 50%;
  7083. }
  7084. #u55563 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 2px 2px 3px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u55563_text {
  7092. border-width:0px;
  7093. white-space:nowrap;
  7094. text-transform:none;
  7095. }
  7096. #u55561_children {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:0px;
  7102. height:0px;
  7103. visibility:hidden;
  7104. }
  7105. #u55564 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:20px;
  7109. top:20px;
  7110. width:262px;
  7111. height:20px;
  7112. transition:none;
  7113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7114. font-weight:400;
  7115. font-style:normal;
  7116. }
  7117. #u55565_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:240px;
  7123. height:20px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 0);
  7126. border-radius:0px;
  7127. filter:drop-shadow(none);
  7128. transition:none;
  7129. }
  7130. #u55565 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:22px;
  7134. top:0px;
  7135. width:240px;
  7136. height:20px;
  7137. display:flex;
  7138. transition:none;
  7139. transform-origin:50% 50%;
  7140. }
  7141. #u55565 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:2px 2px 2px 3px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u55565_text {
  7149. border-width:0px;
  7150. white-space:nowrap;
  7151. text-transform:none;
  7152. }
  7153. #u55566 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:20px;
  7157. top:40px;
  7158. width:223px;
  7159. height:20px;
  7160. transition:none;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. }
  7165. #u55567_div {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:201px;
  7171. height:20px;
  7172. background:inherit;
  7173. background-color:rgba(255, 255, 255, 0);
  7174. border-radius:0px;
  7175. filter:drop-shadow(none);
  7176. transition:none;
  7177. }
  7178. #u55567 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:22px;
  7182. top:0px;
  7183. width:201px;
  7184. height:20px;
  7185. display:flex;
  7186. transition:none;
  7187. transform-origin:50% 50%;
  7188. }
  7189. #u55567 .text {
  7190. position:absolute;
  7191. align-self:center;
  7192. padding:2px 2px 2px 3px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u55567_text {
  7197. border-width:0px;
  7198. white-space:nowrap;
  7199. text-transform:none;
  7200. }
  7201. #u55568 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:320px;
  7206. width:106px;
  7207. height:20px;
  7208. transition:none;
  7209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. }
  7213. #u55569 {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:6px;
  7217. top:6px;
  7218. width:9px;
  7219. height:9px;
  7220. display:flex;
  7221. transition:none;
  7222. }
  7223. #u55569 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:2px 2px 2px 2px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u55569_img {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:9px;
  7236. height:9px;
  7237. }
  7238. #u55569_img.selected {
  7239. }
  7240. #u55569.selected {
  7241. }
  7242. #u55569_text {
  7243. border-width:0px;
  7244. word-wrap:break-word;
  7245. text-transform:none;
  7246. visibility:hidden;
  7247. }
  7248. #u55570_div {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:84px;
  7254. height:20px;
  7255. background:inherit;
  7256. background-color:rgba(255, 255, 255, 0);
  7257. border-radius:0px;
  7258. filter:drop-shadow(none);
  7259. transition:none;
  7260. }
  7261. #u55570 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:22px;
  7265. top:0px;
  7266. width:84px;
  7267. height:20px;
  7268. display:flex;
  7269. transition:none;
  7270. transform-origin:50% 50%;
  7271. }
  7272. #u55570 .text {
  7273. position:absolute;
  7274. align-self:center;
  7275. padding:2px 2px 2px 3px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u55570_text {
  7280. border-width:0px;
  7281. white-space:nowrap;
  7282. text-transform:none;
  7283. }
  7284. #u55568_children {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:0px;
  7288. top:0px;
  7289. width:0px;
  7290. height:0px;
  7291. visibility:hidden;
  7292. }
  7293. #u55571 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:20px;
  7297. top:20px;
  7298. width:236px;
  7299. height:20px;
  7300. transition:none;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. }
  7305. #u55572_div {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:0px;
  7309. top:0px;
  7310. width:214px;
  7311. height:20px;
  7312. background:inherit;
  7313. background-color:rgba(255, 255, 255, 0);
  7314. border-radius:0px;
  7315. filter:drop-shadow(none);
  7316. transition:none;
  7317. }
  7318. #u55572 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:22px;
  7322. top:0px;
  7323. width:214px;
  7324. height:20px;
  7325. display:flex;
  7326. transition:none;
  7327. transform-origin:50% 50%;
  7328. }
  7329. #u55572 .text {
  7330. position:absolute;
  7331. align-self:center;
  7332. padding:2px 2px 2px 3px;
  7333. box-sizing:border-box;
  7334. width:100%;
  7335. }
  7336. #u55572_text {
  7337. border-width:0px;
  7338. white-space:nowrap;
  7339. text-transform:none;
  7340. }
  7341. #u55573 {
  7342. border-width:0px;
  7343. position:absolute;
  7344. left:20px;
  7345. top:40px;
  7346. width:223px;
  7347. height:20px;
  7348. transition:none;
  7349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7350. font-weight:400;
  7351. font-style:normal;
  7352. }
  7353. #u55574_div {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:0px;
  7357. top:0px;
  7358. width:201px;
  7359. height:20px;
  7360. background:inherit;
  7361. background-color:rgba(255, 255, 255, 0);
  7362. border-radius:0px;
  7363. filter:drop-shadow(none);
  7364. transition:none;
  7365. }
  7366. #u55574 {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:22px;
  7370. top:0px;
  7371. width:201px;
  7372. height:20px;
  7373. display:flex;
  7374. transition:none;
  7375. transform-origin:50% 50%;
  7376. }
  7377. #u55574 .text {
  7378. position:absolute;
  7379. align-self:center;
  7380. padding:2px 2px 2px 3px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u55574_text {
  7385. border-width:0px;
  7386. white-space:nowrap;
  7387. text-transform:none;
  7388. }
  7389. #u55575 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:0px;
  7393. top:0px;
  7394. width:0px;
  7395. height:0px;
  7396. }
  7397. #u55576_div {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:348px;
  7403. height:80px;
  7404. background:inherit;
  7405. background-color:rgba(255, 255, 255, 1);
  7406. border-radius:5px;
  7407. filter:drop-shadow(0px 0px 0.5px rgba(0, 0, 0, 0.34901960784313724));
  7408. transition:none;
  7409. }
  7410. #u55576 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:42px;
  7414. top:987px;
  7415. width:348px;
  7416. height:80px;
  7417. display:flex;
  7418. transition:none;
  7419. transform-origin:50% 50%;
  7420. }
  7421. #u55576 .text {
  7422. position:absolute;
  7423. align-self:center;
  7424. padding:2px 2px 2px 2px;
  7425. box-sizing:border-box;
  7426. width:100%;
  7427. }
  7428. #u55576_text {
  7429. border-width:0px;
  7430. word-wrap:break-word;
  7431. text-transform:none;
  7432. visibility:hidden;
  7433. }
  7434. #u55577_div {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:333px;
  7440. height:34px;
  7441. background:inherit;
  7442. background-color:rgba(255, 255, 255, 0);
  7443. border-radius:0px;
  7444. filter:drop-shadow(none);
  7445. transition:none;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:12px;
  7450. }
  7451. #u55577 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:57px;
  7455. top:997px;
  7456. width:333px;
  7457. height:34px;
  7458. display:flex;
  7459. transition:none;
  7460. transform-origin:50% 50%;
  7461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:12px;
  7465. }
  7466. #u55577 .text {
  7467. position:absolute;
  7468. align-self:flex-start;
  7469. padding:0px 0px 0px 0px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u55577_text {
  7474. border-width:0px;
  7475. word-wrap:break-word;
  7476. text-transform:none;
  7477. }
  7478. #u55578_div {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:49px;
  7484. height:14px;
  7485. background:inherit;
  7486. background-color:rgba(255, 255, 255, 0);
  7487. border-radius:0px;
  7488. filter:drop-shadow(none);
  7489. transition:none;
  7490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7491. font-weight:400;
  7492. font-style:normal;
  7493. font-size:10px;
  7494. color:#7F7F7F;
  7495. }
  7496. #u55578 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:59px;
  7500. top:1044px;
  7501. width:49px;
  7502. height:14px;
  7503. display:flex;
  7504. transition:none;
  7505. transform-origin:50% 50%;
  7506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7507. font-weight:400;
  7508. font-style:normal;
  7509. font-size:10px;
  7510. color:#7F7F7F;
  7511. }
  7512. #u55578 .text {
  7513. position:absolute;
  7514. align-self:flex-start;
  7515. padding:0px 0px 0px 0px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u55578_text {
  7520. border-width:0px;
  7521. white-space:nowrap;
  7522. text-transform:none;
  7523. }
  7524. #u55579 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:0px;
  7530. height:0px;
  7531. }
  7532. #u55580_div {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:81px;
  7538. height:14px;
  7539. background:inherit;
  7540. background-color:rgba(255, 255, 255, 0);
  7541. border-radius:0px;
  7542. filter:drop-shadow(none);
  7543. transition:none;
  7544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:10px;
  7548. color:#7F7F7F;
  7549. }
  7550. #u55580 {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:129px;
  7554. top:1044px;
  7555. width:81px;
  7556. height:14px;
  7557. display:flex;
  7558. transition:none;
  7559. transform-origin:50% 50%;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:10px;
  7564. color:#7F7F7F;
  7565. }
  7566. #u55580 .text {
  7567. position:absolute;
  7568. align-self:flex-start;
  7569. padding:0px 0px 0px 0px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u55580_text {
  7574. border-width:0px;
  7575. white-space:nowrap;
  7576. text-transform:none;
  7577. }
  7578. #u55581 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:118px;
  7582. top:1046px;
  7583. width:7px;
  7584. height:10px;
  7585. display:flex;
  7586. transition:none;
  7587. }
  7588. #u55581 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 2px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u55581_img {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:0px;
  7599. top:0px;
  7600. width:7px;
  7601. height:10px;
  7602. }
  7603. #u55581_text {
  7604. border-width:0px;
  7605. word-wrap:break-word;
  7606. text-transform:none;
  7607. visibility:hidden;
  7608. }