styles.css 145 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:894px;
  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. #u154825_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u154825 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u154825 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u154825_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u154826_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u154826 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u154826 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u154826_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u154827 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u154828_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u154828 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u154828 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u154828_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u154829 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u154830_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u154830 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u154830 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u154830_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u154831_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u154831 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u154831 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u154831_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u154832 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u154833_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u154833 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u154833 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u154833_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u154834_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u154834 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u154834 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u154834_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u154835_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u154835 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u154835 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u154835_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u154836_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u154836 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u154836 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u154836_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u154837_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u154837 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u154837 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u154837_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u154838_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u154838 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u154838 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u154838_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u154839 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u154840_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u154840 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u154840 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u154840_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u154841_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u154841 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u154841 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u154841_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u154842 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u154843_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u154843 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u154843 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u154843_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u154844_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u154844 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u154844 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u154844_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u154845_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u154845 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u154845 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u154845_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u154846 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u154847_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u154847 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u154847 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u154847_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u154848_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u154848 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u154848 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u154848_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u154849 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u154850_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u154850 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u154850 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u154850_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u154851_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u154851 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u154851 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u154851_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u154852_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:1603px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u154852 {
  800. border-width:0px;
  801. position:absolute;
  802. left:29px;
  803. top:105px;
  804. width:375px;
  805. height:1603px;
  806. display:flex;
  807. }
  808. #u154852 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u154852_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u154853_div {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:109px;
  827. height:25px;
  828. background:inherit;
  829. background-color:rgba(255, 255, 255, 0);
  830. border:none;
  831. border-radius:0px;
  832. -moz-box-shadow:none;
  833. -webkit-box-shadow:none;
  834. box-shadow:none;
  835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  836. font-weight:500;
  837. font-style:normal;
  838. font-size:18px;
  839. }
  840. #u154853 {
  841. border-width:0px;
  842. position:absolute;
  843. left:66px;
  844. top:74px;
  845. width:109px;
  846. height:25px;
  847. display:flex;
  848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  849. font-weight:500;
  850. font-style:normal;
  851. font-size:18px;
  852. }
  853. #u154853 .text {
  854. position:absolute;
  855. align-self:flex-start;
  856. padding:0px 0px 0px 0px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u154853_text {
  861. border-width:0px;
  862. white-space:nowrap;
  863. text-transform:none;
  864. }
  865. #u154854 {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:0px;
  871. height:0px;
  872. }
  873. #u154855_img {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:375px;
  879. height:126px;
  880. }
  881. #u154855 {
  882. border-width:0px;
  883. position:absolute;
  884. left:29px;
  885. top:145px;
  886. width:375px;
  887. height:126px;
  888. display:flex;
  889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  890. font-weight:400;
  891. font-style:normal;
  892. }
  893. #u154855 .text {
  894. position:absolute;
  895. align-self:center;
  896. padding:2px 2px 2px 2px;
  897. box-sizing:border-box;
  898. width:100%;
  899. }
  900. #u154855_text {
  901. border-width:0px;
  902. word-wrap:break-word;
  903. text-transform:none;
  904. }
  905. #u154856 {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:0px;
  911. height:0px;
  912. }
  913. #u154857_img {
  914. border-width:0px;
  915. position:absolute;
  916. left:0px;
  917. top:0px;
  918. width:10px;
  919. height:10px;
  920. }
  921. #u154857 {
  922. border-width:0px;
  923. position:absolute;
  924. left:191px;
  925. top:252px;
  926. width:10px;
  927. height:10px;
  928. display:flex;
  929. }
  930. #u154857 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:2px 2px 2px 2px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u154857_text {
  938. border-width:0px;
  939. word-wrap:break-word;
  940. text-transform:none;
  941. visibility:hidden;
  942. }
  943. #u154858_img {
  944. border-width:0px;
  945. position:absolute;
  946. left:0px;
  947. top:0px;
  948. width:10px;
  949. height:10px;
  950. }
  951. #u154858 {
  952. border-width:0px;
  953. position:absolute;
  954. left:210px;
  955. top:252px;
  956. width:10px;
  957. height:10px;
  958. display:flex;
  959. }
  960. #u154858 .text {
  961. position:absolute;
  962. align-self:center;
  963. padding:2px 2px 2px 2px;
  964. box-sizing:border-box;
  965. width:100%;
  966. }
  967. #u154858_text {
  968. border-width:0px;
  969. word-wrap:break-word;
  970. text-transform:none;
  971. visibility:hidden;
  972. }
  973. #u154859_img {
  974. border-width:0px;
  975. position:absolute;
  976. left:0px;
  977. top:0px;
  978. width:10px;
  979. height:10px;
  980. }
  981. #u154859 {
  982. border-width:0px;
  983. position:absolute;
  984. left:229px;
  985. top:252px;
  986. width:10px;
  987. height:10px;
  988. display:flex;
  989. }
  990. #u154859 .text {
  991. position:absolute;
  992. align-self:center;
  993. padding:2px 2px 2px 2px;
  994. box-sizing:border-box;
  995. width:100%;
  996. }
  997. #u154859_text {
  998. border-width:0px;
  999. word-wrap:break-word;
  1000. text-transform:none;
  1001. visibility:hidden;
  1002. }
  1003. #u154860 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:0px;
  1009. height:0px;
  1010. }
  1011. #u154861_div {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:355px;
  1017. height:100px;
  1018. background:inherit;
  1019. background-color:rgba(51, 51, 51, 1);
  1020. border:none;
  1021. border-radius:4px;
  1022. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1023. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1024. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1025. }
  1026. #u154861 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:39px;
  1030. top:280px;
  1031. width:355px;
  1032. height:100px;
  1033. display:flex;
  1034. }
  1035. #u154861 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u154861_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u154862_div {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:255px;
  1054. height:17px;
  1055. background:inherit;
  1056. background-color:rgba(255, 255, 255, 0);
  1057. border:none;
  1058. border-radius:0px;
  1059. -moz-box-shadow:none;
  1060. -webkit-box-shadow:none;
  1061. box-shadow:none;
  1062. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1063. font-weight:500;
  1064. font-style:normal;
  1065. font-size:12px;
  1066. color:#FFFFFF;
  1067. }
  1068. #u154862 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:122px;
  1072. top:291px;
  1073. width:255px;
  1074. height:17px;
  1075. display:flex;
  1076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1077. font-weight:500;
  1078. font-style:normal;
  1079. font-size:12px;
  1080. color:#FFFFFF;
  1081. }
  1082. #u154862 .text {
  1083. position:absolute;
  1084. align-self:flex-start;
  1085. padding:0px 0px 0px 0px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u154862_text {
  1090. border-width:0px;
  1091. white-space:nowrap;
  1092. text-transform:none;
  1093. }
  1094. #u154863_div {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:49px;
  1100. height:66px;
  1101. background:inherit;
  1102. background-color:rgba(255, 255, 255, 0);
  1103. border:none;
  1104. border-radius:0px;
  1105. -moz-box-shadow:none;
  1106. -webkit-box-shadow:none;
  1107. box-shadow:none;
  1108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1109. font-weight:500;
  1110. font-style:normal;
  1111. font-size:24px;
  1112. color:#FFFFFF;
  1113. }
  1114. #u154863 {
  1115. border-width:0px;
  1116. position:absolute;
  1117. left:55px;
  1118. top:295px;
  1119. width:49px;
  1120. height:66px;
  1121. display:flex;
  1122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1123. font-weight:500;
  1124. font-style:normal;
  1125. font-size:24px;
  1126. color:#FFFFFF;
  1127. }
  1128. #u154863 .text {
  1129. position:absolute;
  1130. align-self:flex-start;
  1131. padding:0px 0px 0px 0px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u154863_text {
  1136. border-width:0px;
  1137. white-space:nowrap;
  1138. text-transform:none;
  1139. }
  1140. #u154864_div {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:253px;
  1146. height:17px;
  1147. background:inherit;
  1148. background-color:rgba(255, 255, 255, 0);
  1149. border:none;
  1150. border-radius:0px;
  1151. -moz-box-shadow:none;
  1152. -webkit-box-shadow:none;
  1153. box-shadow:none;
  1154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1155. font-weight:500;
  1156. font-style:normal;
  1157. font-size:12px;
  1158. color:#FFFFFF;
  1159. }
  1160. #u154864 {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:122px;
  1164. top:318px;
  1165. width:253px;
  1166. height:17px;
  1167. display:flex;
  1168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1169. font-weight:500;
  1170. font-style:normal;
  1171. font-size:12px;
  1172. color:#FFFFFF;
  1173. }
  1174. #u154864 .text {
  1175. position:absolute;
  1176. align-self:flex-start;
  1177. padding:0px 0px 0px 0px;
  1178. box-sizing:border-box;
  1179. width:100%;
  1180. }
  1181. #u154864_text {
  1182. border-width:0px;
  1183. white-space:nowrap;
  1184. text-transform:none;
  1185. }
  1186. #u154865_div {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:253px;
  1192. height:17px;
  1193. background:inherit;
  1194. background-color:rgba(255, 255, 255, 0);
  1195. border:none;
  1196. border-radius:0px;
  1197. -moz-box-shadow:none;
  1198. -webkit-box-shadow:none;
  1199. box-shadow:none;
  1200. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1201. font-weight:500;
  1202. font-style:normal;
  1203. font-size:12px;
  1204. color:#FFFFFF;
  1205. }
  1206. #u154865 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:122px;
  1210. top:345px;
  1211. width:253px;
  1212. height:17px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1215. font-weight:500;
  1216. font-style:normal;
  1217. font-size:12px;
  1218. color:#FFFFFF;
  1219. }
  1220. #u154865 .text {
  1221. position:absolute;
  1222. align-self:flex-start;
  1223. padding:0px 0px 0px 0px;
  1224. box-sizing:border-box;
  1225. width:100%;
  1226. }
  1227. #u154865_text {
  1228. border-width:0px;
  1229. white-space:nowrap;
  1230. text-transform:none;
  1231. }
  1232. #u154866_div {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:0px;
  1236. top:0px;
  1237. width:375px;
  1238. height:230px;
  1239. background:inherit;
  1240. background-color:rgba(255, 255, 255, 1);
  1241. box-sizing:border-box;
  1242. border-width:1px;
  1243. border-style:solid;
  1244. border-color:rgba(242, 242, 242, 1);
  1245. border-left:0px;
  1246. border-top:0px;
  1247. border-right:0px;
  1248. border-radius:0px;
  1249. border-bottom-right-radius:0px;
  1250. border-bottom-left-radius:0px;
  1251. -moz-box-shadow:none;
  1252. -webkit-box-shadow:none;
  1253. box-shadow:none;
  1254. }
  1255. #u154866 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:29px;
  1259. top:391px;
  1260. width:375px;
  1261. height:230px;
  1262. display:flex;
  1263. }
  1264. #u154866 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u154866_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u154867 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:0px;
  1283. height:0px;
  1284. }
  1285. #u154868_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:30px;
  1291. height:30px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. box-sizing:border-box;
  1295. border-width:1px;
  1296. border-style:solid;
  1297. border-color:rgba(121, 121, 121, 1);
  1298. border-radius:4px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. font-size:8px;
  1306. }
  1307. #u154868 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:147px;
  1311. top:411px;
  1312. width:30px;
  1313. height:30px;
  1314. display:flex;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:8px;
  1319. }
  1320. #u154868 .text {
  1321. position:absolute;
  1322. align-self:center;
  1323. padding:2px 2px 2px 2px;
  1324. box-sizing:border-box;
  1325. width:100%;
  1326. }
  1327. #u154868_text {
  1328. border-width:0px;
  1329. word-wrap:break-word;
  1330. text-transform:none;
  1331. }
  1332. #u154869_div {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:0px;
  1336. top:0px;
  1337. width:49px;
  1338. height:17px;
  1339. background:inherit;
  1340. background-color:rgba(255, 255, 255, 0);
  1341. border:none;
  1342. border-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:12px;
  1350. }
  1351. #u154869 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:138px;
  1355. top:446px;
  1356. width:49px;
  1357. height:17px;
  1358. display:flex;
  1359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:12px;
  1363. }
  1364. #u154869 .text {
  1365. position:absolute;
  1366. align-self:flex-start;
  1367. padding:0px 0px 0px 0px;
  1368. box-sizing:border-box;
  1369. width:100%;
  1370. }
  1371. #u154869_text {
  1372. border-width:0px;
  1373. white-space:nowrap;
  1374. text-transform:none;
  1375. }
  1376. #u154870 {
  1377. border-width:0px;
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:0px;
  1382. height:0px;
  1383. }
  1384. #u154871_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:30px;
  1390. height:30px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 1);
  1393. box-sizing:border-box;
  1394. border-width:1px;
  1395. border-style:solid;
  1396. border-color:rgba(121, 121, 121, 1);
  1397. border-radius:4px;
  1398. -moz-box-shadow:none;
  1399. -webkit-box-shadow:none;
  1400. box-shadow:none;
  1401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1402. font-weight:400;
  1403. font-style:normal;
  1404. font-size:8px;
  1405. }
  1406. #u154871 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:59px;
  1410. top:411px;
  1411. width:30px;
  1412. height:30px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:8px;
  1418. }
  1419. #u154871 .text {
  1420. position:absolute;
  1421. align-self:center;
  1422. padding:2px 2px 2px 2px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u154871_text {
  1427. border-width:0px;
  1428. word-wrap:break-word;
  1429. text-transform:none;
  1430. }
  1431. #u154872_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:49px;
  1437. height:17px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 255, 0);
  1440. border:none;
  1441. border-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. }
  1450. #u154872 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:49px;
  1454. top:445px;
  1455. width:49px;
  1456. height:17px;
  1457. display:flex;
  1458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:12px;
  1462. }
  1463. #u154872 .text {
  1464. position:absolute;
  1465. align-self:flex-start;
  1466. padding:0px 0px 0px 0px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u154872_text {
  1471. border-width:0px;
  1472. white-space:nowrap;
  1473. text-transform:none;
  1474. }
  1475. #u154873 {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:0px;
  1481. height:0px;
  1482. }
  1483. #u154874_div {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:0px;
  1487. top:0px;
  1488. width:30px;
  1489. height:30px;
  1490. background:inherit;
  1491. background-color:rgba(255, 255, 255, 1);
  1492. box-sizing:border-box;
  1493. border-width:1px;
  1494. border-style:solid;
  1495. border-color:rgba(121, 121, 121, 1);
  1496. border-radius:4px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:8px;
  1504. }
  1505. #u154874 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:325px;
  1509. top:482px;
  1510. width:30px;
  1511. height:30px;
  1512. display:flex;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:8px;
  1517. }
  1518. #u154874 .text {
  1519. position:absolute;
  1520. align-self:center;
  1521. padding:2px 2px 2px 2px;
  1522. box-sizing:border-box;
  1523. width:100%;
  1524. }
  1525. #u154874_text {
  1526. border-width:0px;
  1527. word-wrap:break-word;
  1528. text-transform:none;
  1529. }
  1530. #u154875_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:49px;
  1536. height:17px;
  1537. background:inherit;
  1538. background-color:rgba(255, 255, 255, 0);
  1539. border:none;
  1540. border-radius:0px;
  1541. -moz-box-shadow:none;
  1542. -webkit-box-shadow:none;
  1543. box-shadow:none;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:12px;
  1548. }
  1549. #u154875 {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:316px;
  1553. top:517px;
  1554. width:49px;
  1555. height:17px;
  1556. display:flex;
  1557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1558. font-weight:400;
  1559. font-style:normal;
  1560. font-size:12px;
  1561. }
  1562. #u154875 .text {
  1563. position:absolute;
  1564. align-self:flex-start;
  1565. padding:0px 0px 0px 0px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u154875_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u154876 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:0px;
  1580. height:0px;
  1581. }
  1582. #u154877_div {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:30px;
  1588. height:30px;
  1589. background:inherit;
  1590. background-color:rgba(255, 255, 255, 1);
  1591. box-sizing:border-box;
  1592. border-width:1px;
  1593. border-style:solid;
  1594. border-color:rgba(121, 121, 121, 1);
  1595. border-radius:4px;
  1596. -moz-box-shadow:none;
  1597. -webkit-box-shadow:none;
  1598. box-shadow:none;
  1599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1600. font-weight:400;
  1601. font-style:normal;
  1602. font-size:8px;
  1603. }
  1604. #u154877 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:237px;
  1608. top:412px;
  1609. width:30px;
  1610. height:30px;
  1611. display:flex;
  1612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1613. font-weight:400;
  1614. font-style:normal;
  1615. font-size:8px;
  1616. }
  1617. #u154877 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u154877_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. }
  1629. #u154878_div {
  1630. border-width:0px;
  1631. position:absolute;
  1632. left:0px;
  1633. top:0px;
  1634. width:49px;
  1635. height:17px;
  1636. background:inherit;
  1637. background-color:rgba(255, 255, 255, 0);
  1638. border:none;
  1639. border-radius:0px;
  1640. -moz-box-shadow:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:12px;
  1647. }
  1648. #u154878 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:227px;
  1652. top:446px;
  1653. width:49px;
  1654. height:17px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:12px;
  1660. }
  1661. #u154878 .text {
  1662. position:absolute;
  1663. align-self:flex-start;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u154878_text {
  1669. border-width:0px;
  1670. white-space:nowrap;
  1671. text-transform:none;
  1672. }
  1673. #u154879 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:0px;
  1679. height:0px;
  1680. }
  1681. #u154880_div {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:375px;
  1687. height:213px;
  1688. background:inherit;
  1689. background-color:rgba(255, 255, 255, 1);
  1690. box-sizing:border-box;
  1691. border-width:1px;
  1692. border-style:solid;
  1693. border-color:rgba(242, 242, 242, 1);
  1694. border-left:0px;
  1695. border-top:0px;
  1696. border-right:0px;
  1697. border-radius:0px;
  1698. border-bottom-right-radius:0px;
  1699. border-bottom-left-radius:0px;
  1700. -moz-box-shadow:none;
  1701. -webkit-box-shadow:none;
  1702. box-shadow:none;
  1703. }
  1704. #u154880 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:29px;
  1708. top:631px;
  1709. width:375px;
  1710. height:213px;
  1711. display:flex;
  1712. }
  1713. #u154880 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:2px 2px 2px 2px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u154880_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. visibility:hidden;
  1725. }
  1726. #u154881_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:57px;
  1732. height:20px;
  1733. background:inherit;
  1734. background-color:rgba(255, 255, 255, 0);
  1735. border:none;
  1736. border-radius:0px;
  1737. -moz-box-shadow:none;
  1738. -webkit-box-shadow:none;
  1739. box-shadow:none;
  1740. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1741. font-weight:500;
  1742. font-style:normal;
  1743. }
  1744. #u154881 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:39px;
  1748. top:646px;
  1749. width:57px;
  1750. height:20px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1753. font-weight:500;
  1754. font-style:normal;
  1755. }
  1756. #u154881 .text {
  1757. position:absolute;
  1758. align-self:flex-start;
  1759. padding:0px 0px 0px 0px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u154881_text {
  1764. border-width:0px;
  1765. white-space:nowrap;
  1766. text-transform:none;
  1767. }
  1768. #u154882_div {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:355px;
  1774. height:70px;
  1775. background:inherit;
  1776. background-color:rgba(51, 51, 51, 1);
  1777. border:none;
  1778. border-radius:4px;
  1779. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1780. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1781. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1782. }
  1783. #u154882 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:39px;
  1787. top:675px;
  1788. width:355px;
  1789. height:70px;
  1790. display:flex;
  1791. }
  1792. #u154882 .text {
  1793. position:absolute;
  1794. align-self:center;
  1795. padding:2px 2px 2px 2px;
  1796. box-sizing:border-box;
  1797. width:100%;
  1798. }
  1799. #u154882_text {
  1800. border-width:0px;
  1801. word-wrap:break-word;
  1802. text-transform:none;
  1803. visibility:hidden;
  1804. }
  1805. #u154883_img {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:29px;
  1811. height:29px;
  1812. }
  1813. #u154883 {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:49px;
  1817. top:689px;
  1818. width:29px;
  1819. height:29px;
  1820. display:flex;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:14px;
  1825. }
  1826. #u154883 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u154883_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u154884_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:73px;
  1844. height:25px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 0);
  1847. border:none;
  1848. border-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1853. font-weight:500;
  1854. font-style:normal;
  1855. font-size:18px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u154884 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:92px;
  1862. top:691px;
  1863. width:73px;
  1864. height:25px;
  1865. display:flex;
  1866. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1867. font-weight:500;
  1868. font-style:normal;
  1869. font-size:18px;
  1870. color:#FFFFFF;
  1871. }
  1872. #u154884 .text {
  1873. position:absolute;
  1874. align-self:flex-start;
  1875. padding:0px 0px 0px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u154884_text {
  1880. border-width:0px;
  1881. white-space:nowrap;
  1882. text-transform:none;
  1883. }
  1884. #u154885_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:20px;
  1890. height:20px;
  1891. }
  1892. #u154885 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:356px;
  1896. top:704px;
  1897. width:20px;
  1898. height:20px;
  1899. display:flex;
  1900. }
  1901. #u154885 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 2px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u154885_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. visibility:hidden;
  1913. }
  1914. #u154886_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:189px;
  1920. height:17px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 0);
  1923. border:none;
  1924. border-radius:0px;
  1925. -moz-box-shadow:none;
  1926. -webkit-box-shadow:none;
  1927. box-shadow:none;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. color:#FFFFFF;
  1933. }
  1934. #u154886 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:92px;
  1938. top:716px;
  1939. width:189px;
  1940. height:17px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. color:#FFFFFF;
  1947. }
  1948. #u154886 .text {
  1949. position:absolute;
  1950. align-self:flex-start;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u154886_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u154887 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:0px;
  1966. height:0px;
  1967. }
  1968. #u154888_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:170px;
  1974. height:70px;
  1975. background:inherit;
  1976. background-color:rgba(51, 51, 51, 1);
  1977. border:none;
  1978. border-radius:4px;
  1979. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1980. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1981. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1982. }
  1983. #u154888 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:39px;
  1987. top:755px;
  1988. width:170px;
  1989. height:70px;
  1990. display:flex;
  1991. }
  1992. #u154888 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u154888_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u154889_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:29px;
  2011. height:29px;
  2012. }
  2013. #u154889 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:49px;
  2017. top:769px;
  2018. width:29px;
  2019. height:29px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:14px;
  2025. }
  2026. #u154889 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 2px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u154889_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u154890_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:73px;
  2044. height:25px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border:none;
  2048. border-radius:0px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2053. font-weight:500;
  2054. font-style:normal;
  2055. font-size:18px;
  2056. color:#FFFFFF;
  2057. }
  2058. #u154890 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:92px;
  2062. top:771px;
  2063. width:73px;
  2064. height:25px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2067. font-weight:500;
  2068. font-style:normal;
  2069. font-size:18px;
  2070. color:#FFFFFF;
  2071. }
  2072. #u154890 .text {
  2073. position:absolute;
  2074. align-self:flex-start;
  2075. padding:0px 0px 0px 0px;
  2076. box-sizing:border-box;
  2077. width:100%;
  2078. }
  2079. #u154890_text {
  2080. border-width:0px;
  2081. white-space:nowrap;
  2082. text-transform:none;
  2083. }
  2084. #u154891_div {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:97px;
  2090. height:17px;
  2091. background:inherit;
  2092. background-color:rgba(255, 255, 255, 0);
  2093. border:none;
  2094. border-radius:0px;
  2095. -moz-box-shadow:none;
  2096. -webkit-box-shadow:none;
  2097. box-shadow:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. color:#FFFFFF;
  2103. }
  2104. #u154891 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:92px;
  2108. top:796px;
  2109. width:97px;
  2110. height:17px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:12px;
  2116. color:#FFFFFF;
  2117. }
  2118. #u154891 .text {
  2119. position:absolute;
  2120. align-self:flex-start;
  2121. padding:0px 0px 0px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u154891_text {
  2126. border-width:0px;
  2127. white-space:nowrap;
  2128. text-transform:none;
  2129. }
  2130. #u154892 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:0px;
  2136. height:0px;
  2137. }
  2138. #u154893_div {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:0px;
  2142. top:0px;
  2143. width:170px;
  2144. height:70px;
  2145. background:inherit;
  2146. background-color:rgba(51, 51, 51, 1);
  2147. border:none;
  2148. border-radius:4px;
  2149. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2150. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2151. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2152. }
  2153. #u154893 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:224px;
  2157. top:755px;
  2158. width:170px;
  2159. height:70px;
  2160. display:flex;
  2161. }
  2162. #u154893 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 2px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u154893_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u154894_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:29px;
  2181. height:29px;
  2182. }
  2183. #u154894 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:234px;
  2187. top:769px;
  2188. width:29px;
  2189. height:29px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. }
  2196. #u154894 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:2px 2px 2px 2px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u154894_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u154895_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:73px;
  2214. height:25px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2223. font-weight:500;
  2224. font-style:normal;
  2225. font-size:18px;
  2226. color:#FFFFFF;
  2227. }
  2228. #u154895 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:277px;
  2232. top:771px;
  2233. width:73px;
  2234. height:25px;
  2235. display:flex;
  2236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2237. font-weight:500;
  2238. font-style:normal;
  2239. font-size:18px;
  2240. color:#FFFFFF;
  2241. }
  2242. #u154895 .text {
  2243. position:absolute;
  2244. align-self:flex-start;
  2245. padding:0px 0px 0px 0px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u154895_text {
  2250. border-width:0px;
  2251. white-space:nowrap;
  2252. text-transform:none;
  2253. }
  2254. #u154896_div {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:97px;
  2260. height:17px;
  2261. background:inherit;
  2262. background-color:rgba(255, 255, 255, 0);
  2263. border:none;
  2264. border-radius:0px;
  2265. -moz-box-shadow:none;
  2266. -webkit-box-shadow:none;
  2267. box-shadow:none;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:12px;
  2272. color:#FFFFFF;
  2273. }
  2274. #u154896 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:277px;
  2278. top:796px;
  2279. width:97px;
  2280. height:17px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u154896 .text {
  2289. position:absolute;
  2290. align-self:flex-start;
  2291. padding:0px 0px 0px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u154896_text {
  2296. border-width:0px;
  2297. white-space:nowrap;
  2298. text-transform:none;
  2299. }
  2300. #u154897_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:13px;
  2306. height:19px;
  2307. }
  2308. #u154897 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:44px;
  2312. top:77px;
  2313. width:13px;
  2314. height:19px;
  2315. display:flex;
  2316. }
  2317. #u154897 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:2px 2px 2px 2px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u154897_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. visibility:hidden;
  2329. }
  2330. #u154898 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:0px;
  2336. height:0px;
  2337. }
  2338. #u154899_div {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:30px;
  2344. height:30px;
  2345. background:inherit;
  2346. background-color:rgba(255, 255, 255, 1);
  2347. box-sizing:border-box;
  2348. border-width:1px;
  2349. border-style:solid;
  2350. border-color:rgba(121, 121, 121, 1);
  2351. border-radius:4px;
  2352. -moz-box-shadow:none;
  2353. -webkit-box-shadow:none;
  2354. box-shadow:none;
  2355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2356. font-weight:400;
  2357. font-style:normal;
  2358. font-size:8px;
  2359. }
  2360. #u154899 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:237px;
  2364. top:553px;
  2365. width:30px;
  2366. height:30px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:8px;
  2372. }
  2373. #u154899 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u154899_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. }
  2385. #u154900_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:49px;
  2391. height:17px;
  2392. background:inherit;
  2393. background-color:rgba(255, 255, 255, 0);
  2394. border:none;
  2395. border-radius:0px;
  2396. -moz-box-shadow:none;
  2397. -webkit-box-shadow:none;
  2398. box-shadow:none;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. }
  2404. #u154900 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:227px;
  2408. top:587px;
  2409. width:49px;
  2410. height:17px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:12px;
  2416. }
  2417. #u154900 .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. #u154900_text {
  2425. border-width:0px;
  2426. white-space:nowrap;
  2427. text-transform:none;
  2428. }
  2429. #u154901_div {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:57px;
  2435. height:20px;
  2436. background:inherit;
  2437. background-color:rgba(255, 255, 255, 0);
  2438. border:none;
  2439. border-radius:0px;
  2440. -moz-box-shadow:none;
  2441. -webkit-box-shadow:none;
  2442. box-shadow:none;
  2443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. }
  2447. #u154901 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:44px;
  2451. top:115px;
  2452. width:57px;
  2453. height:20px;
  2454. display:flex;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. }
  2459. #u154901 .text {
  2460. position:absolute;
  2461. align-self:flex-start;
  2462. padding:0px 0px 0px 0px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u154901_text {
  2467. border-width:0px;
  2468. white-space:nowrap;
  2469. text-transform:none;
  2470. }
  2471. #u154902_div {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:29px;
  2477. height:37px;
  2478. background:inherit;
  2479. background-color:rgba(255, 255, 255, 0);
  2480. border:none;
  2481. border-radius:0px;
  2482. -moz-box-shadow:none;
  2483. -webkit-box-shadow:none;
  2484. box-shadow:none;
  2485. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:28px;
  2489. }
  2490. #u154902 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:367px;
  2494. top:105px;
  2495. width:29px;
  2496. height:37px;
  2497. display:flex;
  2498. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:28px;
  2502. }
  2503. #u154902 .text {
  2504. position:absolute;
  2505. align-self:flex-start;
  2506. padding:0px 0px 0px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u154902_text {
  2511. border-width:0px;
  2512. white-space:nowrap;
  2513. text-transform:none;
  2514. }
  2515. #u154903 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:0px;
  2521. height:0px;
  2522. }
  2523. #u154904_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:30px;
  2529. height:30px;
  2530. background:inherit;
  2531. background-color:rgba(255, 255, 255, 1);
  2532. box-sizing:border-box;
  2533. border-width:1px;
  2534. border-style:solid;
  2535. border-color:rgba(121, 121, 121, 1);
  2536. border-radius:4px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:8px;
  2544. }
  2545. #u154904 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:325px;
  2549. top:411px;
  2550. width:30px;
  2551. height:30px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:8px;
  2557. }
  2558. #u154904 .text {
  2559. position:absolute;
  2560. align-self:center;
  2561. padding:2px 2px 2px 2px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u154904_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. }
  2570. #u154905_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:37px;
  2576. height:17px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border:none;
  2580. border-radius:0px;
  2581. -moz-box-shadow:none;
  2582. -webkit-box-shadow:none;
  2583. box-shadow:none;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. }
  2589. #u154905 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:322px;
  2593. top:446px;
  2594. width:37px;
  2595. height:17px;
  2596. display:flex;
  2597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2598. font-weight:400;
  2599. font-style:normal;
  2600. font-size:12px;
  2601. }
  2602. #u154905 .text {
  2603. position:absolute;
  2604. align-self:flex-start;
  2605. padding:0px 0px 0px 0px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u154905_text {
  2610. border-width:0px;
  2611. white-space:nowrap;
  2612. text-transform:none;
  2613. }
  2614. #u154906 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:0px;
  2620. height:0px;
  2621. }
  2622. #u154907_div {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:30px;
  2628. height:30px;
  2629. background:inherit;
  2630. background-color:rgba(255, 255, 255, 1);
  2631. box-sizing:border-box;
  2632. border-width:1px;
  2633. border-style:solid;
  2634. border-color:rgba(121, 121, 121, 1);
  2635. border-radius:4px;
  2636. -moz-box-shadow:none;
  2637. -webkit-box-shadow:none;
  2638. box-shadow:none;
  2639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:8px;
  2643. }
  2644. #u154907 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:58px;
  2648. top:482px;
  2649. width:30px;
  2650. height:30px;
  2651. display:flex;
  2652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:8px;
  2656. }
  2657. #u154907 .text {
  2658. position:absolute;
  2659. align-self:center;
  2660. padding:2px 2px 2px 2px;
  2661. box-sizing:border-box;
  2662. width:100%;
  2663. }
  2664. #u154907_text {
  2665. border-width:0px;
  2666. word-wrap:break-word;
  2667. text-transform:none;
  2668. }
  2669. #u154908_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:49px;
  2675. height:17px;
  2676. background:inherit;
  2677. background-color:rgba(255, 255, 255, 0);
  2678. border:none;
  2679. border-radius:0px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. }
  2688. #u154908 {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:49px;
  2692. top:517px;
  2693. width:49px;
  2694. height:17px;
  2695. display:flex;
  2696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2697. font-weight:400;
  2698. font-style:normal;
  2699. font-size:12px;
  2700. }
  2701. #u154908 .text {
  2702. position:absolute;
  2703. align-self:flex-start;
  2704. padding:0px 0px 0px 0px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u154908_text {
  2709. border-width:0px;
  2710. white-space:nowrap;
  2711. text-transform:none;
  2712. }
  2713. #u154909 {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:0px;
  2719. height:0px;
  2720. }
  2721. #u154910_div {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:30px;
  2727. height:30px;
  2728. background:inherit;
  2729. background-color:rgba(255, 255, 255, 1);
  2730. box-sizing:border-box;
  2731. border-width:1px;
  2732. border-style:solid;
  2733. border-color:rgba(121, 121, 121, 1);
  2734. border-radius:4px;
  2735. -moz-box-shadow:none;
  2736. -webkit-box-shadow:none;
  2737. box-shadow:none;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:8px;
  2742. }
  2743. #u154910 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:326px;
  2747. top:553px;
  2748. width:30px;
  2749. height:30px;
  2750. display:flex;
  2751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2752. font-weight:400;
  2753. font-style:normal;
  2754. font-size:8px;
  2755. }
  2756. #u154910 .text {
  2757. position:absolute;
  2758. align-self:center;
  2759. padding:2px 2px 2px 2px;
  2760. box-sizing:border-box;
  2761. width:100%;
  2762. }
  2763. #u154910_text {
  2764. border-width:0px;
  2765. word-wrap:break-word;
  2766. text-transform:none;
  2767. }
  2768. #u154911_div {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:49px;
  2774. height:17px;
  2775. background:inherit;
  2776. background-color:rgba(255, 255, 255, 0);
  2777. border:none;
  2778. border-radius:0px;
  2779. -moz-box-shadow:none;
  2780. -webkit-box-shadow:none;
  2781. box-shadow:none;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u154911 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:316px;
  2791. top:587px;
  2792. width:49px;
  2793. height:17px;
  2794. display:flex;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:12px;
  2799. }
  2800. #u154911 .text {
  2801. position:absolute;
  2802. align-self:flex-start;
  2803. padding:0px 0px 0px 0px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u154911_text {
  2808. border-width:0px;
  2809. white-space:nowrap;
  2810. text-transform:none;
  2811. }
  2812. #u154912 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:0px;
  2818. height:0px;
  2819. }
  2820. #u154913_div {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:30px;
  2826. height:30px;
  2827. background:inherit;
  2828. background-color:rgba(255, 255, 255, 1);
  2829. box-sizing:border-box;
  2830. border-width:1px;
  2831. border-style:solid;
  2832. border-color:rgba(121, 121, 121, 1);
  2833. border-radius:4px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:8px;
  2841. }
  2842. #u154913 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:58px;
  2846. top:554px;
  2847. width:30px;
  2848. height:30px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:8px;
  2854. }
  2855. #u154913 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u154913_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. }
  2867. #u154914_div {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:49px;
  2873. height:17px;
  2874. background:inherit;
  2875. background-color:rgba(255, 255, 255, 0);
  2876. border:none;
  2877. border-radius:0px;
  2878. -moz-box-shadow:none;
  2879. -webkit-box-shadow:none;
  2880. box-shadow:none;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. }
  2886. #u154914 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:49px;
  2890. top:589px;
  2891. width:49px;
  2892. height:17px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. }
  2899. #u154914 .text {
  2900. position:absolute;
  2901. align-self:flex-start;
  2902. padding:0px 0px 0px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u154914_text {
  2907. border-width:0px;
  2908. white-space:nowrap;
  2909. text-transform:none;
  2910. }
  2911. #u154915 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:0px;
  2917. height:0px;
  2918. }
  2919. #u154916_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:30px;
  2925. height:30px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 1);
  2928. box-sizing:border-box;
  2929. border-width:1px;
  2930. border-style:solid;
  2931. border-color:rgba(121, 121, 121, 1);
  2932. border-radius:4px;
  2933. -moz-box-shadow:none;
  2934. -webkit-box-shadow:none;
  2935. box-shadow:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:8px;
  2940. }
  2941. #u154916 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:147px;
  2945. top:554px;
  2946. width:30px;
  2947. height:30px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:8px;
  2953. }
  2954. #u154916 .text {
  2955. position:absolute;
  2956. align-self:center;
  2957. padding:2px 2px 2px 2px;
  2958. box-sizing:border-box;
  2959. width:100%;
  2960. }
  2961. #u154916_text {
  2962. border-width:0px;
  2963. word-wrap:break-word;
  2964. text-transform:none;
  2965. }
  2966. #u154917_div {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:49px;
  2972. height:17px;
  2973. background:inherit;
  2974. background-color:rgba(255, 255, 255, 0);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. }
  2985. #u154917 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:138px;
  2989. top:589px;
  2990. width:49px;
  2991. height:17px;
  2992. display:flex;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. }
  2998. #u154917 .text {
  2999. position:absolute;
  3000. align-self:flex-start;
  3001. padding:0px 0px 0px 0px;
  3002. box-sizing:border-box;
  3003. width:100%;
  3004. }
  3005. #u154917_text {
  3006. border-width:0px;
  3007. white-space:nowrap;
  3008. text-transform:none;
  3009. }
  3010. #u154918_img {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:375px;
  3016. height:798px;
  3017. }
  3018. #u154918 {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:29px;
  3022. top:844px;
  3023. width:375px;
  3024. height:798px;
  3025. display:flex;
  3026. }
  3027. #u154918 .text {
  3028. position:absolute;
  3029. align-self:center;
  3030. padding:2px 2px 2px 2px;
  3031. box-sizing:border-box;
  3032. width:100%;
  3033. }
  3034. #u154918_text {
  3035. border-width:0px;
  3036. word-wrap:break-word;
  3037. text-transform:none;
  3038. visibility:hidden;
  3039. }
  3040. #u154919 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:0px;
  3046. height:0px;
  3047. }
  3048. #u154920_div {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:375px;
  3054. height:50px;
  3055. background:inherit;
  3056. background-color:rgba(255, 255, 255, 1);
  3057. box-sizing:border-box;
  3058. border-width:1px;
  3059. border-style:solid;
  3060. border-color:rgba(242, 242, 242, 1);
  3061. border-radius:26px;
  3062. border-top-left-radius:0px;
  3063. border-top-right-radius:0px;
  3064. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3065. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3066. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3067. }
  3068. #u154920 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:29px;
  3072. top:1649px;
  3073. width:375px;
  3074. height:50px;
  3075. display:flex;
  3076. }
  3077. #u154920 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u154920_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u154921 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:0px;
  3096. height:0px;
  3097. }
  3098. #u154922_div {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:77px;
  3104. height:50px;
  3105. background:inherit;
  3106. background-color:rgba(255, 255, 255, 1);
  3107. border:none;
  3108. border-radius:0px;
  3109. border-top-left-radius:0px;
  3110. border-top-right-radius:0px;
  3111. -moz-box-shadow:none;
  3112. -webkit-box-shadow:none;
  3113. box-shadow:none;
  3114. }
  3115. #u154922 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:178px;
  3119. top:1649px;
  3120. width:77px;
  3121. height:50px;
  3122. display:flex;
  3123. }
  3124. #u154922 .text {
  3125. position:absolute;
  3126. align-self:center;
  3127. padding:2px 2px 2px 2px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u154922_text {
  3132. border-width:0px;
  3133. word-wrap:break-word;
  3134. text-transform:none;
  3135. visibility:hidden;
  3136. }
  3137. #u154923 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:0px;
  3143. height:0px;
  3144. }
  3145. #u154924_img {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:38px;
  3151. height:38px;
  3152. }
  3153. #u154924 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:198px;
  3157. top:1639px;
  3158. width:38px;
  3159. height:38px;
  3160. display:flex;
  3161. font-size:12px;
  3162. color:#FFFFFF;
  3163. }
  3164. #u154924 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 2px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u154924_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. }
  3176. #u154925_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:49px;
  3182. height:17px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 0);
  3185. border:none;
  3186. border-radius:0px;
  3187. -moz-box-shadow:none;
  3188. -webkit-box-shadow:none;
  3189. box-shadow:none;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. }
  3195. #u154925 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:192px;
  3199. top:1678px;
  3200. width:49px;
  3201. height:17px;
  3202. display:flex;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:12px;
  3207. }
  3208. #u154925 .text {
  3209. position:absolute;
  3210. align-self:flex-start;
  3211. padding:0px 0px 0px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u154925_text {
  3216. border-width:0px;
  3217. white-space:nowrap;
  3218. text-transform:none;
  3219. }
  3220. #u154926 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:0px;
  3226. height:0px;
  3227. }
  3228. #u154927_div {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:75px;
  3234. height:50px;
  3235. background:inherit;
  3236. background-color:rgba(24, 144, 255, 1);
  3237. border:none;
  3238. border-right:0px;
  3239. border-radius:26px;
  3240. border-top-left-radius:0px;
  3241. border-top-right-radius:0px;
  3242. border-bottom-right-radius:0px;
  3243. -moz-box-shadow:none;
  3244. -webkit-box-shadow:none;
  3245. box-shadow:none;
  3246. }
  3247. #u154927 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:29px;
  3251. top:1649px;
  3252. width:75px;
  3253. height:50px;
  3254. display:flex;
  3255. }
  3256. #u154927 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 2px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u154927_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u154928 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:0px;
  3275. height:0px;
  3276. }
  3277. #u154929_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:24px;
  3283. height:24px;
  3284. }
  3285. #u154929 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:54px;
  3289. top:1653px;
  3290. width:24px;
  3291. height:24px;
  3292. display:flex;
  3293. font-size:8px;
  3294. }
  3295. #u154929 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u154929_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u154930_div {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:25px;
  3313. height:17px;
  3314. background:inherit;
  3315. background-color:rgba(255, 255, 255, 0);
  3316. border:none;
  3317. border-radius:0px;
  3318. -moz-box-shadow:none;
  3319. -webkit-box-shadow:none;
  3320. box-shadow:none;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:12px;
  3325. color:#FFFFFF;
  3326. }
  3327. #u154930 {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:54px;
  3331. top:1678px;
  3332. width:25px;
  3333. height:17px;
  3334. display:flex;
  3335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3336. font-weight:400;
  3337. font-style:normal;
  3338. font-size:12px;
  3339. color:#FFFFFF;
  3340. }
  3341. #u154930 .text {
  3342. position:absolute;
  3343. align-self:flex-start;
  3344. padding:0px 0px 0px 0px;
  3345. box-sizing:border-box;
  3346. width:100%;
  3347. }
  3348. #u154930_text {
  3349. border-width:0px;
  3350. white-space:nowrap;
  3351. text-transform:none;
  3352. }
  3353. #u154931 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:0px;
  3359. height:0px;
  3360. }
  3361. #u154932_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:75px;
  3367. height:50px;
  3368. background:inherit;
  3369. background-color:rgba(255, 255, 255, 1);
  3370. border:none;
  3371. border-left:0px;
  3372. border-radius:26px;
  3373. border-top-left-radius:0px;
  3374. border-top-right-radius:0px;
  3375. border-bottom-left-radius:0px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. }
  3380. #u154932 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:329px;
  3384. top:1649px;
  3385. width:75px;
  3386. height:50px;
  3387. display:flex;
  3388. }
  3389. #u154932 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u154932_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u154933 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:0px;
  3408. height:0px;
  3409. }
  3410. #u154934_img {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:24px;
  3416. height:24px;
  3417. }
  3418. #u154934 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:354px;
  3422. top:1655px;
  3423. width:24px;
  3424. height:24px;
  3425. display:flex;
  3426. font-size:8px;
  3427. }
  3428. #u154934 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u154934_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. }
  3440. #u154935_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:25px;
  3446. height:17px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 0);
  3449. border:none;
  3450. border-radius:0px;
  3451. -moz-box-shadow:none;
  3452. -webkit-box-shadow:none;
  3453. box-shadow:none;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:12px;
  3458. }
  3459. #u154935 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:354px;
  3463. top:1680px;
  3464. width:25px;
  3465. height:17px;
  3466. display:flex;
  3467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. }
  3472. #u154935 .text {
  3473. position:absolute;
  3474. align-self:flex-start;
  3475. padding:0px 0px 0px 0px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u154935_text {
  3480. border-width:0px;
  3481. white-space:nowrap;
  3482. text-transform:none;
  3483. }
  3484. #u154936 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:0px;
  3490. height:0px;
  3491. }
  3492. #u154937_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:75px;
  3498. height:50px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 1);
  3501. border:none;
  3502. border-radius:0px;
  3503. border-top-left-radius:0px;
  3504. border-top-right-radius:0px;
  3505. -moz-box-shadow:none;
  3506. -webkit-box-shadow:none;
  3507. box-shadow:none;
  3508. }
  3509. #u154937 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:254px;
  3513. top:1649px;
  3514. width:75px;
  3515. height:50px;
  3516. display:flex;
  3517. }
  3518. #u154937 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:2px 2px 2px 2px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u154937_text {
  3526. border-width:0px;
  3527. word-wrap:break-word;
  3528. text-transform:none;
  3529. visibility:hidden;
  3530. }
  3531. #u154938 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:0px;
  3537. height:0px;
  3538. }
  3539. #u154939_img {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:24px;
  3545. height:24px;
  3546. }
  3547. #u154939 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:279px;
  3551. top:1653px;
  3552. width:24px;
  3553. height:24px;
  3554. display:flex;
  3555. font-size:8px;
  3556. }
  3557. #u154939 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:2px 2px 2px 2px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u154939_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. }
  3569. #u154940_div {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:25px;
  3575. height:17px;
  3576. background:inherit;
  3577. background-color:rgba(255, 255, 255, 0);
  3578. border:none;
  3579. border-radius:0px;
  3580. -moz-box-shadow:none;
  3581. -webkit-box-shadow:none;
  3582. box-shadow:none;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:12px;
  3587. }
  3588. #u154940 {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:279px;
  3592. top:1678px;
  3593. width:25px;
  3594. height:17px;
  3595. display:flex;
  3596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3597. font-weight:400;
  3598. font-style:normal;
  3599. font-size:12px;
  3600. }
  3601. #u154940 .text {
  3602. position:absolute;
  3603. align-self:flex-start;
  3604. padding:0px 0px 0px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u154940_text {
  3609. border-width:0px;
  3610. white-space:nowrap;
  3611. text-transform:none;
  3612. }
  3613. #u154941 {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:0px;
  3619. height:0px;
  3620. }
  3621. #u154942_div {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:75px;
  3627. height:50px;
  3628. background:inherit;
  3629. background-color:rgba(255, 255, 255, 1);
  3630. border:none;
  3631. border-radius:0px;
  3632. border-top-left-radius:0px;
  3633. border-top-right-radius:0px;
  3634. -moz-box-shadow:none;
  3635. -webkit-box-shadow:none;
  3636. box-shadow:none;
  3637. }
  3638. #u154942 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:104px;
  3642. top:1649px;
  3643. width:75px;
  3644. height:50px;
  3645. display:flex;
  3646. }
  3647. #u154942 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 2px 2px 2px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u154942_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. visibility:hidden;
  3659. }
  3660. #u154943 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:0px;
  3666. height:0px;
  3667. }
  3668. #u154944_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:24px;
  3674. height:24px;
  3675. }
  3676. #u154944 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:129px;
  3680. top:1653px;
  3681. width:24px;
  3682. height:24px;
  3683. display:flex;
  3684. font-size:8px;
  3685. }
  3686. #u154944 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u154944_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. }
  3698. #u154945_div {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:37px;
  3704. height:17px;
  3705. background:inherit;
  3706. background-color:rgba(255, 255, 255, 0);
  3707. border:none;
  3708. border-radius:0px;
  3709. -moz-box-shadow:none;
  3710. -webkit-box-shadow:none;
  3711. box-shadow:none;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:12px;
  3716. }
  3717. #u154945 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:123px;
  3721. top:1678px;
  3722. width:37px;
  3723. height:17px;
  3724. display:flex;
  3725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:12px;
  3729. }
  3730. #u154945 .text {
  3731. position:absolute;
  3732. align-self:flex-start;
  3733. padding:0px 0px 0px 0px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u154945_text {
  3738. border-width:0px;
  3739. white-space:nowrap;
  3740. text-transform:none;
  3741. }
  3742. #u154946 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:0px;
  3748. height:0px;
  3749. }
  3750. #u154947_div {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:30px;
  3756. height:30px;
  3757. background:inherit;
  3758. background-color:rgba(255, 255, 255, 1);
  3759. box-sizing:border-box;
  3760. border-width:1px;
  3761. border-style:solid;
  3762. border-color:rgba(121, 121, 121, 1);
  3763. border-radius:4px;
  3764. -moz-box-shadow:none;
  3765. -webkit-box-shadow:none;
  3766. box-shadow:none;
  3767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:8px;
  3771. }
  3772. #u154947 {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:147px;
  3776. top:482px;
  3777. width:30px;
  3778. height:30px;
  3779. display:flex;
  3780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3781. font-weight:400;
  3782. font-style:normal;
  3783. font-size:8px;
  3784. }
  3785. #u154947 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 2px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u154947_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. }
  3797. #u154948_div {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:49px;
  3803. height:17px;
  3804. background:inherit;
  3805. background-color:rgba(255, 255, 255, 0);
  3806. border:none;
  3807. border-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:12px;
  3815. }
  3816. #u154948 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:138px;
  3820. top:517px;
  3821. width:49px;
  3822. height:17px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. }
  3829. #u154948 .text {
  3830. position:absolute;
  3831. align-self:flex-start;
  3832. padding:0px 0px 0px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u154948_text {
  3837. border-width:0px;
  3838. white-space:nowrap;
  3839. text-transform:none;
  3840. }
  3841. #u154950_img {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:433px;
  3847. height:865px;
  3848. }
  3849. #u154950 {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:461px;
  3853. top:0px;
  3854. width:433px;
  3855. height:865px;
  3856. display:flex;
  3857. }
  3858. #u154950 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 2px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u154950_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u154951_div {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:375px;
  3877. height:40px;
  3878. background:inherit;
  3879. background-color:rgba(255, 255, 255, 1);
  3880. box-sizing:border-box;
  3881. border-width:1px;
  3882. border-style:solid;
  3883. border-color:rgba(215, 215, 215, 1);
  3884. border-left:0px;
  3885. border-top:0px;
  3886. border-right:0px;
  3887. border-radius:0px;
  3888. border-bottom-right-radius:0px;
  3889. border-bottom-left-radius:0px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. }
  3894. #u154951 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:490px;
  3898. top:67px;
  3899. width:375px;
  3900. height:40px;
  3901. display:flex;
  3902. }
  3903. #u154951 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u154951_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u154952 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:0px;
  3922. height:0px;
  3923. }
  3924. #u154953_div {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:88px;
  3930. height:32px;
  3931. background:inherit;
  3932. background-color:rgba(255, 255, 255, 1);
  3933. box-sizing:border-box;
  3934. border-width:1px;
  3935. border-style:solid;
  3936. border-color:rgba(242, 242, 242, 1);
  3937. border-radius:33px;
  3938. -moz-box-shadow:none;
  3939. -webkit-box-shadow:none;
  3940. box-shadow:none;
  3941. }
  3942. #u154953 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:770px;
  3946. top:71px;
  3947. width:88px;
  3948. height:32px;
  3949. display:flex;
  3950. }
  3951. #u154953 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u154953_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u154954 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:0px;
  3970. height:0px;
  3971. }
  3972. #u154955_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:18px;
  3978. height:18px;
  3979. }
  3980. #u154955 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:833px;
  3984. top:78px;
  3985. width:18px;
  3986. height:18px;
  3987. display:flex;
  3988. }
  3989. #u154955 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 2px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u154955_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. visibility:hidden;
  4001. }
  4002. #u154956_img {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:6px;
  4008. height:6px;
  4009. }
  4010. #u154956 {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:839px;
  4014. top:84px;
  4015. width:6px;
  4016. height:6px;
  4017. display:flex;
  4018. }
  4019. #u154956 .text {
  4020. position:absolute;
  4021. align-self:center;
  4022. padding:2px 2px 2px 2px;
  4023. box-sizing:border-box;
  4024. width:100%;
  4025. }
  4026. #u154956_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u154957 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:0px;
  4038. height:0px;
  4039. }
  4040. #u154958_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:5px;
  4046. height:5px;
  4047. }
  4048. #u154958 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:784px;
  4052. top:85px;
  4053. width:5px;
  4054. height:5px;
  4055. display:flex;
  4056. }
  4057. #u154958 .text {
  4058. position:absolute;
  4059. align-self:center;
  4060. padding:2px 2px 2px 2px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u154958_text {
  4065. border-width:0px;
  4066. word-wrap:break-word;
  4067. text-transform:none;
  4068. visibility:hidden;
  4069. }
  4070. #u154959_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:5px;
  4076. height:5px;
  4077. }
  4078. #u154959 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:800px;
  4082. top:85px;
  4083. width:5px;
  4084. height:5px;
  4085. display:flex;
  4086. }
  4087. #u154959 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 2px 2px 2px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u154959_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u154960_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:7px;
  4106. height:7px;
  4107. }
  4108. #u154960 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:791px;
  4112. top:84px;
  4113. width:7px;
  4114. height:7px;
  4115. display:flex;
  4116. }
  4117. #u154960 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 2px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u154960_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u154961_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:19px;
  4136. height:2px;
  4137. }
  4138. #u154961 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:808px;
  4142. top:87px;
  4143. width:18px;
  4144. height:1px;
  4145. display:flex;
  4146. -webkit-transform:rotate(90deg);
  4147. -moz-transform:rotate(90deg);
  4148. -ms-transform:rotate(90deg);
  4149. transform:rotate(90deg);
  4150. }
  4151. #u154961 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u154961_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u154962_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:375px;
  4170. height:44px;
  4171. }
  4172. #u154962 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:490px;
  4176. top:24px;
  4177. width:375px;
  4178. height:44px;
  4179. display:flex;
  4180. }
  4181. #u154962 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 2px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u154962_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u154963_div {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:375px;
  4200. height:50px;
  4201. background:inherit;
  4202. background-color:rgba(255, 255, 255, 1);
  4203. box-sizing:border-box;
  4204. border-width:1px;
  4205. border-style:solid;
  4206. border-color:rgba(242, 242, 242, 1);
  4207. border-radius:26px;
  4208. border-top-left-radius:0px;
  4209. border-top-right-radius:0px;
  4210. -moz-box-shadow:none;
  4211. -webkit-box-shadow:none;
  4212. box-shadow:none;
  4213. }
  4214. #u154963 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:490px;
  4218. top:788px;
  4219. width:375px;
  4220. height:50px;
  4221. display:flex;
  4222. }
  4223. #u154963 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u154963_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u154964 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:0px;
  4242. height:0px;
  4243. }
  4244. #u154965_img {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:24px;
  4250. height:24px;
  4251. }
  4252. #u154965 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:530px;
  4256. top:792px;
  4257. width:24px;
  4258. height:24px;
  4259. display:flex;
  4260. font-size:8px;
  4261. }
  4262. #u154965 .text {
  4263. position:absolute;
  4264. align-self:center;
  4265. padding:2px 2px 2px 2px;
  4266. box-sizing:border-box;
  4267. width:100%;
  4268. }
  4269. #u154965_text {
  4270. border-width:0px;
  4271. word-wrap:break-word;
  4272. text-transform:none;
  4273. }
  4274. #u154966_div {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:25px;
  4280. height:17px;
  4281. background:inherit;
  4282. background-color:rgba(255, 255, 255, 0);
  4283. border:none;
  4284. border-radius:0px;
  4285. -moz-box-shadow:none;
  4286. -webkit-box-shadow:none;
  4287. box-shadow:none;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. }
  4293. #u154966 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:530px;
  4297. top:817px;
  4298. width:25px;
  4299. height:17px;
  4300. display:flex;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:12px;
  4305. }
  4306. #u154966 .text {
  4307. position:absolute;
  4308. align-self:flex-start;
  4309. padding:0px 0px 0px 0px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u154966_text {
  4314. border-width:0px;
  4315. white-space:nowrap;
  4316. text-transform:none;
  4317. }
  4318. #u154967 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:0px;
  4324. height:0px;
  4325. }
  4326. #u154968_img {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:24px;
  4332. height:24px;
  4333. }
  4334. #u154968 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:800px;
  4338. top:794px;
  4339. width:24px;
  4340. height:24px;
  4341. display:flex;
  4342. font-size:8px;
  4343. }
  4344. #u154968 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u154968_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u154969_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:25px;
  4362. height:17px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 0);
  4365. border:none;
  4366. border-radius:0px;
  4367. -moz-box-shadow:none;
  4368. -webkit-box-shadow:none;
  4369. box-shadow:none;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:12px;
  4374. }
  4375. #u154969 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:800px;
  4379. top:819px;
  4380. width:25px;
  4381. height:17px;
  4382. display:flex;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:12px;
  4387. }
  4388. #u154969 .text {
  4389. position:absolute;
  4390. align-self:flex-start;
  4391. padding:0px 0px 0px 0px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u154969_text {
  4396. border-width:0px;
  4397. white-space:nowrap;
  4398. text-transform:none;
  4399. }
  4400. #u154970_div {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:375px;
  4406. height:681px;
  4407. background:inherit;
  4408. background-color:rgba(242, 242, 242, 0.462745098039216);
  4409. border:none;
  4410. border-radius:0px;
  4411. -moz-box-shadow:none;
  4412. -webkit-box-shadow:none;
  4413. box-shadow:none;
  4414. }
  4415. #u154970 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:490px;
  4419. top:107px;
  4420. width:375px;
  4421. height:681px;
  4422. display:flex;
  4423. }
  4424. #u154970 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u154970_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u154971 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:0px;
  4443. height:0px;
  4444. }
  4445. #u154972_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:24px;
  4451. height:24px;
  4452. }
  4453. #u154972 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:712px;
  4457. top:792px;
  4458. width:24px;
  4459. height:24px;
  4460. display:flex;
  4461. font-size:8px;
  4462. }
  4463. #u154972 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 2px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u154972_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. }
  4475. #u154973_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:37px;
  4481. height:17px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-radius:0px;
  4486. -moz-box-shadow:none;
  4487. -webkit-box-shadow:none;
  4488. box-shadow:none;
  4489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. }
  4494. #u154973 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:706px;
  4498. top:817px;
  4499. width:37px;
  4500. height:17px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. }
  4507. #u154973 .text {
  4508. position:absolute;
  4509. align-self:flex-start;
  4510. padding:0px 0px 0px 0px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u154973_text {
  4515. border-width:0px;
  4516. white-space:nowrap;
  4517. text-transform:none;
  4518. }
  4519. #u154974 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:0px;
  4525. height:0px;
  4526. }
  4527. #u154975_img {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:24px;
  4533. height:24px;
  4534. }
  4535. #u154975 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:618px;
  4539. top:792px;
  4540. width:24px;
  4541. height:24px;
  4542. display:flex;
  4543. font-size:8px;
  4544. }
  4545. #u154975 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 2px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u154975_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. }
  4557. #u154976_div {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:37px;
  4563. height:17px;
  4564. background:inherit;
  4565. background-color:rgba(255, 255, 255, 0);
  4566. border:none;
  4567. border-radius:0px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:12px;
  4575. }
  4576. #u154976 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:612px;
  4580. top:817px;
  4581. width:37px;
  4582. height:17px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. }
  4589. #u154976 .text {
  4590. position:absolute;
  4591. align-self:flex-start;
  4592. padding:0px 0px 0px 0px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u154976_text {
  4597. border-width:0px;
  4598. white-space:nowrap;
  4599. text-transform:none;
  4600. }
  4601. #u154977_div {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:375px;
  4607. height:853px;
  4608. background:inherit;
  4609. background-color:rgba(255, 255, 255, 1);
  4610. box-sizing:border-box;
  4611. border-width:1px;
  4612. border-style:solid;
  4613. border-color:rgba(242, 242, 242, 1);
  4614. border-radius:26px;
  4615. border-top-left-radius:0px;
  4616. border-top-right-radius:0px;
  4617. -moz-box-shadow:none;
  4618. -webkit-box-shadow:none;
  4619. box-shadow:none;
  4620. }
  4621. #u154977 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:490px;
  4625. top:66px;
  4626. width:375px;
  4627. height:853px;
  4628. display:flex;
  4629. }
  4630. #u154977 .text {
  4631. position:absolute;
  4632. align-self:center;
  4633. padding:2px 2px 2px 2px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u154977_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u154978 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:0px;
  4649. height:0px;
  4650. }
  4651. #u154979_div {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:88px;
  4657. height:32px;
  4658. background:inherit;
  4659. background-color:rgba(255, 255, 255, 1);
  4660. box-sizing:border-box;
  4661. border-width:1px;
  4662. border-style:solid;
  4663. border-color:rgba(242, 242, 242, 1);
  4664. border-radius:33px;
  4665. -moz-box-shadow:none;
  4666. -webkit-box-shadow:none;
  4667. box-shadow:none;
  4668. }
  4669. #u154979 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:767px;
  4673. top:69px;
  4674. width:88px;
  4675. height:32px;
  4676. display:flex;
  4677. }
  4678. #u154979 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 2px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u154979_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u154980 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:0px;
  4697. height:0px;
  4698. }
  4699. #u154981_img {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:18px;
  4705. height:18px;
  4706. }
  4707. #u154981 {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:830px;
  4711. top:76px;
  4712. width:18px;
  4713. height:18px;
  4714. display:flex;
  4715. }
  4716. #u154981 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:2px 2px 2px 2px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u154981_text {
  4724. border-width:0px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. visibility:hidden;
  4728. }
  4729. #u154982_img {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:6px;
  4735. height:6px;
  4736. }
  4737. #u154982 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:836px;
  4741. top:82px;
  4742. width:6px;
  4743. height:6px;
  4744. display:flex;
  4745. }
  4746. #u154982 .text {
  4747. position:absolute;
  4748. align-self:center;
  4749. padding:2px 2px 2px 2px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u154982_text {
  4754. border-width:0px;
  4755. word-wrap:break-word;
  4756. text-transform:none;
  4757. visibility:hidden;
  4758. }
  4759. #u154983 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:0px;
  4765. height:0px;
  4766. }
  4767. #u154984_img {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:0px;
  4771. top:0px;
  4772. width:5px;
  4773. height:5px;
  4774. }
  4775. #u154984 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:781px;
  4779. top:83px;
  4780. width:5px;
  4781. height:5px;
  4782. display:flex;
  4783. }
  4784. #u154984 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 2px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u154984_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u154985_img {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:5px;
  4803. height:5px;
  4804. }
  4805. #u154985 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:797px;
  4809. top:83px;
  4810. width:5px;
  4811. height:5px;
  4812. display:flex;
  4813. }
  4814. #u154985 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 2px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u154985_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u154986_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:7px;
  4833. height:7px;
  4834. }
  4835. #u154986 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:788px;
  4839. top:82px;
  4840. width:7px;
  4841. height:7px;
  4842. display:flex;
  4843. }
  4844. #u154986 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u154986_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u154987_img {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:19px;
  4863. height:2px;
  4864. }
  4865. #u154987 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:805px;
  4869. top:85px;
  4870. width:18px;
  4871. height:1px;
  4872. display:flex;
  4873. -webkit-transform:rotate(90deg);
  4874. -moz-transform:rotate(90deg);
  4875. -ms-transform:rotate(90deg);
  4876. transform:rotate(90deg);
  4877. }
  4878. #u154987 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 2px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u154987_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u154988 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:0px;
  4897. height:0px;
  4898. }
  4899. #u154989_div {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:0px;
  4903. top:0px;
  4904. width:12px;
  4905. height:12px;
  4906. background:inherit;
  4907. background-color:rgba(255, 255, 255, 0);
  4908. box-sizing:border-box;
  4909. border-width:2px;
  4910. border-style:solid;
  4911. border-color:rgba(51, 51, 51, 1);
  4912. border-right:0px;
  4913. border-bottom:0px;
  4914. border-radius:0px;
  4915. border-top-right-radius:0px;
  4916. border-bottom-left-radius:0px;
  4917. -moz-box-shadow:none;
  4918. -webkit-box-shadow:none;
  4919. box-shadow:none;
  4920. }
  4921. #u154989 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:506px;
  4925. top:79px;
  4926. width:12px;
  4927. height:12px;
  4928. display:flex;
  4929. -webkit-transform:rotate(315deg);
  4930. -moz-transform:rotate(315deg);
  4931. -ms-transform:rotate(315deg);
  4932. transform:rotate(315deg);
  4933. }
  4934. #u154989 .text {
  4935. position:absolute;
  4936. align-self:center;
  4937. padding:2px 2px 2px 2px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u154989_text {
  4942. border-width:0px;
  4943. word-wrap:break-word;
  4944. text-transform:none;
  4945. visibility:hidden;
  4946. }
  4947. #u154990_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:57px;
  4953. height:20px;
  4954. background:inherit;
  4955. background-color:rgba(255, 255, 255, 0);
  4956. border:none;
  4957. border-radius:0px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. }
  4965. #u154990 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:523px;
  4969. top:75px;
  4970. width:57px;
  4971. height:20px;
  4972. display:flex;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. }
  4977. #u154990 .text {
  4978. position:absolute;
  4979. align-self:flex-start;
  4980. padding:0px 0px 0px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u154990_text {
  4985. border-width:0px;
  4986. white-space:nowrap;
  4987. text-transform:none;
  4988. }
  4989. #u154991_div {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:67px;
  4995. height:20px;
  4996. background:inherit;
  4997. background-color:rgba(255, 255, 255, 0);
  4998. box-sizing:border-box;
  4999. border-width:3px;
  5000. border-style:solid;
  5001. border-color:rgba(121, 121, 121, 1);
  5002. border-top:0px;
  5003. border-right:0px;
  5004. border-bottom:0px;
  5005. border-radius:0px;
  5006. border-top-left-radius:0px;
  5007. border-bottom-left-radius:0px;
  5008. -moz-box-shadow:none;
  5009. -webkit-box-shadow:none;
  5010. box-shadow:none;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. }
  5015. #u154991 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:513px;
  5019. top:185px;
  5020. width:67px;
  5021. height:20px;
  5022. display:flex;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. }
  5027. #u154991 .text {
  5028. position:absolute;
  5029. align-self:flex-start;
  5030. padding:0px 0px 0px 10px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u154991_text {
  5035. border-width:0px;
  5036. white-space:nowrap;
  5037. text-transform:none;
  5038. }
  5039. #u154992 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:0px;
  5045. height:0px;
  5046. }
  5047. #u154993_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:49px;
  5053. height:17px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 0);
  5056. border:none;
  5057. border-radius:0px;
  5058. -moz-box-shadow:none;
  5059. -webkit-box-shadow:none;
  5060. box-shadow:none;
  5061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:12px;
  5065. }
  5066. #u154993 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:612px;
  5070. top:250px;
  5071. width:49px;
  5072. height:17px;
  5073. display:flex;
  5074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5075. font-weight:400;
  5076. font-style:normal;
  5077. font-size:12px;
  5078. }
  5079. #u154993 .text {
  5080. position:absolute;
  5081. align-self:flex-start;
  5082. padding:0px 0px 0px 0px;
  5083. box-sizing:border-box;
  5084. width:100%;
  5085. }
  5086. #u154993_text {
  5087. border-width:0px;
  5088. white-space:nowrap;
  5089. text-transform:none;
  5090. }
  5091. #u154994_div {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:30px;
  5097. height:30px;
  5098. background:inherit;
  5099. background-color:rgba(24, 144, 255, 1);
  5100. border:none;
  5101. border-radius:4px;
  5102. -moz-box-shadow:none;
  5103. -webkit-box-shadow:none;
  5104. box-shadow:none;
  5105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:8px;
  5109. color:#FFFFFF;
  5110. }
  5111. #u154994 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:621px;
  5115. top:211px;
  5116. width:30px;
  5117. height:30px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:8px;
  5123. color:#FFFFFF;
  5124. }
  5125. #u154994 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 2px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u154994_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. }
  5137. #u154995 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:0px;
  5143. height:0px;
  5144. }
  5145. #u154996_div {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:49px;
  5151. height:17px;
  5152. background:inherit;
  5153. background-color:rgba(255, 255, 255, 0);
  5154. border:none;
  5155. border-radius:0px;
  5156. -moz-box-shadow:none;
  5157. -webkit-box-shadow:none;
  5158. box-shadow:none;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:12px;
  5163. }
  5164. #u154996 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:523px;
  5168. top:249px;
  5169. width:49px;
  5170. height:17px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. }
  5177. #u154996 .text {
  5178. position:absolute;
  5179. align-self:flex-start;
  5180. padding:0px 0px 0px 0px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u154996_text {
  5185. border-width:0px;
  5186. white-space:nowrap;
  5187. text-transform:none;
  5188. }
  5189. #u154997_div {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:30px;
  5195. height:30px;
  5196. background:inherit;
  5197. background-color:rgba(24, 144, 255, 1);
  5198. border:none;
  5199. border-radius:4px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:8px;
  5207. color:#FFFFFF;
  5208. }
  5209. #u154997 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:531px;
  5213. top:211px;
  5214. width:30px;
  5215. height:30px;
  5216. display:flex;
  5217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:8px;
  5221. color:#FFFFFF;
  5222. }
  5223. #u154997 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u154997_text {
  5231. border-width:0px;
  5232. word-wrap:break-word;
  5233. text-transform:none;
  5234. }
  5235. #u154998 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:0px;
  5241. height:0px;
  5242. }
  5243. #u154999_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:49px;
  5249. height:17px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 0);
  5252. border:none;
  5253. border-radius:0px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:12px;
  5261. }
  5262. #u154999 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:701px;
  5266. top:250px;
  5267. width:49px;
  5268. height:17px;
  5269. display:flex;
  5270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:12px;
  5274. }
  5275. #u154999 .text {
  5276. position:absolute;
  5277. align-self:flex-start;
  5278. padding:0px 0px 0px 0px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u154999_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u155000_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:30px;
  5293. height:30px;
  5294. background:inherit;
  5295. background-color:rgba(24, 144, 255, 1);
  5296. border:none;
  5297. border-radius:4px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:8px;
  5305. color:#FFFFFF;
  5306. }
  5307. #u155000 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:710px;
  5311. top:211px;
  5312. width:30px;
  5313. height:30px;
  5314. display:flex;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:8px;
  5319. color:#FFFFFF;
  5320. }
  5321. #u155000 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u155000_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. }
  5333. #u155001_div {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:67px;
  5339. height:20px;
  5340. background:inherit;
  5341. background-color:rgba(255, 255, 255, 0);
  5342. box-sizing:border-box;
  5343. border-width:3px;
  5344. border-style:solid;
  5345. border-color:rgba(121, 121, 121, 1);
  5346. border-top:0px;
  5347. border-right:0px;
  5348. border-bottom:0px;
  5349. border-radius:0px;
  5350. border-top-left-radius:0px;
  5351. border-bottom-left-radius:0px;
  5352. -moz-box-shadow:none;
  5353. -webkit-box-shadow:none;
  5354. box-shadow:none;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. }
  5359. #u155001 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:513px;
  5363. top:296px;
  5364. width:67px;
  5365. height:20px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. }
  5371. #u155001 .text {
  5372. position:absolute;
  5373. align-self:flex-start;
  5374. padding:0px 0px 0px 10px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u155001_text {
  5379. border-width:0px;
  5380. white-space:nowrap;
  5381. text-transform:none;
  5382. }
  5383. #u155002 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:0px;
  5389. height:0px;
  5390. }
  5391. #u155003_div {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:49px;
  5397. height:17px;
  5398. background:inherit;
  5399. background-color:rgba(255, 255, 255, 0);
  5400. border:none;
  5401. border-radius:0px;
  5402. -moz-box-shadow:none;
  5403. -webkit-box-shadow:none;
  5404. box-shadow:none;
  5405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5406. font-weight:400;
  5407. font-style:normal;
  5408. font-size:12px;
  5409. }
  5410. #u155003 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:701px;
  5414. top:360px;
  5415. width:49px;
  5416. height:17px;
  5417. display:flex;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:12px;
  5422. }
  5423. #u155003 .text {
  5424. position:absolute;
  5425. align-self:flex-start;
  5426. padding:0px 0px 0px 0px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u155003_text {
  5431. border-width:0px;
  5432. white-space:nowrap;
  5433. text-transform:none;
  5434. }
  5435. #u155004_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:30px;
  5441. height:30px;
  5442. background:inherit;
  5443. background-color:rgba(24, 144, 255, 1);
  5444. border:none;
  5445. border-radius:4px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:8px;
  5453. color:#FFFFFF;
  5454. }
  5455. #u155004 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:710px;
  5459. top:326px;
  5460. width:30px;
  5461. height:30px;
  5462. display:flex;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:8px;
  5467. color:#FFFFFF;
  5468. }
  5469. #u155004 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:2px 2px 2px 2px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u155004_text {
  5477. border-width:0px;
  5478. word-wrap:break-word;
  5479. text-transform:none;
  5480. }
  5481. #u155005 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:0px;
  5487. height:0px;
  5488. }
  5489. #u155006_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:49px;
  5495. height:17px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 0);
  5498. border:none;
  5499. border-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:12px;
  5507. }
  5508. #u155006 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:612px;
  5512. top:361px;
  5513. width:49px;
  5514. height:17px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:12px;
  5520. }
  5521. #u155006 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:0px 0px 0px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u155006_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u155007_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:30px;
  5539. height:30px;
  5540. background:inherit;
  5541. background-color:rgba(24, 144, 255, 1);
  5542. border:none;
  5543. border-radius:4px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:8px;
  5551. color:#FFFFFF;
  5552. }
  5553. #u155007 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:621px;
  5557. top:326px;
  5558. width:30px;
  5559. height:30px;
  5560. display:flex;
  5561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5562. font-weight:400;
  5563. font-style:normal;
  5564. font-size:8px;
  5565. color:#FFFFFF;
  5566. }
  5567. #u155007 .text {
  5568. position:absolute;
  5569. align-self:center;
  5570. padding:2px 2px 2px 2px;
  5571. box-sizing:border-box;
  5572. width:100%;
  5573. }
  5574. #u155007_text {
  5575. border-width:0px;
  5576. word-wrap:break-word;
  5577. text-transform:none;
  5578. }
  5579. #u155008 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:0px;
  5585. height:0px;
  5586. }
  5587. #u155009_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:49px;
  5593. height:17px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 0);
  5596. border:none;
  5597. border-radius:0px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:12px;
  5605. }
  5606. #u155009 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:523px;
  5610. top:360px;
  5611. width:49px;
  5612. height:17px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. }
  5619. #u155009 .text {
  5620. position:absolute;
  5621. align-self:flex-start;
  5622. padding:0px 0px 0px 0px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u155009_text {
  5627. border-width:0px;
  5628. white-space:nowrap;
  5629. text-transform:none;
  5630. }
  5631. #u155010_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:30px;
  5637. height:30px;
  5638. background:inherit;
  5639. background-color:rgba(24, 144, 255, 1);
  5640. border:none;
  5641. border-radius:4px;
  5642. -moz-box-shadow:none;
  5643. -webkit-box-shadow:none;
  5644. box-shadow:none;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:8px;
  5649. color:#FFFFFF;
  5650. }
  5651. #u155010 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:532px;
  5655. top:326px;
  5656. width:30px;
  5657. height:30px;
  5658. display:flex;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:8px;
  5663. color:#FFFFFF;
  5664. }
  5665. #u155010 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:2px 2px 2px 2px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u155010_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. }
  5677. #u155011 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:0px;
  5683. height:0px;
  5684. }
  5685. #u155012_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:49px;
  5691. height:17px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 0);
  5694. border:none;
  5695. border-radius:0px;
  5696. -moz-box-shadow:none;
  5697. -webkit-box-shadow:none;
  5698. box-shadow:none;
  5699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:12px;
  5703. }
  5704. #u155012 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:790px;
  5708. top:360px;
  5709. width:49px;
  5710. height:17px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. }
  5717. #u155012 .text {
  5718. position:absolute;
  5719. align-self:flex-start;
  5720. padding:0px 0px 0px 0px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u155012_text {
  5725. border-width:0px;
  5726. white-space:nowrap;
  5727. text-transform:none;
  5728. }
  5729. #u155013_div {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:30px;
  5735. height:30px;
  5736. background:inherit;
  5737. background-color:rgba(24, 144, 255, 1);
  5738. border:none;
  5739. border-radius:4px;
  5740. -moz-box-shadow:none;
  5741. -webkit-box-shadow:none;
  5742. box-shadow:none;
  5743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. font-size:8px;
  5747. color:#FFFFFF;
  5748. }
  5749. #u155013 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:799px;
  5753. top:326px;
  5754. width:30px;
  5755. height:30px;
  5756. display:flex;
  5757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:8px;
  5761. color:#FFFFFF;
  5762. }
  5763. #u155013 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:2px 2px 2px 2px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u155013_text {
  5771. border-width:0px;
  5772. word-wrap:break-word;
  5773. text-transform:none;
  5774. }
  5775. #u155014 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:0px;
  5781. height:0px;
  5782. }
  5783. #u155015_div {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:49px;
  5789. height:17px;
  5790. background:inherit;
  5791. background-color:rgba(255, 255, 255, 0);
  5792. border:none;
  5793. border-radius:0px;
  5794. -moz-box-shadow:none;
  5795. -webkit-box-shadow:none;
  5796. box-shadow:none;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:12px;
  5801. }
  5802. #u155015 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:523px;
  5806. top:422px;
  5807. width:49px;
  5808. height:17px;
  5809. display:flex;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:12px;
  5814. }
  5815. #u155015 .text {
  5816. position:absolute;
  5817. align-self:flex-start;
  5818. padding:0px 0px 0px 0px;
  5819. box-sizing:border-box;
  5820. width:100%;
  5821. }
  5822. #u155015_text {
  5823. border-width:0px;
  5824. white-space:nowrap;
  5825. text-transform:none;
  5826. }
  5827. #u155016_div {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:30px;
  5833. height:30px;
  5834. background:inherit;
  5835. background-color:rgba(24, 144, 255, 1);
  5836. border:none;
  5837. border-radius:4px;
  5838. -moz-box-shadow:none;
  5839. -webkit-box-shadow:none;
  5840. box-shadow:none;
  5841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5842. font-weight:400;
  5843. font-style:normal;
  5844. font-size:8px;
  5845. color:#FFFFFF;
  5846. }
  5847. #u155016 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:532px;
  5851. top:387px;
  5852. width:30px;
  5853. height:30px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:8px;
  5859. color:#FFFFFF;
  5860. }
  5861. #u155016 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 2px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u155016_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. }
  5873. #u155017 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:0px;
  5879. height:0px;
  5880. }
  5881. #u155018_div {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:49px;
  5887. height:17px;
  5888. background:inherit;
  5889. background-color:rgba(255, 255, 255, 0);
  5890. border:none;
  5891. border-radius:0px;
  5892. -moz-box-shadow:none;
  5893. -webkit-box-shadow:none;
  5894. box-shadow:none;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:12px;
  5899. }
  5900. #u155018 {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:612px;
  5904. top:422px;
  5905. width:49px;
  5906. height:17px;
  5907. display:flex;
  5908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5909. font-weight:400;
  5910. font-style:normal;
  5911. font-size:12px;
  5912. }
  5913. #u155018 .text {
  5914. position:absolute;
  5915. align-self:flex-start;
  5916. padding:0px 0px 0px 0px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u155018_text {
  5921. border-width:0px;
  5922. white-space:nowrap;
  5923. text-transform:none;
  5924. }
  5925. #u155019_div {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:30px;
  5931. height:30px;
  5932. background:inherit;
  5933. background-color:rgba(24, 144, 255, 1);
  5934. border:none;
  5935. border-radius:4px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:8px;
  5943. color:#FFFFFF;
  5944. }
  5945. #u155019 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:621px;
  5949. top:387px;
  5950. width:30px;
  5951. height:30px;
  5952. display:flex;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:8px;
  5957. color:#FFFFFF;
  5958. }
  5959. #u155019 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:2px 2px 2px 2px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u155019_text {
  5967. border-width:0px;
  5968. word-wrap:break-word;
  5969. text-transform:none;
  5970. }
  5971. #u155020_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:67px;
  5977. height:20px;
  5978. background:inherit;
  5979. background-color:rgba(255, 255, 255, 0);
  5980. box-sizing:border-box;
  5981. border-width:3px;
  5982. border-style:solid;
  5983. border-color:rgba(121, 121, 121, 1);
  5984. border-top:0px;
  5985. border-right:0px;
  5986. border-bottom:0px;
  5987. border-radius:0px;
  5988. border-top-left-radius:0px;
  5989. border-bottom-left-radius:0px;
  5990. -moz-box-shadow:none;
  5991. -webkit-box-shadow:none;
  5992. box-shadow:none;
  5993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. }
  5997. #u155020 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:513px;
  6001. top:588px;
  6002. width:67px;
  6003. height:20px;
  6004. display:flex;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. }
  6009. #u155020 .text {
  6010. position:absolute;
  6011. align-self:flex-start;
  6012. padding:0px 0px 0px 10px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u155020_text {
  6017. border-width:0px;
  6018. white-space:nowrap;
  6019. text-transform:none;
  6020. }
  6021. #u155021 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:0px;
  6027. height:0px;
  6028. }
  6029. #u155022_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:49px;
  6035. height:17px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 0);
  6038. border:none;
  6039. border-radius:0px;
  6040. -moz-box-shadow:none;
  6041. -webkit-box-shadow:none;
  6042. box-shadow:none;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:12px;
  6047. }
  6048. #u155022 {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:523px;
  6052. top:653px;
  6053. width:49px;
  6054. height:17px;
  6055. display:flex;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:12px;
  6060. }
  6061. #u155022 .text {
  6062. position:absolute;
  6063. align-self:flex-start;
  6064. padding:0px 0px 0px 0px;
  6065. box-sizing:border-box;
  6066. width:100%;
  6067. }
  6068. #u155022_text {
  6069. border-width:0px;
  6070. white-space:nowrap;
  6071. text-transform:none;
  6072. }
  6073. #u155023_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:30px;
  6079. height:30px;
  6080. background:inherit;
  6081. background-color:rgba(24, 144, 255, 1);
  6082. border:none;
  6083. border-radius:4px;
  6084. -moz-box-shadow:none;
  6085. -webkit-box-shadow:none;
  6086. box-shadow:none;
  6087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6088. font-weight:400;
  6089. font-style:normal;
  6090. font-size:8px;
  6091. color:#FFFFFF;
  6092. }
  6093. #u155023 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:532px;
  6097. top:618px;
  6098. width:30px;
  6099. height:30px;
  6100. display:flex;
  6101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:8px;
  6105. color:#FFFFFF;
  6106. }
  6107. #u155023 .text {
  6108. position:absolute;
  6109. align-self:center;
  6110. padding:2px 2px 2px 2px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u155023_text {
  6115. border-width:0px;
  6116. word-wrap:break-word;
  6117. text-transform:none;
  6118. }
  6119. #u155024 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:0px;
  6125. height:0px;
  6126. }
  6127. #u155025_div {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:30px;
  6133. height:30px;
  6134. background:inherit;
  6135. background-color:rgba(255, 255, 255, 1);
  6136. box-sizing:border-box;
  6137. border-width:1px;
  6138. border-style:solid;
  6139. border-color:rgba(121, 121, 121, 1);
  6140. border-radius:4px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. font-size:8px;
  6148. }
  6149. #u155025 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:621px;
  6153. top:618px;
  6154. width:30px;
  6155. height:30px;
  6156. display:flex;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:8px;
  6161. }
  6162. #u155025 .text {
  6163. position:absolute;
  6164. align-self:center;
  6165. padding:2px 2px 2px 2px;
  6166. box-sizing:border-box;
  6167. width:100%;
  6168. }
  6169. #u155025_text {
  6170. border-width:0px;
  6171. word-wrap:break-word;
  6172. text-transform:none;
  6173. }
  6174. #u155026_div {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:49px;
  6180. height:17px;
  6181. background:inherit;
  6182. background-color:rgba(255, 255, 255, 0);
  6183. border:none;
  6184. border-radius:0px;
  6185. -moz-box-shadow:none;
  6186. -webkit-box-shadow:none;
  6187. box-shadow:none;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:12px;
  6192. }
  6193. #u155026 {
  6194. border-width:0px;
  6195. position:absolute;
  6196. left:612px;
  6197. top:653px;
  6198. width:49px;
  6199. height:17px;
  6200. display:flex;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:12px;
  6205. }
  6206. #u155026 .text {
  6207. position:absolute;
  6208. align-self:flex-start;
  6209. padding:0px 0px 0px 0px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u155026_text {
  6214. border-width:0px;
  6215. white-space:nowrap;
  6216. text-transform:none;
  6217. }
  6218. #u155027 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:0px;
  6224. height:0px;
  6225. }
  6226. #u155028_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:30px;
  6232. height:30px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 1);
  6235. box-sizing:border-box;
  6236. border-width:1px;
  6237. border-style:solid;
  6238. border-color:rgba(121, 121, 121, 1);
  6239. border-radius:4px;
  6240. -moz-box-shadow:none;
  6241. -webkit-box-shadow:none;
  6242. box-shadow:none;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:8px;
  6247. }
  6248. #u155028 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:710px;
  6252. top:618px;
  6253. width:30px;
  6254. height:30px;
  6255. display:flex;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:8px;
  6260. }
  6261. #u155028 .text {
  6262. position:absolute;
  6263. align-self:center;
  6264. padding:2px 2px 2px 2px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u155028_text {
  6269. border-width:0px;
  6270. word-wrap:break-word;
  6271. text-transform:none;
  6272. }
  6273. #u155029_div {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:49px;
  6279. height:17px;
  6280. background:inherit;
  6281. background-color:rgba(255, 255, 255, 0);
  6282. border:none;
  6283. border-radius:0px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:12px;
  6291. }
  6292. #u155029 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:701px;
  6296. top:653px;
  6297. width:49px;
  6298. height:17px;
  6299. display:flex;
  6300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:12px;
  6304. }
  6305. #u155029 .text {
  6306. position:absolute;
  6307. align-self:flex-start;
  6308. padding:0px 0px 0px 0px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u155029_text {
  6313. border-width:0px;
  6314. white-space:nowrap;
  6315. text-transform:none;
  6316. }
  6317. #u155030 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:0px;
  6323. height:0px;
  6324. }
  6325. #u155031_div {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:49px;
  6331. height:17px;
  6332. background:inherit;
  6333. background-color:rgba(255, 255, 255, 0);
  6334. border:none;
  6335. border-radius:0px;
  6336. -moz-box-shadow:none;
  6337. -webkit-box-shadow:none;
  6338. box-shadow:none;
  6339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:12px;
  6343. }
  6344. #u155031 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:790px;
  6348. top:653px;
  6349. width:49px;
  6350. height:17px;
  6351. display:flex;
  6352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:12px;
  6356. }
  6357. #u155031 .text {
  6358. position:absolute;
  6359. align-self:flex-start;
  6360. padding:0px 0px 0px 0px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u155031_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u155032_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:30px;
  6375. height:30px;
  6376. background:inherit;
  6377. background-color:rgba(24, 144, 255, 1);
  6378. border:none;
  6379. border-radius:4px;
  6380. -moz-box-shadow:none;
  6381. -webkit-box-shadow:none;
  6382. box-shadow:none;
  6383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6384. font-weight:400;
  6385. font-style:normal;
  6386. font-size:8px;
  6387. color:#FFFFFF;
  6388. }
  6389. #u155032 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:799px;
  6393. top:618px;
  6394. width:30px;
  6395. height:30px;
  6396. display:flex;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:8px;
  6401. color:#FFFFFF;
  6402. }
  6403. #u155032 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 2px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u155032_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. }
  6415. #u155033_div {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:67px;
  6421. height:20px;
  6422. background:inherit;
  6423. background-color:rgba(255, 255, 255, 0);
  6424. box-sizing:border-box;
  6425. border-width:3px;
  6426. border-style:solid;
  6427. border-color:rgba(121, 121, 121, 1);
  6428. border-top:0px;
  6429. border-right:0px;
  6430. border-bottom:0px;
  6431. border-radius:0px;
  6432. border-top-left-radius:0px;
  6433. border-bottom-left-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. }
  6441. #u155033 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:513px;
  6445. top:700px;
  6446. width:67px;
  6447. height:20px;
  6448. display:flex;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. }
  6453. #u155033 .text {
  6454. position:absolute;
  6455. align-self:flex-start;
  6456. padding:0px 0px 0px 10px;
  6457. box-sizing:border-box;
  6458. width:100%;
  6459. }
  6460. #u155033_text {
  6461. border-width:0px;
  6462. white-space:nowrap;
  6463. text-transform:none;
  6464. }
  6465. #u155034 {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:0px;
  6469. top:0px;
  6470. width:0px;
  6471. height:0px;
  6472. }
  6473. #u155035_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:30px;
  6479. height:30px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 1);
  6482. box-sizing:border-box;
  6483. border-width:1px;
  6484. border-style:solid;
  6485. border-color:rgba(121, 121, 121, 1);
  6486. border-radius:4px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:8px;
  6494. }
  6495. #u155035 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:532px;
  6499. top:730px;
  6500. width:30px;
  6501. height:30px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:8px;
  6507. }
  6508. #u155035 .text {
  6509. position:absolute;
  6510. align-self:center;
  6511. padding:2px 2px 2px 2px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u155035_text {
  6516. border-width:0px;
  6517. word-wrap:break-word;
  6518. text-transform:none;
  6519. }
  6520. #u155036_div {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:49px;
  6526. height:17px;
  6527. background:inherit;
  6528. background-color:rgba(255, 255, 255, 0);
  6529. border:none;
  6530. border-radius:0px;
  6531. -moz-box-shadow:none;
  6532. -webkit-box-shadow:none;
  6533. box-shadow:none;
  6534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:12px;
  6538. }
  6539. #u155036 {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:523px;
  6543. top:765px;
  6544. width:49px;
  6545. height:17px;
  6546. display:flex;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:12px;
  6551. }
  6552. #u155036 .text {
  6553. position:absolute;
  6554. align-self:flex-start;
  6555. padding:0px 0px 0px 0px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u155036_text {
  6560. border-width:0px;
  6561. white-space:nowrap;
  6562. text-transform:none;
  6563. }
  6564. #u155037 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:0px;
  6570. height:0px;
  6571. }
  6572. #u155038_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:30px;
  6578. height:30px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 1);
  6581. box-sizing:border-box;
  6582. border-width:1px;
  6583. border-style:solid;
  6584. border-color:rgba(121, 121, 121, 1);
  6585. border-radius:4px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:8px;
  6593. }
  6594. #u155038 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:621px;
  6598. top:730px;
  6599. width:30px;
  6600. height:30px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:8px;
  6606. }
  6607. #u155038 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:2px 2px 2px 2px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u155038_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. }
  6619. #u155039_div {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:49px;
  6625. height:17px;
  6626. background:inherit;
  6627. background-color:rgba(255, 255, 255, 0);
  6628. border:none;
  6629. border-radius:0px;
  6630. -moz-box-shadow:none;
  6631. -webkit-box-shadow:none;
  6632. box-shadow:none;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:12px;
  6637. }
  6638. #u155039 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:612px;
  6642. top:765px;
  6643. width:49px;
  6644. height:17px;
  6645. display:flex;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:12px;
  6650. }
  6651. #u155039 .text {
  6652. position:absolute;
  6653. align-self:flex-start;
  6654. padding:0px 0px 0px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u155039_text {
  6659. border-width:0px;
  6660. white-space:nowrap;
  6661. text-transform:none;
  6662. }
  6663. #u155040 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:0px;
  6669. height:0px;
  6670. }
  6671. #u155041_div {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:49px;
  6677. height:17px;
  6678. background:inherit;
  6679. background-color:rgba(255, 255, 255, 0);
  6680. border:none;
  6681. border-radius:0px;
  6682. -moz-box-shadow:none;
  6683. -webkit-box-shadow:none;
  6684. box-shadow:none;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:12px;
  6689. }
  6690. #u155041 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:701px;
  6694. top:422px;
  6695. width:49px;
  6696. height:17px;
  6697. display:flex;
  6698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. font-size:12px;
  6702. }
  6703. #u155041 .text {
  6704. position:absolute;
  6705. align-self:flex-start;
  6706. padding:0px 0px 0px 0px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u155041_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u155042_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:30px;
  6721. height:30px;
  6722. background:inherit;
  6723. background-color:rgba(24, 144, 255, 1);
  6724. border:none;
  6725. border-radius:4px;
  6726. -moz-box-shadow:none;
  6727. -webkit-box-shadow:none;
  6728. box-shadow:none;
  6729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6730. font-weight:400;
  6731. font-style:normal;
  6732. font-size:8px;
  6733. color:#FFFFFF;
  6734. }
  6735. #u155042 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:710px;
  6739. top:387px;
  6740. width:30px;
  6741. height:30px;
  6742. display:flex;
  6743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6744. font-weight:400;
  6745. font-style:normal;
  6746. font-size:8px;
  6747. color:#FFFFFF;
  6748. }
  6749. #u155042 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u155042_text {
  6757. border-width:0px;
  6758. word-wrap:break-word;
  6759. text-transform:none;
  6760. }
  6761. #u155043 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:0px;
  6767. height:0px;
  6768. }
  6769. #u155044_div {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:49px;
  6775. height:17px;
  6776. background:inherit;
  6777. background-color:rgba(255, 255, 255, 0);
  6778. border:none;
  6779. border-radius:0px;
  6780. -moz-box-shadow:none;
  6781. -webkit-box-shadow:none;
  6782. box-shadow:none;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:12px;
  6787. }
  6788. #u155044 {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:523px;
  6792. top:484px;
  6793. width:49px;
  6794. height:17px;
  6795. display:flex;
  6796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. font-size:12px;
  6800. }
  6801. #u155044 .text {
  6802. position:absolute;
  6803. align-self:flex-start;
  6804. padding:0px 0px 0px 0px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u155044_text {
  6809. border-width:0px;
  6810. white-space:nowrap;
  6811. text-transform:none;
  6812. }
  6813. #u155045_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:30px;
  6819. height:30px;
  6820. background:inherit;
  6821. background-color:rgba(24, 144, 255, 1);
  6822. border:none;
  6823. border-radius:4px;
  6824. -moz-box-shadow:none;
  6825. -webkit-box-shadow:none;
  6826. box-shadow:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:8px;
  6831. color:#FFFFFF;
  6832. }
  6833. #u155045 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:532px;
  6837. top:449px;
  6838. width:30px;
  6839. height:30px;
  6840. display:flex;
  6841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:8px;
  6845. color:#FFFFFF;
  6846. }
  6847. #u155045 .text {
  6848. position:absolute;
  6849. align-self:center;
  6850. padding:2px 2px 2px 2px;
  6851. box-sizing:border-box;
  6852. width:100%;
  6853. }
  6854. #u155045_text {
  6855. border-width:0px;
  6856. word-wrap:break-word;
  6857. text-transform:none;
  6858. }
  6859. #u155046 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:0px;
  6865. height:0px;
  6866. }
  6867. #u155047_div {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:30px;
  6873. height:30px;
  6874. background:inherit;
  6875. background-color:rgba(255, 255, 255, 1);
  6876. box-sizing:border-box;
  6877. border-width:1px;
  6878. border-style:solid;
  6879. border-color:rgba(121, 121, 121, 1);
  6880. border-radius:4px;
  6881. -moz-box-shadow:none;
  6882. -webkit-box-shadow:none;
  6883. box-shadow:none;
  6884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6885. font-weight:400;
  6886. font-style:normal;
  6887. font-size:8px;
  6888. }
  6889. #u155047 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:710px;
  6893. top:730px;
  6894. width:30px;
  6895. height:30px;
  6896. display:flex;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:8px;
  6901. }
  6902. #u155047 .text {
  6903. position:absolute;
  6904. align-self:center;
  6905. padding:2px 2px 2px 2px;
  6906. box-sizing:border-box;
  6907. width:100%;
  6908. }
  6909. #u155047_text {
  6910. border-width:0px;
  6911. word-wrap:break-word;
  6912. text-transform:none;
  6913. }
  6914. #u155048_div {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:0px;
  6918. top:0px;
  6919. width:49px;
  6920. height:17px;
  6921. background:inherit;
  6922. background-color:rgba(255, 255, 255, 0);
  6923. border:none;
  6924. border-radius:0px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:12px;
  6932. }
  6933. #u155048 {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:701px;
  6937. top:765px;
  6938. width:49px;
  6939. height:17px;
  6940. display:flex;
  6941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:12px;
  6945. }
  6946. #u155048 .text {
  6947. position:absolute;
  6948. align-self:flex-start;
  6949. padding:0px 0px 0px 0px;
  6950. box-sizing:border-box;
  6951. width:100%;
  6952. }
  6953. #u155048_text {
  6954. border-width:0px;
  6955. white-space:nowrap;
  6956. text-transform:none;
  6957. }
  6958. #u155049_div {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:67px;
  6964. height:20px;
  6965. background:inherit;
  6966. background-color:rgba(255, 255, 255, 0);
  6967. box-sizing:border-box;
  6968. border-width:3px;
  6969. border-style:solid;
  6970. border-color:rgba(121, 121, 121, 1);
  6971. border-top:0px;
  6972. border-right:0px;
  6973. border-bottom:0px;
  6974. border-radius:0px;
  6975. border-top-left-radius:0px;
  6976. border-bottom-left-radius:0px;
  6977. -moz-box-shadow:none;
  6978. -webkit-box-shadow:none;
  6979. box-shadow:none;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. }
  6984. #u155049 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:513px;
  6988. top:812px;
  6989. width:67px;
  6990. height:20px;
  6991. display:flex;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. }
  6996. #u155049 .text {
  6997. position:absolute;
  6998. align-self:flex-start;
  6999. padding:0px 0px 0px 10px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u155049_text {
  7004. border-width:0px;
  7005. white-space:nowrap;
  7006. text-transform:none;
  7007. }
  7008. #u155050 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:0px;
  7014. height:0px;
  7015. }
  7016. #u155051_div {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:49px;
  7022. height:17px;
  7023. background:inherit;
  7024. background-color:rgba(255, 255, 255, 0);
  7025. border:none;
  7026. border-radius:0px;
  7027. -moz-box-shadow:none;
  7028. -webkit-box-shadow:none;
  7029. box-shadow:none;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:12px;
  7034. }
  7035. #u155051 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:523px;
  7039. top:877px;
  7040. width:49px;
  7041. height:17px;
  7042. display:flex;
  7043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7044. font-weight:400;
  7045. font-style:normal;
  7046. font-size:12px;
  7047. }
  7048. #u155051 .text {
  7049. position:absolute;
  7050. align-self:flex-start;
  7051. padding:0px 0px 0px 0px;
  7052. box-sizing:border-box;
  7053. width:100%;
  7054. }
  7055. #u155051_text {
  7056. border-width:0px;
  7057. white-space:nowrap;
  7058. text-transform:none;
  7059. }
  7060. #u155052_div {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:0px;
  7064. top:0px;
  7065. width:30px;
  7066. height:30px;
  7067. background:inherit;
  7068. background-color:rgba(24, 144, 255, 1);
  7069. border:none;
  7070. border-radius:4px;
  7071. -moz-box-shadow:none;
  7072. -webkit-box-shadow:none;
  7073. box-shadow:none;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:8px;
  7078. color:#FFFFFF;
  7079. }
  7080. #u155052 {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:532px;
  7084. top:842px;
  7085. width:30px;
  7086. height:30px;
  7087. display:flex;
  7088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7089. font-weight:400;
  7090. font-style:normal;
  7091. font-size:8px;
  7092. color:#FFFFFF;
  7093. }
  7094. #u155052 .text {
  7095. position:absolute;
  7096. align-self:center;
  7097. padding:2px 2px 2px 2px;
  7098. box-sizing:border-box;
  7099. width:100%;
  7100. }
  7101. #u155052_text {
  7102. border-width:0px;
  7103. word-wrap:break-word;
  7104. text-transform:none;
  7105. }
  7106. #u155053 {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:0px;
  7112. height:0px;
  7113. }
  7114. #u155054_div {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:49px;
  7120. height:17px;
  7121. background:inherit;
  7122. background-color:rgba(255, 255, 255, 0);
  7123. border:none;
  7124. border-radius:0px;
  7125. -moz-box-shadow:none;
  7126. -webkit-box-shadow:none;
  7127. box-shadow:none;
  7128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7129. font-weight:400;
  7130. font-style:normal;
  7131. font-size:12px;
  7132. }
  7133. #u155054 {
  7134. border-width:0px;
  7135. position:absolute;
  7136. left:612px;
  7137. top:877px;
  7138. width:49px;
  7139. height:17px;
  7140. display:flex;
  7141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:12px;
  7145. }
  7146. #u155054 .text {
  7147. position:absolute;
  7148. align-self:flex-start;
  7149. padding:0px 0px 0px 0px;
  7150. box-sizing:border-box;
  7151. width:100%;
  7152. }
  7153. #u155054_text {
  7154. border-width:0px;
  7155. white-space:nowrap;
  7156. text-transform:none;
  7157. }
  7158. #u155055_div {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:30px;
  7164. height:30px;
  7165. background:inherit;
  7166. background-color:rgba(24, 144, 255, 1);
  7167. border:none;
  7168. border-radius:4px;
  7169. -moz-box-shadow:none;
  7170. -webkit-box-shadow:none;
  7171. box-shadow:none;
  7172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7173. font-weight:400;
  7174. font-style:normal;
  7175. font-size:8px;
  7176. color:#FFFFFF;
  7177. }
  7178. #u155055 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:621px;
  7182. top:842px;
  7183. width:30px;
  7184. height:30px;
  7185. display:flex;
  7186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7187. font-weight:400;
  7188. font-style:normal;
  7189. font-size:8px;
  7190. color:#FFFFFF;
  7191. }
  7192. #u155055 .text {
  7193. position:absolute;
  7194. align-self:center;
  7195. padding:2px 2px 2px 2px;
  7196. box-sizing:border-box;
  7197. width:100%;
  7198. }
  7199. #u155055_text {
  7200. border-width:0px;
  7201. word-wrap:break-word;
  7202. text-transform:none;
  7203. }
  7204. #u155056 {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:0px;
  7210. height:0px;
  7211. }
  7212. #u155057_div {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:30px;
  7218. height:30px;
  7219. background:inherit;
  7220. background-color:rgba(255, 255, 255, 1);
  7221. box-sizing:border-box;
  7222. border-width:1px;
  7223. border-style:solid;
  7224. border-color:rgba(121, 121, 121, 1);
  7225. border-radius:4px;
  7226. -moz-box-shadow:none;
  7227. -webkit-box-shadow:none;
  7228. box-shadow:none;
  7229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7230. font-weight:400;
  7231. font-style:normal;
  7232. font-size:8px;
  7233. }
  7234. #u155057 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:532px;
  7238. top:511px;
  7239. width:30px;
  7240. height:30px;
  7241. display:flex;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:8px;
  7246. }
  7247. #u155057 .text {
  7248. position:absolute;
  7249. align-self:center;
  7250. padding:2px 2px 2px 2px;
  7251. box-sizing:border-box;
  7252. width:100%;
  7253. }
  7254. #u155057_text {
  7255. border-width:0px;
  7256. word-wrap:break-word;
  7257. text-transform:none;
  7258. }
  7259. #u155058_div {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:49px;
  7265. height:17px;
  7266. background:inherit;
  7267. background-color:rgba(255, 255, 255, 0);
  7268. border:none;
  7269. border-radius:0px;
  7270. -moz-box-shadow:none;
  7271. -webkit-box-shadow:none;
  7272. box-shadow:none;
  7273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:12px;
  7277. }
  7278. #u155058 {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:523px;
  7282. top:546px;
  7283. width:49px;
  7284. height:17px;
  7285. display:flex;
  7286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7287. font-weight:400;
  7288. font-style:normal;
  7289. font-size:12px;
  7290. }
  7291. #u155058 .text {
  7292. position:absolute;
  7293. align-self:flex-start;
  7294. padding:0px 0px 0px 0px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u155058_text {
  7299. border-width:0px;
  7300. white-space:nowrap;
  7301. text-transform:none;
  7302. }
  7303. #u155059 {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:0px;
  7309. height:0px;
  7310. }
  7311. #u155060_div {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:0px;
  7315. top:0px;
  7316. width:30px;
  7317. height:30px;
  7318. background:inherit;
  7319. background-color:rgba(255, 255, 255, 1);
  7320. box-sizing:border-box;
  7321. border-width:1px;
  7322. border-style:solid;
  7323. border-color:rgba(121, 121, 121, 1);
  7324. border-radius:4px;
  7325. -moz-box-shadow:none;
  7326. -webkit-box-shadow:none;
  7327. box-shadow:none;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:8px;
  7332. }
  7333. #u155060 {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:799px;
  7337. top:730px;
  7338. width:30px;
  7339. height:30px;
  7340. display:flex;
  7341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:8px;
  7345. }
  7346. #u155060 .text {
  7347. position:absolute;
  7348. align-self:center;
  7349. padding:2px 2px 2px 2px;
  7350. box-sizing:border-box;
  7351. width:100%;
  7352. }
  7353. #u155060_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. }
  7358. #u155061_div {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:49px;
  7364. height:17px;
  7365. background:inherit;
  7366. background-color:rgba(255, 255, 255, 0);
  7367. border:none;
  7368. border-radius:0px;
  7369. -moz-box-shadow:none;
  7370. -webkit-box-shadow:none;
  7371. box-shadow:none;
  7372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7373. font-weight:400;
  7374. font-style:normal;
  7375. font-size:12px;
  7376. }
  7377. #u155061 {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:790px;
  7381. top:765px;
  7382. width:49px;
  7383. height:17px;
  7384. display:flex;
  7385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:12px;
  7389. }
  7390. #u155061 .text {
  7391. position:absolute;
  7392. align-self:flex-start;
  7393. padding:0px 0px 0px 0px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u155061_text {
  7398. border-width:0px;
  7399. white-space:nowrap;
  7400. text-transform:none;
  7401. }
  7402. #u155062 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:0px;
  7408. height:0px;
  7409. }
  7410. #u155063_div {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:30px;
  7416. height:30px;
  7417. background:inherit;
  7418. background-color:rgba(24, 144, 255, 1);
  7419. border:none;
  7420. border-radius:4px;
  7421. -moz-box-shadow:none;
  7422. -webkit-box-shadow:none;
  7423. box-shadow:none;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:8px;
  7428. color:#FFFFFF;
  7429. }
  7430. #u155063 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:531px;
  7434. top:113px;
  7435. width:30px;
  7436. height:30px;
  7437. display:flex;
  7438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:8px;
  7442. color:#FFFFFF;
  7443. }
  7444. #u155063 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:2px 2px 2px 2px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u155063_text {
  7452. border-width:0px;
  7453. word-wrap:break-word;
  7454. text-transform:none;
  7455. }
  7456. #u155064_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:37px;
  7462. height:17px;
  7463. background:inherit;
  7464. background-color:rgba(255, 255, 255, 0);
  7465. border:none;
  7466. border-radius:0px;
  7467. -moz-box-shadow:none;
  7468. -webkit-box-shadow:none;
  7469. box-shadow:none;
  7470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7471. font-weight:400;
  7472. font-style:normal;
  7473. font-size:12px;
  7474. }
  7475. #u155064 {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:528px;
  7479. top:148px;
  7480. width:37px;
  7481. height:17px;
  7482. display:flex;
  7483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:12px;
  7487. }
  7488. #u155064 .text {
  7489. position:absolute;
  7490. align-self:flex-start;
  7491. padding:0px 0px 0px 0px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u155064_text {
  7496. border-width:0px;
  7497. white-space:nowrap;
  7498. text-transform:none;
  7499. }
  7500. #u155065 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:0px;
  7504. top:0px;
  7505. width:0px;
  7506. height:0px;
  7507. }
  7508. #u155066_div {
  7509. border-width:0px;
  7510. position:absolute;
  7511. left:0px;
  7512. top:0px;
  7513. width:30px;
  7514. height:30px;
  7515. background:inherit;
  7516. background-color:rgba(255, 255, 255, 1);
  7517. box-sizing:border-box;
  7518. border-width:1px;
  7519. border-style:solid;
  7520. border-color:rgba(121, 121, 121, 1);
  7521. border-radius:4px;
  7522. -moz-box-shadow:none;
  7523. -webkit-box-shadow:none;
  7524. box-shadow:none;
  7525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7526. font-weight:400;
  7527. font-style:normal;
  7528. font-size:8px;
  7529. }
  7530. #u155066 {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:236px;
  7534. top:482px;
  7535. width:30px;
  7536. height:30px;
  7537. display:flex;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:8px;
  7542. }
  7543. #u155066 .text {
  7544. position:absolute;
  7545. align-self:center;
  7546. padding:2px 2px 2px 2px;
  7547. box-sizing:border-box;
  7548. width:100%;
  7549. }
  7550. #u155066_text {
  7551. border-width:0px;
  7552. word-wrap:break-word;
  7553. text-transform:none;
  7554. }
  7555. #u155067_div {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:0px;
  7559. top:0px;
  7560. width:49px;
  7561. height:17px;
  7562. background:inherit;
  7563. background-color:rgba(255, 255, 255, 0);
  7564. border:none;
  7565. border-radius:0px;
  7566. -moz-box-shadow:none;
  7567. -webkit-box-shadow:none;
  7568. box-shadow:none;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:12px;
  7573. }
  7574. #u155067 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:227px;
  7578. top:517px;
  7579. width:49px;
  7580. height:17px;
  7581. display:flex;
  7582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. }
  7587. #u155067 .text {
  7588. position:absolute;
  7589. align-self:flex-start;
  7590. padding:0px 0px 0px 0px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u155067_text {
  7595. border-width:0px;
  7596. white-space:nowrap;
  7597. text-transform:none;
  7598. }
  7599. #u155068 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:0px;
  7605. height:0px;
  7606. }
  7607. #u155069_div {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:49px;
  7613. height:17px;
  7614. background:inherit;
  7615. background-color:rgba(255, 255, 255, 0);
  7616. border:none;
  7617. border-radius:0px;
  7618. -moz-box-shadow:none;
  7619. -webkit-box-shadow:none;
  7620. box-shadow:none;
  7621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7622. font-weight:400;
  7623. font-style:normal;
  7624. font-size:12px;
  7625. }
  7626. #u155069 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:790px;
  7630. top:422px;
  7631. width:49px;
  7632. height:17px;
  7633. display:flex;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:12px;
  7638. }
  7639. #u155069 .text {
  7640. position:absolute;
  7641. align-self:flex-start;
  7642. padding:0px 0px 0px 0px;
  7643. box-sizing:border-box;
  7644. width:100%;
  7645. }
  7646. #u155069_text {
  7647. border-width:0px;
  7648. white-space:nowrap;
  7649. text-transform:none;
  7650. }
  7651. #u155070_div {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:30px;
  7657. height:30px;
  7658. background:inherit;
  7659. background-color:rgba(24, 144, 255, 1);
  7660. border:none;
  7661. border-radius:4px;
  7662. -moz-box-shadow:none;
  7663. -webkit-box-shadow:none;
  7664. box-shadow:none;
  7665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7666. font-weight:400;
  7667. font-style:normal;
  7668. font-size:8px;
  7669. color:#FFFFFF;
  7670. }
  7671. #u155070 {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:799px;
  7675. top:387px;
  7676. width:30px;
  7677. height:30px;
  7678. display:flex;
  7679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:8px;
  7683. color:#FFFFFF;
  7684. }
  7685. #u155070 .text {
  7686. position:absolute;
  7687. align-self:center;
  7688. padding:2px 2px 2px 2px;
  7689. box-sizing:border-box;
  7690. width:100%;
  7691. }
  7692. #u155070_text {
  7693. border-width:0px;
  7694. word-wrap:break-word;
  7695. text-transform:none;
  7696. }
  7697. #u155071 {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:0px;
  7703. height:0px;
  7704. }
  7705. #u155072_div {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:30px;
  7711. height:30px;
  7712. background:inherit;
  7713. background-color:rgba(24, 144, 255, 1);
  7714. border:none;
  7715. border-radius:4px;
  7716. -moz-box-shadow:none;
  7717. -webkit-box-shadow:none;
  7718. box-shadow:none;
  7719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7720. font-weight:400;
  7721. font-style:normal;
  7722. font-size:8px;
  7723. color:#FFFFFF;
  7724. }
  7725. #u155072 {
  7726. border-width:0px;
  7727. position:absolute;
  7728. left:799px;
  7729. top:449px;
  7730. width:30px;
  7731. height:30px;
  7732. display:flex;
  7733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:8px;
  7737. color:#FFFFFF;
  7738. }
  7739. #u155072 .text {
  7740. position:absolute;
  7741. align-self:center;
  7742. padding:2px 2px 2px 2px;
  7743. box-sizing:border-box;
  7744. width:100%;
  7745. }
  7746. #u155072_text {
  7747. border-width:0px;
  7748. word-wrap:break-word;
  7749. text-transform:none;
  7750. }
  7751. #u155073_div {
  7752. border-width:0px;
  7753. position:absolute;
  7754. left:0px;
  7755. top:0px;
  7756. width:49px;
  7757. height:17px;
  7758. background:inherit;
  7759. background-color:rgba(255, 255, 255, 0);
  7760. border:none;
  7761. border-radius:0px;
  7762. -moz-box-shadow:none;
  7763. -webkit-box-shadow:none;
  7764. box-shadow:none;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:12px;
  7769. }
  7770. #u155073 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:790px;
  7774. top:484px;
  7775. width:49px;
  7776. height:17px;
  7777. display:flex;
  7778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7779. font-weight:400;
  7780. font-style:normal;
  7781. font-size:12px;
  7782. }
  7783. #u155073 .text {
  7784. position:absolute;
  7785. align-self:flex-start;
  7786. padding:0px 0px 0px 0px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u155073_text {
  7791. border-width:0px;
  7792. white-space:nowrap;
  7793. text-transform:none;
  7794. }
  7795. #u155074 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:0px;
  7801. height:0px;
  7802. }
  7803. #u155075_div {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:30px;
  7809. height:30px;
  7810. background:inherit;
  7811. background-color:rgba(255, 255, 255, 1);
  7812. box-sizing:border-box;
  7813. border-width:1px;
  7814. border-style:solid;
  7815. border-color:rgba(121, 121, 121, 1);
  7816. border-radius:4px;
  7817. -moz-box-shadow:none;
  7818. -webkit-box-shadow:none;
  7819. box-shadow:none;
  7820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:8px;
  7824. }
  7825. #u155075 {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:621px;
  7829. top:449px;
  7830. width:30px;
  7831. height:30px;
  7832. display:flex;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:8px;
  7837. }
  7838. #u155075 .text {
  7839. position:absolute;
  7840. align-self:center;
  7841. padding:2px 2px 2px 2px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u155075_text {
  7846. border-width:0px;
  7847. word-wrap:break-word;
  7848. text-transform:none;
  7849. }
  7850. #u155076_div {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:0px;
  7854. top:0px;
  7855. width:49px;
  7856. height:17px;
  7857. background:inherit;
  7858. background-color:rgba(255, 255, 255, 0);
  7859. border:none;
  7860. border-radius:0px;
  7861. -moz-box-shadow:none;
  7862. -webkit-box-shadow:none;
  7863. box-shadow:none;
  7864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7865. font-weight:400;
  7866. font-style:normal;
  7867. font-size:12px;
  7868. }
  7869. #u155076 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:612px;
  7873. top:484px;
  7874. width:49px;
  7875. height:17px;
  7876. display:flex;
  7877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7878. font-weight:400;
  7879. font-style:normal;
  7880. font-size:12px;
  7881. }
  7882. #u155076 .text {
  7883. position:absolute;
  7884. align-self:flex-start;
  7885. padding:0px 0px 0px 0px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u155076_text {
  7890. border-width:0px;
  7891. white-space:nowrap;
  7892. text-transform:none;
  7893. }
  7894. #u155077 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:0px;
  7900. height:0px;
  7901. }
  7902. #u155078_div {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:0px;
  7906. top:0px;
  7907. width:30px;
  7908. height:30px;
  7909. background:inherit;
  7910. background-color:rgba(255, 255, 255, 1);
  7911. box-sizing:border-box;
  7912. border-width:1px;
  7913. border-style:solid;
  7914. border-color:rgba(121, 121, 121, 1);
  7915. border-radius:4px;
  7916. -moz-box-shadow:none;
  7917. -webkit-box-shadow:none;
  7918. box-shadow:none;
  7919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7920. font-weight:400;
  7921. font-style:normal;
  7922. font-size:8px;
  7923. }
  7924. #u155078 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:710px;
  7928. top:449px;
  7929. width:30px;
  7930. height:30px;
  7931. display:flex;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:8px;
  7936. }
  7937. #u155078 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:2px 2px 2px 2px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u155078_text {
  7945. border-width:0px;
  7946. word-wrap:break-word;
  7947. text-transform:none;
  7948. }
  7949. #u155079_div {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:0px;
  7953. top:0px;
  7954. width:49px;
  7955. height:17px;
  7956. background:inherit;
  7957. background-color:rgba(255, 255, 255, 0);
  7958. border:none;
  7959. border-radius:0px;
  7960. -moz-box-shadow:none;
  7961. -webkit-box-shadow:none;
  7962. box-shadow:none;
  7963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7964. font-weight:400;
  7965. font-style:normal;
  7966. font-size:12px;
  7967. }
  7968. #u155079 {
  7969. border-width:0px;
  7970. position:absolute;
  7971. left:701px;
  7972. top:484px;
  7973. width:49px;
  7974. height:17px;
  7975. display:flex;
  7976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:12px;
  7980. }
  7981. #u155079 .text {
  7982. position:absolute;
  7983. align-self:flex-start;
  7984. padding:0px 0px 0px 0px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u155079_text {
  7989. border-width:0px;
  7990. white-space:nowrap;
  7991. text-transform:none;
  7992. }