styles.css 180 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:884px;
  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. #u190880_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u190880 {
  28. border-width:0px;
  29. position:absolute;
  30. left:451px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u190880 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u190880_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u190881_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. #u190881 {
  73. border-width:0px;
  74. position:absolute;
  75. left:480px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u190881 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u190881_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u190882 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u190883_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. #u190883 {
  121. border-width:0px;
  122. position:absolute;
  123. left:760px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u190883 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u190883_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u190884 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u190885_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u190885 {
  159. border-width:0px;
  160. position:absolute;
  161. left:823px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u190885 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u190885_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u190886_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u190886 {
  189. border-width:0px;
  190. position:absolute;
  191. left:829px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u190886 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u190886_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u190887 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u190888_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u190888 {
  227. border-width:0px;
  228. position:absolute;
  229. left:774px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u190888 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u190888_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u190889_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u190889 {
  257. border-width:0px;
  258. position:absolute;
  259. left:790px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u190889 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u190889_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u190890_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u190890 {
  287. border-width:0px;
  288. position:absolute;
  289. left:781px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u190890 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u190890_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u190891_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u190891 {
  317. border-width:0px;
  318. position:absolute;
  319. left:798px;
  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. #u190891 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u190891_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u190892_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u190892 {
  351. border-width:0px;
  352. position:absolute;
  353. left:480px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u190892 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u190892_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u190893_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. #u190893 {
  393. border-width:0px;
  394. position:absolute;
  395. left:480px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u190893 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u190893_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u190894 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u190895_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u190895 {
  431. border-width:0px;
  432. position:absolute;
  433. left:520px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u190895 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u190895_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u190896_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. #u190896 {
  472. border-width:0px;
  473. position:absolute;
  474. left:520px;
  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. #u190896 .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. #u190896_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u190897 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u190898_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u190898 {
  513. border-width:0px;
  514. position:absolute;
  515. left:790px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u190898 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u190898_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u190899_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. #u190899 {
  554. border-width:0px;
  555. position:absolute;
  556. left:790px;
  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. #u190899 .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. #u190899_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u190900_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. #u190900 {
  594. border-width:0px;
  595. position:absolute;
  596. left:480px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u190900 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u190900_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u190901 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u190902_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u190902 {
  632. border-width:0px;
  633. position:absolute;
  634. left:702px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u190902 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u190902_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u190903_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. #u190903 {
  673. border-width:0px;
  674. position:absolute;
  675. left:696px;
  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. #u190903 .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. #u190903_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u190904 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u190905_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u190905 {
  714. border-width:0px;
  715. position:absolute;
  716. left:608px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u190905 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u190905_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u190906_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. #u190906 {
  755. border-width:0px;
  756. position:absolute;
  757. left:602px;
  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. #u190906 .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. #u190906_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u190907 {
  780. border-width:0px;
  781. position:absolute;
  782. left:480px;
  783. top:107px;
  784. width:379px;
  785. height:732px;
  786. }
  787. #u190907_state0 {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:379px;
  793. height:732px;
  794. overflow:auto;
  795. -webkit-overflow-scrolling:touch;
  796. -ms-overflow-x:hidden;
  797. overflow-x:hidden;
  798. background-image:none;
  799. border:none;
  800. border-radius:0px;
  801. -moz-box-shadow:none;
  802. -webkit-box-shadow:none;
  803. box-shadow:none;
  804. }
  805. #u190907_state0_content {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:1px;
  811. height:1px;
  812. }
  813. #u190908_div {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:375px;
  819. height:787px;
  820. background:inherit;
  821. background-color:rgba(242, 242, 242, 0.996078431372549);
  822. border:none;
  823. border-radius:0px;
  824. -moz-box-shadow:none;
  825. -webkit-box-shadow:none;
  826. box-shadow:none;
  827. }
  828. #u190908 {
  829. border-width:0px;
  830. position:absolute;
  831. left:1px;
  832. top:0px;
  833. width:375px;
  834. height:787px;
  835. display:flex;
  836. }
  837. #u190908 .text {
  838. position:absolute;
  839. align-self:center;
  840. padding:2px 2px 2px 2px;
  841. box-sizing:border-box;
  842. width:100%;
  843. }
  844. #u190908_text {
  845. border-width:0px;
  846. word-wrap:break-word;
  847. text-transform:none;
  848. visibility:hidden;
  849. }
  850. #u190909_div {
  851. border-width:0px;
  852. position:absolute;
  853. left:0px;
  854. top:0px;
  855. width:376px;
  856. height:140px;
  857. background:inherit;
  858. background-color:rgba(255, 255, 255, 1);
  859. border:none;
  860. border-radius:0px;
  861. -moz-box-shadow:none;
  862. -webkit-box-shadow:none;
  863. box-shadow:none;
  864. }
  865. #u190909 {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:151px;
  870. width:376px;
  871. height:140px;
  872. display:flex;
  873. }
  874. #u190909 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u190909_text {
  882. border-width:0px;
  883. word-wrap:break-word;
  884. text-transform:none;
  885. visibility:hidden;
  886. }
  887. #u190910_div {
  888. border-width:0px;
  889. position:absolute;
  890. left:0px;
  891. top:0px;
  892. width:376px;
  893. height:151px;
  894. background:inherit;
  895. background-color:rgba(24, 144, 255, 1);
  896. border:none;
  897. border-radius:0px;
  898. -moz-box-shadow:none;
  899. -webkit-box-shadow:none;
  900. box-shadow:none;
  901. }
  902. #u190910 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:376px;
  908. height:151px;
  909. display:flex;
  910. }
  911. #u190910 .text {
  912. position:absolute;
  913. align-self:center;
  914. padding:2px 2px 2px 2px;
  915. box-sizing:border-box;
  916. width:100%;
  917. }
  918. #u190910_text {
  919. border-width:0px;
  920. word-wrap:break-word;
  921. text-transform:none;
  922. visibility:hidden;
  923. }
  924. #u190911_div {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:145px;
  930. height:22px;
  931. background:inherit;
  932. background-color:rgba(255, 255, 255, 0);
  933. border:none;
  934. border-radius:0px;
  935. -moz-box-shadow:none;
  936. -webkit-box-shadow:none;
  937. box-shadow:none;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u190911 {
  945. border-width:0px;
  946. position:absolute;
  947. left:21px;
  948. top:15px;
  949. width:145px;
  950. height:22px;
  951. display:flex;
  952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  953. font-weight:400;
  954. font-style:normal;
  955. font-size:16px;
  956. color:#FFFFFF;
  957. }
  958. #u190911 .text {
  959. position:absolute;
  960. align-self:flex-start;
  961. padding:0px 0px 0px 0px;
  962. box-sizing:border-box;
  963. width:100%;
  964. }
  965. #u190911_text {
  966. border-width:0px;
  967. white-space:nowrap;
  968. text-transform:none;
  969. }
  970. #u190912_div {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:97px;
  976. height:22px;
  977. background:inherit;
  978. background-color:rgba(255, 255, 255, 0);
  979. border:none;
  980. border-radius:0px;
  981. -moz-box-shadow:none;
  982. -webkit-box-shadow:none;
  983. box-shadow:none;
  984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  985. font-weight:400;
  986. font-style:normal;
  987. font-size:16px;
  988. color:#000000;
  989. }
  990. #u190912 {
  991. border-width:0px;
  992. position:absolute;
  993. left:21px;
  994. top:165px;
  995. width:97px;
  996. height:22px;
  997. display:flex;
  998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  999. font-weight:400;
  1000. font-style:normal;
  1001. font-size:16px;
  1002. color:#000000;
  1003. }
  1004. #u190912 .text {
  1005. position:absolute;
  1006. align-self:flex-start;
  1007. padding:0px 0px 0px 0px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u190912_text {
  1012. border-width:0px;
  1013. white-space:nowrap;
  1014. text-transform:none;
  1015. }
  1016. #u190913_div {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:80px;
  1022. height:20px;
  1023. background:inherit;
  1024. background-color:rgba(255, 255, 255, 0);
  1025. border:none;
  1026. border-radius:0px;
  1027. -moz-box-shadow:none;
  1028. -webkit-box-shadow:none;
  1029. box-shadow:none;
  1030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1031. font-weight:400;
  1032. font-style:normal;
  1033. color:#000000;
  1034. }
  1035. #u190913 {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:51px;
  1039. top:236px;
  1040. width:80px;
  1041. height:20px;
  1042. display:flex;
  1043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. color:#000000;
  1047. }
  1048. #u190913 .text {
  1049. position:absolute;
  1050. align-self:flex-start;
  1051. padding:0px 0px 0px 0px;
  1052. box-sizing:border-box;
  1053. width:100%;
  1054. }
  1055. #u190913_text {
  1056. border-width:0px;
  1057. white-space:nowrap;
  1058. text-transform:none;
  1059. }
  1060. #u190914_div {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:0px;
  1064. top:0px;
  1065. width:49px;
  1066. height:25px;
  1067. background:inherit;
  1068. background-color:rgba(255, 255, 255, 0);
  1069. border:none;
  1070. border-radius:0px;
  1071. -moz-box-shadow:none;
  1072. -webkit-box-shadow:none;
  1073. box-shadow:none;
  1074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1075. font-weight:500;
  1076. font-style:normal;
  1077. font-size:18px;
  1078. color:#000000;
  1079. }
  1080. #u190914 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:67px;
  1084. top:209px;
  1085. width:49px;
  1086. height:25px;
  1087. display:flex;
  1088. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1089. font-weight:500;
  1090. font-style:normal;
  1091. font-size:18px;
  1092. color:#000000;
  1093. }
  1094. #u190914 .text {
  1095. position:absolute;
  1096. align-self:flex-start;
  1097. padding:0px 0px 0px 0px;
  1098. box-sizing:border-box;
  1099. width:100%;
  1100. }
  1101. #u190914_text {
  1102. border-width:0px;
  1103. white-space:nowrap;
  1104. text-transform:none;
  1105. }
  1106. #u190915_div {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:0px;
  1110. top:0px;
  1111. width:94px;
  1112. height:20px;
  1113. background:inherit;
  1114. background-color:rgba(255, 255, 255, 0);
  1115. border:none;
  1116. border-radius:0px;
  1117. -moz-box-shadow:none;
  1118. -webkit-box-shadow:none;
  1119. box-shadow:none;
  1120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1121. font-weight:400;
  1122. font-style:normal;
  1123. color:#000000;
  1124. }
  1125. #u190915 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:229px;
  1129. top:236px;
  1130. width:94px;
  1131. height:20px;
  1132. display:flex;
  1133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1134. font-weight:400;
  1135. font-style:normal;
  1136. color:#000000;
  1137. }
  1138. #u190915 .text {
  1139. position:absolute;
  1140. align-self:flex-start;
  1141. padding:0px 0px 0px 0px;
  1142. box-sizing:border-box;
  1143. width:100%;
  1144. }
  1145. #u190915_text {
  1146. border-width:0px;
  1147. white-space:nowrap;
  1148. text-transform:none;
  1149. }
  1150. #u190916_div {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:38px;
  1156. height:25px;
  1157. background:inherit;
  1158. background-color:rgba(255, 255, 255, 0);
  1159. border:none;
  1160. border-radius:0px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1165. font-weight:500;
  1166. font-style:normal;
  1167. font-size:18px;
  1168. color:#000000;
  1169. }
  1170. #u190916 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:257px;
  1174. top:209px;
  1175. width:38px;
  1176. height:25px;
  1177. display:flex;
  1178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1179. font-weight:500;
  1180. font-style:normal;
  1181. font-size:18px;
  1182. color:#000000;
  1183. }
  1184. #u190916 .text {
  1185. position:absolute;
  1186. align-self:flex-start;
  1187. padding:0px 0px 0px 0px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u190916_text {
  1192. border-width:0px;
  1193. white-space:nowrap;
  1194. text-transform:none;
  1195. }
  1196. #u190917_div {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:17px;
  1202. height:22px;
  1203. background:inherit;
  1204. background-color:rgba(255, 255, 255, 0);
  1205. border:none;
  1206. border-radius:0px;
  1207. -moz-box-shadow:none;
  1208. -webkit-box-shadow:none;
  1209. box-shadow:none;
  1210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1211. font-weight:400;
  1212. font-style:normal;
  1213. font-size:16px;
  1214. color:#FFFFFF;
  1215. text-align:right;
  1216. }
  1217. #u190917 {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:341px;
  1221. top:15px;
  1222. width:17px;
  1223. height:22px;
  1224. display:flex;
  1225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1226. font-weight:400;
  1227. font-style:normal;
  1228. font-size:16px;
  1229. color:#FFFFFF;
  1230. text-align:right;
  1231. }
  1232. #u190917 .text {
  1233. position:absolute;
  1234. align-self:flex-start;
  1235. padding:0px 0px 0px 0px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u190917_text {
  1240. border-width:0px;
  1241. white-space:nowrap;
  1242. text-transform:none;
  1243. }
  1244. #u190918 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:0px;
  1250. height:0px;
  1251. }
  1252. #u190919_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:94px;
  1258. height:25px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 0);
  1261. border:none;
  1262. border-radius:0px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1267. font-weight:500;
  1268. font-style:normal;
  1269. font-size:18px;
  1270. color:#FFFFFF;
  1271. }
  1272. #u190919 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:22px;
  1276. top:64px;
  1277. width:94px;
  1278. height:25px;
  1279. display:flex;
  1280. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1281. font-weight:500;
  1282. font-style:normal;
  1283. font-size:18px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u190919 .text {
  1287. position:absolute;
  1288. align-self:flex-start;
  1289. padding:0px 0px 0px 0px;
  1290. box-sizing:border-box;
  1291. width:100%;
  1292. }
  1293. #u190919_text {
  1294. border-width:0px;
  1295. white-space:nowrap;
  1296. text-transform:none;
  1297. }
  1298. #u190920_div {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:0px;
  1302. top:0px;
  1303. width:81px;
  1304. height:17px;
  1305. background:inherit;
  1306. background-color:rgba(255, 255, 255, 0);
  1307. border:none;
  1308. border-radius:0px;
  1309. -moz-box-shadow:none;
  1310. -webkit-box-shadow:none;
  1311. box-shadow:none;
  1312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1313. font-weight:400;
  1314. font-style:normal;
  1315. font-size:12px;
  1316. color:#FFFFFF;
  1317. }
  1318. #u190920 {
  1319. border-width:0px;
  1320. position:absolute;
  1321. left:29px;
  1322. top:102px;
  1323. width:81px;
  1324. height:17px;
  1325. display:flex;
  1326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1327. font-weight:400;
  1328. font-style:normal;
  1329. font-size:12px;
  1330. color:#FFFFFF;
  1331. }
  1332. #u190920 .text {
  1333. position:absolute;
  1334. align-self:flex-start;
  1335. padding:0px 0px 0px 0px;
  1336. box-sizing:border-box;
  1337. width:100%;
  1338. }
  1339. #u190920_text {
  1340. border-width:0px;
  1341. white-space:nowrap;
  1342. text-transform:none;
  1343. }
  1344. #u190921_div {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:76px;
  1350. height:25px;
  1351. background:inherit;
  1352. background-color:rgba(255, 255, 255, 0);
  1353. border:none;
  1354. border-radius:0px;
  1355. -moz-box-shadow:none;
  1356. -webkit-box-shadow:none;
  1357. box-shadow:none;
  1358. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1359. font-weight:500;
  1360. font-style:normal;
  1361. font-size:18px;
  1362. color:#FFFFFF;
  1363. }
  1364. #u190921 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:156px;
  1368. top:64px;
  1369. width:76px;
  1370. height:25px;
  1371. display:flex;
  1372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1373. font-weight:500;
  1374. font-style:normal;
  1375. font-size:18px;
  1376. color:#FFFFFF;
  1377. }
  1378. #u190921 .text {
  1379. position:absolute;
  1380. align-self:flex-start;
  1381. padding:0px 0px 0px 0px;
  1382. box-sizing:border-box;
  1383. width:100%;
  1384. }
  1385. #u190921_text {
  1386. border-width:0px;
  1387. white-space:nowrap;
  1388. text-transform:none;
  1389. }
  1390. #u190922_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:93px;
  1396. height:17px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 0);
  1399. border:none;
  1400. border-radius:0px;
  1401. -moz-box-shadow:none;
  1402. -webkit-box-shadow:none;
  1403. box-shadow:none;
  1404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1405. font-weight:400;
  1406. font-style:normal;
  1407. font-size:12px;
  1408. color:#FFFFFF;
  1409. }
  1410. #u190922 {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:148px;
  1414. top:102px;
  1415. width:93px;
  1416. height:17px;
  1417. display:flex;
  1418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1419. font-weight:400;
  1420. font-style:normal;
  1421. font-size:12px;
  1422. color:#FFFFFF;
  1423. }
  1424. #u190922 .text {
  1425. position:absolute;
  1426. align-self:flex-start;
  1427. padding:0px 0px 0px 0px;
  1428. box-sizing:border-box;
  1429. width:100%;
  1430. }
  1431. #u190922_text {
  1432. border-width:0px;
  1433. white-space:nowrap;
  1434. text-transform:none;
  1435. }
  1436. #u190923_div {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:0px;
  1440. top:0px;
  1441. width:76px;
  1442. height:25px;
  1443. background:inherit;
  1444. background-color:rgba(255, 255, 255, 0);
  1445. border:none;
  1446. border-radius:0px;
  1447. -moz-box-shadow:none;
  1448. -webkit-box-shadow:none;
  1449. box-shadow:none;
  1450. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1451. font-weight:500;
  1452. font-style:normal;
  1453. font-size:18px;
  1454. color:#FFFFFF;
  1455. }
  1456. #u190923 {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:277px;
  1460. top:64px;
  1461. width:76px;
  1462. height:25px;
  1463. display:flex;
  1464. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1465. font-weight:500;
  1466. font-style:normal;
  1467. font-size:18px;
  1468. color:#FFFFFF;
  1469. }
  1470. #u190923 .text {
  1471. position:absolute;
  1472. align-self:flex-start;
  1473. padding:0px 0px 0px 0px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u190923_text {
  1478. border-width:0px;
  1479. white-space:nowrap;
  1480. text-transform:none;
  1481. }
  1482. #u190924_div {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:93px;
  1488. height:17px;
  1489. background:inherit;
  1490. background-color:rgba(255, 255, 255, 0);
  1491. border:none;
  1492. border-radius:0px;
  1493. -moz-box-shadow:none;
  1494. -webkit-box-shadow:none;
  1495. box-shadow:none;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:12px;
  1500. color:#FFFFFF;
  1501. }
  1502. #u190924 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:268px;
  1506. top:102px;
  1507. width:93px;
  1508. height:17px;
  1509. display:flex;
  1510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1511. font-weight:400;
  1512. font-style:normal;
  1513. font-size:12px;
  1514. color:#FFFFFF;
  1515. }
  1516. #u190924 .text {
  1517. position:absolute;
  1518. align-self:flex-start;
  1519. padding:0px 0px 0px 0px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u190924_text {
  1524. border-width:0px;
  1525. white-space:nowrap;
  1526. text-transform:none;
  1527. }
  1528. #u190925_div {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:36px;
  1534. height:17px;
  1535. background:inherit;
  1536. background-color:rgba(255, 255, 255, 0);
  1537. border:none;
  1538. border-radius:0px;
  1539. -moz-box-shadow:none;
  1540. -webkit-box-shadow:none;
  1541. box-shadow:none;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. font-size:12px;
  1546. color:#000000;
  1547. }
  1548. #u190925 {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:242px;
  1552. top:168px;
  1553. width:36px;
  1554. height:17px;
  1555. display:flex;
  1556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1557. font-weight:400;
  1558. font-style:normal;
  1559. font-size:12px;
  1560. color:#000000;
  1561. }
  1562. #u190925 .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. #u190925_text {
  1570. border-width:0px;
  1571. white-space:nowrap;
  1572. text-transform:none;
  1573. }
  1574. #u190926_div {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:0px;
  1578. top:0px;
  1579. width:81px;
  1580. height:17px;
  1581. background:inherit;
  1582. background-color:rgba(255, 255, 255, 0);
  1583. border:none;
  1584. border-radius:0px;
  1585. -moz-box-shadow:none;
  1586. -webkit-box-shadow:none;
  1587. box-shadow:none;
  1588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1589. font-weight:400;
  1590. font-style:normal;
  1591. font-size:12px;
  1592. color:#000000;
  1593. }
  1594. #u190926 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:286px;
  1598. top:168px;
  1599. width:81px;
  1600. height:17px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:12px;
  1606. color:#000000;
  1607. }
  1608. #u190926 .text {
  1609. position:absolute;
  1610. align-self:flex-start;
  1611. padding:0px 0px 0px 0px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u190926_text {
  1616. border-width:0px;
  1617. white-space:nowrap;
  1618. text-transform:none;
  1619. }
  1620. #u190927_div {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:376px;
  1626. height:221px;
  1627. background:inherit;
  1628. background-color:rgba(255, 255, 255, 1);
  1629. border:none;
  1630. border-radius:0px;
  1631. -moz-box-shadow:none;
  1632. -webkit-box-shadow:none;
  1633. box-shadow:none;
  1634. }
  1635. #u190927 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:1px;
  1639. top:561px;
  1640. width:376px;
  1641. height:221px;
  1642. display:flex;
  1643. }
  1644. #u190927 .text {
  1645. position:absolute;
  1646. align-self:center;
  1647. padding:2px 2px 2px 2px;
  1648. box-sizing:border-box;
  1649. width:100%;
  1650. }
  1651. #u190927_text {
  1652. border-width:0px;
  1653. word-wrap:break-word;
  1654. text-transform:none;
  1655. visibility:hidden;
  1656. }
  1657. #u190928_div {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:324px;
  1663. height:120px;
  1664. background:inherit;
  1665. background-color:rgba(255, 255, 255, 1);
  1666. box-sizing:border-box;
  1667. border-width:1px;
  1668. border-style:solid;
  1669. border-color:rgba(121, 121, 121, 1);
  1670. border-top:0px;
  1671. border-right:0px;
  1672. border-radius:0px;
  1673. border-top-left-radius:0px;
  1674. border-bottom-right-radius:0px;
  1675. -moz-box-shadow:none;
  1676. -webkit-box-shadow:none;
  1677. box-shadow:none;
  1678. }
  1679. #u190928 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:32px;
  1683. top:624px;
  1684. width:324px;
  1685. height:120px;
  1686. display:flex;
  1687. }
  1688. #u190928 .text {
  1689. position:absolute;
  1690. align-self:center;
  1691. padding:2px 2px 2px 2px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u190928_text {
  1696. border-width:0px;
  1697. word-wrap:break-word;
  1698. text-transform:none;
  1699. visibility:hidden;
  1700. }
  1701. #u190929_div {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:0px;
  1705. top:0px;
  1706. width:30px;
  1707. height:120px;
  1708. background:inherit;
  1709. background-color:rgba(51, 51, 51, 0.298039215686275);
  1710. border:none;
  1711. border-radius:0px;
  1712. -moz-box-shadow:none;
  1713. -webkit-box-shadow:none;
  1714. box-shadow:none;
  1715. }
  1716. #u190929 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:136px;
  1720. top:624px;
  1721. width:30px;
  1722. height:120px;
  1723. display:flex;
  1724. }
  1725. #u190929 .text {
  1726. position:absolute;
  1727. align-self:center;
  1728. padding:2px 2px 2px 2px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u190929_text {
  1733. border-width:0px;
  1734. word-wrap:break-word;
  1735. text-transform:none;
  1736. visibility:hidden;
  1737. }
  1738. #u190930_div {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:376px;
  1744. height:207px;
  1745. background:inherit;
  1746. background-color:rgba(255, 255, 255, 1);
  1747. border:none;
  1748. border-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. }
  1753. #u190930 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:352px;
  1758. width:376px;
  1759. height:207px;
  1760. display:flex;
  1761. }
  1762. #u190930 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 2px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u190930_text {
  1770. border-width:0px;
  1771. word-wrap:break-word;
  1772. text-transform:none;
  1773. visibility:hidden;
  1774. }
  1775. #u190931_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:65px;
  1781. height:22px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 255, 0);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:16px;
  1793. color:#000000;
  1794. }
  1795. #u190931 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:21px;
  1799. top:366px;
  1800. width:65px;
  1801. height:22px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:16px;
  1807. color:#000000;
  1808. }
  1809. #u190931 .text {
  1810. position:absolute;
  1811. align-self:flex-start;
  1812. padding:0px 0px 0px 0px;
  1813. box-sizing:border-box;
  1814. width:100%;
  1815. }
  1816. #u190931_text {
  1817. border-width:0px;
  1818. white-space:nowrap;
  1819. text-transform:none;
  1820. }
  1821. #u190932_div {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:324px;
  1827. height:120px;
  1828. background:inherit;
  1829. background-color:rgba(255, 255, 255, 1);
  1830. box-sizing:border-box;
  1831. border-width:1px;
  1832. border-style:solid;
  1833. border-color:rgba(121, 121, 121, 1);
  1834. border-top:0px;
  1835. border-right:0px;
  1836. border-radius:0px;
  1837. border-top-left-radius:0px;
  1838. border-bottom-right-radius:0px;
  1839. -moz-box-shadow:none;
  1840. -webkit-box-shadow:none;
  1841. box-shadow:none;
  1842. }
  1843. #u190932 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:31px;
  1847. top:415px;
  1848. width:324px;
  1849. height:120px;
  1850. display:flex;
  1851. }
  1852. #u190932 .text {
  1853. position:absolute;
  1854. align-self:center;
  1855. padding:2px 2px 2px 2px;
  1856. box-sizing:border-box;
  1857. width:100%;
  1858. }
  1859. #u190932_text {
  1860. border-width:0px;
  1861. word-wrap:break-word;
  1862. text-transform:none;
  1863. visibility:hidden;
  1864. }
  1865. #u190933_div {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:45px;
  1871. height:17px;
  1872. background:inherit;
  1873. background-color:rgba(255, 255, 255, 0);
  1874. border:none;
  1875. border-radius:0px;
  1876. -moz-box-shadow:none;
  1877. -webkit-box-shadow:none;
  1878. box-shadow:none;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:12px;
  1883. color:#000000;
  1884. }
  1885. #u190933 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:31px;
  1889. top:393px;
  1890. width:45px;
  1891. height:17px;
  1892. display:flex;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:12px;
  1897. color:#000000;
  1898. }
  1899. #u190933 .text {
  1900. position:absolute;
  1901. align-self:flex-start;
  1902. padding:0px 0px 0px 0px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u190933_text {
  1907. border-width:0px;
  1908. white-space:nowrap;
  1909. text-transform:none;
  1910. }
  1911. #u190934_img {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:-1px;
  1915. top:-1px;
  1916. width:275px;
  1917. height:44px;
  1918. }
  1919. #u190934 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:47px;
  1923. top:449px;
  1924. width:272px;
  1925. height:41px;
  1926. display:flex;
  1927. }
  1928. #u190934 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:2px 2px 2px 2px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u190934_text {
  1936. border-width:0px;
  1937. word-wrap:break-word;
  1938. text-transform:none;
  1939. visibility:hidden;
  1940. }
  1941. #u190935_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:376px;
  1947. height:50px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 1);
  1950. border:none;
  1951. border-radius:0px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. }
  1956. #u190935 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:301px;
  1961. width:376px;
  1962. height:50px;
  1963. display:flex;
  1964. }
  1965. #u190935 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u190935_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. visibility:hidden;
  1977. }
  1978. #u190936_div {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:97px;
  1984. height:22px;
  1985. background:inherit;
  1986. background-color:rgba(255, 255, 255, 0);
  1987. border:none;
  1988. border-radius:0px;
  1989. -moz-box-shadow:none;
  1990. -webkit-box-shadow:none;
  1991. box-shadow:none;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:16px;
  1996. color:#000000;
  1997. }
  1998. #u190936 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:24px;
  2002. top:315px;
  2003. width:97px;
  2004. height:22px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:16px;
  2010. color:#000000;
  2011. }
  2012. #u190936 .text {
  2013. position:absolute;
  2014. align-self:flex-start;
  2015. padding:0px 0px 0px 0px;
  2016. box-sizing:border-box;
  2017. width:100%;
  2018. }
  2019. #u190936_text {
  2020. border-width:0px;
  2021. white-space:nowrap;
  2022. text-transform:none;
  2023. }
  2024. #u190937_div {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:208px;
  2030. height:22px;
  2031. background:inherit;
  2032. background-color:rgba(255, 255, 255, 0);
  2033. border:none;
  2034. border-radius:0px;
  2035. -moz-box-shadow:none;
  2036. -webkit-box-shadow:none;
  2037. box-shadow:none;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:16px;
  2042. color:#000000;
  2043. }
  2044. #u190937 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:159px;
  2048. top:315px;
  2049. width:208px;
  2050. height:22px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:16px;
  2056. color:#000000;
  2057. }
  2058. #u190937 .text {
  2059. position:absolute;
  2060. align-self:flex-start;
  2061. padding:0px 0px 0px 0px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u190937_text {
  2066. border-width:0px;
  2067. white-space:nowrap;
  2068. text-transform:none;
  2069. }
  2070. #u190938_div {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:65px;
  2076. height:22px;
  2077. background:inherit;
  2078. background-color:rgba(255, 255, 255, 0);
  2079. border:none;
  2080. border-radius:0px;
  2081. -moz-box-shadow:none;
  2082. -webkit-box-shadow:none;
  2083. box-shadow:none;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:16px;
  2088. color:#000000;
  2089. }
  2090. #u190938 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:22px;
  2094. top:575px;
  2095. width:65px;
  2096. height:22px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:16px;
  2102. color:#000000;
  2103. }
  2104. #u190938 .text {
  2105. position:absolute;
  2106. align-self:flex-start;
  2107. padding:0px 0px 0px 0px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u190938_text {
  2112. border-width:0px;
  2113. white-space:nowrap;
  2114. text-transform:none;
  2115. }
  2116. #u190939_div {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:45px;
  2122. height:17px;
  2123. background:inherit;
  2124. background-color:rgba(255, 255, 255, 0);
  2125. border:none;
  2126. border-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:12px;
  2134. color:#000000;
  2135. }
  2136. #u190939 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:32px;
  2140. top:602px;
  2141. width:45px;
  2142. height:17px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:12px;
  2148. color:#000000;
  2149. }
  2150. #u190939 .text {
  2151. position:absolute;
  2152. align-self:flex-start;
  2153. padding:0px 0px 0px 0px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u190939_text {
  2158. border-width:0px;
  2159. white-space:nowrap;
  2160. text-transform:none;
  2161. }
  2162. #u190940_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:2px;
  2168. height:98px;
  2169. }
  2170. #u190940 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:231px;
  2174. top:438px;
  2175. width:1px;
  2176. height:97px;
  2177. display:flex;
  2178. }
  2179. #u190940 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u190940_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. visibility:hidden;
  2191. }
  2192. #u190941 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:0px;
  2198. height:0px;
  2199. }
  2200. #u190942_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:146px;
  2206. height:40px;
  2207. background:inherit;
  2208. background-color:rgba(0, 0, 0, 0.498039215686275);
  2209. border:none;
  2210. border-radius:4px;
  2211. -moz-box-shadow:none;
  2212. -webkit-box-shadow:none;
  2213. box-shadow:none;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:16px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u190942 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:215px;
  2224. top:475px;
  2225. width:146px;
  2226. height:40px;
  2227. display:flex;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:16px;
  2232. color:#FFFFFF;
  2233. }
  2234. #u190942 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:0px 20px 0px 25px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u190942_text {
  2242. border-width:0px;
  2243. white-space:nowrap;
  2244. text-transform:none;
  2245. }
  2246. #u190943_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:7px;
  2252. height:7px;
  2253. }
  2254. #u190943 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:229px;
  2258. top:492px;
  2259. width:7px;
  2260. height:7px;
  2261. display:flex;
  2262. }
  2263. #u190943 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 2px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u190943_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. visibility:hidden;
  2275. }
  2276. #u190944 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:0px;
  2282. height:0px;
  2283. }
  2284. #u190945_div {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:14px;
  2290. height:51px;
  2291. background:inherit;
  2292. background-color:rgba(24, 144, 255, 1);
  2293. border:none;
  2294. border-radius:0px;
  2295. -moz-box-shadow:none;
  2296. -webkit-box-shadow:none;
  2297. box-shadow:none;
  2298. }
  2299. #u190945 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:55px;
  2303. top:693px;
  2304. width:14px;
  2305. height:51px;
  2306. display:flex;
  2307. }
  2308. #u190945 .text {
  2309. position:absolute;
  2310. align-self:center;
  2311. padding:2px 2px 2px 2px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u190945_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. visibility:hidden;
  2320. }
  2321. #u190946_div {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:14px;
  2327. height:26px;
  2328. background:inherit;
  2329. background-color:rgba(80, 227, 193, 1);
  2330. border:none;
  2331. border-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. }
  2336. #u190946 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:55px;
  2340. top:667px;
  2341. width:14px;
  2342. height:26px;
  2343. display:flex;
  2344. }
  2345. #u190946 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 2px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u190946_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u190947_div {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:14px;
  2364. height:26px;
  2365. background:inherit;
  2366. background-color:rgba(250, 205, 145, 1);
  2367. border:none;
  2368. border-radius:0px;
  2369. -moz-box-shadow:none;
  2370. -webkit-box-shadow:none;
  2371. box-shadow:none;
  2372. }
  2373. #u190947 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:55px;
  2377. top:641px;
  2378. width:14px;
  2379. height:26px;
  2380. display:flex;
  2381. }
  2382. #u190947 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 2px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u190947_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. visibility:hidden;
  2394. }
  2395. #u190948 {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:0px;
  2401. height:0px;
  2402. }
  2403. #u190949_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:14px;
  2409. height:51px;
  2410. background:inherit;
  2411. background-color:rgba(24, 144, 255, 1);
  2412. border:none;
  2413. border-radius:0px;
  2414. -moz-box-shadow:none;
  2415. -webkit-box-shadow:none;
  2416. box-shadow:none;
  2417. }
  2418. #u190949 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:100px;
  2422. top:693px;
  2423. width:14px;
  2424. height:51px;
  2425. display:flex;
  2426. }
  2427. #u190949 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 2px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u190949_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. visibility:hidden;
  2439. }
  2440. #u190950_div {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:14px;
  2446. height:26px;
  2447. background:inherit;
  2448. background-color:rgba(80, 227, 193, 1);
  2449. border:none;
  2450. border-radius:0px;
  2451. -moz-box-shadow:none;
  2452. -webkit-box-shadow:none;
  2453. box-shadow:none;
  2454. }
  2455. #u190950 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:100px;
  2459. top:667px;
  2460. width:14px;
  2461. height:26px;
  2462. display:flex;
  2463. }
  2464. #u190950 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 2px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u190950_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u190951 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:0px;
  2483. height:0px;
  2484. }
  2485. #u190952_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:14px;
  2491. height:51px;
  2492. background:inherit;
  2493. background-color:rgba(24, 144, 255, 1);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. }
  2500. #u190952 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:144px;
  2504. top:693px;
  2505. width:14px;
  2506. height:51px;
  2507. display:flex;
  2508. }
  2509. #u190952 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 2px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u190952_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. visibility:hidden;
  2521. }
  2522. #u190953_div {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:14px;
  2528. height:26px;
  2529. background:inherit;
  2530. background-color:rgba(80, 227, 193, 1);
  2531. border:none;
  2532. border-radius:0px;
  2533. -moz-box-shadow:none;
  2534. -webkit-box-shadow:none;
  2535. box-shadow:none;
  2536. }
  2537. #u190953 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:144px;
  2541. top:669px;
  2542. width:14px;
  2543. height:26px;
  2544. display:flex;
  2545. }
  2546. #u190953 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 2px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u190953_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. visibility:hidden;
  2558. }
  2559. #u190954_div {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:14px;
  2565. height:8px;
  2566. background:inherit;
  2567. background-color:rgba(250, 205, 145, 1);
  2568. border:none;
  2569. border-radius:0px;
  2570. -moz-box-shadow:none;
  2571. -webkit-box-shadow:none;
  2572. box-shadow:none;
  2573. }
  2574. #u190954 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:144px;
  2578. top:664px;
  2579. width:14px;
  2580. height:8px;
  2581. display:flex;
  2582. }
  2583. #u190954 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 2px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u190954_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u190955 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:0px;
  2602. height:0px;
  2603. }
  2604. #u190956_div {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:14px;
  2610. height:51px;
  2611. background:inherit;
  2612. background-color:rgba(24, 144, 255, 1);
  2613. border:none;
  2614. border-radius:0px;
  2615. -moz-box-shadow:none;
  2616. -webkit-box-shadow:none;
  2617. box-shadow:none;
  2618. }
  2619. #u190956 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:189px;
  2623. top:693px;
  2624. width:14px;
  2625. height:51px;
  2626. display:flex;
  2627. }
  2628. #u190956 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 2px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u190956_text {
  2636. border-width:0px;
  2637. word-wrap:break-word;
  2638. text-transform:none;
  2639. visibility:hidden;
  2640. }
  2641. #u190957_div {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:14px;
  2647. height:26px;
  2648. background:inherit;
  2649. background-color:rgba(80, 227, 193, 1);
  2650. border:none;
  2651. border-radius:0px;
  2652. -moz-box-shadow:none;
  2653. -webkit-box-shadow:none;
  2654. box-shadow:none;
  2655. }
  2656. #u190957 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:189px;
  2660. top:667px;
  2661. width:14px;
  2662. height:26px;
  2663. display:flex;
  2664. }
  2665. #u190957 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u190957_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. visibility:hidden;
  2677. }
  2678. #u190958 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:0px;
  2684. height:0px;
  2685. }
  2686. #u190959_div {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:14px;
  2692. height:64px;
  2693. background:inherit;
  2694. background-color:rgba(24, 144, 255, 1);
  2695. border:none;
  2696. border-radius:0px;
  2697. -moz-box-shadow:none;
  2698. -webkit-box-shadow:none;
  2699. box-shadow:none;
  2700. }
  2701. #u190959 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:234px;
  2705. top:680px;
  2706. width:14px;
  2707. height:64px;
  2708. display:flex;
  2709. }
  2710. #u190959 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u190959_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u190960_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:14px;
  2729. height:13px;
  2730. background:inherit;
  2731. background-color:rgba(80, 227, 193, 1);
  2732. border:none;
  2733. border-radius:0px;
  2734. -moz-box-shadow:none;
  2735. -webkit-box-shadow:none;
  2736. box-shadow:none;
  2737. }
  2738. #u190960 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:234px;
  2742. top:667px;
  2743. width:14px;
  2744. height:13px;
  2745. display:flex;
  2746. }
  2747. #u190960 .text {
  2748. position:absolute;
  2749. align-self:center;
  2750. padding:2px 2px 2px 2px;
  2751. box-sizing:border-box;
  2752. width:100%;
  2753. }
  2754. #u190960_text {
  2755. border-width:0px;
  2756. word-wrap:break-word;
  2757. text-transform:none;
  2758. visibility:hidden;
  2759. }
  2760. #u190961_div {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:14px;
  2766. height:8px;
  2767. background:inherit;
  2768. background-color:rgba(250, 205, 145, 1);
  2769. border:none;
  2770. border-radius:0px;
  2771. -moz-box-shadow:none;
  2772. -webkit-box-shadow:none;
  2773. box-shadow:none;
  2774. }
  2775. #u190961 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:234px;
  2779. top:659px;
  2780. width:14px;
  2781. height:8px;
  2782. display:flex;
  2783. }
  2784. #u190961 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u190961_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u190962 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:0px;
  2803. height:0px;
  2804. }
  2805. #u190963_div {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:14px;
  2811. height:39px;
  2812. background:inherit;
  2813. background-color:rgba(24, 144, 255, 1);
  2814. border:none;
  2815. border-radius:0px;
  2816. -moz-box-shadow:none;
  2817. -webkit-box-shadow:none;
  2818. box-shadow:none;
  2819. }
  2820. #u190963 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:278px;
  2824. top:705px;
  2825. width:14px;
  2826. height:39px;
  2827. display:flex;
  2828. }
  2829. #u190963 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u190963_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u190964_div {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:14px;
  2848. height:20px;
  2849. background:inherit;
  2850. background-color:rgba(80, 227, 193, 1);
  2851. border:none;
  2852. border-radius:0px;
  2853. -moz-box-shadow:none;
  2854. -webkit-box-shadow:none;
  2855. box-shadow:none;
  2856. }
  2857. #u190964 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:278px;
  2861. top:685px;
  2862. width:14px;
  2863. height:20px;
  2864. display:flex;
  2865. }
  2866. #u190964 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u190964_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u190965_div {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:14px;
  2885. height:20px;
  2886. background:inherit;
  2887. background-color:rgba(250, 205, 145, 1);
  2888. border:none;
  2889. border-radius:0px;
  2890. -moz-box-shadow:none;
  2891. -webkit-box-shadow:none;
  2892. box-shadow:none;
  2893. }
  2894. #u190965 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:278px;
  2898. top:665px;
  2899. width:14px;
  2900. height:20px;
  2901. display:flex;
  2902. }
  2903. #u190965 .text {
  2904. position:absolute;
  2905. align-self:center;
  2906. padding:2px 2px 2px 2px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u190965_text {
  2911. border-width:0px;
  2912. word-wrap:break-word;
  2913. text-transform:none;
  2914. visibility:hidden;
  2915. }
  2916. #u190966 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:0px;
  2922. height:0px;
  2923. }
  2924. #u190967_div {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:14px;
  2930. height:60px;
  2931. background:inherit;
  2932. background-color:rgba(24, 144, 255, 1);
  2933. border:none;
  2934. border-radius:0px;
  2935. -moz-box-shadow:none;
  2936. -webkit-box-shadow:none;
  2937. box-shadow:none;
  2938. }
  2939. #u190967 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:323px;
  2943. top:684px;
  2944. width:14px;
  2945. height:60px;
  2946. display:flex;
  2947. }
  2948. #u190967 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 2px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u190967_text {
  2956. border-width:0px;
  2957. word-wrap:break-word;
  2958. text-transform:none;
  2959. visibility:hidden;
  2960. }
  2961. #u190968_div {
  2962. border-width:0px;
  2963. position:absolute;
  2964. left:0px;
  2965. top:0px;
  2966. width:14px;
  2967. height:26px;
  2968. background:inherit;
  2969. background-color:rgba(80, 227, 193, 1);
  2970. border:none;
  2971. border-radius:0px;
  2972. -moz-box-shadow:none;
  2973. -webkit-box-shadow:none;
  2974. box-shadow:none;
  2975. }
  2976. #u190968 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:323px;
  2980. top:665px;
  2981. width:14px;
  2982. height:26px;
  2983. display:flex;
  2984. }
  2985. #u190968 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 2px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u190968_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. visibility:hidden;
  2997. }
  2998. #u190969 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:0px;
  3004. height:0px;
  3005. }
  3006. #u190970_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:153px;
  3012. height:80px;
  3013. background:inherit;
  3014. background-color:rgba(0, 0, 0, 0.498039215686275);
  3015. border:none;
  3016. border-radius:4px;
  3017. -moz-box-shadow:none;
  3018. -webkit-box-shadow:none;
  3019. box-shadow:none;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:16px;
  3024. color:#FFFFFF;
  3025. }
  3026. #u190970 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:170px;
  3030. top:634px;
  3031. width:153px;
  3032. height:80px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:16px;
  3038. color:#FFFFFF;
  3039. }
  3040. #u190970 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:0px 20px 0px 25px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u190970_text {
  3048. border-width:0px;
  3049. white-space:nowrap;
  3050. text-transform:none;
  3051. }
  3052. #u190971_img {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:7px;
  3058. height:7px;
  3059. }
  3060. #u190971 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:184px;
  3064. top:650px;
  3065. width:7px;
  3066. height:7px;
  3067. display:flex;
  3068. }
  3069. #u190971 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 2px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u190971_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. visibility:hidden;
  3081. }
  3082. #u190972_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:7px;
  3088. height:7px;
  3089. }
  3090. #u190972 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:184px;
  3094. top:672px;
  3095. width:7px;
  3096. height:7px;
  3097. display:flex;
  3098. }
  3099. #u190972 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 2px 2px 2px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u190972_text {
  3107. border-width:0px;
  3108. word-wrap:break-word;
  3109. text-transform:none;
  3110. visibility:hidden;
  3111. }
  3112. #u190973_img {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:7px;
  3118. height:7px;
  3119. }
  3120. #u190973 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:184px;
  3124. top:696px;
  3125. width:7px;
  3126. height:7px;
  3127. display:flex;
  3128. }
  3129. #u190973 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 2px 2px 2px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u190973_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. visibility:hidden;
  3141. }
  3142. #u190974 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:0px;
  3148. height:0px;
  3149. }
  3150. #u190975_div {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:28px;
  3156. height:14px;
  3157. background:inherit;
  3158. background-color:rgba(255, 255, 255, 0);
  3159. border:none;
  3160. border-radius:0px;
  3161. -moz-box-shadow:none;
  3162. -webkit-box-shadow:none;
  3163. box-shadow:none;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:10px;
  3168. color:#000000;
  3169. text-align:center;
  3170. }
  3171. #u190975 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:47px;
  3175. top:750px;
  3176. width:28px;
  3177. height:14px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:10px;
  3183. color:#000000;
  3184. text-align:center;
  3185. }
  3186. #u190975 .text {
  3187. position:absolute;
  3188. align-self:flex-start;
  3189. padding:0px 0px 0px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u190975_text {
  3194. border-width:0px;
  3195. white-space:nowrap;
  3196. text-transform:none;
  3197. }
  3198. #u190976_div {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:28px;
  3204. height:14px;
  3205. background:inherit;
  3206. background-color:rgba(255, 255, 255, 0);
  3207. border:none;
  3208. border-radius:0px;
  3209. -moz-box-shadow:none;
  3210. -webkit-box-shadow:none;
  3211. box-shadow:none;
  3212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:10px;
  3216. color:#000000;
  3217. text-align:center;
  3218. }
  3219. #u190976 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:91px;
  3223. top:750px;
  3224. width:28px;
  3225. height:14px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:10px;
  3231. color:#000000;
  3232. text-align:center;
  3233. }
  3234. #u190976 .text {
  3235. position:absolute;
  3236. align-self:flex-start;
  3237. padding:0px 0px 0px 0px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u190976_text {
  3242. border-width:0px;
  3243. white-space:nowrap;
  3244. text-transform:none;
  3245. }
  3246. #u190977_div {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:28px;
  3252. height:14px;
  3253. background:inherit;
  3254. background-color:rgba(255, 255, 255, 0);
  3255. border:none;
  3256. border-radius:0px;
  3257. -moz-box-shadow:none;
  3258. -webkit-box-shadow:none;
  3259. box-shadow:none;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:10px;
  3264. color:#000000;
  3265. text-align:center;
  3266. }
  3267. #u190977 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:136px;
  3271. top:750px;
  3272. width:28px;
  3273. height:14px;
  3274. display:flex;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:10px;
  3279. color:#000000;
  3280. text-align:center;
  3281. }
  3282. #u190977 .text {
  3283. position:absolute;
  3284. align-self:flex-start;
  3285. padding:0px 0px 0px 0px;
  3286. box-sizing:border-box;
  3287. width:100%;
  3288. }
  3289. #u190977_text {
  3290. border-width:0px;
  3291. white-space:nowrap;
  3292. text-transform:none;
  3293. }
  3294. #u190978_div {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:27px;
  3300. height:14px;
  3301. background:inherit;
  3302. background-color:rgba(255, 255, 255, 0);
  3303. border:none;
  3304. border-radius:0px;
  3305. -moz-box-shadow:none;
  3306. -webkit-box-shadow:none;
  3307. box-shadow:none;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:10px;
  3312. color:#000000;
  3313. text-align:center;
  3314. }
  3315. #u190978 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:180px;
  3319. top:750px;
  3320. width:27px;
  3321. height:14px;
  3322. display:flex;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:10px;
  3327. color:#000000;
  3328. text-align:center;
  3329. }
  3330. #u190978 .text {
  3331. position:absolute;
  3332. align-self:flex-start;
  3333. padding:0px 0px 0px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u190978_text {
  3338. border-width:0px;
  3339. white-space:nowrap;
  3340. text-transform:none;
  3341. }
  3342. #u190979_div {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:28px;
  3348. height:14px;
  3349. background:inherit;
  3350. background-color:rgba(255, 255, 255, 0);
  3351. border:none;
  3352. border-radius:0px;
  3353. -moz-box-shadow:none;
  3354. -webkit-box-shadow:none;
  3355. box-shadow:none;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:10px;
  3360. color:#000000;
  3361. text-align:center;
  3362. }
  3363. #u190979 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:227px;
  3367. top:750px;
  3368. width:28px;
  3369. height:14px;
  3370. display:flex;
  3371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3372. font-weight:400;
  3373. font-style:normal;
  3374. font-size:10px;
  3375. color:#000000;
  3376. text-align:center;
  3377. }
  3378. #u190979 .text {
  3379. position:absolute;
  3380. align-self:flex-start;
  3381. padding:0px 0px 0px 0px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u190979_text {
  3386. border-width:0px;
  3387. white-space:nowrap;
  3388. text-transform:none;
  3389. }
  3390. #u190980_div {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:28px;
  3396. height:14px;
  3397. background:inherit;
  3398. background-color:rgba(255, 255, 255, 0);
  3399. border:none;
  3400. border-radius:0px;
  3401. -moz-box-shadow:none;
  3402. -webkit-box-shadow:none;
  3403. box-shadow:none;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:10px;
  3408. color:#000000;
  3409. text-align:center;
  3410. }
  3411. #u190980 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:271px;
  3415. top:750px;
  3416. width:28px;
  3417. height:14px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:10px;
  3423. color:#000000;
  3424. text-align:center;
  3425. }
  3426. #u190980 .text {
  3427. position:absolute;
  3428. align-self:flex-start;
  3429. padding:0px 0px 0px 0px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u190980_text {
  3434. border-width:0px;
  3435. white-space:nowrap;
  3436. text-transform:none;
  3437. }
  3438. #u190981_div {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:30px;
  3444. height:14px;
  3445. background:inherit;
  3446. background-color:rgba(255, 255, 255, 0);
  3447. border:none;
  3448. border-radius:0px;
  3449. -moz-box-shadow:none;
  3450. -webkit-box-shadow:none;
  3451. box-shadow:none;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:10px;
  3456. color:#000000;
  3457. text-align:center;
  3458. }
  3459. #u190981 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:314px;
  3463. top:750px;
  3464. width:30px;
  3465. height:14px;
  3466. display:flex;
  3467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:10px;
  3471. color:#000000;
  3472. text-align:center;
  3473. }
  3474. #u190981 .text {
  3475. position:absolute;
  3476. align-self:flex-start;
  3477. padding:0px 0px 0px 0px;
  3478. box-sizing:border-box;
  3479. width:100%;
  3480. }
  3481. #u190981_text {
  3482. border-width:0px;
  3483. white-space:nowrap;
  3484. text-transform:none;
  3485. }
  3486. #u190982 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:0px;
  3492. height:0px;
  3493. }
  3494. #u190983_div {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:28px;
  3500. height:14px;
  3501. background:inherit;
  3502. background-color:rgba(255, 255, 255, 0);
  3503. border:none;
  3504. border-radius:0px;
  3505. -moz-box-shadow:none;
  3506. -webkit-box-shadow:none;
  3507. box-shadow:none;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:10px;
  3512. color:#000000;
  3513. text-align:center;
  3514. }
  3515. #u190983 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:47px;
  3519. top:535px;
  3520. width:28px;
  3521. height:14px;
  3522. display:flex;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:10px;
  3527. color:#000000;
  3528. text-align:center;
  3529. }
  3530. #u190983 .text {
  3531. position:absolute;
  3532. align-self:flex-start;
  3533. padding:0px 0px 0px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u190983_text {
  3538. border-width:0px;
  3539. white-space:nowrap;
  3540. text-transform:none;
  3541. }
  3542. #u190984_div {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:28px;
  3548. height:14px;
  3549. background:inherit;
  3550. background-color:rgba(255, 255, 255, 0);
  3551. border:none;
  3552. border-radius:0px;
  3553. -moz-box-shadow:none;
  3554. -webkit-box-shadow:none;
  3555. box-shadow:none;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:10px;
  3560. color:#000000;
  3561. text-align:center;
  3562. }
  3563. #u190984 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:91px;
  3567. top:535px;
  3568. width:28px;
  3569. height:14px;
  3570. display:flex;
  3571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:10px;
  3575. color:#000000;
  3576. text-align:center;
  3577. }
  3578. #u190984 .text {
  3579. position:absolute;
  3580. align-self:flex-start;
  3581. padding:0px 0px 0px 0px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u190984_text {
  3586. border-width:0px;
  3587. white-space:nowrap;
  3588. text-transform:none;
  3589. }
  3590. #u190985_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:28px;
  3596. height:14px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 0);
  3599. border:none;
  3600. border-radius:0px;
  3601. -moz-box-shadow:none;
  3602. -webkit-box-shadow:none;
  3603. box-shadow:none;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:10px;
  3608. color:#000000;
  3609. text-align:center;
  3610. }
  3611. #u190985 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:136px;
  3615. top:535px;
  3616. width:28px;
  3617. height:14px;
  3618. display:flex;
  3619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3620. font-weight:400;
  3621. font-style:normal;
  3622. font-size:10px;
  3623. color:#000000;
  3624. text-align:center;
  3625. }
  3626. #u190985 .text {
  3627. position:absolute;
  3628. align-self:flex-start;
  3629. padding:0px 0px 0px 0px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u190985_text {
  3634. border-width:0px;
  3635. white-space:nowrap;
  3636. text-transform:none;
  3637. }
  3638. #u190986_div {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:27px;
  3644. height:14px;
  3645. background:inherit;
  3646. background-color:rgba(255, 255, 255, 0);
  3647. border:none;
  3648. border-radius:0px;
  3649. -moz-box-shadow:none;
  3650. -webkit-box-shadow:none;
  3651. box-shadow:none;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:10px;
  3656. color:#000000;
  3657. text-align:center;
  3658. }
  3659. #u190986 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:180px;
  3663. top:535px;
  3664. width:27px;
  3665. height:14px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:10px;
  3671. color:#000000;
  3672. text-align:center;
  3673. }
  3674. #u190986 .text {
  3675. position:absolute;
  3676. align-self:flex-start;
  3677. padding:0px 0px 0px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u190986_text {
  3682. border-width:0px;
  3683. white-space:nowrap;
  3684. text-transform:none;
  3685. }
  3686. #u190987_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:28px;
  3692. height:14px;
  3693. background:inherit;
  3694. background-color:rgba(255, 255, 255, 0);
  3695. border:none;
  3696. border-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:10px;
  3704. color:#000000;
  3705. text-align:center;
  3706. }
  3707. #u190987 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:227px;
  3711. top:535px;
  3712. width:28px;
  3713. height:14px;
  3714. display:flex;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:10px;
  3719. color:#000000;
  3720. text-align:center;
  3721. }
  3722. #u190987 .text {
  3723. position:absolute;
  3724. align-self:flex-start;
  3725. padding:0px 0px 0px 0px;
  3726. box-sizing:border-box;
  3727. width:100%;
  3728. }
  3729. #u190987_text {
  3730. border-width:0px;
  3731. white-space:nowrap;
  3732. text-transform:none;
  3733. }
  3734. #u190988_div {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:28px;
  3740. height:14px;
  3741. background:inherit;
  3742. background-color:rgba(255, 255, 255, 0);
  3743. border:none;
  3744. border-radius:0px;
  3745. -moz-box-shadow:none;
  3746. -webkit-box-shadow:none;
  3747. box-shadow:none;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:10px;
  3752. color:#000000;
  3753. text-align:center;
  3754. }
  3755. #u190988 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:271px;
  3759. top:535px;
  3760. width:28px;
  3761. height:14px;
  3762. display:flex;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:10px;
  3767. color:#000000;
  3768. text-align:center;
  3769. }
  3770. #u190988 .text {
  3771. position:absolute;
  3772. align-self:flex-start;
  3773. padding:0px 0px 0px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u190988_text {
  3778. border-width:0px;
  3779. white-space:nowrap;
  3780. text-transform:none;
  3781. }
  3782. #u190989_div {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:30px;
  3788. height:14px;
  3789. background:inherit;
  3790. background-color:rgba(255, 255, 255, 0);
  3791. border:none;
  3792. border-radius:0px;
  3793. -moz-box-shadow:none;
  3794. -webkit-box-shadow:none;
  3795. box-shadow:none;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:10px;
  3800. color:#000000;
  3801. text-align:center;
  3802. }
  3803. #u190989 {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:314px;
  3807. top:535px;
  3808. width:30px;
  3809. height:14px;
  3810. display:flex;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:10px;
  3815. color:#000000;
  3816. text-align:center;
  3817. }
  3818. #u190989 .text {
  3819. position:absolute;
  3820. align-self:flex-start;
  3821. padding:0px 0px 0px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u190989_text {
  3826. border-width:0px;
  3827. white-space:nowrap;
  3828. text-transform:none;
  3829. }
  3830. #u190991_img {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:433px;
  3836. height:865px;
  3837. }
  3838. #u190991 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:433px;
  3844. height:865px;
  3845. display:flex;
  3846. }
  3847. #u190991 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u190991_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u190992_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:375px;
  3866. height:40px;
  3867. background:inherit;
  3868. background-color:rgba(255, 255, 255, 1);
  3869. box-sizing:border-box;
  3870. border-width:1px;
  3871. border-style:solid;
  3872. border-color:rgba(215, 215, 215, 1);
  3873. border-left:0px;
  3874. border-top:0px;
  3875. border-right:0px;
  3876. border-radius:0px;
  3877. border-bottom-right-radius:0px;
  3878. border-bottom-left-radius:0px;
  3879. -moz-box-shadow:none;
  3880. -webkit-box-shadow:none;
  3881. box-shadow:none;
  3882. }
  3883. #u190992 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:29px;
  3887. top:67px;
  3888. width:375px;
  3889. height:40px;
  3890. display:flex;
  3891. }
  3892. #u190992 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u190992_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u190993 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:0px;
  3911. height:0px;
  3912. }
  3913. #u190994_div {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:88px;
  3919. height:32px;
  3920. background:inherit;
  3921. background-color:rgba(255, 255, 255, 1);
  3922. box-sizing:border-box;
  3923. border-width:1px;
  3924. border-style:solid;
  3925. border-color:rgba(242, 242, 242, 1);
  3926. border-radius:33px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. }
  3931. #u190994 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:309px;
  3935. top:71px;
  3936. width:88px;
  3937. height:32px;
  3938. display:flex;
  3939. }
  3940. #u190994 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:2px 2px 2px 2px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u190994_text {
  3948. border-width:0px;
  3949. word-wrap:break-word;
  3950. text-transform:none;
  3951. visibility:hidden;
  3952. }
  3953. #u190995 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:0px;
  3957. top:0px;
  3958. width:0px;
  3959. height:0px;
  3960. }
  3961. #u190996_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:18px;
  3967. height:18px;
  3968. }
  3969. #u190996 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:372px;
  3973. top:78px;
  3974. width:18px;
  3975. height:18px;
  3976. display:flex;
  3977. }
  3978. #u190996 .text {
  3979. position:absolute;
  3980. align-self:center;
  3981. padding:2px 2px 2px 2px;
  3982. box-sizing:border-box;
  3983. width:100%;
  3984. }
  3985. #u190996_text {
  3986. border-width:0px;
  3987. word-wrap:break-word;
  3988. text-transform:none;
  3989. visibility:hidden;
  3990. }
  3991. #u190997_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:6px;
  3997. height:6px;
  3998. }
  3999. #u190997 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:378px;
  4003. top:84px;
  4004. width:6px;
  4005. height:6px;
  4006. display:flex;
  4007. }
  4008. #u190997 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 2px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u190997_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u190998 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:0px;
  4027. height:0px;
  4028. }
  4029. #u190999_img {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:5px;
  4035. height:5px;
  4036. }
  4037. #u190999 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:323px;
  4041. top:85px;
  4042. width:5px;
  4043. height:5px;
  4044. display:flex;
  4045. }
  4046. #u190999 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:2px 2px 2px 2px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u190999_text {
  4054. border-width:0px;
  4055. word-wrap:break-word;
  4056. text-transform:none;
  4057. visibility:hidden;
  4058. }
  4059. #u191000_img {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:5px;
  4065. height:5px;
  4066. }
  4067. #u191000 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:339px;
  4071. top:85px;
  4072. width:5px;
  4073. height:5px;
  4074. display:flex;
  4075. }
  4076. #u191000 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u191000_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u191001_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:7px;
  4095. height:7px;
  4096. }
  4097. #u191001 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:330px;
  4101. top:84px;
  4102. width:7px;
  4103. height:7px;
  4104. display:flex;
  4105. }
  4106. #u191001 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 2px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u191001_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u191002_img {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:19px;
  4125. height:2px;
  4126. }
  4127. #u191002 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:347px;
  4131. top:87px;
  4132. width:18px;
  4133. height:1px;
  4134. display:flex;
  4135. -webkit-transform:rotate(90deg);
  4136. -moz-transform:rotate(90deg);
  4137. -ms-transform:rotate(90deg);
  4138. transform:rotate(90deg);
  4139. }
  4140. #u191002 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 2px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u191002_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u191003_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:375px;
  4159. height:44px;
  4160. }
  4161. #u191003 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:29px;
  4165. top:24px;
  4166. width:375px;
  4167. height:44px;
  4168. display:flex;
  4169. }
  4170. #u191003 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u191003_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u191004_div {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:375px;
  4189. height:50px;
  4190. background:inherit;
  4191. background-color:rgba(255, 255, 255, 1);
  4192. box-sizing:border-box;
  4193. border-width:1px;
  4194. border-style:solid;
  4195. border-color:rgba(242, 242, 242, 1);
  4196. border-radius:26px;
  4197. border-top-left-radius:0px;
  4198. border-top-right-radius:0px;
  4199. -moz-box-shadow:none;
  4200. -webkit-box-shadow:none;
  4201. box-shadow:none;
  4202. }
  4203. #u191004 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:29px;
  4207. top:788px;
  4208. width:375px;
  4209. height:50px;
  4210. display:flex;
  4211. }
  4212. #u191004 .text {
  4213. position:absolute;
  4214. align-self:center;
  4215. padding:2px 2px 2px 2px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u191004_text {
  4220. border-width:0px;
  4221. word-wrap:break-word;
  4222. text-transform:none;
  4223. visibility:hidden;
  4224. }
  4225. #u191005 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:0px;
  4231. height:0px;
  4232. }
  4233. #u191006_img {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:24px;
  4239. height:24px;
  4240. }
  4241. #u191006 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:69px;
  4245. top:792px;
  4246. width:24px;
  4247. height:24px;
  4248. display:flex;
  4249. font-size:8px;
  4250. }
  4251. #u191006 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 2px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u191006_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. }
  4263. #u191007_div {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:25px;
  4269. height:17px;
  4270. background:inherit;
  4271. background-color:rgba(255, 255, 255, 0);
  4272. border:none;
  4273. border-radius:0px;
  4274. -moz-box-shadow:none;
  4275. -webkit-box-shadow:none;
  4276. box-shadow:none;
  4277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. font-size:12px;
  4281. }
  4282. #u191007 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:69px;
  4286. top:817px;
  4287. width:25px;
  4288. height:17px;
  4289. display:flex;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. }
  4295. #u191007 .text {
  4296. position:absolute;
  4297. align-self:flex-start;
  4298. padding:0px 0px 0px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u191007_text {
  4303. border-width:0px;
  4304. white-space:nowrap;
  4305. text-transform:none;
  4306. }
  4307. #u191008 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:0px;
  4313. height:0px;
  4314. }
  4315. #u191009_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:24px;
  4321. height:24px;
  4322. }
  4323. #u191009 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:339px;
  4327. top:794px;
  4328. width:24px;
  4329. height:24px;
  4330. display:flex;
  4331. font-size:8px;
  4332. }
  4333. #u191009 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 2px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u191009_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. }
  4345. #u191010_div {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:25px;
  4351. height:17px;
  4352. background:inherit;
  4353. background-color:rgba(255, 255, 255, 0);
  4354. border:none;
  4355. border-radius:0px;
  4356. -moz-box-shadow:none;
  4357. -webkit-box-shadow:none;
  4358. box-shadow:none;
  4359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:12px;
  4363. }
  4364. #u191010 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:339px;
  4368. top:819px;
  4369. width:25px;
  4370. height:17px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. }
  4377. #u191010 .text {
  4378. position:absolute;
  4379. align-self:flex-start;
  4380. padding:0px 0px 0px 0px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u191010_text {
  4385. border-width:0px;
  4386. white-space:nowrap;
  4387. text-transform:none;
  4388. }
  4389. #u191011_div {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:375px;
  4395. height:681px;
  4396. background:inherit;
  4397. background-color:rgba(242, 242, 242, 0.462745098039216);
  4398. border:none;
  4399. border-radius:0px;
  4400. -moz-box-shadow:none;
  4401. -webkit-box-shadow:none;
  4402. box-shadow:none;
  4403. }
  4404. #u191011 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:29px;
  4408. top:107px;
  4409. width:375px;
  4410. height:681px;
  4411. display:flex;
  4412. }
  4413. #u191011 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 2px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u191011_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u191012 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:0px;
  4432. height:0px;
  4433. }
  4434. #u191013_img {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:24px;
  4440. height:24px;
  4441. }
  4442. #u191013 {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:251px;
  4446. top:792px;
  4447. width:24px;
  4448. height:24px;
  4449. display:flex;
  4450. font-size:8px;
  4451. }
  4452. #u191013 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u191013_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. }
  4464. #u191014_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:37px;
  4470. height:17px;
  4471. background:inherit;
  4472. background-color:rgba(255, 255, 255, 0);
  4473. border:none;
  4474. border-radius:0px;
  4475. -moz-box-shadow:none;
  4476. -webkit-box-shadow:none;
  4477. box-shadow:none;
  4478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:12px;
  4482. }
  4483. #u191014 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:245px;
  4487. top:817px;
  4488. width:37px;
  4489. height:17px;
  4490. display:flex;
  4491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4492. font-weight:400;
  4493. font-style:normal;
  4494. font-size:12px;
  4495. }
  4496. #u191014 .text {
  4497. position:absolute;
  4498. align-self:flex-start;
  4499. padding:0px 0px 0px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u191014_text {
  4504. border-width:0px;
  4505. white-space:nowrap;
  4506. text-transform:none;
  4507. }
  4508. #u191015 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:0px;
  4514. height:0px;
  4515. }
  4516. #u191016_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:24px;
  4522. height:24px;
  4523. }
  4524. #u191016 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:157px;
  4528. top:792px;
  4529. width:24px;
  4530. height:24px;
  4531. display:flex;
  4532. font-size:8px;
  4533. }
  4534. #u191016 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 2px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u191016_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. }
  4546. #u191017_div {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:37px;
  4552. height:17px;
  4553. background:inherit;
  4554. background-color:rgba(255, 255, 255, 0);
  4555. border:none;
  4556. border-radius:0px;
  4557. -moz-box-shadow:none;
  4558. -webkit-box-shadow:none;
  4559. box-shadow:none;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:12px;
  4564. }
  4565. #u191017 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:151px;
  4569. top:817px;
  4570. width:37px;
  4571. height:17px;
  4572. display:flex;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:12px;
  4577. }
  4578. #u191017 .text {
  4579. position:absolute;
  4580. align-self:flex-start;
  4581. padding:0px 0px 0px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u191017_text {
  4586. border-width:0px;
  4587. white-space:nowrap;
  4588. text-transform:none;
  4589. }
  4590. #u191018_div {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:375px;
  4596. height:40px;
  4597. background:inherit;
  4598. background-color:rgba(255, 255, 255, 1);
  4599. box-sizing:border-box;
  4600. border-width:1px;
  4601. border-style:solid;
  4602. border-color:rgba(215, 215, 215, 1);
  4603. border-left:0px;
  4604. border-top:0px;
  4605. border-right:0px;
  4606. border-radius:0px;
  4607. border-bottom-right-radius:0px;
  4608. border-bottom-left-radius:0px;
  4609. -moz-box-shadow:none;
  4610. -webkit-box-shadow:none;
  4611. box-shadow:none;
  4612. }
  4613. #u191018 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:29px;
  4617. top:67px;
  4618. width:375px;
  4619. height:40px;
  4620. display:flex;
  4621. }
  4622. #u191018 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 2px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u191018_text {
  4630. border-width:0px;
  4631. word-wrap:break-word;
  4632. text-transform:none;
  4633. visibility:hidden;
  4634. }
  4635. #u191019_img {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:375px;
  4641. height:44px;
  4642. }
  4643. #u191019 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:29px;
  4647. top:24px;
  4648. width:375px;
  4649. height:44px;
  4650. display:flex;
  4651. }
  4652. #u191019 .text {
  4653. position:absolute;
  4654. align-self:center;
  4655. padding:2px 2px 2px 2px;
  4656. box-sizing:border-box;
  4657. width:100%;
  4658. }
  4659. #u191019_text {
  4660. border-width:0px;
  4661. word-wrap:break-word;
  4662. text-transform:none;
  4663. visibility:hidden;
  4664. }
  4665. #u191020 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:0px;
  4671. height:0px;
  4672. }
  4673. #u191021_div {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:88px;
  4679. height:32px;
  4680. background:inherit;
  4681. background-color:rgba(255, 255, 255, 1);
  4682. box-sizing:border-box;
  4683. border-width:1px;
  4684. border-style:solid;
  4685. border-color:rgba(242, 242, 242, 1);
  4686. border-radius:33px;
  4687. -moz-box-shadow:none;
  4688. -webkit-box-shadow:none;
  4689. box-shadow:none;
  4690. }
  4691. #u191021 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:309px;
  4695. top:71px;
  4696. width:88px;
  4697. height:32px;
  4698. display:flex;
  4699. }
  4700. #u191021 .text {
  4701. position:absolute;
  4702. align-self:center;
  4703. padding:2px 2px 2px 2px;
  4704. box-sizing:border-box;
  4705. width:100%;
  4706. }
  4707. #u191021_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u191022 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:0px;
  4719. height:0px;
  4720. }
  4721. #u191023_img {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:18px;
  4727. height:18px;
  4728. }
  4729. #u191023 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:372px;
  4733. top:78px;
  4734. width:18px;
  4735. height:18px;
  4736. display:flex;
  4737. }
  4738. #u191023 .text {
  4739. position:absolute;
  4740. align-self:center;
  4741. padding:2px 2px 2px 2px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u191023_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. visibility:hidden;
  4750. }
  4751. #u191024_img {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:6px;
  4757. height:6px;
  4758. }
  4759. #u191024 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:378px;
  4763. top:84px;
  4764. width:6px;
  4765. height:6px;
  4766. display:flex;
  4767. }
  4768. #u191024 .text {
  4769. position:absolute;
  4770. align-self:center;
  4771. padding:2px 2px 2px 2px;
  4772. box-sizing:border-box;
  4773. width:100%;
  4774. }
  4775. #u191024_text {
  4776. border-width:0px;
  4777. word-wrap:break-word;
  4778. text-transform:none;
  4779. visibility:hidden;
  4780. }
  4781. #u191025 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:0px;
  4787. height:0px;
  4788. }
  4789. #u191026_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:5px;
  4795. height:5px;
  4796. }
  4797. #u191026 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:323px;
  4801. top:85px;
  4802. width:5px;
  4803. height:5px;
  4804. display:flex;
  4805. }
  4806. #u191026 .text {
  4807. position:absolute;
  4808. align-self:center;
  4809. padding:2px 2px 2px 2px;
  4810. box-sizing:border-box;
  4811. width:100%;
  4812. }
  4813. #u191026_text {
  4814. border-width:0px;
  4815. word-wrap:break-word;
  4816. text-transform:none;
  4817. visibility:hidden;
  4818. }
  4819. #u191027_img {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:5px;
  4825. height:5px;
  4826. }
  4827. #u191027 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:339px;
  4831. top:85px;
  4832. width:5px;
  4833. height:5px;
  4834. display:flex;
  4835. }
  4836. #u191027 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 2px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u191027_text {
  4844. border-width:0px;
  4845. word-wrap:break-word;
  4846. text-transform:none;
  4847. visibility:hidden;
  4848. }
  4849. #u191028_img {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:7px;
  4855. height:7px;
  4856. }
  4857. #u191028 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:330px;
  4861. top:84px;
  4862. width:7px;
  4863. height:7px;
  4864. display:flex;
  4865. }
  4866. #u191028 .text {
  4867. position:absolute;
  4868. align-self:center;
  4869. padding:2px 2px 2px 2px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u191028_text {
  4874. border-width:0px;
  4875. word-wrap:break-word;
  4876. text-transform:none;
  4877. visibility:hidden;
  4878. }
  4879. #u191029_img {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:19px;
  4885. height:2px;
  4886. }
  4887. #u191029 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:347px;
  4891. top:87px;
  4892. width:18px;
  4893. height:1px;
  4894. display:flex;
  4895. -webkit-transform:rotate(90deg);
  4896. -moz-transform:rotate(90deg);
  4897. -ms-transform:rotate(90deg);
  4898. transform:rotate(90deg);
  4899. }
  4900. #u191029 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 2px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u191029_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u191030 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:0px;
  4919. height:0px;
  4920. }
  4921. #u191031_div {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:375px;
  4927. height:50px;
  4928. background:inherit;
  4929. background-color:rgba(255, 255, 255, 1);
  4930. box-sizing:border-box;
  4931. border-width:1px;
  4932. border-style:solid;
  4933. border-color:rgba(242, 242, 242, 1);
  4934. border-radius:26px;
  4935. border-top-left-radius:0px;
  4936. border-top-right-radius:0px;
  4937. -moz-box-shadow:none;
  4938. -webkit-box-shadow:none;
  4939. box-shadow:none;
  4940. }
  4941. #u191031 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:31px;
  4945. top:789px;
  4946. width:375px;
  4947. height:50px;
  4948. display:flex;
  4949. }
  4950. #u191031 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 2px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u191031_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u191032 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:0px;
  4969. height:0px;
  4970. }
  4971. #u191033_img {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:24px;
  4977. height:24px;
  4978. }
  4979. #u191033 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:329px;
  4983. top:793px;
  4984. width:24px;
  4985. height:24px;
  4986. display:flex;
  4987. font-size:8px;
  4988. }
  4989. #u191033 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 2px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u191033_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. }
  5001. #u191034_div {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:49px;
  5007. height:17px;
  5008. background:inherit;
  5009. background-color:rgba(255, 255, 255, 0);
  5010. border:none;
  5011. border-radius:0px;
  5012. -moz-box-shadow:none;
  5013. -webkit-box-shadow:none;
  5014. box-shadow:none;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. }
  5020. #u191034 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:317px;
  5024. top:818px;
  5025. width:49px;
  5026. height:17px;
  5027. display:flex;
  5028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:12px;
  5032. }
  5033. #u191034 .text {
  5034. position:absolute;
  5035. align-self:flex-start;
  5036. padding:0px 0px 0px 0px;
  5037. box-sizing:border-box;
  5038. width:100%;
  5039. }
  5040. #u191034_text {
  5041. border-width:0px;
  5042. white-space:nowrap;
  5043. text-transform:none;
  5044. }
  5045. #u191035 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:0px;
  5049. top:0px;
  5050. width:0px;
  5051. height:0px;
  5052. }
  5053. #u191036_img {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:24px;
  5059. height:24px;
  5060. }
  5061. #u191036 {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:207px;
  5065. top:793px;
  5066. width:24px;
  5067. height:24px;
  5068. display:flex;
  5069. font-size:8px;
  5070. color:#FFFFFF;
  5071. }
  5072. #u191036 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 2px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u191036_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. }
  5084. #u191037_div {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:49px;
  5090. height:17px;
  5091. background:inherit;
  5092. background-color:rgba(255, 255, 255, 0);
  5093. border:none;
  5094. border-radius:0px;
  5095. -moz-box-shadow:none;
  5096. -webkit-box-shadow:none;
  5097. box-shadow:none;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:12px;
  5102. }
  5103. #u191037 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:194px;
  5107. top:818px;
  5108. width:49px;
  5109. height:17px;
  5110. display:flex;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. }
  5116. #u191037 .text {
  5117. position:absolute;
  5118. align-self:flex-start;
  5119. padding:0px 0px 0px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u191037_text {
  5124. border-width:0px;
  5125. white-space:nowrap;
  5126. text-transform:none;
  5127. }
  5128. #u191038 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:0px;
  5134. height:0px;
  5135. }
  5136. #u191039_img {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:24px;
  5142. height:24px;
  5143. }
  5144. #u191039 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:83px;
  5148. top:793px;
  5149. width:24px;
  5150. height:24px;
  5151. display:flex;
  5152. font-size:8px;
  5153. }
  5154. #u191039 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:2px 2px 2px 2px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u191039_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. }
  5166. #u191040_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:49px;
  5172. height:17px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. border:none;
  5176. border-radius:0px;
  5177. -moz-box-shadow:none;
  5178. -webkit-box-shadow:none;
  5179. box-shadow:none;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:12px;
  5184. }
  5185. #u191040 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:71px;
  5189. top:818px;
  5190. width:49px;
  5191. height:17px;
  5192. display:flex;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:12px;
  5197. }
  5198. #u191040 .text {
  5199. position:absolute;
  5200. align-self:flex-start;
  5201. padding:0px 0px 0px 0px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u191040_text {
  5206. border-width:0px;
  5207. white-space:nowrap;
  5208. text-transform:none;
  5209. }
  5210. #u191041 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:28px;
  5214. top:106px;
  5215. width:378px;
  5216. height:683px;
  5217. }
  5218. #u191041_state0 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:378px;
  5224. height:683px;
  5225. overflow:auto;
  5226. -webkit-overflow-scrolling:touch;
  5227. -ms-overflow-x:hidden;
  5228. overflow-x:hidden;
  5229. background-image:none;
  5230. border:none;
  5231. border-radius:0px;
  5232. -moz-box-shadow:none;
  5233. -webkit-box-shadow:none;
  5234. box-shadow:none;
  5235. }
  5236. #u191041_state0_content {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:1px;
  5242. height:1px;
  5243. }
  5244. #u191042_div {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:375px;
  5250. height:1089px;
  5251. background:inherit;
  5252. background-color:rgba(242, 242, 242, 0.996078431372549);
  5253. border:none;
  5254. border-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. }
  5259. #u191042 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:1px;
  5263. top:0px;
  5264. width:375px;
  5265. height:1089px;
  5266. display:flex;
  5267. }
  5268. #u191042 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 2px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u191042_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u191043_div {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:376px;
  5287. height:221px;
  5288. background:inherit;
  5289. background-color:rgba(255, 255, 255, 1);
  5290. border:none;
  5291. border-radius:0px;
  5292. -moz-box-shadow:none;
  5293. -webkit-box-shadow:none;
  5294. box-shadow:none;
  5295. }
  5296. #u191043 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:2px;
  5300. top:732px;
  5301. width:376px;
  5302. height:221px;
  5303. display:flex;
  5304. }
  5305. #u191043 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:2px 2px 2px 2px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u191043_text {
  5313. border-width:0px;
  5314. word-wrap:break-word;
  5315. text-transform:none;
  5316. visibility:hidden;
  5317. }
  5318. #u191044_div {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:324px;
  5324. height:120px;
  5325. background:inherit;
  5326. background-color:rgba(255, 255, 255, 1);
  5327. box-sizing:border-box;
  5328. border-width:1px;
  5329. border-style:solid;
  5330. border-color:rgba(121, 121, 121, 1);
  5331. border-top:0px;
  5332. border-right:0px;
  5333. border-radius:0px;
  5334. border-top-left-radius:0px;
  5335. border-bottom-right-radius:0px;
  5336. -moz-box-shadow:none;
  5337. -webkit-box-shadow:none;
  5338. box-shadow:none;
  5339. }
  5340. #u191044 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:33px;
  5344. top:795px;
  5345. width:324px;
  5346. height:120px;
  5347. display:flex;
  5348. }
  5349. #u191044 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u191044_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u191045_div {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:30px;
  5368. height:120px;
  5369. background:inherit;
  5370. background-color:rgba(51, 51, 51, 0.298039215686275);
  5371. border:none;
  5372. border-radius:0px;
  5373. -moz-box-shadow:none;
  5374. -webkit-box-shadow:none;
  5375. box-shadow:none;
  5376. }
  5377. #u191045 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:137px;
  5381. top:795px;
  5382. width:30px;
  5383. height:120px;
  5384. display:flex;
  5385. }
  5386. #u191045 .text {
  5387. position:absolute;
  5388. align-self:center;
  5389. padding:2px 2px 2px 2px;
  5390. box-sizing:border-box;
  5391. width:100%;
  5392. }
  5393. #u191045_text {
  5394. border-width:0px;
  5395. word-wrap:break-word;
  5396. text-transform:none;
  5397. visibility:hidden;
  5398. }
  5399. #u191046_div {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:0px;
  5403. top:0px;
  5404. width:378px;
  5405. height:220px;
  5406. background:inherit;
  5407. background-color:rgba(24, 144, 255, 1);
  5408. border:none;
  5409. border-radius:0px;
  5410. -moz-box-shadow:none;
  5411. -webkit-box-shadow:none;
  5412. box-shadow:none;
  5413. }
  5414. #u191046 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:378px;
  5420. height:220px;
  5421. display:flex;
  5422. }
  5423. #u191046 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 2px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u191046_text {
  5431. border-width:0px;
  5432. word-wrap:break-word;
  5433. text-transform:none;
  5434. visibility:hidden;
  5435. }
  5436. #u191047_div {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:0px;
  5441. width:161px;
  5442. height:22px;
  5443. background:inherit;
  5444. background-color:rgba(255, 255, 255, 0);
  5445. border:none;
  5446. border-radius:0px;
  5447. -moz-box-shadow:none;
  5448. -webkit-box-shadow:none;
  5449. box-shadow:none;
  5450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5451. font-weight:400;
  5452. font-style:normal;
  5453. font-size:16px;
  5454. color:#FFFFFF;
  5455. }
  5456. #u191047 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:21px;
  5460. top:9px;
  5461. width:161px;
  5462. height:22px;
  5463. display:flex;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:16px;
  5468. color:#FFFFFF;
  5469. }
  5470. #u191047 .text {
  5471. position:absolute;
  5472. align-self:flex-start;
  5473. padding:0px 0px 0px 0px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u191047_text {
  5478. border-width:0px;
  5479. white-space:nowrap;
  5480. text-transform:none;
  5481. }
  5482. #u191048 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:0px;
  5488. height:0px;
  5489. }
  5490. #u191049_div {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:94px;
  5496. height:25px;
  5497. background:inherit;
  5498. background-color:rgba(255, 255, 255, 0);
  5499. border:none;
  5500. border-radius:0px;
  5501. -moz-box-shadow:none;
  5502. -webkit-box-shadow:none;
  5503. box-shadow:none;
  5504. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5505. font-weight:500;
  5506. font-style:normal;
  5507. font-size:18px;
  5508. color:#FFFFFF;
  5509. text-align:center;
  5510. }
  5511. #u191049 {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:41px;
  5515. top:148px;
  5516. width:94px;
  5517. height:25px;
  5518. display:flex;
  5519. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5520. font-weight:500;
  5521. font-style:normal;
  5522. font-size:18px;
  5523. color:#FFFFFF;
  5524. text-align:center;
  5525. }
  5526. #u191049 .text {
  5527. position:absolute;
  5528. align-self:flex-start;
  5529. padding:0px 0px 0px 0px;
  5530. box-sizing:border-box;
  5531. width:100%;
  5532. }
  5533. #u191049_text {
  5534. border-width:0px;
  5535. white-space:nowrap;
  5536. text-transform:none;
  5537. }
  5538. #u191050_div {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:81px;
  5544. height:17px;
  5545. background:inherit;
  5546. background-color:rgba(255, 255, 255, 0);
  5547. border:none;
  5548. border-radius:0px;
  5549. -moz-box-shadow:none;
  5550. -webkit-box-shadow:none;
  5551. box-shadow:none;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#FFFFFF;
  5557. text-align:center;
  5558. }
  5559. #u191050 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:48px;
  5563. top:181px;
  5564. width:81px;
  5565. height:17px;
  5566. display:flex;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:12px;
  5571. color:#FFFFFF;
  5572. text-align:center;
  5573. }
  5574. #u191050 .text {
  5575. position:absolute;
  5576. align-self:flex-start;
  5577. padding:0px 0px 0px 0px;
  5578. box-sizing:border-box;
  5579. width:100%;
  5580. }
  5581. #u191050_text {
  5582. border-width:0px;
  5583. white-space:nowrap;
  5584. text-transform:none;
  5585. }
  5586. #u191051_div {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:376px;
  5592. height:120px;
  5593. background:inherit;
  5594. background-color:rgba(255, 255, 255, 1);
  5595. border:none;
  5596. border-radius:0px;
  5597. -moz-box-shadow:none;
  5598. -webkit-box-shadow:none;
  5599. box-shadow:none;
  5600. }
  5601. #u191051 {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:340px;
  5606. width:376px;
  5607. height:120px;
  5608. display:flex;
  5609. }
  5610. #u191051 .text {
  5611. position:absolute;
  5612. align-self:center;
  5613. padding:2px 2px 2px 2px;
  5614. box-sizing:border-box;
  5615. width:100%;
  5616. }
  5617. #u191051_text {
  5618. border-width:0px;
  5619. word-wrap:break-word;
  5620. text-transform:none;
  5621. visibility:hidden;
  5622. }
  5623. #u191052_div {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:65px;
  5629. height:22px;
  5630. background:inherit;
  5631. background-color:rgba(255, 255, 255, 0);
  5632. border:none;
  5633. border-radius:0px;
  5634. -moz-box-shadow:none;
  5635. -webkit-box-shadow:none;
  5636. box-shadow:none;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:16px;
  5641. color:#000000;
  5642. }
  5643. #u191052 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:21px;
  5647. top:354px;
  5648. width:65px;
  5649. height:22px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:16px;
  5655. color:#000000;
  5656. }
  5657. #u191052 .text {
  5658. position:absolute;
  5659. align-self:flex-start;
  5660. padding:0px 0px 0px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u191052_text {
  5665. border-width:0px;
  5666. white-space:nowrap;
  5667. text-transform:none;
  5668. }
  5669. #u191053 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:0px;
  5675. height:0px;
  5676. }
  5677. #u191054_div {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:80px;
  5683. height:20px;
  5684. background:inherit;
  5685. background-color:rgba(255, 255, 255, 0);
  5686. border:none;
  5687. border-radius:0px;
  5688. -moz-box-shadow:none;
  5689. -webkit-box-shadow:none;
  5690. box-shadow:none;
  5691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. color:#000000;
  5695. }
  5696. #u191054 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:21px;
  5700. top:425px;
  5701. width:80px;
  5702. height:20px;
  5703. display:flex;
  5704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. color:#000000;
  5708. }
  5709. #u191054 .text {
  5710. position:absolute;
  5711. align-self:flex-start;
  5712. padding:0px 0px 0px 0px;
  5713. box-sizing:border-box;
  5714. width:100%;
  5715. }
  5716. #u191054_text {
  5717. border-width:0px;
  5718. white-space:nowrap;
  5719. text-transform:none;
  5720. }
  5721. #u191055_div {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:49px;
  5727. height:25px;
  5728. background:inherit;
  5729. background-color:rgba(255, 255, 255, 0);
  5730. border:none;
  5731. border-radius:0px;
  5732. -moz-box-shadow:none;
  5733. -webkit-box-shadow:none;
  5734. box-shadow:none;
  5735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5736. font-weight:500;
  5737. font-style:normal;
  5738. font-size:18px;
  5739. color:#000000;
  5740. }
  5741. #u191055 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:36px;
  5745. top:398px;
  5746. width:49px;
  5747. height:25px;
  5748. display:flex;
  5749. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5750. font-weight:500;
  5751. font-style:normal;
  5752. font-size:18px;
  5753. color:#000000;
  5754. }
  5755. #u191055 .text {
  5756. position:absolute;
  5757. align-self:flex-start;
  5758. padding:0px 0px 0px 0px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u191055_text {
  5763. border-width:0px;
  5764. white-space:nowrap;
  5765. text-transform:none;
  5766. }
  5767. #u191056 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:0px;
  5773. height:0px;
  5774. }
  5775. #u191057_div {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:94px;
  5781. height:20px;
  5782. background:inherit;
  5783. background-color:rgba(255, 255, 255, 0);
  5784. border:none;
  5785. border-radius:0px;
  5786. -moz-box-shadow:none;
  5787. -webkit-box-shadow:none;
  5788. box-shadow:none;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. color:#000000;
  5793. }
  5794. #u191057 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:139px;
  5798. top:425px;
  5799. width:94px;
  5800. height:20px;
  5801. display:flex;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. color:#000000;
  5806. }
  5807. #u191057 .text {
  5808. position:absolute;
  5809. align-self:flex-start;
  5810. padding:0px 0px 0px 0px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u191057_text {
  5815. border-width:0px;
  5816. white-space:nowrap;
  5817. text-transform:none;
  5818. }
  5819. #u191058_div {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:38px;
  5825. height:25px;
  5826. background:inherit;
  5827. background-color:rgba(255, 255, 255, 0);
  5828. border:none;
  5829. border-radius:0px;
  5830. -moz-box-shadow:none;
  5831. -webkit-box-shadow:none;
  5832. box-shadow:none;
  5833. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5834. font-weight:500;
  5835. font-style:normal;
  5836. font-size:18px;
  5837. color:#000000;
  5838. }
  5839. #u191058 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:167px;
  5843. top:398px;
  5844. width:38px;
  5845. height:25px;
  5846. display:flex;
  5847. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5848. font-weight:500;
  5849. font-style:normal;
  5850. font-size:18px;
  5851. color:#000000;
  5852. }
  5853. #u191058 .text {
  5854. position:absolute;
  5855. align-self:flex-start;
  5856. padding:0px 0px 0px 0px;
  5857. box-sizing:border-box;
  5858. width:100%;
  5859. }
  5860. #u191058_text {
  5861. border-width:0px;
  5862. white-space:nowrap;
  5863. text-transform:none;
  5864. }
  5865. #u191059_div {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:376px;
  5871. height:207px;
  5872. background:inherit;
  5873. background-color:rgba(255, 255, 255, 1);
  5874. border:none;
  5875. border-radius:0px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. }
  5880. #u191059 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:1px;
  5884. top:523px;
  5885. width:376px;
  5886. height:207px;
  5887. display:flex;
  5888. }
  5889. #u191059 .text {
  5890. position:absolute;
  5891. align-self:center;
  5892. padding:2px 2px 2px 2px;
  5893. box-sizing:border-box;
  5894. width:100%;
  5895. }
  5896. #u191059_text {
  5897. border-width:0px;
  5898. word-wrap:break-word;
  5899. text-transform:none;
  5900. visibility:hidden;
  5901. }
  5902. #u191060_div {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:0px;
  5906. top:0px;
  5907. width:65px;
  5908. height:22px;
  5909. background:inherit;
  5910. background-color:rgba(255, 255, 255, 0);
  5911. border:none;
  5912. border-radius:0px;
  5913. -moz-box-shadow:none;
  5914. -webkit-box-shadow:none;
  5915. box-shadow:none;
  5916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:16px;
  5920. color:#000000;
  5921. }
  5922. #u191060 {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:22px;
  5926. top:537px;
  5927. width:65px;
  5928. height:22px;
  5929. display:flex;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:16px;
  5934. color:#000000;
  5935. }
  5936. #u191060 .text {
  5937. position:absolute;
  5938. align-self:flex-start;
  5939. padding:0px 0px 0px 0px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u191060_text {
  5944. border-width:0px;
  5945. white-space:nowrap;
  5946. text-transform:none;
  5947. }
  5948. #u191061_div {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:324px;
  5954. height:120px;
  5955. background:inherit;
  5956. background-color:rgba(255, 255, 255, 1);
  5957. box-sizing:border-box;
  5958. border-width:1px;
  5959. border-style:solid;
  5960. border-color:rgba(121, 121, 121, 1);
  5961. border-top:0px;
  5962. border-right:0px;
  5963. border-radius:0px;
  5964. border-top-left-radius:0px;
  5965. border-bottom-right-radius:0px;
  5966. -moz-box-shadow:none;
  5967. -webkit-box-shadow:none;
  5968. box-shadow:none;
  5969. }
  5970. #u191061 {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:32px;
  5974. top:586px;
  5975. width:324px;
  5976. height:120px;
  5977. display:flex;
  5978. }
  5979. #u191061 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:2px 2px 2px 2px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u191061_text {
  5987. border-width:0px;
  5988. word-wrap:break-word;
  5989. text-transform:none;
  5990. visibility:hidden;
  5991. }
  5992. #u191062_div {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:45px;
  5998. height:17px;
  5999. background:inherit;
  6000. background-color:rgba(255, 255, 255, 0);
  6001. border:none;
  6002. border-radius:0px;
  6003. -moz-box-shadow:none;
  6004. -webkit-box-shadow:none;
  6005. box-shadow:none;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:12px;
  6010. color:#000000;
  6011. }
  6012. #u191062 {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:32px;
  6016. top:564px;
  6017. width:45px;
  6018. height:17px;
  6019. display:flex;
  6020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:12px;
  6024. color:#000000;
  6025. }
  6026. #u191062 .text {
  6027. position:absolute;
  6028. align-self:flex-start;
  6029. padding:0px 0px 0px 0px;
  6030. box-sizing:border-box;
  6031. width:100%;
  6032. }
  6033. #u191062_text {
  6034. border-width:0px;
  6035. white-space:nowrap;
  6036. text-transform:none;
  6037. }
  6038. #u191063_img {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:-1px;
  6042. top:-1px;
  6043. width:275px;
  6044. height:44px;
  6045. }
  6046. #u191063 {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:48px;
  6050. top:620px;
  6051. width:272px;
  6052. height:41px;
  6053. display:flex;
  6054. }
  6055. #u191063 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:2px 2px 2px 2px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u191063_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. visibility:hidden;
  6067. }
  6068. #u191064_div {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:376px;
  6074. height:50px;
  6075. background:inherit;
  6076. background-color:rgba(255, 255, 255, 1);
  6077. border:none;
  6078. border-radius:0px;
  6079. -moz-box-shadow:none;
  6080. -webkit-box-shadow:none;
  6081. box-shadow:none;
  6082. }
  6083. #u191064 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:1px;
  6087. top:472px;
  6088. width:376px;
  6089. height:50px;
  6090. display:flex;
  6091. }
  6092. #u191064 .text {
  6093. position:absolute;
  6094. align-self:center;
  6095. padding:2px 2px 2px 2px;
  6096. box-sizing:border-box;
  6097. width:100%;
  6098. }
  6099. #u191064_text {
  6100. border-width:0px;
  6101. word-wrap:break-word;
  6102. text-transform:none;
  6103. visibility:hidden;
  6104. }
  6105. #u191065_div {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:97px;
  6111. height:22px;
  6112. background:inherit;
  6113. background-color:rgba(255, 255, 255, 0);
  6114. border:none;
  6115. border-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:16px;
  6123. color:#000000;
  6124. }
  6125. #u191065 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:25px;
  6129. top:486px;
  6130. width:97px;
  6131. height:22px;
  6132. display:flex;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:16px;
  6137. color:#000000;
  6138. }
  6139. #u191065 .text {
  6140. position:absolute;
  6141. align-self:flex-start;
  6142. padding:0px 0px 0px 0px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u191065_text {
  6147. border-width:0px;
  6148. white-space:nowrap;
  6149. text-transform:none;
  6150. }
  6151. #u191066_div {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:208px;
  6157. height:22px;
  6158. background:inherit;
  6159. background-color:rgba(255, 255, 255, 0);
  6160. border:none;
  6161. border-radius:0px;
  6162. -moz-box-shadow:none;
  6163. -webkit-box-shadow:none;
  6164. box-shadow:none;
  6165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:16px;
  6169. color:#000000;
  6170. }
  6171. #u191066 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:160px;
  6175. top:486px;
  6176. width:208px;
  6177. height:22px;
  6178. display:flex;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:16px;
  6183. color:#000000;
  6184. }
  6185. #u191066 .text {
  6186. position:absolute;
  6187. align-self:flex-start;
  6188. padding:0px 0px 0px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u191066_text {
  6193. border-width:0px;
  6194. white-space:nowrap;
  6195. text-transform:none;
  6196. }
  6197. #u191067_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:65px;
  6203. height:22px;
  6204. background:inherit;
  6205. background-color:rgba(255, 255, 255, 0);
  6206. border:none;
  6207. border-radius:0px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:16px;
  6215. color:#000000;
  6216. }
  6217. #u191067 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:23px;
  6221. top:746px;
  6222. width:65px;
  6223. height:22px;
  6224. display:flex;
  6225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6226. font-weight:400;
  6227. font-style:normal;
  6228. font-size:16px;
  6229. color:#000000;
  6230. }
  6231. #u191067 .text {
  6232. position:absolute;
  6233. align-self:flex-start;
  6234. padding:0px 0px 0px 0px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u191067_text {
  6239. border-width:0px;
  6240. white-space:nowrap;
  6241. text-transform:none;
  6242. }
  6243. #u191068_div {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:45px;
  6249. height:17px;
  6250. background:inherit;
  6251. background-color:rgba(255, 255, 255, 0);
  6252. border:none;
  6253. border-radius:0px;
  6254. -moz-box-shadow:none;
  6255. -webkit-box-shadow:none;
  6256. box-shadow:none;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:12px;
  6261. color:#000000;
  6262. }
  6263. #u191068 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:33px;
  6267. top:773px;
  6268. width:45px;
  6269. height:17px;
  6270. display:flex;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. font-size:12px;
  6275. color:#000000;
  6276. }
  6277. #u191068 .text {
  6278. position:absolute;
  6279. align-self:flex-start;
  6280. padding:0px 0px 0px 0px;
  6281. box-sizing:border-box;
  6282. width:100%;
  6283. }
  6284. #u191068_text {
  6285. border-width:0px;
  6286. white-space:nowrap;
  6287. text-transform:none;
  6288. }
  6289. #u191069_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:376px;
  6295. height:240px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 1);
  6298. border:none;
  6299. border-radius:0px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. }
  6304. #u191069 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:2px;
  6308. top:954px;
  6309. width:376px;
  6310. height:240px;
  6311. display:flex;
  6312. }
  6313. #u191069 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 2px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u191069_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u191070_div {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:97px;
  6332. height:22px;
  6333. background:inherit;
  6334. background-color:rgba(255, 255, 255, 0);
  6335. border:none;
  6336. border-radius:0px;
  6337. -moz-box-shadow:none;
  6338. -webkit-box-shadow:none;
  6339. box-shadow:none;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:16px;
  6344. color:#000000;
  6345. }
  6346. #u191070 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:23px;
  6350. top:968px;
  6351. width:97px;
  6352. height:22px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:16px;
  6358. color:#000000;
  6359. }
  6360. #u191070 .text {
  6361. position:absolute;
  6362. align-self:flex-start;
  6363. padding:0px 0px 0px 0px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u191070_text {
  6368. border-width:0px;
  6369. white-space:nowrap;
  6370. text-transform:none;
  6371. }
  6372. #u191071 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:0px;
  6378. height:0px;
  6379. }
  6380. #u191072_div {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:341px;
  6386. height:40px;
  6387. background:inherit;
  6388. background-color:rgba(255, 255, 255, 1);
  6389. box-sizing:border-box;
  6390. border-width:1px;
  6391. border-style:solid;
  6392. border-color:rgba(242, 242, 242, 1);
  6393. border-left:0px;
  6394. border-right:0px;
  6395. border-radius:0px;
  6396. border-top-left-radius:0px;
  6397. border-top-right-radius:0px;
  6398. border-bottom-right-radius:0px;
  6399. border-bottom-left-radius:0px;
  6400. -moz-box-shadow:none;
  6401. -webkit-box-shadow:none;
  6402. box-shadow:none;
  6403. }
  6404. #u191072 {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:22px;
  6408. top:1006px;
  6409. width:341px;
  6410. height:40px;
  6411. display:flex;
  6412. }
  6413. #u191072 .text {
  6414. position:absolute;
  6415. align-self:center;
  6416. padding:2px 2px 2px 2px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u191072_text {
  6421. border-width:0px;
  6422. word-wrap:break-word;
  6423. text-transform:none;
  6424. visibility:hidden;
  6425. }
  6426. #u191073_div {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:0px;
  6430. top:0px;
  6431. width:162px;
  6432. height:22px;
  6433. background:inherit;
  6434. background-color:rgba(255, 255, 255, 0);
  6435. border:none;
  6436. border-radius:0px;
  6437. -moz-box-shadow:none;
  6438. -webkit-box-shadow:none;
  6439. box-shadow:none;
  6440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6441. font-weight:400;
  6442. font-style:normal;
  6443. font-size:16px;
  6444. color:#000000;
  6445. }
  6446. #u191073 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:32px;
  6450. top:1014px;
  6451. width:162px;
  6452. height:22px;
  6453. display:flex;
  6454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6455. font-weight:400;
  6456. font-style:normal;
  6457. font-size:16px;
  6458. color:#000000;
  6459. }
  6460. #u191073 .text {
  6461. position:absolute;
  6462. align-self:flex-start;
  6463. padding:0px 0px 0px 0px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u191073_text {
  6468. border-width:0px;
  6469. white-space:nowrap;
  6470. text-transform:none;
  6471. }
  6472. #u191074_div {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:83px;
  6478. height:22px;
  6479. background:inherit;
  6480. background-color:rgba(255, 255, 255, 0);
  6481. border:none;
  6482. border-radius:0px;
  6483. -moz-box-shadow:none;
  6484. -webkit-box-shadow:none;
  6485. box-shadow:none;
  6486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6487. font-weight:400;
  6488. font-style:normal;
  6489. font-size:16px;
  6490. color:#000000;
  6491. text-align:right;
  6492. }
  6493. #u191074 {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:280px;
  6497. top:1018px;
  6498. width:83px;
  6499. height:22px;
  6500. display:flex;
  6501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:16px;
  6505. color:#000000;
  6506. text-align:right;
  6507. }
  6508. #u191074 .text {
  6509. position:absolute;
  6510. align-self:flex-start;
  6511. padding:0px 0px 0px 0px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u191074_text {
  6516. border-width:0px;
  6517. white-space:nowrap;
  6518. text-transform:none;
  6519. }
  6520. #u191075 {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:0px;
  6526. height:0px;
  6527. }
  6528. #u191076_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:341px;
  6534. height:40px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 1);
  6537. box-sizing:border-box;
  6538. border-width:1px;
  6539. border-style:solid;
  6540. border-color:rgba(242, 242, 242, 1);
  6541. border-left:0px;
  6542. border-right:0px;
  6543. border-radius:0px;
  6544. border-top-left-radius:0px;
  6545. border-top-right-radius:0px;
  6546. border-bottom-right-radius:0px;
  6547. border-bottom-left-radius:0px;
  6548. -moz-box-shadow:none;
  6549. -webkit-box-shadow:none;
  6550. box-shadow:none;
  6551. }
  6552. #u191076 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:22px;
  6556. top:1046px;
  6557. width:341px;
  6558. height:40px;
  6559. display:flex;
  6560. }
  6561. #u191076 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:2px 2px 2px 2px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u191076_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. visibility:hidden;
  6573. }
  6574. #u191077_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:224px;
  6580. height:22px;
  6581. background:inherit;
  6582. background-color:rgba(255, 255, 255, 0);
  6583. border:none;
  6584. border-radius:0px;
  6585. -moz-box-shadow:none;
  6586. -webkit-box-shadow:none;
  6587. box-shadow:none;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:16px;
  6592. color:#000000;
  6593. }
  6594. #u191077 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:32px;
  6598. top:1054px;
  6599. width:224px;
  6600. height:22px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:16px;
  6606. color:#000000;
  6607. }
  6608. #u191077 .text {
  6609. position:absolute;
  6610. align-self:flex-start;
  6611. padding:0px 0px 0px 0px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u191077_text {
  6616. border-width:0px;
  6617. white-space:nowrap;
  6618. text-transform:none;
  6619. }
  6620. #u191078_div {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:66px;
  6626. height:22px;
  6627. background:inherit;
  6628. background-color:rgba(255, 255, 255, 0);
  6629. border:none;
  6630. border-radius:0px;
  6631. -moz-box-shadow:none;
  6632. -webkit-box-shadow:none;
  6633. box-shadow:none;
  6634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:16px;
  6638. color:#000000;
  6639. text-align:right;
  6640. }
  6641. #u191078 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:297px;
  6645. top:1058px;
  6646. width:66px;
  6647. height:22px;
  6648. display:flex;
  6649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6650. font-weight:400;
  6651. font-style:normal;
  6652. font-size:16px;
  6653. color:#000000;
  6654. text-align:right;
  6655. }
  6656. #u191078 .text {
  6657. position:absolute;
  6658. align-self:flex-start;
  6659. padding:0px 0px 0px 0px;
  6660. box-sizing:border-box;
  6661. width:100%;
  6662. }
  6663. #u191078_text {
  6664. border-width:0px;
  6665. white-space:nowrap;
  6666. text-transform:none;
  6667. }
  6668. #u191079 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u191080_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:341px;
  6682. height:40px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 1);
  6685. box-sizing:border-box;
  6686. border-width:1px;
  6687. border-style:solid;
  6688. border-color:rgba(242, 242, 242, 1);
  6689. border-left:0px;
  6690. border-right:0px;
  6691. border-radius:0px;
  6692. border-top-left-radius:0px;
  6693. border-top-right-radius:0px;
  6694. border-bottom-right-radius:0px;
  6695. border-bottom-left-radius:0px;
  6696. -moz-box-shadow:none;
  6697. -webkit-box-shadow:none;
  6698. box-shadow:none;
  6699. }
  6700. #u191080 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:22px;
  6704. top:1086px;
  6705. width:341px;
  6706. height:40px;
  6707. display:flex;
  6708. }
  6709. #u191080 .text {
  6710. position:absolute;
  6711. align-self:center;
  6712. padding:2px 2px 2px 2px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u191080_text {
  6717. border-width:0px;
  6718. word-wrap:break-word;
  6719. text-transform:none;
  6720. visibility:hidden;
  6721. }
  6722. #u191081_div {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:224px;
  6728. height:22px;
  6729. background:inherit;
  6730. background-color:rgba(255, 255, 255, 0);
  6731. border:none;
  6732. border-radius:0px;
  6733. -moz-box-shadow:none;
  6734. -webkit-box-shadow:none;
  6735. box-shadow:none;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:16px;
  6740. color:#000000;
  6741. }
  6742. #u191081 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:32px;
  6746. top:1094px;
  6747. width:224px;
  6748. height:22px;
  6749. display:flex;
  6750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:16px;
  6754. color:#000000;
  6755. }
  6756. #u191081 .text {
  6757. position:absolute;
  6758. align-self:flex-start;
  6759. padding:0px 0px 0px 0px;
  6760. box-sizing:border-box;
  6761. width:100%;
  6762. }
  6763. #u191081_text {
  6764. border-width:0px;
  6765. white-space:nowrap;
  6766. text-transform:none;
  6767. }
  6768. #u191082_div {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:60px;
  6774. height:22px;
  6775. background:inherit;
  6776. background-color:rgba(255, 255, 255, 0);
  6777. border:none;
  6778. border-radius:0px;
  6779. -moz-box-shadow:none;
  6780. -webkit-box-shadow:none;
  6781. box-shadow:none;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:16px;
  6786. color:#000000;
  6787. text-align:right;
  6788. }
  6789. #u191082 {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:303px;
  6793. top:1098px;
  6794. width:60px;
  6795. height:22px;
  6796. display:flex;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:16px;
  6801. color:#000000;
  6802. text-align:right;
  6803. }
  6804. #u191082 .text {
  6805. position:absolute;
  6806. align-self:flex-start;
  6807. padding:0px 0px 0px 0px;
  6808. box-sizing:border-box;
  6809. width:100%;
  6810. }
  6811. #u191082_text {
  6812. border-width:0px;
  6813. white-space:nowrap;
  6814. text-transform:none;
  6815. }
  6816. #u191083 {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:0px;
  6822. height:0px;
  6823. }
  6824. #u191084_div {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:341px;
  6830. height:40px;
  6831. background:inherit;
  6832. background-color:rgba(255, 255, 255, 1);
  6833. box-sizing:border-box;
  6834. border-width:1px;
  6835. border-style:solid;
  6836. border-color:rgba(242, 242, 242, 1);
  6837. border-left:0px;
  6838. border-right:0px;
  6839. border-radius:0px;
  6840. border-top-left-radius:0px;
  6841. border-top-right-radius:0px;
  6842. border-bottom-right-radius:0px;
  6843. border-bottom-left-radius:0px;
  6844. -moz-box-shadow:none;
  6845. -webkit-box-shadow:none;
  6846. box-shadow:none;
  6847. }
  6848. #u191084 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:22px;
  6852. top:1126px;
  6853. width:341px;
  6854. height:40px;
  6855. display:flex;
  6856. }
  6857. #u191084 .text {
  6858. position:absolute;
  6859. align-self:center;
  6860. padding:2px 2px 2px 2px;
  6861. box-sizing:border-box;
  6862. width:100%;
  6863. }
  6864. #u191084_text {
  6865. border-width:0px;
  6866. word-wrap:break-word;
  6867. text-transform:none;
  6868. visibility:hidden;
  6869. }
  6870. #u191085_div {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:0px;
  6874. top:0px;
  6875. width:208px;
  6876. height:22px;
  6877. background:inherit;
  6878. background-color:rgba(255, 255, 255, 0);
  6879. border:none;
  6880. border-radius:0px;
  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:16px;
  6888. color:#000000;
  6889. }
  6890. #u191085 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:32px;
  6894. top:1134px;
  6895. width:208px;
  6896. height:22px;
  6897. display:flex;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:16px;
  6902. color:#000000;
  6903. }
  6904. #u191085 .text {
  6905. position:absolute;
  6906. align-self:flex-start;
  6907. padding:0px 0px 0px 0px;
  6908. box-sizing:border-box;
  6909. width:100%;
  6910. }
  6911. #u191085_text {
  6912. border-width:0px;
  6913. white-space:nowrap;
  6914. text-transform:none;
  6915. }
  6916. #u191086_div {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:0px;
  6920. top:0px;
  6921. width:50px;
  6922. height:22px;
  6923. background:inherit;
  6924. background-color:rgba(255, 255, 255, 0);
  6925. border:none;
  6926. border-radius:0px;
  6927. -moz-box-shadow:none;
  6928. -webkit-box-shadow:none;
  6929. box-shadow:none;
  6930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:16px;
  6934. color:#000000;
  6935. text-align:right;
  6936. }
  6937. #u191086 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:313px;
  6941. top:1138px;
  6942. width:50px;
  6943. height:22px;
  6944. display:flex;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:16px;
  6949. color:#000000;
  6950. text-align:right;
  6951. }
  6952. #u191086 .text {
  6953. position:absolute;
  6954. align-self:flex-start;
  6955. padding:0px 0px 0px 0px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u191086_text {
  6960. border-width:0px;
  6961. white-space:nowrap;
  6962. text-transform:none;
  6963. }
  6964. #u191087 {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:0px;
  6970. height:0px;
  6971. }
  6972. #u191088_div {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:83px;
  6978. height:25px;
  6979. background:inherit;
  6980. background-color:rgba(255, 255, 255, 0);
  6981. border:none;
  6982. border-radius:0px;
  6983. -moz-box-shadow:none;
  6984. -webkit-box-shadow:none;
  6985. box-shadow:none;
  6986. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6987. font-weight:500;
  6988. font-style:normal;
  6989. font-size:18px;
  6990. color:#FFFFFF;
  6991. }
  6992. #u191088 {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:25px;
  6996. top:57px;
  6997. width:83px;
  6998. height:25px;
  6999. display:flex;
  7000. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7001. font-weight:500;
  7002. font-style:normal;
  7003. font-size:18px;
  7004. color:#FFFFFF;
  7005. }
  7006. #u191088 .text {
  7007. position:absolute;
  7008. align-self:flex-start;
  7009. padding:0px 0px 0px 0px;
  7010. box-sizing:border-box;
  7011. width:100%;
  7012. }
  7013. #u191088_text {
  7014. border-width:0px;
  7015. white-space:nowrap;
  7016. text-transform:none;
  7017. }
  7018. #u191089_div {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:93px;
  7024. height:17px;
  7025. background:inherit;
  7026. background-color:rgba(255, 255, 255, 0);
  7027. border:none;
  7028. border-radius:0px;
  7029. -moz-box-shadow:none;
  7030. -webkit-box-shadow:none;
  7031. box-shadow:none;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:12px;
  7036. color:#FFFFFF;
  7037. }
  7038. #u191089 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:20px;
  7042. top:90px;
  7043. width:93px;
  7044. height:17px;
  7045. display:flex;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:12px;
  7050. color:#FFFFFF;
  7051. }
  7052. #u191089 .text {
  7053. position:absolute;
  7054. align-self:flex-start;
  7055. padding:0px 0px 0px 0px;
  7056. box-sizing:border-box;
  7057. width:100%;
  7058. }
  7059. #u191089_text {
  7060. border-width:0px;
  7061. white-space:nowrap;
  7062. text-transform:none;
  7063. }
  7064. #u191090 {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:0px;
  7068. top:0px;
  7069. width:0px;
  7070. height:0px;
  7071. }
  7072. #u191091_div {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:76px;
  7078. height:25px;
  7079. background:inherit;
  7080. background-color:rgba(255, 255, 255, 0);
  7081. border:none;
  7082. border-radius:0px;
  7083. -moz-box-shadow:none;
  7084. -webkit-box-shadow:none;
  7085. box-shadow:none;
  7086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7087. font-weight:500;
  7088. font-style:normal;
  7089. font-size:18px;
  7090. color:#FFFFFF;
  7091. text-align:center;
  7092. }
  7093. #u191091 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:150px;
  7097. top:57px;
  7098. width:76px;
  7099. height:25px;
  7100. display:flex;
  7101. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7102. font-weight:500;
  7103. font-style:normal;
  7104. font-size:18px;
  7105. color:#FFFFFF;
  7106. text-align:center;
  7107. }
  7108. #u191091 .text {
  7109. position:absolute;
  7110. align-self:flex-start;
  7111. padding:0px 0px 0px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u191091_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u191092_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:93px;
  7126. height:17px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:12px;
  7138. color:#FFFFFF;
  7139. text-align:center;
  7140. }
  7141. #u191092 {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:142px;
  7145. top:90px;
  7146. width:93px;
  7147. height:17px;
  7148. display:flex;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:12px;
  7153. color:#FFFFFF;
  7154. text-align:center;
  7155. }
  7156. #u191092 .text {
  7157. position:absolute;
  7158. align-self:flex-start;
  7159. padding:0px 0px 0px 0px;
  7160. box-sizing:border-box;
  7161. width:100%;
  7162. }
  7163. #u191092_text {
  7164. border-width:0px;
  7165. white-space:nowrap;
  7166. text-transform:none;
  7167. }
  7168. #u191093_div {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:32px;
  7174. height:17px;
  7175. background:inherit;
  7176. background-color:rgba(255, 255, 255, 0);
  7177. border:none;
  7178. border-radius:0px;
  7179. -moz-box-shadow:none;
  7180. -webkit-box-shadow:none;
  7181. box-shadow:none;
  7182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7183. font-weight:400;
  7184. font-style:normal;
  7185. font-size:12px;
  7186. color:#000000;
  7187. }
  7188. #u191093 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:238px;
  7192. top:353px;
  7193. width:32px;
  7194. height:17px;
  7195. display:flex;
  7196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:12px;
  7200. color:#000000;
  7201. }
  7202. #u191093 .text {
  7203. position:absolute;
  7204. align-self:flex-start;
  7205. padding:0px 0px 0px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u191093_text {
  7210. border-width:0px;
  7211. white-space:nowrap;
  7212. text-transform:none;
  7213. }
  7214. #u191094_div {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:81px;
  7220. height:17px;
  7221. background:inherit;
  7222. background-color:rgba(255, 255, 255, 0);
  7223. border:none;
  7224. border-radius:0px;
  7225. -moz-box-shadow:none;
  7226. -webkit-box-shadow:none;
  7227. box-shadow:none;
  7228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:12px;
  7232. color:#000000;
  7233. }
  7234. #u191094 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:282px;
  7238. top:353px;
  7239. width:81px;
  7240. height:17px;
  7241. display:flex;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:12px;
  7246. color:#000000;
  7247. }
  7248. #u191094 .text {
  7249. position:absolute;
  7250. align-self:flex-start;
  7251. padding:0px 0px 0px 0px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u191094_text {
  7256. border-width:0px;
  7257. white-space:nowrap;
  7258. text-transform:none;
  7259. }
  7260. #u191095_div {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:358px;
  7266. height:100px;
  7267. background:inherit;
  7268. background-color:rgba(255, 255, 255, 1);
  7269. border:none;
  7270. border-radius:10px;
  7271. -moz-box-shadow:none;
  7272. -webkit-box-shadow:none;
  7273. box-shadow:none;
  7274. }
  7275. #u191095 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:9px;
  7279. top:230px;
  7280. width:358px;
  7281. height:100px;
  7282. display:flex;
  7283. }
  7284. #u191095 .text {
  7285. position:absolute;
  7286. align-self:center;
  7287. padding:2px 2px 2px 2px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u191095_text {
  7292. border-width:0px;
  7293. word-wrap:break-word;
  7294. text-transform:none;
  7295. visibility:hidden;
  7296. }
  7297. #u191096_div {
  7298. border-width:0px;
  7299. position:absolute;
  7300. left:0px;
  7301. top:0px;
  7302. width:33px;
  7303. height:40px;
  7304. background:inherit;
  7305. background-color:rgba(255, 255, 255, 0);
  7306. border:none;
  7307. border-radius:0px;
  7308. -moz-box-shadow:none;
  7309. -webkit-box-shadow:none;
  7310. box-shadow:none;
  7311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7312. font-weight:500;
  7313. font-style:normal;
  7314. font-size:28px;
  7315. color:#000000;
  7316. }
  7317. #u191096 {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:78px;
  7321. top:248px;
  7322. width:33px;
  7323. height:40px;
  7324. display:flex;
  7325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7326. font-weight:500;
  7327. font-style:normal;
  7328. font-size:28px;
  7329. color:#000000;
  7330. }
  7331. #u191096 .text {
  7332. position:absolute;
  7333. align-self:flex-start;
  7334. padding:0px 0px 0px 0px;
  7335. box-sizing:border-box;
  7336. width:100%;
  7337. }
  7338. #u191096_text {
  7339. border-width:0px;
  7340. white-space:nowrap;
  7341. text-transform:none;
  7342. }
  7343. #u191097_div {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:0px;
  7347. top:0px;
  7348. width:122px;
  7349. height:20px;
  7350. background:inherit;
  7351. background-color:rgba(255, 255, 255, 0);
  7352. border:none;
  7353. border-radius:0px;
  7354. -moz-box-shadow:none;
  7355. -webkit-box-shadow:none;
  7356. box-shadow:none;
  7357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7358. font-weight:400;
  7359. font-style:normal;
  7360. color:#7F7F7F;
  7361. }
  7362. #u191097 {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:34px;
  7366. top:291px;
  7367. width:122px;
  7368. height:20px;
  7369. display:flex;
  7370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7371. font-weight:400;
  7372. font-style:normal;
  7373. color:#7F7F7F;
  7374. }
  7375. #u191097 .text {
  7376. position:absolute;
  7377. align-self:flex-start;
  7378. padding:0px 0px 0px 0px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u191097_text {
  7383. border-width:0px;
  7384. white-space:nowrap;
  7385. text-transform:none;
  7386. }
  7387. #u191098_div {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:18px;
  7393. height:40px;
  7394. background:inherit;
  7395. background-color:rgba(255, 255, 255, 0);
  7396. border:none;
  7397. border-radius:0px;
  7398. -moz-box-shadow:none;
  7399. -webkit-box-shadow:none;
  7400. box-shadow:none;
  7401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7402. font-weight:500;
  7403. font-style:normal;
  7404. font-size:28px;
  7405. color:#000000;
  7406. }
  7407. #u191098 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:273px;
  7411. top:248px;
  7412. width:18px;
  7413. height:40px;
  7414. display:flex;
  7415. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7416. font-weight:500;
  7417. font-style:normal;
  7418. font-size:28px;
  7419. color:#000000;
  7420. }
  7421. #u191098 .text {
  7422. position:absolute;
  7423. align-self:flex-start;
  7424. padding:0px 0px 0px 0px;
  7425. box-sizing:border-box;
  7426. width:100%;
  7427. }
  7428. #u191098_text {
  7429. border-width:0px;
  7430. white-space:nowrap;
  7431. text-transform:none;
  7432. }
  7433. #u191099_div {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:0px;
  7437. top:0px;
  7438. width:141px;
  7439. height:20px;
  7440. background:inherit;
  7441. background-color:rgba(255, 255, 255, 0);
  7442. border:none;
  7443. border-radius:0px;
  7444. -moz-box-shadow:none;
  7445. -webkit-box-shadow:none;
  7446. box-shadow:none;
  7447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7448. font-weight:400;
  7449. font-style:normal;
  7450. color:#7F7F7F;
  7451. }
  7452. #u191099 {
  7453. border-width:0px;
  7454. position:absolute;
  7455. left:211px;
  7456. top:291px;
  7457. width:141px;
  7458. height:20px;
  7459. display:flex;
  7460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7461. font-weight:400;
  7462. font-style:normal;
  7463. color:#7F7F7F;
  7464. }
  7465. #u191099 .text {
  7466. position:absolute;
  7467. align-self:flex-start;
  7468. padding:0px 0px 0px 0px;
  7469. box-sizing:border-box;
  7470. width:100%;
  7471. }
  7472. #u191099_text {
  7473. border-width:0px;
  7474. white-space:nowrap;
  7475. text-transform:none;
  7476. }
  7477. #u191100_div {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:21px;
  7483. height:14px;
  7484. background:inherit;
  7485. background-color:rgba(255, 255, 255, 0);
  7486. border:none;
  7487. border-radius:0px;
  7488. -moz-box-shadow:none;
  7489. -webkit-box-shadow:none;
  7490. box-shadow:none;
  7491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:10px;
  7495. color:#1890FF;
  7496. }
  7497. #u191100 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:135px;
  7501. top:268px;
  7502. width:21px;
  7503. height:14px;
  7504. display:flex;
  7505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7506. font-weight:400;
  7507. font-style:normal;
  7508. font-size:10px;
  7509. color:#1890FF;
  7510. }
  7511. #u191100 .text {
  7512. position:absolute;
  7513. align-self:flex-start;
  7514. padding:0px 0px 0px 0px;
  7515. box-sizing:border-box;
  7516. width:100%;
  7517. }
  7518. #u191100_text {
  7519. border-width:0px;
  7520. white-space:nowrap;
  7521. text-transform:none;
  7522. }
  7523. #u191101_div {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:0px;
  7527. top:0px;
  7528. width:21px;
  7529. height:14px;
  7530. background:inherit;
  7531. background-color:rgba(255, 255, 255, 0);
  7532. border:none;
  7533. border-radius:0px;
  7534. -moz-box-shadow:none;
  7535. -webkit-box-shadow:none;
  7536. box-shadow:none;
  7537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7538. font-weight:400;
  7539. font-style:normal;
  7540. font-size:10px;
  7541. color:#1890FF;
  7542. }
  7543. #u191101 {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:323px;
  7547. top:268px;
  7548. width:21px;
  7549. height:14px;
  7550. display:flex;
  7551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7552. font-weight:400;
  7553. font-style:normal;
  7554. font-size:10px;
  7555. color:#1890FF;
  7556. }
  7557. #u191101 .text {
  7558. position:absolute;
  7559. align-self:flex-start;
  7560. padding:0px 0px 0px 0px;
  7561. box-sizing:border-box;
  7562. width:100%;
  7563. }
  7564. #u191101_text {
  7565. border-width:0px;
  7566. white-space:nowrap;
  7567. text-transform:none;
  7568. }
  7569. #u191102 {
  7570. border-width:0px;
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:0px;
  7575. height:0px;
  7576. }
  7577. #u191103_div {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:72px;
  7583. height:25px;
  7584. background:inherit;
  7585. background-color:rgba(255, 255, 255, 0);
  7586. border:none;
  7587. border-radius:0px;
  7588. -moz-box-shadow:none;
  7589. -webkit-box-shadow:none;
  7590. box-shadow:none;
  7591. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7592. font-weight:500;
  7593. font-style:normal;
  7594. font-size:18px;
  7595. color:#FFFFFF;
  7596. text-align:center;
  7597. }
  7598. #u191103 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:273px;
  7602. top:57px;
  7603. width:72px;
  7604. height:25px;
  7605. display:flex;
  7606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7607. font-weight:500;
  7608. font-style:normal;
  7609. font-size:18px;
  7610. color:#FFFFFF;
  7611. text-align:center;
  7612. }
  7613. #u191103 .text {
  7614. position:absolute;
  7615. align-self:flex-start;
  7616. padding:0px 0px 0px 0px;
  7617. box-sizing:border-box;
  7618. width:100%;
  7619. }
  7620. #u191103_text {
  7621. border-width:0px;
  7622. white-space:nowrap;
  7623. text-transform:none;
  7624. }
  7625. #u191104_div {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:93px;
  7631. height:17px;
  7632. background:inherit;
  7633. background-color:rgba(255, 255, 255, 0);
  7634. border:none;
  7635. border-radius:0px;
  7636. -moz-box-shadow:none;
  7637. -webkit-box-shadow:none;
  7638. box-shadow:none;
  7639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7640. font-weight:400;
  7641. font-style:normal;
  7642. font-size:12px;
  7643. color:#FFFFFF;
  7644. text-align:center;
  7645. }
  7646. #u191104 {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:263px;
  7650. top:90px;
  7651. width:93px;
  7652. height:17px;
  7653. display:flex;
  7654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:12px;
  7658. color:#FFFFFF;
  7659. text-align:center;
  7660. }
  7661. #u191104 .text {
  7662. position:absolute;
  7663. align-self:flex-start;
  7664. padding:0px 0px 0px 0px;
  7665. box-sizing:border-box;
  7666. width:100%;
  7667. }
  7668. #u191104_text {
  7669. border-width:0px;
  7670. white-space:nowrap;
  7671. text-transform:none;
  7672. }
  7673. #u191105 {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:0px;
  7679. height:0px;
  7680. }
  7681. #u191106_div {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:76px;
  7687. height:25px;
  7688. background:inherit;
  7689. background-color:rgba(255, 255, 255, 0);
  7690. border:none;
  7691. border-radius:0px;
  7692. -moz-box-shadow:none;
  7693. -webkit-box-shadow:none;
  7694. box-shadow:none;
  7695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7696. font-weight:500;
  7697. font-style:normal;
  7698. font-size:18px;
  7699. color:#FFFFFF;
  7700. text-align:center;
  7701. }
  7702. #u191106 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:250px;
  7706. top:148px;
  7707. width:76px;
  7708. height:25px;
  7709. display:flex;
  7710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7711. font-weight:500;
  7712. font-style:normal;
  7713. font-size:18px;
  7714. color:#FFFFFF;
  7715. text-align:center;
  7716. }
  7717. #u191106 .text {
  7718. position:absolute;
  7719. align-self:flex-start;
  7720. padding:0px 0px 0px 0px;
  7721. box-sizing:border-box;
  7722. width:100%;
  7723. }
  7724. #u191106_text {
  7725. border-width:0px;
  7726. white-space:nowrap;
  7727. text-transform:none;
  7728. }
  7729. #u191107_div {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:0px;
  7733. top:0px;
  7734. width:93px;
  7735. height:17px;
  7736. background:inherit;
  7737. background-color:rgba(255, 255, 255, 0);
  7738. border:none;
  7739. border-radius:0px;
  7740. -moz-box-shadow:none;
  7741. -webkit-box-shadow:none;
  7742. box-shadow:none;
  7743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7744. font-weight:400;
  7745. font-style:normal;
  7746. font-size:12px;
  7747. color:#FFFFFF;
  7748. text-align:center;
  7749. }
  7750. #u191107 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:242px;
  7754. top:180px;
  7755. width:93px;
  7756. height:17px;
  7757. display:flex;
  7758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. font-size:12px;
  7762. color:#FFFFFF;
  7763. text-align:center;
  7764. }
  7765. #u191107 .text {
  7766. position:absolute;
  7767. align-self:flex-start;
  7768. padding:0px 0px 0px 0px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u191107_text {
  7773. border-width:0px;
  7774. white-space:nowrap;
  7775. text-transform:none;
  7776. }
  7777. #u191108_img {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:337px;
  7783. height:2px;
  7784. }
  7785. #u191108 {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:21px;
  7789. top:132px;
  7790. width:336px;
  7791. height:1px;
  7792. display:flex;
  7793. }
  7794. #u191108 .text {
  7795. position:absolute;
  7796. align-self:center;
  7797. padding:2px 2px 2px 2px;
  7798. box-sizing:border-box;
  7799. width:100%;
  7800. }
  7801. #u191108_text {
  7802. border-width:0px;
  7803. word-wrap:break-word;
  7804. text-transform:none;
  7805. visibility:hidden;
  7806. }
  7807. #u191109 {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:0px;
  7813. height:0px;
  7814. }
  7815. #u191110_div {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:0px;
  7819. top:0px;
  7820. width:94px;
  7821. height:20px;
  7822. background:inherit;
  7823. background-color:rgba(255, 255, 255, 0);
  7824. border:none;
  7825. border-radius:0px;
  7826. -moz-box-shadow:none;
  7827. -webkit-box-shadow:none;
  7828. box-shadow:none;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. color:#000000;
  7833. }
  7834. #u191110 {
  7835. border-width:0px;
  7836. position:absolute;
  7837. left:270px;
  7838. top:425px;
  7839. width:94px;
  7840. height:20px;
  7841. display:flex;
  7842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7843. font-weight:400;
  7844. font-style:normal;
  7845. color:#000000;
  7846. }
  7847. #u191110 .text {
  7848. position:absolute;
  7849. align-self:flex-start;
  7850. padding:0px 0px 0px 0px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u191110_text {
  7855. border-width:0px;
  7856. white-space:nowrap;
  7857. text-transform:none;
  7858. }
  7859. #u191111_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:38px;
  7865. height:25px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 0);
  7868. border:none;
  7869. border-radius:0px;
  7870. -moz-box-shadow:none;
  7871. -webkit-box-shadow:none;
  7872. box-shadow:none;
  7873. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7874. font-weight:500;
  7875. font-style:normal;
  7876. font-size:18px;
  7877. color:#000000;
  7878. }
  7879. #u191111 {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:298px;
  7883. top:398px;
  7884. width:38px;
  7885. height:25px;
  7886. display:flex;
  7887. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7888. font-weight:500;
  7889. font-style:normal;
  7890. font-size:18px;
  7891. color:#000000;
  7892. }
  7893. #u191111 .text {
  7894. position:absolute;
  7895. align-self:flex-start;
  7896. padding:0px 0px 0px 0px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u191111_text {
  7901. border-width:0px;
  7902. white-space:nowrap;
  7903. text-transform:none;
  7904. }
  7905. #u191112_img {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:2px;
  7911. height:98px;
  7912. }
  7913. #u191112 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:232px;
  7917. top:609px;
  7918. width:1px;
  7919. height:97px;
  7920. display:flex;
  7921. }
  7922. #u191112 .text {
  7923. position:absolute;
  7924. align-self:center;
  7925. padding:2px 2px 2px 2px;
  7926. box-sizing:border-box;
  7927. width:100%;
  7928. }
  7929. #u191112_text {
  7930. border-width:0px;
  7931. word-wrap:break-word;
  7932. text-transform:none;
  7933. visibility:hidden;
  7934. }
  7935. #u191113 {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:0px;
  7939. top:0px;
  7940. width:0px;
  7941. height:0px;
  7942. }
  7943. #u191114_div {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:146px;
  7949. height:40px;
  7950. background:inherit;
  7951. background-color:rgba(0, 0, 0, 0.498039215686275);
  7952. border:none;
  7953. border-radius:4px;
  7954. -moz-box-shadow:none;
  7955. -webkit-box-shadow:none;
  7956. box-shadow:none;
  7957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7958. font-weight:400;
  7959. font-style:normal;
  7960. font-size:16px;
  7961. color:#FFFFFF;
  7962. }
  7963. #u191114 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:216px;
  7967. top:646px;
  7968. width:146px;
  7969. height:40px;
  7970. display:flex;
  7971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:16px;
  7975. color:#FFFFFF;
  7976. }
  7977. #u191114 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:0px 20px 0px 25px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u191114_text {
  7985. border-width:0px;
  7986. white-space:nowrap;
  7987. text-transform:none;
  7988. }
  7989. #u191115_img {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:0px;
  7993. top:0px;
  7994. width:7px;
  7995. height:7px;
  7996. }
  7997. #u191115 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:230px;
  8001. top:663px;
  8002. width:7px;
  8003. height:7px;
  8004. display:flex;
  8005. }
  8006. #u191115 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:2px 2px 2px 2px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u191115_text {
  8014. border-width:0px;
  8015. word-wrap:break-word;
  8016. text-transform:none;
  8017. visibility:hidden;
  8018. }
  8019. #u191116 {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:0px;
  8023. top:0px;
  8024. width:0px;
  8025. height:0px;
  8026. }
  8027. #u191117_div {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:14px;
  8033. height:51px;
  8034. background:inherit;
  8035. background-color:rgba(24, 144, 255, 1);
  8036. border:none;
  8037. border-radius:0px;
  8038. -moz-box-shadow:none;
  8039. -webkit-box-shadow:none;
  8040. box-shadow:none;
  8041. }
  8042. #u191117 {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:56px;
  8046. top:864px;
  8047. width:14px;
  8048. height:51px;
  8049. display:flex;
  8050. }
  8051. #u191117 .text {
  8052. position:absolute;
  8053. align-self:center;
  8054. padding:2px 2px 2px 2px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u191117_text {
  8059. border-width:0px;
  8060. word-wrap:break-word;
  8061. text-transform:none;
  8062. visibility:hidden;
  8063. }
  8064. #u191118_div {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:14px;
  8070. height:26px;
  8071. background:inherit;
  8072. background-color:rgba(80, 227, 193, 1);
  8073. border:none;
  8074. border-radius:0px;
  8075. -moz-box-shadow:none;
  8076. -webkit-box-shadow:none;
  8077. box-shadow:none;
  8078. }
  8079. #u191118 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:56px;
  8083. top:838px;
  8084. width:14px;
  8085. height:26px;
  8086. display:flex;
  8087. }
  8088. #u191118 .text {
  8089. position:absolute;
  8090. align-self:center;
  8091. padding:2px 2px 2px 2px;
  8092. box-sizing:border-box;
  8093. width:100%;
  8094. }
  8095. #u191118_text {
  8096. border-width:0px;
  8097. word-wrap:break-word;
  8098. text-transform:none;
  8099. visibility:hidden;
  8100. }
  8101. #u191119_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:14px;
  8107. height:26px;
  8108. background:inherit;
  8109. background-color:rgba(250, 205, 145, 1);
  8110. border:none;
  8111. border-radius:0px;
  8112. -moz-box-shadow:none;
  8113. -webkit-box-shadow:none;
  8114. box-shadow:none;
  8115. }
  8116. #u191119 {
  8117. border-width:0px;
  8118. position:absolute;
  8119. left:56px;
  8120. top:812px;
  8121. width:14px;
  8122. height:26px;
  8123. display:flex;
  8124. }
  8125. #u191119 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:2px 2px 2px 2px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u191119_text {
  8133. border-width:0px;
  8134. word-wrap:break-word;
  8135. text-transform:none;
  8136. visibility:hidden;
  8137. }
  8138. #u191120 {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:0px;
  8142. top:0px;
  8143. width:0px;
  8144. height:0px;
  8145. }
  8146. #u191121_div {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:0px;
  8150. top:0px;
  8151. width:14px;
  8152. height:51px;
  8153. background:inherit;
  8154. background-color:rgba(24, 144, 255, 1);
  8155. border:none;
  8156. border-radius:0px;
  8157. -moz-box-shadow:none;
  8158. -webkit-box-shadow:none;
  8159. box-shadow:none;
  8160. }
  8161. #u191121 {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:101px;
  8165. top:864px;
  8166. width:14px;
  8167. height:51px;
  8168. display:flex;
  8169. }
  8170. #u191121 .text {
  8171. position:absolute;
  8172. align-self:center;
  8173. padding:2px 2px 2px 2px;
  8174. box-sizing:border-box;
  8175. width:100%;
  8176. }
  8177. #u191121_text {
  8178. border-width:0px;
  8179. word-wrap:break-word;
  8180. text-transform:none;
  8181. visibility:hidden;
  8182. }
  8183. #u191122_div {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:14px;
  8189. height:26px;
  8190. background:inherit;
  8191. background-color:rgba(80, 227, 193, 1);
  8192. border:none;
  8193. border-radius:0px;
  8194. -moz-box-shadow:none;
  8195. -webkit-box-shadow:none;
  8196. box-shadow:none;
  8197. }
  8198. #u191122 {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:101px;
  8202. top:838px;
  8203. width:14px;
  8204. height:26px;
  8205. display:flex;
  8206. }
  8207. #u191122 .text {
  8208. position:absolute;
  8209. align-self:center;
  8210. padding:2px 2px 2px 2px;
  8211. box-sizing:border-box;
  8212. width:100%;
  8213. }
  8214. #u191122_text {
  8215. border-width:0px;
  8216. word-wrap:break-word;
  8217. text-transform:none;
  8218. visibility:hidden;
  8219. }
  8220. #u191123 {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:0px;
  8226. height:0px;
  8227. }
  8228. #u191124_div {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:14px;
  8234. height:51px;
  8235. background:inherit;
  8236. background-color:rgba(24, 144, 255, 1);
  8237. border:none;
  8238. border-radius:0px;
  8239. -moz-box-shadow:none;
  8240. -webkit-box-shadow:none;
  8241. box-shadow:none;
  8242. }
  8243. #u191124 {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:145px;
  8247. top:864px;
  8248. width:14px;
  8249. height:51px;
  8250. display:flex;
  8251. }
  8252. #u191124 .text {
  8253. position:absolute;
  8254. align-self:center;
  8255. padding:2px 2px 2px 2px;
  8256. box-sizing:border-box;
  8257. width:100%;
  8258. }
  8259. #u191124_text {
  8260. border-width:0px;
  8261. word-wrap:break-word;
  8262. text-transform:none;
  8263. visibility:hidden;
  8264. }
  8265. #u191125_div {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:0px;
  8269. top:0px;
  8270. width:14px;
  8271. height:26px;
  8272. background:inherit;
  8273. background-color:rgba(80, 227, 193, 1);
  8274. border:none;
  8275. border-radius:0px;
  8276. -moz-box-shadow:none;
  8277. -webkit-box-shadow:none;
  8278. box-shadow:none;
  8279. }
  8280. #u191125 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:145px;
  8284. top:840px;
  8285. width:14px;
  8286. height:26px;
  8287. display:flex;
  8288. }
  8289. #u191125 .text {
  8290. position:absolute;
  8291. align-self:center;
  8292. padding:2px 2px 2px 2px;
  8293. box-sizing:border-box;
  8294. width:100%;
  8295. }
  8296. #u191125_text {
  8297. border-width:0px;
  8298. word-wrap:break-word;
  8299. text-transform:none;
  8300. visibility:hidden;
  8301. }
  8302. #u191126_div {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:0px;
  8306. top:0px;
  8307. width:14px;
  8308. height:8px;
  8309. background:inherit;
  8310. background-color:rgba(250, 205, 145, 1);
  8311. border:none;
  8312. border-radius:0px;
  8313. -moz-box-shadow:none;
  8314. -webkit-box-shadow:none;
  8315. box-shadow:none;
  8316. }
  8317. #u191126 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:145px;
  8321. top:835px;
  8322. width:14px;
  8323. height:8px;
  8324. display:flex;
  8325. }
  8326. #u191126 .text {
  8327. position:absolute;
  8328. align-self:center;
  8329. padding:2px 2px 2px 2px;
  8330. box-sizing:border-box;
  8331. width:100%;
  8332. }
  8333. #u191126_text {
  8334. border-width:0px;
  8335. word-wrap:break-word;
  8336. text-transform:none;
  8337. visibility:hidden;
  8338. }
  8339. #u191127 {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:0px;
  8343. top:0px;
  8344. width:0px;
  8345. height:0px;
  8346. }
  8347. #u191128_div {
  8348. border-width:0px;
  8349. position:absolute;
  8350. left:0px;
  8351. top:0px;
  8352. width:14px;
  8353. height:51px;
  8354. background:inherit;
  8355. background-color:rgba(24, 144, 255, 1);
  8356. border:none;
  8357. border-radius:0px;
  8358. -moz-box-shadow:none;
  8359. -webkit-box-shadow:none;
  8360. box-shadow:none;
  8361. }
  8362. #u191128 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:190px;
  8366. top:864px;
  8367. width:14px;
  8368. height:51px;
  8369. display:flex;
  8370. }
  8371. #u191128 .text {
  8372. position:absolute;
  8373. align-self:center;
  8374. padding:2px 2px 2px 2px;
  8375. box-sizing:border-box;
  8376. width:100%;
  8377. }
  8378. #u191128_text {
  8379. border-width:0px;
  8380. word-wrap:break-word;
  8381. text-transform:none;
  8382. visibility:hidden;
  8383. }
  8384. #u191129_div {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:14px;
  8390. height:26px;
  8391. background:inherit;
  8392. background-color:rgba(80, 227, 193, 1);
  8393. border:none;
  8394. border-radius:0px;
  8395. -moz-box-shadow:none;
  8396. -webkit-box-shadow:none;
  8397. box-shadow:none;
  8398. }
  8399. #u191129 {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:190px;
  8403. top:838px;
  8404. width:14px;
  8405. height:26px;
  8406. display:flex;
  8407. }
  8408. #u191129 .text {
  8409. position:absolute;
  8410. align-self:center;
  8411. padding:2px 2px 2px 2px;
  8412. box-sizing:border-box;
  8413. width:100%;
  8414. }
  8415. #u191129_text {
  8416. border-width:0px;
  8417. word-wrap:break-word;
  8418. text-transform:none;
  8419. visibility:hidden;
  8420. }
  8421. #u191130 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:0px;
  8425. top:0px;
  8426. width:0px;
  8427. height:0px;
  8428. }
  8429. #u191131_div {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:0px;
  8433. top:0px;
  8434. width:14px;
  8435. height:64px;
  8436. background:inherit;
  8437. background-color:rgba(24, 144, 255, 1);
  8438. border:none;
  8439. border-radius:0px;
  8440. -moz-box-shadow:none;
  8441. -webkit-box-shadow:none;
  8442. box-shadow:none;
  8443. }
  8444. #u191131 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:235px;
  8448. top:851px;
  8449. width:14px;
  8450. height:64px;
  8451. display:flex;
  8452. }
  8453. #u191131 .text {
  8454. position:absolute;
  8455. align-self:center;
  8456. padding:2px 2px 2px 2px;
  8457. box-sizing:border-box;
  8458. width:100%;
  8459. }
  8460. #u191131_text {
  8461. border-width:0px;
  8462. word-wrap:break-word;
  8463. text-transform:none;
  8464. visibility:hidden;
  8465. }
  8466. #u191132_div {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:0px;
  8470. top:0px;
  8471. width:14px;
  8472. height:13px;
  8473. background:inherit;
  8474. background-color:rgba(80, 227, 193, 1);
  8475. border:none;
  8476. border-radius:0px;
  8477. -moz-box-shadow:none;
  8478. -webkit-box-shadow:none;
  8479. box-shadow:none;
  8480. }
  8481. #u191132 {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:235px;
  8485. top:838px;
  8486. width:14px;
  8487. height:13px;
  8488. display:flex;
  8489. }
  8490. #u191132 .text {
  8491. position:absolute;
  8492. align-self:center;
  8493. padding:2px 2px 2px 2px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u191132_text {
  8498. border-width:0px;
  8499. word-wrap:break-word;
  8500. text-transform:none;
  8501. visibility:hidden;
  8502. }
  8503. #u191133_div {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:14px;
  8509. height:8px;
  8510. background:inherit;
  8511. background-color:rgba(250, 205, 145, 1);
  8512. border:none;
  8513. border-radius:0px;
  8514. -moz-box-shadow:none;
  8515. -webkit-box-shadow:none;
  8516. box-shadow:none;
  8517. }
  8518. #u191133 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:235px;
  8522. top:830px;
  8523. width:14px;
  8524. height:8px;
  8525. display:flex;
  8526. }
  8527. #u191133 .text {
  8528. position:absolute;
  8529. align-self:center;
  8530. padding:2px 2px 2px 2px;
  8531. box-sizing:border-box;
  8532. width:100%;
  8533. }
  8534. #u191133_text {
  8535. border-width:0px;
  8536. word-wrap:break-word;
  8537. text-transform:none;
  8538. visibility:hidden;
  8539. }
  8540. #u191134 {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:0px;
  8546. height:0px;
  8547. }
  8548. #u191135_div {
  8549. border-width:0px;
  8550. position:absolute;
  8551. left:0px;
  8552. top:0px;
  8553. width:14px;
  8554. height:39px;
  8555. background:inherit;
  8556. background-color:rgba(24, 144, 255, 1);
  8557. border:none;
  8558. border-radius:0px;
  8559. -moz-box-shadow:none;
  8560. -webkit-box-shadow:none;
  8561. box-shadow:none;
  8562. }
  8563. #u191135 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:279px;
  8567. top:876px;
  8568. width:14px;
  8569. height:39px;
  8570. display:flex;
  8571. }
  8572. #u191135 .text {
  8573. position:absolute;
  8574. align-self:center;
  8575. padding:2px 2px 2px 2px;
  8576. box-sizing:border-box;
  8577. width:100%;
  8578. }
  8579. #u191135_text {
  8580. border-width:0px;
  8581. word-wrap:break-word;
  8582. text-transform:none;
  8583. visibility:hidden;
  8584. }
  8585. #u191136_div {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:0px;
  8589. top:0px;
  8590. width:14px;
  8591. height:20px;
  8592. background:inherit;
  8593. background-color:rgba(80, 227, 193, 1);
  8594. border:none;
  8595. border-radius:0px;
  8596. -moz-box-shadow:none;
  8597. -webkit-box-shadow:none;
  8598. box-shadow:none;
  8599. }
  8600. #u191136 {
  8601. border-width:0px;
  8602. position:absolute;
  8603. left:279px;
  8604. top:856px;
  8605. width:14px;
  8606. height:20px;
  8607. display:flex;
  8608. }
  8609. #u191136 .text {
  8610. position:absolute;
  8611. align-self:center;
  8612. padding:2px 2px 2px 2px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u191136_text {
  8617. border-width:0px;
  8618. word-wrap:break-word;
  8619. text-transform:none;
  8620. visibility:hidden;
  8621. }
  8622. #u191137_div {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:14px;
  8628. height:20px;
  8629. background:inherit;
  8630. background-color:rgba(250, 205, 145, 1);
  8631. border:none;
  8632. border-radius:0px;
  8633. -moz-box-shadow:none;
  8634. -webkit-box-shadow:none;
  8635. box-shadow:none;
  8636. }
  8637. #u191137 {
  8638. border-width:0px;
  8639. position:absolute;
  8640. left:279px;
  8641. top:836px;
  8642. width:14px;
  8643. height:20px;
  8644. display:flex;
  8645. }
  8646. #u191137 .text {
  8647. position:absolute;
  8648. align-self:center;
  8649. padding:2px 2px 2px 2px;
  8650. box-sizing:border-box;
  8651. width:100%;
  8652. }
  8653. #u191137_text {
  8654. border-width:0px;
  8655. word-wrap:break-word;
  8656. text-transform:none;
  8657. visibility:hidden;
  8658. }
  8659. #u191138 {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:0px;
  8664. width:0px;
  8665. height:0px;
  8666. }
  8667. #u191139_div {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:0px;
  8671. top:0px;
  8672. width:14px;
  8673. height:60px;
  8674. background:inherit;
  8675. background-color:rgba(24, 144, 255, 1);
  8676. border:none;
  8677. border-radius:0px;
  8678. -moz-box-shadow:none;
  8679. -webkit-box-shadow:none;
  8680. box-shadow:none;
  8681. }
  8682. #u191139 {
  8683. border-width:0px;
  8684. position:absolute;
  8685. left:324px;
  8686. top:855px;
  8687. width:14px;
  8688. height:60px;
  8689. display:flex;
  8690. }
  8691. #u191139 .text {
  8692. position:absolute;
  8693. align-self:center;
  8694. padding:2px 2px 2px 2px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u191139_text {
  8699. border-width:0px;
  8700. word-wrap:break-word;
  8701. text-transform:none;
  8702. visibility:hidden;
  8703. }
  8704. #u191140_div {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:0px;
  8708. top:0px;
  8709. width:14px;
  8710. height:26px;
  8711. background:inherit;
  8712. background-color:rgba(80, 227, 193, 1);
  8713. border:none;
  8714. border-radius:0px;
  8715. -moz-box-shadow:none;
  8716. -webkit-box-shadow:none;
  8717. box-shadow:none;
  8718. }
  8719. #u191140 {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:324px;
  8723. top:836px;
  8724. width:14px;
  8725. height:26px;
  8726. display:flex;
  8727. }
  8728. #u191140 .text {
  8729. position:absolute;
  8730. align-self:center;
  8731. padding:2px 2px 2px 2px;
  8732. box-sizing:border-box;
  8733. width:100%;
  8734. }
  8735. #u191140_text {
  8736. border-width:0px;
  8737. word-wrap:break-word;
  8738. text-transform:none;
  8739. visibility:hidden;
  8740. }
  8741. #u191141 {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:0px;
  8745. top:0px;
  8746. width:0px;
  8747. height:0px;
  8748. }
  8749. #u191142_div {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:0px;
  8753. top:0px;
  8754. width:153px;
  8755. height:80px;
  8756. background:inherit;
  8757. background-color:rgba(0, 0, 0, 0.498039215686275);
  8758. border:none;
  8759. border-radius:4px;
  8760. -moz-box-shadow:none;
  8761. -webkit-box-shadow:none;
  8762. box-shadow:none;
  8763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8764. font-weight:400;
  8765. font-style:normal;
  8766. font-size:16px;
  8767. color:#FFFFFF;
  8768. }
  8769. #u191142 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:171px;
  8773. top:805px;
  8774. width:153px;
  8775. height:80px;
  8776. display:flex;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:16px;
  8781. color:#FFFFFF;
  8782. }
  8783. #u191142 .text {
  8784. position:absolute;
  8785. align-self:center;
  8786. padding:0px 20px 0px 25px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u191142_text {
  8791. border-width:0px;
  8792. white-space:nowrap;
  8793. text-transform:none;
  8794. }
  8795. #u191143_img {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:7px;
  8801. height:7px;
  8802. }
  8803. #u191143 {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:185px;
  8807. top:821px;
  8808. width:7px;
  8809. height:7px;
  8810. display:flex;
  8811. }
  8812. #u191143 .text {
  8813. position:absolute;
  8814. align-self:center;
  8815. padding:2px 2px 2px 2px;
  8816. box-sizing:border-box;
  8817. width:100%;
  8818. }
  8819. #u191143_text {
  8820. border-width:0px;
  8821. word-wrap:break-word;
  8822. text-transform:none;
  8823. visibility:hidden;
  8824. }
  8825. #u191144_img {
  8826. border-width:0px;
  8827. position:absolute;
  8828. left:0px;
  8829. top:0px;
  8830. width:7px;
  8831. height:7px;
  8832. }
  8833. #u191144 {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:185px;
  8837. top:843px;
  8838. width:7px;
  8839. height:7px;
  8840. display:flex;
  8841. }
  8842. #u191144 .text {
  8843. position:absolute;
  8844. align-self:center;
  8845. padding:2px 2px 2px 2px;
  8846. box-sizing:border-box;
  8847. width:100%;
  8848. }
  8849. #u191144_text {
  8850. border-width:0px;
  8851. word-wrap:break-word;
  8852. text-transform:none;
  8853. visibility:hidden;
  8854. }
  8855. #u191145_img {
  8856. border-width:0px;
  8857. position:absolute;
  8858. left:0px;
  8859. top:0px;
  8860. width:7px;
  8861. height:7px;
  8862. }
  8863. #u191145 {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:185px;
  8867. top:867px;
  8868. width:7px;
  8869. height:7px;
  8870. display:flex;
  8871. }
  8872. #u191145 .text {
  8873. position:absolute;
  8874. align-self:center;
  8875. padding:2px 2px 2px 2px;
  8876. box-sizing:border-box;
  8877. width:100%;
  8878. }
  8879. #u191145_text {
  8880. border-width:0px;
  8881. word-wrap:break-word;
  8882. text-transform:none;
  8883. visibility:hidden;
  8884. }
  8885. #u191146 {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:0px;
  8891. height:0px;
  8892. }
  8893. #u191147_div {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:28px;
  8899. height:14px;
  8900. background:inherit;
  8901. background-color:rgba(255, 255, 255, 0);
  8902. border:none;
  8903. border-radius:0px;
  8904. -moz-box-shadow:none;
  8905. -webkit-box-shadow:none;
  8906. box-shadow:none;
  8907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8908. font-weight:400;
  8909. font-style:normal;
  8910. font-size:10px;
  8911. color:#000000;
  8912. text-align:center;
  8913. }
  8914. #u191147 {
  8915. border-width:0px;
  8916. position:absolute;
  8917. left:48px;
  8918. top:921px;
  8919. width:28px;
  8920. height:14px;
  8921. display:flex;
  8922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8923. font-weight:400;
  8924. font-style:normal;
  8925. font-size:10px;
  8926. color:#000000;
  8927. text-align:center;
  8928. }
  8929. #u191147 .text {
  8930. position:absolute;
  8931. align-self:flex-start;
  8932. padding:0px 0px 0px 0px;
  8933. box-sizing:border-box;
  8934. width:100%;
  8935. }
  8936. #u191147_text {
  8937. border-width:0px;
  8938. white-space:nowrap;
  8939. text-transform:none;
  8940. }
  8941. #u191148_div {
  8942. border-width:0px;
  8943. position:absolute;
  8944. left:0px;
  8945. top:0px;
  8946. width:28px;
  8947. height:14px;
  8948. background:inherit;
  8949. background-color:rgba(255, 255, 255, 0);
  8950. border:none;
  8951. border-radius:0px;
  8952. -moz-box-shadow:none;
  8953. -webkit-box-shadow:none;
  8954. box-shadow:none;
  8955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8956. font-weight:400;
  8957. font-style:normal;
  8958. font-size:10px;
  8959. color:#000000;
  8960. text-align:center;
  8961. }
  8962. #u191148 {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:92px;
  8966. top:921px;
  8967. width:28px;
  8968. height:14px;
  8969. display:flex;
  8970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. font-size:10px;
  8974. color:#000000;
  8975. text-align:center;
  8976. }
  8977. #u191148 .text {
  8978. position:absolute;
  8979. align-self:flex-start;
  8980. padding:0px 0px 0px 0px;
  8981. box-sizing:border-box;
  8982. width:100%;
  8983. }
  8984. #u191148_text {
  8985. border-width:0px;
  8986. white-space:nowrap;
  8987. text-transform:none;
  8988. }
  8989. #u191149_div {
  8990. border-width:0px;
  8991. position:absolute;
  8992. left:0px;
  8993. top:0px;
  8994. width:28px;
  8995. height:14px;
  8996. background:inherit;
  8997. background-color:rgba(255, 255, 255, 0);
  8998. border:none;
  8999. border-radius:0px;
  9000. -moz-box-shadow:none;
  9001. -webkit-box-shadow:none;
  9002. box-shadow:none;
  9003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9004. font-weight:400;
  9005. font-style:normal;
  9006. font-size:10px;
  9007. color:#000000;
  9008. text-align:center;
  9009. }
  9010. #u191149 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:137px;
  9014. top:921px;
  9015. width:28px;
  9016. height:14px;
  9017. display:flex;
  9018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9019. font-weight:400;
  9020. font-style:normal;
  9021. font-size:10px;
  9022. color:#000000;
  9023. text-align:center;
  9024. }
  9025. #u191149 .text {
  9026. position:absolute;
  9027. align-self:flex-start;
  9028. padding:0px 0px 0px 0px;
  9029. box-sizing:border-box;
  9030. width:100%;
  9031. }
  9032. #u191149_text {
  9033. border-width:0px;
  9034. white-space:nowrap;
  9035. text-transform:none;
  9036. }
  9037. #u191150_div {
  9038. border-width:0px;
  9039. position:absolute;
  9040. left:0px;
  9041. top:0px;
  9042. width:27px;
  9043. height:14px;
  9044. background:inherit;
  9045. background-color:rgba(255, 255, 255, 0);
  9046. border:none;
  9047. border-radius:0px;
  9048. -moz-box-shadow:none;
  9049. -webkit-box-shadow:none;
  9050. box-shadow:none;
  9051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9052. font-weight:400;
  9053. font-style:normal;
  9054. font-size:10px;
  9055. color:#000000;
  9056. text-align:center;
  9057. }
  9058. #u191150 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:181px;
  9062. top:921px;
  9063. width:27px;
  9064. height:14px;
  9065. display:flex;
  9066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9067. font-weight:400;
  9068. font-style:normal;
  9069. font-size:10px;
  9070. color:#000000;
  9071. text-align:center;
  9072. }
  9073. #u191150 .text {
  9074. position:absolute;
  9075. align-self:flex-start;
  9076. padding:0px 0px 0px 0px;
  9077. box-sizing:border-box;
  9078. width:100%;
  9079. }
  9080. #u191150_text {
  9081. border-width:0px;
  9082. white-space:nowrap;
  9083. text-transform:none;
  9084. }
  9085. #u191151_div {
  9086. border-width:0px;
  9087. position:absolute;
  9088. left:0px;
  9089. top:0px;
  9090. width:28px;
  9091. height:14px;
  9092. background:inherit;
  9093. background-color:rgba(255, 255, 255, 0);
  9094. border:none;
  9095. border-radius:0px;
  9096. -moz-box-shadow:none;
  9097. -webkit-box-shadow:none;
  9098. box-shadow:none;
  9099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9100. font-weight:400;
  9101. font-style:normal;
  9102. font-size:10px;
  9103. color:#000000;
  9104. text-align:center;
  9105. }
  9106. #u191151 {
  9107. border-width:0px;
  9108. position:absolute;
  9109. left:228px;
  9110. top:921px;
  9111. width:28px;
  9112. height:14px;
  9113. display:flex;
  9114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9115. font-weight:400;
  9116. font-style:normal;
  9117. font-size:10px;
  9118. color:#000000;
  9119. text-align:center;
  9120. }
  9121. #u191151 .text {
  9122. position:absolute;
  9123. align-self:flex-start;
  9124. padding:0px 0px 0px 0px;
  9125. box-sizing:border-box;
  9126. width:100%;
  9127. }
  9128. #u191151_text {
  9129. border-width:0px;
  9130. white-space:nowrap;
  9131. text-transform:none;
  9132. }
  9133. #u191152_div {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:28px;
  9139. height:14px;
  9140. background:inherit;
  9141. background-color:rgba(255, 255, 255, 0);
  9142. border:none;
  9143. border-radius:0px;
  9144. -moz-box-shadow:none;
  9145. -webkit-box-shadow:none;
  9146. box-shadow:none;
  9147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9148. font-weight:400;
  9149. font-style:normal;
  9150. font-size:10px;
  9151. color:#000000;
  9152. text-align:center;
  9153. }
  9154. #u191152 {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:272px;
  9158. top:921px;
  9159. width:28px;
  9160. height:14px;
  9161. display:flex;
  9162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9163. font-weight:400;
  9164. font-style:normal;
  9165. font-size:10px;
  9166. color:#000000;
  9167. text-align:center;
  9168. }
  9169. #u191152 .text {
  9170. position:absolute;
  9171. align-self:flex-start;
  9172. padding:0px 0px 0px 0px;
  9173. box-sizing:border-box;
  9174. width:100%;
  9175. }
  9176. #u191152_text {
  9177. border-width:0px;
  9178. white-space:nowrap;
  9179. text-transform:none;
  9180. }
  9181. #u191153_div {
  9182. border-width:0px;
  9183. position:absolute;
  9184. left:0px;
  9185. top:0px;
  9186. width:30px;
  9187. height:14px;
  9188. background:inherit;
  9189. background-color:rgba(255, 255, 255, 0);
  9190. border:none;
  9191. border-radius:0px;
  9192. -moz-box-shadow:none;
  9193. -webkit-box-shadow:none;
  9194. box-shadow:none;
  9195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9196. font-weight:400;
  9197. font-style:normal;
  9198. font-size:10px;
  9199. color:#000000;
  9200. text-align:center;
  9201. }
  9202. #u191153 {
  9203. border-width:0px;
  9204. position:absolute;
  9205. left:315px;
  9206. top:921px;
  9207. width:30px;
  9208. height:14px;
  9209. display:flex;
  9210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9211. font-weight:400;
  9212. font-style:normal;
  9213. font-size:10px;
  9214. color:#000000;
  9215. text-align:center;
  9216. }
  9217. #u191153 .text {
  9218. position:absolute;
  9219. align-self:flex-start;
  9220. padding:0px 0px 0px 0px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u191153_text {
  9225. border-width:0px;
  9226. white-space:nowrap;
  9227. text-transform:none;
  9228. }
  9229. #u191154 {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:0px;
  9235. height:0px;
  9236. }
  9237. #u191155_div {
  9238. border-width:0px;
  9239. position:absolute;
  9240. left:0px;
  9241. top:0px;
  9242. width:28px;
  9243. height:14px;
  9244. background:inherit;
  9245. background-color:rgba(255, 255, 255, 0);
  9246. border:none;
  9247. border-radius:0px;
  9248. -moz-box-shadow:none;
  9249. -webkit-box-shadow:none;
  9250. box-shadow:none;
  9251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9252. font-weight:400;
  9253. font-style:normal;
  9254. font-size:10px;
  9255. color:#000000;
  9256. text-align:center;
  9257. }
  9258. #u191155 {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:48px;
  9262. top:706px;
  9263. width:28px;
  9264. height:14px;
  9265. display:flex;
  9266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9267. font-weight:400;
  9268. font-style:normal;
  9269. font-size:10px;
  9270. color:#000000;
  9271. text-align:center;
  9272. }
  9273. #u191155 .text {
  9274. position:absolute;
  9275. align-self:flex-start;
  9276. padding:0px 0px 0px 0px;
  9277. box-sizing:border-box;
  9278. width:100%;
  9279. }
  9280. #u191155_text {
  9281. border-width:0px;
  9282. white-space:nowrap;
  9283. text-transform:none;
  9284. }
  9285. #u191156_div {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:0px;
  9289. top:0px;
  9290. width:28px;
  9291. height:14px;
  9292. background:inherit;
  9293. background-color:rgba(255, 255, 255, 0);
  9294. border:none;
  9295. border-radius:0px;
  9296. -moz-box-shadow:none;
  9297. -webkit-box-shadow:none;
  9298. box-shadow:none;
  9299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9300. font-weight:400;
  9301. font-style:normal;
  9302. font-size:10px;
  9303. color:#000000;
  9304. text-align:center;
  9305. }
  9306. #u191156 {
  9307. border-width:0px;
  9308. position:absolute;
  9309. left:92px;
  9310. top:706px;
  9311. width:28px;
  9312. height:14px;
  9313. display:flex;
  9314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9315. font-weight:400;
  9316. font-style:normal;
  9317. font-size:10px;
  9318. color:#000000;
  9319. text-align:center;
  9320. }
  9321. #u191156 .text {
  9322. position:absolute;
  9323. align-self:flex-start;
  9324. padding:0px 0px 0px 0px;
  9325. box-sizing:border-box;
  9326. width:100%;
  9327. }
  9328. #u191156_text {
  9329. border-width:0px;
  9330. white-space:nowrap;
  9331. text-transform:none;
  9332. }
  9333. #u191157_div {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:28px;
  9339. height:14px;
  9340. background:inherit;
  9341. background-color:rgba(255, 255, 255, 0);
  9342. border:none;
  9343. border-radius:0px;
  9344. -moz-box-shadow:none;
  9345. -webkit-box-shadow:none;
  9346. box-shadow:none;
  9347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9348. font-weight:400;
  9349. font-style:normal;
  9350. font-size:10px;
  9351. color:#000000;
  9352. text-align:center;
  9353. }
  9354. #u191157 {
  9355. border-width:0px;
  9356. position:absolute;
  9357. left:137px;
  9358. top:706px;
  9359. width:28px;
  9360. height:14px;
  9361. display:flex;
  9362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9363. font-weight:400;
  9364. font-style:normal;
  9365. font-size:10px;
  9366. color:#000000;
  9367. text-align:center;
  9368. }
  9369. #u191157 .text {
  9370. position:absolute;
  9371. align-self:flex-start;
  9372. padding:0px 0px 0px 0px;
  9373. box-sizing:border-box;
  9374. width:100%;
  9375. }
  9376. #u191157_text {
  9377. border-width:0px;
  9378. white-space:nowrap;
  9379. text-transform:none;
  9380. }
  9381. #u191158_div {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:0px;
  9385. top:0px;
  9386. width:27px;
  9387. height:14px;
  9388. background:inherit;
  9389. background-color:rgba(255, 255, 255, 0);
  9390. border:none;
  9391. border-radius:0px;
  9392. -moz-box-shadow:none;
  9393. -webkit-box-shadow:none;
  9394. box-shadow:none;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:10px;
  9399. color:#000000;
  9400. text-align:center;
  9401. }
  9402. #u191158 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:181px;
  9406. top:706px;
  9407. width:27px;
  9408. height:14px;
  9409. display:flex;
  9410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9411. font-weight:400;
  9412. font-style:normal;
  9413. font-size:10px;
  9414. color:#000000;
  9415. text-align:center;
  9416. }
  9417. #u191158 .text {
  9418. position:absolute;
  9419. align-self:flex-start;
  9420. padding:0px 0px 0px 0px;
  9421. box-sizing:border-box;
  9422. width:100%;
  9423. }
  9424. #u191158_text {
  9425. border-width:0px;
  9426. white-space:nowrap;
  9427. text-transform:none;
  9428. }
  9429. #u191159_div {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:0px;
  9433. top:0px;
  9434. width:28px;
  9435. height:14px;
  9436. background:inherit;
  9437. background-color:rgba(255, 255, 255, 0);
  9438. border:none;
  9439. border-radius:0px;
  9440. -moz-box-shadow:none;
  9441. -webkit-box-shadow:none;
  9442. box-shadow:none;
  9443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9444. font-weight:400;
  9445. font-style:normal;
  9446. font-size:10px;
  9447. color:#000000;
  9448. text-align:center;
  9449. }
  9450. #u191159 {
  9451. border-width:0px;
  9452. position:absolute;
  9453. left:228px;
  9454. top:706px;
  9455. width:28px;
  9456. height:14px;
  9457. display:flex;
  9458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9459. font-weight:400;
  9460. font-style:normal;
  9461. font-size:10px;
  9462. color:#000000;
  9463. text-align:center;
  9464. }
  9465. #u191159 .text {
  9466. position:absolute;
  9467. align-self:flex-start;
  9468. padding:0px 0px 0px 0px;
  9469. box-sizing:border-box;
  9470. width:100%;
  9471. }
  9472. #u191159_text {
  9473. border-width:0px;
  9474. white-space:nowrap;
  9475. text-transform:none;
  9476. }
  9477. #u191160_div {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:0px;
  9481. top:0px;
  9482. width:28px;
  9483. height:14px;
  9484. background:inherit;
  9485. background-color:rgba(255, 255, 255, 0);
  9486. border:none;
  9487. border-radius:0px;
  9488. -moz-box-shadow:none;
  9489. -webkit-box-shadow:none;
  9490. box-shadow:none;
  9491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9492. font-weight:400;
  9493. font-style:normal;
  9494. font-size:10px;
  9495. color:#000000;
  9496. text-align:center;
  9497. }
  9498. #u191160 {
  9499. border-width:0px;
  9500. position:absolute;
  9501. left:272px;
  9502. top:706px;
  9503. width:28px;
  9504. height:14px;
  9505. display:flex;
  9506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9507. font-weight:400;
  9508. font-style:normal;
  9509. font-size:10px;
  9510. color:#000000;
  9511. text-align:center;
  9512. }
  9513. #u191160 .text {
  9514. position:absolute;
  9515. align-self:flex-start;
  9516. padding:0px 0px 0px 0px;
  9517. box-sizing:border-box;
  9518. width:100%;
  9519. }
  9520. #u191160_text {
  9521. border-width:0px;
  9522. white-space:nowrap;
  9523. text-transform:none;
  9524. }
  9525. #u191161_div {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:0px;
  9529. top:0px;
  9530. width:30px;
  9531. height:14px;
  9532. background:inherit;
  9533. background-color:rgba(255, 255, 255, 0);
  9534. border:none;
  9535. border-radius:0px;
  9536. -moz-box-shadow:none;
  9537. -webkit-box-shadow:none;
  9538. box-shadow:none;
  9539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9540. font-weight:400;
  9541. font-style:normal;
  9542. font-size:10px;
  9543. color:#000000;
  9544. text-align:center;
  9545. }
  9546. #u191161 {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:315px;
  9550. top:706px;
  9551. width:30px;
  9552. height:14px;
  9553. display:flex;
  9554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9555. font-weight:400;
  9556. font-style:normal;
  9557. font-size:10px;
  9558. color:#000000;
  9559. text-align:center;
  9560. }
  9561. #u191161 .text {
  9562. position:absolute;
  9563. align-self:flex-start;
  9564. padding:0px 0px 0px 0px;
  9565. box-sizing:border-box;
  9566. width:100%;
  9567. }
  9568. #u191161_text {
  9569. border-width:0px;
  9570. white-space:nowrap;
  9571. text-transform:none;
  9572. }
  9573. #u191162_div {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:0px;
  9577. top:0px;
  9578. width:65px;
  9579. height:22px;
  9580. background:inherit;
  9581. background-color:rgba(255, 255, 255, 0);
  9582. border:none;
  9583. border-radius:0px;
  9584. -moz-box-shadow:none;
  9585. -webkit-box-shadow:none;
  9586. box-shadow:none;
  9587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9588. font-weight:400;
  9589. font-style:normal;
  9590. font-size:16px;
  9591. color:#000000;
  9592. }
  9593. #u191162 {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:187px;
  9597. top:78px;
  9598. width:65px;
  9599. height:22px;
  9600. display:flex;
  9601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9602. font-weight:400;
  9603. font-style:normal;
  9604. font-size:16px;
  9605. color:#000000;
  9606. }
  9607. #u191162 .text {
  9608. position:absolute;
  9609. align-self:flex-start;
  9610. padding:0px 0px 0px 0px;
  9611. box-sizing:border-box;
  9612. width:100%;
  9613. }
  9614. #u191162_text {
  9615. border-width:0px;
  9616. white-space:nowrap;
  9617. text-transform:none;
  9618. }
  9619. #u191163_div {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:0px;
  9623. top:0px;
  9624. width:375px;
  9625. height:40px;
  9626. background:inherit;
  9627. background-color:rgba(255, 255, 255, 1);
  9628. box-sizing:border-box;
  9629. border-width:1px;
  9630. border-style:solid;
  9631. border-color:rgba(215, 215, 215, 1);
  9632. border-left:0px;
  9633. border-top:0px;
  9634. border-right:0px;
  9635. border-radius:0px;
  9636. border-bottom-right-radius:0px;
  9637. border-bottom-left-radius:0px;
  9638. -moz-box-shadow:none;
  9639. -webkit-box-shadow:none;
  9640. box-shadow:none;
  9641. }
  9642. #u191163 {
  9643. border-width:0px;
  9644. position:absolute;
  9645. left:480px;
  9646. top:67px;
  9647. width:375px;
  9648. height:40px;
  9649. display:flex;
  9650. }
  9651. #u191163 .text {
  9652. position:absolute;
  9653. align-self:center;
  9654. padding:2px 2px 2px 2px;
  9655. box-sizing:border-box;
  9656. width:100%;
  9657. }
  9658. #u191163_text {
  9659. border-width:0px;
  9660. word-wrap:break-word;
  9661. text-transform:none;
  9662. visibility:hidden;
  9663. }
  9664. #u191164_img {
  9665. border-width:0px;
  9666. position:absolute;
  9667. left:0px;
  9668. top:0px;
  9669. width:375px;
  9670. height:44px;
  9671. }
  9672. #u191164 {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:480px;
  9676. top:24px;
  9677. width:375px;
  9678. height:44px;
  9679. display:flex;
  9680. }
  9681. #u191164 .text {
  9682. position:absolute;
  9683. align-self:center;
  9684. padding:2px 2px 2px 2px;
  9685. box-sizing:border-box;
  9686. width:100%;
  9687. }
  9688. #u191164_text {
  9689. border-width:0px;
  9690. word-wrap:break-word;
  9691. text-transform:none;
  9692. visibility:hidden;
  9693. }
  9694. #u191165 {
  9695. border-width:0px;
  9696. position:absolute;
  9697. left:0px;
  9698. top:0px;
  9699. width:0px;
  9700. height:0px;
  9701. }
  9702. #u191166_div {
  9703. border-width:0px;
  9704. position:absolute;
  9705. left:0px;
  9706. top:0px;
  9707. width:88px;
  9708. height:32px;
  9709. background:inherit;
  9710. background-color:rgba(255, 255, 255, 1);
  9711. box-sizing:border-box;
  9712. border-width:1px;
  9713. border-style:solid;
  9714. border-color:rgba(242, 242, 242, 1);
  9715. border-radius:33px;
  9716. -moz-box-shadow:none;
  9717. -webkit-box-shadow:none;
  9718. box-shadow:none;
  9719. }
  9720. #u191166 {
  9721. border-width:0px;
  9722. position:absolute;
  9723. left:760px;
  9724. top:71px;
  9725. width:88px;
  9726. height:32px;
  9727. display:flex;
  9728. }
  9729. #u191166 .text {
  9730. position:absolute;
  9731. align-self:center;
  9732. padding:2px 2px 2px 2px;
  9733. box-sizing:border-box;
  9734. width:100%;
  9735. }
  9736. #u191166_text {
  9737. border-width:0px;
  9738. word-wrap:break-word;
  9739. text-transform:none;
  9740. visibility:hidden;
  9741. }
  9742. #u191167 {
  9743. border-width:0px;
  9744. position:absolute;
  9745. left:0px;
  9746. top:0px;
  9747. width:0px;
  9748. height:0px;
  9749. }
  9750. #u191168_img {
  9751. border-width:0px;
  9752. position:absolute;
  9753. left:0px;
  9754. top:0px;
  9755. width:18px;
  9756. height:18px;
  9757. }
  9758. #u191168 {
  9759. border-width:0px;
  9760. position:absolute;
  9761. left:823px;
  9762. top:78px;
  9763. width:18px;
  9764. height:18px;
  9765. display:flex;
  9766. }
  9767. #u191168 .text {
  9768. position:absolute;
  9769. align-self:center;
  9770. padding:2px 2px 2px 2px;
  9771. box-sizing:border-box;
  9772. width:100%;
  9773. }
  9774. #u191168_text {
  9775. border-width:0px;
  9776. word-wrap:break-word;
  9777. text-transform:none;
  9778. visibility:hidden;
  9779. }
  9780. #u191169_img {
  9781. border-width:0px;
  9782. position:absolute;
  9783. left:0px;
  9784. top:0px;
  9785. width:6px;
  9786. height:6px;
  9787. }
  9788. #u191169 {
  9789. border-width:0px;
  9790. position:absolute;
  9791. left:829px;
  9792. top:84px;
  9793. width:6px;
  9794. height:6px;
  9795. display:flex;
  9796. }
  9797. #u191169 .text {
  9798. position:absolute;
  9799. align-self:center;
  9800. padding:2px 2px 2px 2px;
  9801. box-sizing:border-box;
  9802. width:100%;
  9803. }
  9804. #u191169_text {
  9805. border-width:0px;
  9806. word-wrap:break-word;
  9807. text-transform:none;
  9808. visibility:hidden;
  9809. }
  9810. #u191170 {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:0px;
  9814. top:0px;
  9815. width:0px;
  9816. height:0px;
  9817. }
  9818. #u191171_img {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:0px;
  9822. top:0px;
  9823. width:5px;
  9824. height:5px;
  9825. }
  9826. #u191171 {
  9827. border-width:0px;
  9828. position:absolute;
  9829. left:774px;
  9830. top:85px;
  9831. width:5px;
  9832. height:5px;
  9833. display:flex;
  9834. }
  9835. #u191171 .text {
  9836. position:absolute;
  9837. align-self:center;
  9838. padding:2px 2px 2px 2px;
  9839. box-sizing:border-box;
  9840. width:100%;
  9841. }
  9842. #u191171_text {
  9843. border-width:0px;
  9844. word-wrap:break-word;
  9845. text-transform:none;
  9846. visibility:hidden;
  9847. }
  9848. #u191172_img {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:0px;
  9852. top:0px;
  9853. width:5px;
  9854. height:5px;
  9855. }
  9856. #u191172 {
  9857. border-width:0px;
  9858. position:absolute;
  9859. left:790px;
  9860. top:85px;
  9861. width:5px;
  9862. height:5px;
  9863. display:flex;
  9864. }
  9865. #u191172 .text {
  9866. position:absolute;
  9867. align-self:center;
  9868. padding:2px 2px 2px 2px;
  9869. box-sizing:border-box;
  9870. width:100%;
  9871. }
  9872. #u191172_text {
  9873. border-width:0px;
  9874. word-wrap:break-word;
  9875. text-transform:none;
  9876. visibility:hidden;
  9877. }
  9878. #u191173_img {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:0px;
  9882. top:0px;
  9883. width:7px;
  9884. height:7px;
  9885. }
  9886. #u191173 {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:781px;
  9890. top:84px;
  9891. width:7px;
  9892. height:7px;
  9893. display:flex;
  9894. }
  9895. #u191173 .text {
  9896. position:absolute;
  9897. align-self:center;
  9898. padding:2px 2px 2px 2px;
  9899. box-sizing:border-box;
  9900. width:100%;
  9901. }
  9902. #u191173_text {
  9903. border-width:0px;
  9904. word-wrap:break-word;
  9905. text-transform:none;
  9906. visibility:hidden;
  9907. }
  9908. #u191174_img {
  9909. border-width:0px;
  9910. position:absolute;
  9911. left:0px;
  9912. top:0px;
  9913. width:19px;
  9914. height:2px;
  9915. }
  9916. #u191174 {
  9917. border-width:0px;
  9918. position:absolute;
  9919. left:798px;
  9920. top:87px;
  9921. width:18px;
  9922. height:1px;
  9923. display:flex;
  9924. -webkit-transform:rotate(90deg);
  9925. -moz-transform:rotate(90deg);
  9926. -ms-transform:rotate(90deg);
  9927. transform:rotate(90deg);
  9928. }
  9929. #u191174 .text {
  9930. position:absolute;
  9931. align-self:center;
  9932. padding:2px 2px 2px 2px;
  9933. box-sizing:border-box;
  9934. width:100%;
  9935. }
  9936. #u191174_text {
  9937. border-width:0px;
  9938. word-wrap:break-word;
  9939. text-transform:none;
  9940. visibility:hidden;
  9941. }
  9942. #u191175_div {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:113px;
  9948. height:22px;
  9949. background:inherit;
  9950. background-color:rgba(255, 255, 255, 0);
  9951. border:none;
  9952. border-radius:0px;
  9953. -moz-box-shadow:none;
  9954. -webkit-box-shadow:none;
  9955. box-shadow:none;
  9956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9957. font-weight:400;
  9958. font-style:normal;
  9959. font-size:16px;
  9960. color:#000000;
  9961. }
  9962. #u191175 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:619px;
  9966. top:78px;
  9967. width:113px;
  9968. height:22px;
  9969. display:flex;
  9970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9971. font-weight:400;
  9972. font-style:normal;
  9973. font-size:16px;
  9974. color:#000000;
  9975. }
  9976. #u191175 .text {
  9977. position:absolute;
  9978. align-self:flex-start;
  9979. padding:0px 0px 0px 0px;
  9980. box-sizing:border-box;
  9981. width:100%;
  9982. }
  9983. #u191175_text {
  9984. border-width:0px;
  9985. white-space:nowrap;
  9986. text-transform:none;
  9987. }
  9988. #u191176_div {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:0px;
  9992. top:0px;
  9993. width:12px;
  9994. height:12px;
  9995. background:inherit;
  9996. background-color:rgba(255, 255, 255, 0);
  9997. box-sizing:border-box;
  9998. border-width:2px;
  9999. border-style:solid;
  10000. border-color:rgba(51, 51, 51, 1);
  10001. border-right:0px;
  10002. border-bottom:0px;
  10003. border-radius:0px;
  10004. border-top-right-radius:0px;
  10005. border-bottom-left-radius:0px;
  10006. -moz-box-shadow:none;
  10007. -webkit-box-shadow:none;
  10008. box-shadow:none;
  10009. }
  10010. #u191176 {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:41px;
  10014. top:78px;
  10015. width:12px;
  10016. height:12px;
  10017. display:flex;
  10018. -webkit-transform:rotate(315deg);
  10019. -moz-transform:rotate(315deg);
  10020. -ms-transform:rotate(315deg);
  10021. transform:rotate(315deg);
  10022. }
  10023. #u191176 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:2px 2px 2px 2px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u191176_text {
  10031. border-width:0px;
  10032. word-wrap:break-word;
  10033. text-transform:none;
  10034. visibility:hidden;
  10035. }
  10036. #u191177_img {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:0px;
  10040. top:0px;
  10041. width:23px;
  10042. height:23px;
  10043. }
  10044. #u191177 {
  10045. border-width:0px;
  10046. position:absolute;
  10047. left:68px;
  10048. top:73px;
  10049. width:23px;
  10050. height:23px;
  10051. display:flex;
  10052. }
  10053. #u191177 .text {
  10054. position:absolute;
  10055. align-self:center;
  10056. padding:2px 2px 2px 2px;
  10057. box-sizing:border-box;
  10058. width:100%;
  10059. }
  10060. #u191177_text {
  10061. border-width:0px;
  10062. word-wrap:break-word;
  10063. text-transform:none;
  10064. visibility:hidden;
  10065. }
  10066. #u191178_div {
  10067. border-width:0px;
  10068. position:absolute;
  10069. left:0px;
  10070. top:0px;
  10071. width:12px;
  10072. height:12px;
  10073. background:inherit;
  10074. background-color:rgba(255, 255, 255, 0);
  10075. box-sizing:border-box;
  10076. border-width:2px;
  10077. border-style:solid;
  10078. border-color:rgba(51, 51, 51, 1);
  10079. border-right:0px;
  10080. border-bottom:0px;
  10081. border-radius:0px;
  10082. border-top-right-radius:0px;
  10083. border-bottom-left-radius:0px;
  10084. -moz-box-shadow:none;
  10085. -webkit-box-shadow:none;
  10086. box-shadow:none;
  10087. }
  10088. #u191178 {
  10089. border-width:0px;
  10090. position:absolute;
  10091. left:495px;
  10092. top:81px;
  10093. width:12px;
  10094. height:12px;
  10095. display:flex;
  10096. -webkit-transform:rotate(315deg);
  10097. -moz-transform:rotate(315deg);
  10098. -ms-transform:rotate(315deg);
  10099. transform:rotate(315deg);
  10100. }
  10101. #u191178 .text {
  10102. position:absolute;
  10103. align-self:center;
  10104. padding:2px 2px 2px 2px;
  10105. box-sizing:border-box;
  10106. width:100%;
  10107. }
  10108. #u191178_text {
  10109. border-width:0px;
  10110. word-wrap:break-word;
  10111. text-transform:none;
  10112. visibility:hidden;
  10113. }
  10114. #u191179_img {
  10115. border-width:0px;
  10116. position:absolute;
  10117. left:0px;
  10118. top:0px;
  10119. width:23px;
  10120. height:23px;
  10121. }
  10122. #u191179 {
  10123. border-width:0px;
  10124. position:absolute;
  10125. left:522px;
  10126. top:76px;
  10127. width:23px;
  10128. height:23px;
  10129. display:flex;
  10130. }
  10131. #u191179 .text {
  10132. position:absolute;
  10133. align-self:center;
  10134. padding:2px 2px 2px 2px;
  10135. box-sizing:border-box;
  10136. width:100%;
  10137. }
  10138. #u191179_text {
  10139. border-width:0px;
  10140. word-wrap:break-word;
  10141. text-transform:none;
  10142. visibility:hidden;
  10143. }