styles.css 116 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1777px;
  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. #u128925_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u128925 {
  28. border-width:0px;
  29. position:absolute;
  30. left:927px;
  31. top:2px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u128925 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u128925_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u128926_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. #u128926 {
  73. border-width:0px;
  74. position:absolute;
  75. left:956px;
  76. top:69px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u128926 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u128926_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u128927 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u128928_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. #u128928 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1236px;
  124. top:73px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u128928 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u128928_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u128929 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u128930_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u128930 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1299px;
  162. top:80px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u128930 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u128930_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u128931_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u128931 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1305px;
  192. top:86px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u128931 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u128931_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u128932 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u128933_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u128933 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1250px;
  230. top:87px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u128933 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u128933_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u128934_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u128934 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1266px;
  260. top:87px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u128934 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u128934_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u128935_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u128935 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1257px;
  290. top:86px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u128935 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u128935_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u128936_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u128936 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1274px;
  320. top:89px;
  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. #u128936 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u128936_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u128937_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u128937 {
  351. border-width:0px;
  352. position:absolute;
  353. left:956px;
  354. top:26px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u128937 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u128937_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u128938_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. #u128938 {
  393. border-width:0px;
  394. position:absolute;
  395. left:956px;
  396. top:790px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u128938 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u128938_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u128939 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u128940_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u128940 {
  431. border-width:0px;
  432. position:absolute;
  433. left:996px;
  434. top:794px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u128940 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u128940_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u128941_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. #u128941 {
  472. border-width:0px;
  473. position:absolute;
  474. left:996px;
  475. top:819px;
  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. #u128941 .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. #u128941_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u128942 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u128943_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u128943 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1266px;
  516. top:796px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u128943 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u128943_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u128944_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. #u128944 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1266px;
  557. top:821px;
  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. #u128944 .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. #u128944_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u128945_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. #u128945 {
  594. border-width:0px;
  595. position:absolute;
  596. left:956px;
  597. top:109px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u128945 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u128945_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u128946 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u128947_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u128947 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1178px;
  635. top:794px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u128947 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u128947_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u128948_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. #u128948 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1172px;
  676. top:819px;
  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. #u128948 .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. #u128948_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u128949 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u128950_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u128950 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1084px;
  717. top:794px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u128950 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u128950_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u128951_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. #u128951 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1078px;
  758. top:819px;
  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. #u128951 .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. #u128951_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u128952_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:736px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(242, 242, 242, 1);
  792. border-radius:26px;
  793. border-top-left-radius:0px;
  794. border-top-right-radius:0px;
  795. -moz-box-shadow:none;
  796. -webkit-box-shadow:none;
  797. box-shadow:none;
  798. }
  799. #u128952 {
  800. border-width:0px;
  801. position:absolute;
  802. left:956px;
  803. top:107px;
  804. width:375px;
  805. height:736px;
  806. display:flex;
  807. }
  808. #u128952 .text {
  809. position:absolute;
  810. align-self:center;
  811. padding:2px 2px 2px 2px;
  812. box-sizing:border-box;
  813. width:100%;
  814. }
  815. #u128952_text {
  816. border-width:0px;
  817. word-wrap:break-word;
  818. text-transform:none;
  819. visibility:hidden;
  820. }
  821. #u128953 {
  822. border-width:0px;
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:0px;
  827. height:0px;
  828. }
  829. #u128954_div {
  830. border-width:0px;
  831. position:absolute;
  832. left:0px;
  833. top:0px;
  834. width:375px;
  835. height:30px;
  836. background:inherit;
  837. background-color:rgba(255, 255, 255, 1);
  838. border:none;
  839. border-bottom:0px;
  840. border-radius:0px;
  841. border-bottom-right-radius:0px;
  842. border-bottom-left-radius:0px;
  843. -moz-box-shadow:none;
  844. -webkit-box-shadow:none;
  845. box-shadow:none;
  846. }
  847. #u128954 {
  848. border-width:0px;
  849. position:absolute;
  850. left:956px;
  851. top:107px;
  852. width:375px;
  853. height:30px;
  854. display:flex;
  855. }
  856. #u128954 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 2px 2px 2px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u128954_text {
  864. border-width:0px;
  865. word-wrap:break-word;
  866. text-transform:none;
  867. }
  868. #u128955_img {
  869. border-width:0px;
  870. position:absolute;
  871. left:0px;
  872. top:0px;
  873. width:15px;
  874. height:7px;
  875. }
  876. #u128955 {
  877. border-width:0px;
  878. position:absolute;
  879. left:1140px;
  880. top:119px;
  881. width:15px;
  882. height:7px;
  883. display:flex;
  884. -webkit-transform:rotate(180deg);
  885. -moz-transform:rotate(180deg);
  886. -ms-transform:rotate(180deg);
  887. transform:rotate(180deg);
  888. }
  889. #u128955 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u128955_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u128956_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:81px;
  908. height:30px;
  909. background:inherit;
  910. background-color:rgba(51, 51, 51, 0.545098039215686);
  911. border:none;
  912. border-right:0px;
  913. border-radius:23px;
  914. border-top-right-radius:0px;
  915. border-bottom-right-radius:0px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  920. font-weight:400;
  921. font-style:normal;
  922. color:#FFFFFF;
  923. }
  924. #u128956 {
  925. border-width:0px;
  926. position:absolute;
  927. left:1250px;
  928. top:117px;
  929. width:81px;
  930. height:30px;
  931. display:flex;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. color:#FFFFFF;
  936. }
  937. #u128956 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:0px 5px 0px 5px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u128956_text {
  945. border-width:0px;
  946. white-space:nowrap;
  947. text-transform:none;
  948. }
  949. #u128957_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:375px;
  955. height:696px;
  956. background:inherit;
  957. background-color:rgba(215, 215, 215, 1);
  958. border:none;
  959. border-top:0px;
  960. border-radius:29px;
  961. border-top-left-radius:0px;
  962. border-top-right-radius:0px;
  963. -moz-box-shadow:none;
  964. -webkit-box-shadow:none;
  965. box-shadow:none;
  966. }
  967. #u128957 {
  968. border-width:0px;
  969. position:absolute;
  970. left:956px;
  971. top:147px;
  972. width:375px;
  973. height:696px;
  974. display:flex;
  975. }
  976. #u128957 .text {
  977. position:absolute;
  978. align-self:center;
  979. padding:2px 2px 2px 2px;
  980. box-sizing:border-box;
  981. width:100%;
  982. }
  983. #u128957_text {
  984. border-width:0px;
  985. word-wrap:break-word;
  986. text-transform:none;
  987. }
  988. #u128959_img {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:433px;
  994. height:865px;
  995. }
  996. #u128959 {
  997. border-width:0px;
  998. position:absolute;
  999. left:463px;
  1000. top:2px;
  1001. width:433px;
  1002. height:865px;
  1003. display:flex;
  1004. }
  1005. #u128959 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u128959_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u128960_div {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:375px;
  1024. height:40px;
  1025. background:inherit;
  1026. background-color:rgba(255, 255, 255, 1);
  1027. box-sizing:border-box;
  1028. border-width:1px;
  1029. border-style:solid;
  1030. border-color:rgba(215, 215, 215, 1);
  1031. border-left:0px;
  1032. border-top:0px;
  1033. border-right:0px;
  1034. border-radius:0px;
  1035. border-bottom-right-radius:0px;
  1036. border-bottom-left-radius:0px;
  1037. -moz-box-shadow:none;
  1038. -webkit-box-shadow:none;
  1039. box-shadow:none;
  1040. }
  1041. #u128960 {
  1042. border-width:0px;
  1043. position:absolute;
  1044. left:492px;
  1045. top:69px;
  1046. width:375px;
  1047. height:40px;
  1048. display:flex;
  1049. }
  1050. #u128960 .text {
  1051. position:absolute;
  1052. align-self:center;
  1053. padding:2px 2px 2px 2px;
  1054. box-sizing:border-box;
  1055. width:100%;
  1056. }
  1057. #u128960_text {
  1058. border-width:0px;
  1059. word-wrap:break-word;
  1060. text-transform:none;
  1061. visibility:hidden;
  1062. }
  1063. #u128961 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:0px;
  1069. height:0px;
  1070. }
  1071. #u128962_div {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:88px;
  1077. height:32px;
  1078. background:inherit;
  1079. background-color:rgba(255, 255, 255, 1);
  1080. box-sizing:border-box;
  1081. border-width:1px;
  1082. border-style:solid;
  1083. border-color:rgba(242, 242, 242, 1);
  1084. border-radius:33px;
  1085. -moz-box-shadow:none;
  1086. -webkit-box-shadow:none;
  1087. box-shadow:none;
  1088. }
  1089. #u128962 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:772px;
  1093. top:73px;
  1094. width:88px;
  1095. height:32px;
  1096. display:flex;
  1097. }
  1098. #u128962 .text {
  1099. position:absolute;
  1100. align-self:center;
  1101. padding:2px 2px 2px 2px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u128962_text {
  1106. border-width:0px;
  1107. word-wrap:break-word;
  1108. text-transform:none;
  1109. visibility:hidden;
  1110. }
  1111. #u128963 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:0px;
  1117. height:0px;
  1118. }
  1119. #u128964_img {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:18px;
  1125. height:18px;
  1126. }
  1127. #u128964 {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:835px;
  1131. top:80px;
  1132. width:18px;
  1133. height:18px;
  1134. display:flex;
  1135. }
  1136. #u128964 .text {
  1137. position:absolute;
  1138. align-self:center;
  1139. padding:2px 2px 2px 2px;
  1140. box-sizing:border-box;
  1141. width:100%;
  1142. }
  1143. #u128964_text {
  1144. border-width:0px;
  1145. word-wrap:break-word;
  1146. text-transform:none;
  1147. visibility:hidden;
  1148. }
  1149. #u128965_img {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:6px;
  1155. height:6px;
  1156. }
  1157. #u128965 {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:841px;
  1161. top:86px;
  1162. width:6px;
  1163. height:6px;
  1164. display:flex;
  1165. }
  1166. #u128965 .text {
  1167. position:absolute;
  1168. align-self:center;
  1169. padding:2px 2px 2px 2px;
  1170. box-sizing:border-box;
  1171. width:100%;
  1172. }
  1173. #u128965_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u128966 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:0px;
  1185. height:0px;
  1186. }
  1187. #u128967_img {
  1188. border-width:0px;
  1189. position:absolute;
  1190. left:0px;
  1191. top:0px;
  1192. width:5px;
  1193. height:5px;
  1194. }
  1195. #u128967 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:786px;
  1199. top:87px;
  1200. width:5px;
  1201. height:5px;
  1202. display:flex;
  1203. }
  1204. #u128967 .text {
  1205. position:absolute;
  1206. align-self:center;
  1207. padding:2px 2px 2px 2px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u128967_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. visibility:hidden;
  1216. }
  1217. #u128968_img {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:0px;
  1221. top:0px;
  1222. width:5px;
  1223. height:5px;
  1224. }
  1225. #u128968 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:802px;
  1229. top:87px;
  1230. width:5px;
  1231. height:5px;
  1232. display:flex;
  1233. }
  1234. #u128968 .text {
  1235. position:absolute;
  1236. align-self:center;
  1237. padding:2px 2px 2px 2px;
  1238. box-sizing:border-box;
  1239. width:100%;
  1240. }
  1241. #u128968_text {
  1242. border-width:0px;
  1243. word-wrap:break-word;
  1244. text-transform:none;
  1245. visibility:hidden;
  1246. }
  1247. #u128969_img {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:7px;
  1253. height:7px;
  1254. }
  1255. #u128969 {
  1256. border-width:0px;
  1257. position:absolute;
  1258. left:793px;
  1259. top:86px;
  1260. width:7px;
  1261. height:7px;
  1262. display:flex;
  1263. }
  1264. #u128969 .text {
  1265. position:absolute;
  1266. align-self:center;
  1267. padding:2px 2px 2px 2px;
  1268. box-sizing:border-box;
  1269. width:100%;
  1270. }
  1271. #u128969_text {
  1272. border-width:0px;
  1273. word-wrap:break-word;
  1274. text-transform:none;
  1275. visibility:hidden;
  1276. }
  1277. #u128970_img {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:0px;
  1281. top:0px;
  1282. width:19px;
  1283. height:2px;
  1284. }
  1285. #u128970 {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:810px;
  1289. top:89px;
  1290. width:18px;
  1291. height:1px;
  1292. display:flex;
  1293. -webkit-transform:rotate(90deg);
  1294. -moz-transform:rotate(90deg);
  1295. -ms-transform:rotate(90deg);
  1296. transform:rotate(90deg);
  1297. }
  1298. #u128970 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u128970_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u128971_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:375px;
  1317. height:44px;
  1318. }
  1319. #u128971 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:492px;
  1323. top:26px;
  1324. width:375px;
  1325. height:44px;
  1326. display:flex;
  1327. }
  1328. #u128971 .text {
  1329. position:absolute;
  1330. align-self:center;
  1331. padding:2px 2px 2px 2px;
  1332. box-sizing:border-box;
  1333. width:100%;
  1334. }
  1335. #u128971_text {
  1336. border-width:0px;
  1337. word-wrap:break-word;
  1338. text-transform:none;
  1339. visibility:hidden;
  1340. }
  1341. #u128972_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:375px;
  1347. height:50px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 1);
  1350. box-sizing:border-box;
  1351. border-width:1px;
  1352. border-style:solid;
  1353. border-color:rgba(242, 242, 242, 1);
  1354. border-radius:26px;
  1355. border-top-left-radius:0px;
  1356. border-top-right-radius:0px;
  1357. -moz-box-shadow:none;
  1358. -webkit-box-shadow:none;
  1359. box-shadow:none;
  1360. }
  1361. #u128972 {
  1362. border-width:0px;
  1363. position:absolute;
  1364. left:492px;
  1365. top:790px;
  1366. width:375px;
  1367. height:50px;
  1368. display:flex;
  1369. }
  1370. #u128972 .text {
  1371. position:absolute;
  1372. align-self:center;
  1373. padding:2px 2px 2px 2px;
  1374. box-sizing:border-box;
  1375. width:100%;
  1376. }
  1377. #u128972_text {
  1378. border-width:0px;
  1379. word-wrap:break-word;
  1380. text-transform:none;
  1381. visibility:hidden;
  1382. }
  1383. #u128973 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:0px;
  1389. height:0px;
  1390. }
  1391. #u128974_img {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:24px;
  1397. height:24px;
  1398. }
  1399. #u128974 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:532px;
  1403. top:794px;
  1404. width:24px;
  1405. height:24px;
  1406. display:flex;
  1407. font-size:8px;
  1408. }
  1409. #u128974 .text {
  1410. position:absolute;
  1411. align-self:center;
  1412. padding:2px 2px 2px 2px;
  1413. box-sizing:border-box;
  1414. width:100%;
  1415. }
  1416. #u128974_text {
  1417. border-width:0px;
  1418. word-wrap:break-word;
  1419. text-transform:none;
  1420. }
  1421. #u128975_div {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:0px;
  1425. top:0px;
  1426. width:25px;
  1427. height:17px;
  1428. background:inherit;
  1429. background-color:rgba(255, 255, 255, 0);
  1430. border:none;
  1431. border-radius:0px;
  1432. -moz-box-shadow:none;
  1433. -webkit-box-shadow:none;
  1434. box-shadow:none;
  1435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1436. font-weight:400;
  1437. font-style:normal;
  1438. font-size:12px;
  1439. }
  1440. #u128975 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:532px;
  1444. top:819px;
  1445. width:25px;
  1446. height:17px;
  1447. display:flex;
  1448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1449. font-weight:400;
  1450. font-style:normal;
  1451. font-size:12px;
  1452. }
  1453. #u128975 .text {
  1454. position:absolute;
  1455. align-self:flex-start;
  1456. padding:0px 0px 0px 0px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u128975_text {
  1461. border-width:0px;
  1462. white-space:nowrap;
  1463. text-transform:none;
  1464. }
  1465. #u128976 {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:0px;
  1471. height:0px;
  1472. }
  1473. #u128977_img {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:24px;
  1479. height:24px;
  1480. }
  1481. #u128977 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:802px;
  1485. top:796px;
  1486. width:24px;
  1487. height:24px;
  1488. display:flex;
  1489. font-size:8px;
  1490. }
  1491. #u128977 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 2px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u128977_text {
  1499. border-width:0px;
  1500. word-wrap:break-word;
  1501. text-transform:none;
  1502. }
  1503. #u128978_div {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:25px;
  1509. height:17px;
  1510. background:inherit;
  1511. background-color:rgba(255, 255, 255, 0);
  1512. border:none;
  1513. border-radius:0px;
  1514. -moz-box-shadow:none;
  1515. -webkit-box-shadow:none;
  1516. box-shadow:none;
  1517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1518. font-weight:400;
  1519. font-style:normal;
  1520. font-size:12px;
  1521. }
  1522. #u128978 {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:802px;
  1526. top:821px;
  1527. width:25px;
  1528. height:17px;
  1529. display:flex;
  1530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1531. font-weight:400;
  1532. font-style:normal;
  1533. font-size:12px;
  1534. }
  1535. #u128978 .text {
  1536. position:absolute;
  1537. align-self:flex-start;
  1538. padding:0px 0px 0px 0px;
  1539. box-sizing:border-box;
  1540. width:100%;
  1541. }
  1542. #u128978_text {
  1543. border-width:0px;
  1544. white-space:nowrap;
  1545. text-transform:none;
  1546. }
  1547. #u128979_div {
  1548. border-width:0px;
  1549. position:absolute;
  1550. left:0px;
  1551. top:0px;
  1552. width:375px;
  1553. height:681px;
  1554. background:inherit;
  1555. background-color:rgba(242, 242, 242, 0.462745098039216);
  1556. border:none;
  1557. border-radius:0px;
  1558. -moz-box-shadow:none;
  1559. -webkit-box-shadow:none;
  1560. box-shadow:none;
  1561. }
  1562. #u128979 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:492px;
  1566. top:109px;
  1567. width:375px;
  1568. height:681px;
  1569. display:flex;
  1570. }
  1571. #u128979 .text {
  1572. position:absolute;
  1573. align-self:center;
  1574. padding:2px 2px 2px 2px;
  1575. box-sizing:border-box;
  1576. width:100%;
  1577. }
  1578. #u128979_text {
  1579. border-width:0px;
  1580. word-wrap:break-word;
  1581. text-transform:none;
  1582. visibility:hidden;
  1583. }
  1584. #u128980 {
  1585. border-width:0px;
  1586. position:absolute;
  1587. left:0px;
  1588. top:0px;
  1589. width:0px;
  1590. height:0px;
  1591. }
  1592. #u128981_img {
  1593. border-width:0px;
  1594. position:absolute;
  1595. left:0px;
  1596. top:0px;
  1597. width:24px;
  1598. height:24px;
  1599. }
  1600. #u128981 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:714px;
  1604. top:794px;
  1605. width:24px;
  1606. height:24px;
  1607. display:flex;
  1608. font-size:8px;
  1609. }
  1610. #u128981 .text {
  1611. position:absolute;
  1612. align-self:center;
  1613. padding:2px 2px 2px 2px;
  1614. box-sizing:border-box;
  1615. width:100%;
  1616. }
  1617. #u128981_text {
  1618. border-width:0px;
  1619. word-wrap:break-word;
  1620. text-transform:none;
  1621. }
  1622. #u128982_div {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:0px;
  1626. top:0px;
  1627. width:37px;
  1628. height:17px;
  1629. background:inherit;
  1630. background-color:rgba(255, 255, 255, 0);
  1631. border:none;
  1632. border-radius:0px;
  1633. -moz-box-shadow:none;
  1634. -webkit-box-shadow:none;
  1635. box-shadow:none;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:12px;
  1640. }
  1641. #u128982 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:708px;
  1645. top:819px;
  1646. width:37px;
  1647. height:17px;
  1648. display:flex;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:12px;
  1653. }
  1654. #u128982 .text {
  1655. position:absolute;
  1656. align-self:flex-start;
  1657. padding:0px 0px 0px 0px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u128982_text {
  1662. border-width:0px;
  1663. white-space:nowrap;
  1664. text-transform:none;
  1665. }
  1666. #u128983 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:0px;
  1672. height:0px;
  1673. }
  1674. #u128984_img {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:24px;
  1680. height:24px;
  1681. }
  1682. #u128984 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:620px;
  1686. top:794px;
  1687. width:24px;
  1688. height:24px;
  1689. display:flex;
  1690. font-size:8px;
  1691. }
  1692. #u128984 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 2px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u128984_text {
  1700. border-width:0px;
  1701. word-wrap:break-word;
  1702. text-transform:none;
  1703. }
  1704. #u128985_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:37px;
  1710. height:17px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border:none;
  1714. border-radius:0px;
  1715. -moz-box-shadow:none;
  1716. -webkit-box-shadow:none;
  1717. box-shadow:none;
  1718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1719. font-weight:400;
  1720. font-style:normal;
  1721. font-size:12px;
  1722. }
  1723. #u128985 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:614px;
  1727. top:819px;
  1728. width:37px;
  1729. height:17px;
  1730. display:flex;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:12px;
  1735. }
  1736. #u128985 .text {
  1737. position:absolute;
  1738. align-self:flex-start;
  1739. padding:0px 0px 0px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u128985_text {
  1744. border-width:0px;
  1745. white-space:nowrap;
  1746. text-transform:none;
  1747. }
  1748. #u128986_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:375px;
  1754. height:736px;
  1755. background:inherit;
  1756. background-color:rgba(242, 242, 242, 1);
  1757. box-sizing:border-box;
  1758. border-width:1px;
  1759. border-style:solid;
  1760. border-color:rgba(242, 242, 242, 1);
  1761. border-radius:26px;
  1762. border-top-left-radius:0px;
  1763. border-top-right-radius:0px;
  1764. -moz-box-shadow:none;
  1765. -webkit-box-shadow:none;
  1766. box-shadow:none;
  1767. }
  1768. #u128986 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:492px;
  1772. top:107px;
  1773. width:375px;
  1774. height:736px;
  1775. display:flex;
  1776. }
  1777. #u128986 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 2px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u128986_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. visibility:hidden;
  1789. }
  1790. #u128987_div {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:345px;
  1796. height:240px;
  1797. background:inherit;
  1798. background-color:rgba(255, 255, 255, 0);
  1799. border:none;
  1800. border-left:0px;
  1801. border-top:0px;
  1802. border-right:0px;
  1803. border-radius:0px;
  1804. border-bottom-right-radius:0px;
  1805. border-bottom-left-radius:0px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. color:#D9001B;
  1813. line-height:30px;
  1814. }
  1815. #u128987 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:1432px;
  1819. top:72px;
  1820. width:345px;
  1821. height:240px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. color:#D9001B;
  1827. line-height:30px;
  1828. }
  1829. #u128987 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u128987_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. }
  1841. #u128989_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:433px;
  1847. height:865px;
  1848. }
  1849. #u128989 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:2px;
  1854. width:433px;
  1855. height:865px;
  1856. display:flex;
  1857. }
  1858. #u128989 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u128989_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. visibility:hidden;
  1870. }
  1871. #u128990_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:375px;
  1877. height:40px;
  1878. background:inherit;
  1879. background-color:rgba(255, 255, 255, 1);
  1880. box-sizing:border-box;
  1881. border-width:1px;
  1882. border-style:solid;
  1883. border-color:rgba(215, 215, 215, 1);
  1884. border-left:0px;
  1885. border-top:0px;
  1886. border-right:0px;
  1887. border-radius:0px;
  1888. border-bottom-right-radius:0px;
  1889. border-bottom-left-radius:0px;
  1890. -moz-box-shadow:none;
  1891. -webkit-box-shadow:none;
  1892. box-shadow:none;
  1893. }
  1894. #u128990 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:29px;
  1898. top:69px;
  1899. width:375px;
  1900. height:40px;
  1901. display:flex;
  1902. }
  1903. #u128990 .text {
  1904. position:absolute;
  1905. align-self:center;
  1906. padding:2px 2px 2px 2px;
  1907. box-sizing:border-box;
  1908. width:100%;
  1909. }
  1910. #u128990_text {
  1911. border-width:0px;
  1912. word-wrap:break-word;
  1913. text-transform:none;
  1914. visibility:hidden;
  1915. }
  1916. #u128991 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:0px;
  1922. height:0px;
  1923. }
  1924. #u128992_div {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:88px;
  1930. height:32px;
  1931. background:inherit;
  1932. background-color:rgba(255, 255, 255, 1);
  1933. box-sizing:border-box;
  1934. border-width:1px;
  1935. border-style:solid;
  1936. border-color:rgba(242, 242, 242, 1);
  1937. border-radius:33px;
  1938. -moz-box-shadow:none;
  1939. -webkit-box-shadow:none;
  1940. box-shadow:none;
  1941. }
  1942. #u128992 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:309px;
  1946. top:73px;
  1947. width:88px;
  1948. height:32px;
  1949. display:flex;
  1950. }
  1951. #u128992 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u128992_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. visibility:hidden;
  1963. }
  1964. #u128993 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:0px;
  1970. height:0px;
  1971. }
  1972. #u128994_img {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:18px;
  1978. height:18px;
  1979. }
  1980. #u128994 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:372px;
  1984. top:80px;
  1985. width:18px;
  1986. height:18px;
  1987. display:flex;
  1988. }
  1989. #u128994 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 2px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u128994_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. visibility:hidden;
  2001. }
  2002. #u128995_img {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:6px;
  2008. height:6px;
  2009. }
  2010. #u128995 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:378px;
  2014. top:86px;
  2015. width:6px;
  2016. height:6px;
  2017. display:flex;
  2018. }
  2019. #u128995 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 2px 2px 2px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u128995_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u128996 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:0px;
  2038. height:0px;
  2039. }
  2040. #u128997_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:5px;
  2046. height:5px;
  2047. }
  2048. #u128997 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:323px;
  2052. top:87px;
  2053. width:5px;
  2054. height:5px;
  2055. display:flex;
  2056. }
  2057. #u128997 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u128997_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u128998_img {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:5px;
  2076. height:5px;
  2077. }
  2078. #u128998 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:339px;
  2082. top:87px;
  2083. width:5px;
  2084. height:5px;
  2085. display:flex;
  2086. }
  2087. #u128998 .text {
  2088. position:absolute;
  2089. align-self:center;
  2090. padding:2px 2px 2px 2px;
  2091. box-sizing:border-box;
  2092. width:100%;
  2093. }
  2094. #u128998_text {
  2095. border-width:0px;
  2096. word-wrap:break-word;
  2097. text-transform:none;
  2098. visibility:hidden;
  2099. }
  2100. #u128999_img {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:7px;
  2106. height:7px;
  2107. }
  2108. #u128999 {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:330px;
  2112. top:86px;
  2113. width:7px;
  2114. height:7px;
  2115. display:flex;
  2116. }
  2117. #u128999 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u128999_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u129000_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:19px;
  2136. height:2px;
  2137. }
  2138. #u129000 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:347px;
  2142. top:89px;
  2143. width:18px;
  2144. height:1px;
  2145. display:flex;
  2146. -webkit-transform:rotate(90deg);
  2147. -moz-transform:rotate(90deg);
  2148. -ms-transform:rotate(90deg);
  2149. transform:rotate(90deg);
  2150. }
  2151. #u129000 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 2px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u129000_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u129001_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:375px;
  2170. height:44px;
  2171. }
  2172. #u129001 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:29px;
  2176. top:26px;
  2177. width:375px;
  2178. height:44px;
  2179. display:flex;
  2180. }
  2181. #u129001 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 2px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u129001_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. visibility:hidden;
  2193. }
  2194. #u129002_div {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:375px;
  2200. height:50px;
  2201. background:inherit;
  2202. background-color:rgba(255, 255, 255, 1);
  2203. box-sizing:border-box;
  2204. border-width:1px;
  2205. border-style:solid;
  2206. border-color:rgba(242, 242, 242, 1);
  2207. border-radius:26px;
  2208. border-top-left-radius:0px;
  2209. border-top-right-radius:0px;
  2210. -moz-box-shadow:none;
  2211. -webkit-box-shadow:none;
  2212. box-shadow:none;
  2213. }
  2214. #u129002 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:29px;
  2218. top:790px;
  2219. width:375px;
  2220. height:50px;
  2221. display:flex;
  2222. }
  2223. #u129002 .text {
  2224. position:absolute;
  2225. align-self:center;
  2226. padding:2px 2px 2px 2px;
  2227. box-sizing:border-box;
  2228. width:100%;
  2229. }
  2230. #u129002_text {
  2231. border-width:0px;
  2232. word-wrap:break-word;
  2233. text-transform:none;
  2234. visibility:hidden;
  2235. }
  2236. #u129003 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:0px;
  2242. height:0px;
  2243. }
  2244. #u129004_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:24px;
  2250. height:24px;
  2251. }
  2252. #u129004 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:69px;
  2256. top:794px;
  2257. width:24px;
  2258. height:24px;
  2259. display:flex;
  2260. font-size:8px;
  2261. }
  2262. #u129004 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u129004_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. }
  2274. #u129005_div {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:25px;
  2280. height:17px;
  2281. background:inherit;
  2282. background-color:rgba(255, 255, 255, 0);
  2283. border:none;
  2284. border-radius:0px;
  2285. -moz-box-shadow:none;
  2286. -webkit-box-shadow:none;
  2287. box-shadow:none;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. }
  2293. #u129005 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:69px;
  2297. top:819px;
  2298. width:25px;
  2299. height:17px;
  2300. display:flex;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:12px;
  2305. }
  2306. #u129005 .text {
  2307. position:absolute;
  2308. align-self:flex-start;
  2309. padding:0px 0px 0px 0px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u129005_text {
  2314. border-width:0px;
  2315. white-space:nowrap;
  2316. text-transform:none;
  2317. }
  2318. #u129006 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:0px;
  2324. height:0px;
  2325. }
  2326. #u129007_img {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:24px;
  2332. height:24px;
  2333. }
  2334. #u129007 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:339px;
  2338. top:796px;
  2339. width:24px;
  2340. height:24px;
  2341. display:flex;
  2342. font-size:8px;
  2343. }
  2344. #u129007 .text {
  2345. position:absolute;
  2346. align-self:center;
  2347. padding:2px 2px 2px 2px;
  2348. box-sizing:border-box;
  2349. width:100%;
  2350. }
  2351. #u129007_text {
  2352. border-width:0px;
  2353. word-wrap:break-word;
  2354. text-transform:none;
  2355. }
  2356. #u129008_div {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:25px;
  2362. height:17px;
  2363. background:inherit;
  2364. background-color:rgba(255, 255, 255, 0);
  2365. border:none;
  2366. border-radius:0px;
  2367. -moz-box-shadow:none;
  2368. -webkit-box-shadow:none;
  2369. box-shadow:none;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:12px;
  2374. }
  2375. #u129008 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:339px;
  2379. top:821px;
  2380. width:25px;
  2381. height:17px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. }
  2388. #u129008 .text {
  2389. position:absolute;
  2390. align-self:flex-start;
  2391. padding:0px 0px 0px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u129008_text {
  2396. border-width:0px;
  2397. white-space:nowrap;
  2398. text-transform:none;
  2399. }
  2400. #u129009_div {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:375px;
  2406. height:681px;
  2407. background:inherit;
  2408. background-color:rgba(242, 242, 242, 0.462745098039216);
  2409. border:none;
  2410. border-radius:0px;
  2411. -moz-box-shadow:none;
  2412. -webkit-box-shadow:none;
  2413. box-shadow:none;
  2414. }
  2415. #u129009 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:29px;
  2419. top:109px;
  2420. width:375px;
  2421. height:681px;
  2422. display:flex;
  2423. }
  2424. #u129009 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 2px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u129009_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. visibility:hidden;
  2436. }
  2437. #u129010 {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:0px;
  2443. height:0px;
  2444. }
  2445. #u129011_img {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:24px;
  2451. height:24px;
  2452. }
  2453. #u129011 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:251px;
  2457. top:794px;
  2458. width:24px;
  2459. height:24px;
  2460. display:flex;
  2461. font-size:8px;
  2462. }
  2463. #u129011 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 2px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u129011_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. }
  2475. #u129012_div {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:37px;
  2481. height:17px;
  2482. background:inherit;
  2483. background-color:rgba(255, 255, 255, 0);
  2484. border:none;
  2485. border-radius:0px;
  2486. -moz-box-shadow:none;
  2487. -webkit-box-shadow:none;
  2488. box-shadow:none;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:12px;
  2493. }
  2494. #u129012 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:245px;
  2498. top:819px;
  2499. width:37px;
  2500. height:17px;
  2501. display:flex;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:12px;
  2506. }
  2507. #u129012 .text {
  2508. position:absolute;
  2509. align-self:flex-start;
  2510. padding:0px 0px 0px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u129012_text {
  2515. border-width:0px;
  2516. white-space:nowrap;
  2517. text-transform:none;
  2518. }
  2519. #u129013 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:0px;
  2525. height:0px;
  2526. }
  2527. #u129014_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:24px;
  2533. height:24px;
  2534. }
  2535. #u129014 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:157px;
  2539. top:794px;
  2540. width:24px;
  2541. height:24px;
  2542. display:flex;
  2543. font-size:8px;
  2544. }
  2545. #u129014 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 2px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u129014_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. }
  2557. #u129015_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:37px;
  2563. height:17px;
  2564. background:inherit;
  2565. background-color:rgba(255, 255, 255, 0);
  2566. border:none;
  2567. border-radius:0px;
  2568. -moz-box-shadow:none;
  2569. -webkit-box-shadow:none;
  2570. box-shadow:none;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:12px;
  2575. }
  2576. #u129015 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:151px;
  2580. top:819px;
  2581. width:37px;
  2582. height:17px;
  2583. display:flex;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:12px;
  2588. }
  2589. #u129015 .text {
  2590. position:absolute;
  2591. align-self:flex-start;
  2592. padding:0px 0px 0px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u129015_text {
  2597. border-width:0px;
  2598. white-space:nowrap;
  2599. text-transform:none;
  2600. }
  2601. #u129016_div {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:375px;
  2607. height:736px;
  2608. background:inherit;
  2609. background-color:rgba(242, 242, 242, 1);
  2610. box-sizing:border-box;
  2611. border-width:1px;
  2612. border-style:solid;
  2613. border-color:rgba(242, 242, 242, 1);
  2614. border-radius:26px;
  2615. border-top-left-radius:0px;
  2616. border-top-right-radius:0px;
  2617. -moz-box-shadow:none;
  2618. -webkit-box-shadow:none;
  2619. box-shadow:none;
  2620. }
  2621. #u129016 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:29px;
  2625. top:107px;
  2626. width:375px;
  2627. height:736px;
  2628. display:flex;
  2629. }
  2630. #u129016 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:2px 2px 2px 2px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u129016_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. visibility:hidden;
  2642. }
  2643. #u129017 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:0px;
  2649. height:0px;
  2650. }
  2651. #u129018_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:197px;
  2657. height:20px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 0);
  2660. border:none;
  2661. border-radius:0px;
  2662. -moz-box-shadow:none;
  2663. -webkit-box-shadow:none;
  2664. box-shadow:none;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. }
  2669. #u129018 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:45px;
  2673. top:76px;
  2674. width:197px;
  2675. height:20px;
  2676. display:flex;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. }
  2681. #u129018 .text {
  2682. position:absolute;
  2683. align-self:flex-start;
  2684. padding:0px 0px 0px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u129018_text {
  2689. border-width:0px;
  2690. white-space:nowrap;
  2691. text-transform:none;
  2692. }
  2693. #u129019_img {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:18px;
  2699. height:14px;
  2700. }
  2701. #u129019 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:264px;
  2705. top:80px;
  2706. width:18px;
  2707. height:14px;
  2708. display:flex;
  2709. }
  2710. #u129019 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u129019_text {
  2718. border-width:0px;
  2719. word-wrap:break-word;
  2720. text-transform:none;
  2721. visibility:hidden;
  2722. }
  2723. #u129020_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:375px;
  2729. height:180px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 1);
  2732. border:none;
  2733. border-bottom:0px;
  2734. border-radius:0px;
  2735. border-bottom-right-radius:0px;
  2736. border-bottom-left-radius:0px;
  2737. -moz-box-shadow:none;
  2738. -webkit-box-shadow:none;
  2739. box-shadow:none;
  2740. }
  2741. #u129020 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:29px;
  2745. top:107px;
  2746. width:375px;
  2747. height:180px;
  2748. display:flex;
  2749. }
  2750. #u129020 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 2px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u129020_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. }
  2762. #u129021 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:0px;
  2768. height:0px;
  2769. }
  2770. #u129022_div {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:51px;
  2776. height:14px;
  2777. background:inherit;
  2778. background-color:rgba(255, 255, 255, 0);
  2779. border:none;
  2780. border-left:0px;
  2781. border-top:0px;
  2782. border-right:0px;
  2783. border-radius:0px;
  2784. border-bottom-right-radius:0px;
  2785. border-bottom-left-radius:0px;
  2786. -moz-box-shadow:none;
  2787. -webkit-box-shadow:none;
  2788. box-shadow:none;
  2789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2790. font-weight:400;
  2791. font-style:normal;
  2792. font-size:10px;
  2793. text-align:center;
  2794. }
  2795. #u129022 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:51px;
  2799. top:167px;
  2800. width:51px;
  2801. height:14px;
  2802. display:flex;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:10px;
  2807. text-align:center;
  2808. }
  2809. #u129022 .text {
  2810. position:absolute;
  2811. align-self:flex-start;
  2812. padding:0px 0px 0px 0px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u129022_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. }
  2821. #u129023_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:30px;
  2827. height:30px;
  2828. }
  2829. #u129023 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:61px;
  2833. top:127px;
  2834. width:30px;
  2835. height:30px;
  2836. display:flex;
  2837. }
  2838. #u129023 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u129023_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u129024_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:9px;
  2857. height:11px;
  2858. background:inherit;
  2859. background-color:rgba(217, 0, 27, 1);
  2860. border:none;
  2861. border-radius:4px;
  2862. -moz-box-shadow:none;
  2863. -webkit-box-shadow:none;
  2864. box-shadow:none;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:8px;
  2869. color:#FFFFFF;
  2870. text-align:center;
  2871. }
  2872. #u129024 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:85px;
  2876. top:122px;
  2877. width:9px;
  2878. height:11px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:8px;
  2884. color:#FFFFFF;
  2885. text-align:center;
  2886. }
  2887. #u129024 .text {
  2888. position:absolute;
  2889. align-self:flex-start;
  2890. padding:0px 0px 0px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u129024_text {
  2895. border-width:0px;
  2896. white-space:nowrap;
  2897. text-transform:none;
  2898. }
  2899. #u129025_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:15px;
  2905. height:7px;
  2906. }
  2907. #u129025 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:214px;
  2911. top:270px;
  2912. width:15px;
  2913. height:7px;
  2914. display:flex;
  2915. }
  2916. #u129025 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u129025_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u129026 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:0px;
  2935. height:0px;
  2936. }
  2937. #u129027_div {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:51px;
  2943. height:14px;
  2944. background:inherit;
  2945. background-color:rgba(255, 255, 255, 0);
  2946. border:none;
  2947. border-left:0px;
  2948. border-top:0px;
  2949. border-right:0px;
  2950. border-radius:0px;
  2951. border-bottom-right-radius:0px;
  2952. border-bottom-left-radius:0px;
  2953. -moz-box-shadow:none;
  2954. -webkit-box-shadow:none;
  2955. box-shadow:none;
  2956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:10px;
  2960. text-align:center;
  2961. }
  2962. #u129027 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:145px;
  2966. top:167px;
  2967. width:51px;
  2968. height:14px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:10px;
  2974. text-align:center;
  2975. }
  2976. #u129027 .text {
  2977. position:absolute;
  2978. align-self:flex-start;
  2979. padding:0px 0px 0px 0px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u129027_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. }
  2988. #u129028_img {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:30px;
  2994. height:30px;
  2995. }
  2996. #u129028 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:155px;
  3000. top:127px;
  3001. width:30px;
  3002. height:30px;
  3003. display:flex;
  3004. }
  3005. #u129028 .text {
  3006. position:absolute;
  3007. align-self:center;
  3008. padding:2px 2px 2px 2px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u129028_text {
  3013. border-width:0px;
  3014. word-wrap:break-word;
  3015. text-transform:none;
  3016. visibility:hidden;
  3017. }
  3018. #u129029_div {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:11px;
  3024. height:11px;
  3025. background:inherit;
  3026. background-color:rgba(217, 0, 27, 1);
  3027. border:none;
  3028. border-radius:4px;
  3029. -moz-box-shadow:none;
  3030. -webkit-box-shadow:none;
  3031. box-shadow:none;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:8px;
  3036. color:#FFFFFF;
  3037. text-align:center;
  3038. }
  3039. #u129029 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:178px;
  3043. top:122px;
  3044. width:11px;
  3045. height:11px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:8px;
  3051. color:#FFFFFF;
  3052. text-align:center;
  3053. }
  3054. #u129029 .text {
  3055. position:absolute;
  3056. align-self:flex-start;
  3057. padding:0px 0px 0px 0px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u129029_text {
  3062. border-width:0px;
  3063. white-space:nowrap;
  3064. text-transform:none;
  3065. }
  3066. #u129030 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:0px;
  3072. height:0px;
  3073. }
  3074. #u129031_div {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:51px;
  3080. height:14px;
  3081. background:inherit;
  3082. background-color:rgba(255, 255, 255, 0);
  3083. border:none;
  3084. border-left:0px;
  3085. border-top:0px;
  3086. border-right:0px;
  3087. border-radius:0px;
  3088. border-bottom-right-radius:0px;
  3089. border-bottom-left-radius:0px;
  3090. -moz-box-shadow:none;
  3091. -webkit-box-shadow:none;
  3092. box-shadow:none;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:10px;
  3097. text-align:center;
  3098. }
  3099. #u129031 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:239px;
  3103. top:167px;
  3104. width:51px;
  3105. height:14px;
  3106. display:flex;
  3107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3108. font-weight:400;
  3109. font-style:normal;
  3110. font-size:10px;
  3111. text-align:center;
  3112. }
  3113. #u129031 .text {
  3114. position:absolute;
  3115. align-self:flex-start;
  3116. padding:0px 0px 0px 0px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u129031_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. }
  3125. #u129032_img {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:0px;
  3129. top:0px;
  3130. width:30px;
  3131. height:30px;
  3132. }
  3133. #u129032 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:249px;
  3137. top:127px;
  3138. width:30px;
  3139. height:30px;
  3140. display:flex;
  3141. }
  3142. #u129032 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 2px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u129032_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. visibility:hidden;
  3154. }
  3155. #u129033_div {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:7px;
  3161. height:11px;
  3162. background:inherit;
  3163. background-color:rgba(217, 0, 27, 1);
  3164. border:none;
  3165. border-radius:4px;
  3166. -moz-box-shadow:none;
  3167. -webkit-box-shadow:none;
  3168. box-shadow:none;
  3169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:8px;
  3173. color:#FFFFFF;
  3174. text-align:center;
  3175. }
  3176. #u129033 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:274px;
  3180. top:122px;
  3181. width:7px;
  3182. height:11px;
  3183. display:flex;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:8px;
  3188. color:#FFFFFF;
  3189. text-align:center;
  3190. }
  3191. #u129033 .text {
  3192. position:absolute;
  3193. align-self:flex-start;
  3194. padding:0px 0px 0px 0px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u129033_text {
  3199. border-width:0px;
  3200. white-space:nowrap;
  3201. text-transform:none;
  3202. }
  3203. #u129034 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:0px;
  3209. height:0px;
  3210. }
  3211. #u129035_div {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:51px;
  3217. height:14px;
  3218. background:inherit;
  3219. background-color:rgba(255, 255, 255, 0);
  3220. border:none;
  3221. border-left:0px;
  3222. border-top:0px;
  3223. border-right:0px;
  3224. border-radius:0px;
  3225. border-bottom-right-radius:0px;
  3226. border-bottom-left-radius:0px;
  3227. -moz-box-shadow:none;
  3228. -webkit-box-shadow:none;
  3229. box-shadow:none;
  3230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:10px;
  3234. text-align:center;
  3235. }
  3236. #u129035 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:333px;
  3240. top:167px;
  3241. width:51px;
  3242. height:14px;
  3243. display:flex;
  3244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:10px;
  3248. text-align:center;
  3249. }
  3250. #u129035 .text {
  3251. position:absolute;
  3252. align-self:flex-start;
  3253. padding:0px 0px 0px 0px;
  3254. box-sizing:border-box;
  3255. width:100%;
  3256. }
  3257. #u129035_text {
  3258. border-width:0px;
  3259. word-wrap:break-word;
  3260. text-transform:none;
  3261. }
  3262. #u129036_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:30px;
  3268. height:30px;
  3269. }
  3270. #u129036 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:343px;
  3274. top:127px;
  3275. width:30px;
  3276. height:30px;
  3277. display:flex;
  3278. }
  3279. #u129036 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 2px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u129036_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u129037_div {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:11px;
  3298. height:11px;
  3299. background:inherit;
  3300. background-color:rgba(217, 0, 27, 1);
  3301. border:none;
  3302. border-radius:4px;
  3303. -moz-box-shadow:none;
  3304. -webkit-box-shadow:none;
  3305. box-shadow:none;
  3306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:8px;
  3310. color:#FFFFFF;
  3311. text-align:center;
  3312. }
  3313. #u129037 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:366px;
  3317. top:122px;
  3318. width:11px;
  3319. height:11px;
  3320. display:flex;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:8px;
  3325. color:#FFFFFF;
  3326. text-align:center;
  3327. }
  3328. #u129037 .text {
  3329. position:absolute;
  3330. align-self:flex-start;
  3331. padding:0px 0px 0px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u129037_text {
  3336. border-width:0px;
  3337. white-space:nowrap;
  3338. text-transform:none;
  3339. }
  3340. #u129038 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:0px;
  3346. height:0px;
  3347. }
  3348. #u129039_div {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:197px;
  3354. height:20px;
  3355. background:inherit;
  3356. background-color:rgba(255, 255, 255, 0);
  3357. border:none;
  3358. border-radius:0px;
  3359. -moz-box-shadow:none;
  3360. -webkit-box-shadow:none;
  3361. box-shadow:none;
  3362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. }
  3366. #u129039 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:508px;
  3370. top:76px;
  3371. width:197px;
  3372. height:20px;
  3373. display:flex;
  3374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. }
  3378. #u129039 .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. #u129039_text {
  3386. border-width:0px;
  3387. white-space:nowrap;
  3388. text-transform:none;
  3389. }
  3390. #u129040_img {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:0px;
  3394. top:0px;
  3395. width:18px;
  3396. height:14px;
  3397. }
  3398. #u129040 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:727px;
  3402. top:80px;
  3403. width:18px;
  3404. height:14px;
  3405. display:flex;
  3406. }
  3407. #u129040 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 2px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u129040_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u129041 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:0px;
  3426. height:0px;
  3427. }
  3428. #u129042_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:375px;
  3434. height:30px;
  3435. background:inherit;
  3436. background-color:rgba(255, 255, 255, 1);
  3437. border:none;
  3438. border-bottom:0px;
  3439. border-radius:0px;
  3440. border-bottom-right-radius:0px;
  3441. border-bottom-left-radius:0px;
  3442. -moz-box-shadow:none;
  3443. -webkit-box-shadow:none;
  3444. box-shadow:none;
  3445. }
  3446. #u129042 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:492px;
  3450. top:107px;
  3451. width:375px;
  3452. height:30px;
  3453. display:flex;
  3454. }
  3455. #u129042 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:2px 2px 2px 2px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u129042_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. }
  3467. #u129043_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:15px;
  3473. height:7px;
  3474. }
  3475. #u129043 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:676px;
  3479. top:119px;
  3480. width:15px;
  3481. height:7px;
  3482. display:flex;
  3483. -webkit-transform:rotate(180deg);
  3484. -moz-transform:rotate(180deg);
  3485. -ms-transform:rotate(180deg);
  3486. transform:rotate(180deg);
  3487. }
  3488. #u129043 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 2px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u129043_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u129044_div {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:375px;
  3507. height:696px;
  3508. background:inherit;
  3509. background-color:rgba(215, 215, 215, 1);
  3510. border:none;
  3511. border-top:0px;
  3512. border-radius:29px;
  3513. border-top-left-radius:0px;
  3514. border-top-right-radius:0px;
  3515. -moz-box-shadow:none;
  3516. -webkit-box-shadow:none;
  3517. box-shadow:none;
  3518. }
  3519. #u129044 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:492px;
  3523. top:147px;
  3524. width:375px;
  3525. height:696px;
  3526. display:flex;
  3527. }
  3528. #u129044 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 2px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u129044_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. }
  3540. #u129045_div {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:49px;
  3546. height:30px;
  3547. background:inherit;
  3548. background-color:rgba(255, 255, 255, 0);
  3549. border:none;
  3550. border-radius:0px;
  3551. -moz-box-shadow:none;
  3552. -webkit-box-shadow:none;
  3553. box-shadow:none;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. color:#7F7F7F;
  3559. }
  3560. #u129045 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:502px;
  3564. top:152px;
  3565. width:49px;
  3566. height:30px;
  3567. display:flex;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:12px;
  3572. color:#7F7F7F;
  3573. }
  3574. #u129045 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:0px 0px 0px 0px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u129045_text {
  3582. border-width:0px;
  3583. white-space:nowrap;
  3584. text-transform:none;
  3585. }
  3586. #u129046 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:0px;
  3592. height:0px;
  3593. }
  3594. #u129047_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:355px;
  3600. height:100px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 1);
  3603. border:none;
  3604. border-radius:10px;
  3605. -moz-box-shadow:none;
  3606. -webkit-box-shadow:none;
  3607. box-shadow:none;
  3608. }
  3609. #u129047 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:502px;
  3613. top:187px;
  3614. width:355px;
  3615. height:100px;
  3616. display:flex;
  3617. }
  3618. #u129047 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 2px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u129047_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. }
  3630. #u129048_div {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:19px;
  3636. height:13px;
  3637. background:inherit;
  3638. background-color:rgba(0, 0, 0, 1);
  3639. border:none;
  3640. border-radius:0px;
  3641. -moz-box-shadow:none;
  3642. -webkit-box-shadow:none;
  3643. box-shadow:none;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:9px;
  3648. color:#FFFFFF;
  3649. }
  3650. #u129048 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:838px;
  3654. top:187px;
  3655. width:19px;
  3656. height:13px;
  3657. display:flex;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:9px;
  3662. color:#FFFFFF;
  3663. }
  3664. #u129048 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:0px 0px 0px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u129048_text {
  3672. border-width:0px;
  3673. white-space:nowrap;
  3674. text-transform:none;
  3675. }
  3676. #u129049_div {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:85px;
  3682. height:30px;
  3683. background:inherit;
  3684. background-color:rgba(255, 255, 255, 0);
  3685. border:none;
  3686. border-left:0px;
  3687. border-top:0px;
  3688. border-right:0px;
  3689. border-radius:0px;
  3690. border-bottom-right-radius:0px;
  3691. border-bottom-left-radius:0px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3696. font-weight:500;
  3697. font-style:normal;
  3698. font-size:14px;
  3699. line-height:30px;
  3700. }
  3701. #u129049 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:523px;
  3705. top:197px;
  3706. width:85px;
  3707. height:30px;
  3708. display:flex;
  3709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3710. font-weight:500;
  3711. font-style:normal;
  3712. font-size:14px;
  3713. line-height:30px;
  3714. }
  3715. #u129049 .text {
  3716. position:absolute;
  3717. align-self:flex-start;
  3718. padding:0px 0px 0px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u129049_text {
  3723. border-width:0px;
  3724. white-space:nowrap;
  3725. text-transform:none;
  3726. }
  3727. #u129050_div {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:325px;
  3733. height:50px;
  3734. background:inherit;
  3735. background-color:rgba(255, 255, 255, 0);
  3736. border:none;
  3737. border-left:0px;
  3738. border-top:0px;
  3739. border-right:0px;
  3740. border-radius:0px;
  3741. border-bottom-right-radius:0px;
  3742. border-bottom-left-radius:0px;
  3743. -moz-box-shadow:none;
  3744. -webkit-box-shadow:none;
  3745. box-shadow:none;
  3746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. line-height:25px;
  3750. }
  3751. #u129050 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:522px;
  3755. top:226px;
  3756. width:325px;
  3757. height:50px;
  3758. display:flex;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. line-height:25px;
  3763. }
  3764. #u129050 .text {
  3765. position:absolute;
  3766. align-self:flex-start;
  3767. padding:0px 0px 0px 0px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u129050_text {
  3772. border-width:0px;
  3773. word-wrap:break-word;
  3774. text-transform:none;
  3775. }
  3776. #u129051 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:0px;
  3782. height:0px;
  3783. }
  3784. #u129052_div {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:355px;
  3790. height:128px;
  3791. background:inherit;
  3792. background-color:rgba(255, 255, 255, 1);
  3793. border:none;
  3794. border-radius:10px;
  3795. -moz-box-shadow:none;
  3796. -webkit-box-shadow:none;
  3797. box-shadow:none;
  3798. }
  3799. #u129052 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:502px;
  3803. top:297px;
  3804. width:355px;
  3805. height:128px;
  3806. display:flex;
  3807. }
  3808. #u129052 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 2px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u129052_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. }
  3820. #u129053_div {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:19px;
  3826. height:13px;
  3827. background:inherit;
  3828. background-color:rgba(0, 0, 0, 1);
  3829. border:none;
  3830. border-radius:0px;
  3831. -moz-box-shadow:none;
  3832. -webkit-box-shadow:none;
  3833. box-shadow:none;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:9px;
  3838. color:#FFFFFF;
  3839. }
  3840. #u129053 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:838px;
  3844. top:297px;
  3845. width:19px;
  3846. height:13px;
  3847. display:flex;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:9px;
  3852. color:#FFFFFF;
  3853. }
  3854. #u129053 .text {
  3855. position:absolute;
  3856. align-self:center;
  3857. padding:0px 0px 0px 0px;
  3858. box-sizing:border-box;
  3859. width:100%;
  3860. }
  3861. #u129053_text {
  3862. border-width:0px;
  3863. white-space:nowrap;
  3864. text-transform:none;
  3865. }
  3866. #u129054_div {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:150px;
  3872. height:30px;
  3873. background:inherit;
  3874. background-color:rgba(255, 255, 255, 0);
  3875. border:none;
  3876. border-left:0px;
  3877. border-top:0px;
  3878. border-right:0px;
  3879. border-radius:0px;
  3880. border-bottom-right-radius:0px;
  3881. border-bottom-left-radius:0px;
  3882. -moz-box-shadow:none;
  3883. -webkit-box-shadow:none;
  3884. box-shadow:none;
  3885. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3886. font-weight:500;
  3887. font-style:normal;
  3888. font-size:14px;
  3889. line-height:30px;
  3890. }
  3891. #u129054 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:523px;
  3895. top:307px;
  3896. width:150px;
  3897. height:30px;
  3898. display:flex;
  3899. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3900. font-weight:500;
  3901. font-style:normal;
  3902. font-size:14px;
  3903. line-height:30px;
  3904. }
  3905. #u129054 .text {
  3906. position:absolute;
  3907. align-self:flex-start;
  3908. padding:0px 0px 0px 0px;
  3909. box-sizing:border-box;
  3910. width:100%;
  3911. }
  3912. #u129054_text {
  3913. border-width:0px;
  3914. white-space:nowrap;
  3915. text-transform:none;
  3916. }
  3917. #u129055_div {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:325px;
  3923. height:80px;
  3924. background:inherit;
  3925. background-color:rgba(255, 255, 255, 0);
  3926. border:none;
  3927. border-left:0px;
  3928. border-top:0px;
  3929. border-right:0px;
  3930. border-radius:0px;
  3931. border-bottom-right-radius:0px;
  3932. border-bottom-left-radius:0px;
  3933. -moz-box-shadow:none;
  3934. -webkit-box-shadow:none;
  3935. box-shadow:none;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. line-height:20px;
  3941. }
  3942. #u129055 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:522px;
  3946. top:336px;
  3947. width:325px;
  3948. height:80px;
  3949. display:flex;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:12px;
  3954. line-height:20px;
  3955. }
  3956. #u129055 .text {
  3957. position:absolute;
  3958. align-self:flex-start;
  3959. padding:0px 0px 0px 0px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u129055_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. }
  3968. #u129056_div {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:35px;
  3974. height:14px;
  3975. background:inherit;
  3976. background-color:rgba(245, 109, 35, 1);
  3977. border:none;
  3978. border-radius:2px;
  3979. -moz-box-shadow:none;
  3980. -webkit-box-shadow:none;
  3981. box-shadow:none;
  3982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:10px;
  3986. color:#FFFFFF;
  3987. text-align:center;
  3988. }
  3989. #u129056 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:810px;
  3993. top:405px;
  3994. width:35px;
  3995. height:14px;
  3996. display:flex;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:10px;
  4001. color:#FFFFFF;
  4002. text-align:center;
  4003. }
  4004. #u129056 .text {
  4005. position:absolute;
  4006. align-self:flex-start;
  4007. padding:0px 2px 0px 2px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u129056_text {
  4012. border-width:0px;
  4013. white-space:nowrap;
  4014. text-transform:none;
  4015. }
  4016. #u129057 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:0px;
  4022. height:0px;
  4023. }
  4024. #u129058_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:355px;
  4030. height:128px;
  4031. background:inherit;
  4032. background-color:rgba(255, 255, 255, 1);
  4033. border:none;
  4034. border-radius:10px;
  4035. -moz-box-shadow:none;
  4036. -webkit-box-shadow:none;
  4037. box-shadow:none;
  4038. }
  4039. #u129058 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:502px;
  4043. top:435px;
  4044. width:355px;
  4045. height:128px;
  4046. display:flex;
  4047. }
  4048. #u129058 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 2px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u129058_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. }
  4060. #u129059_div {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:19px;
  4066. height:13px;
  4067. background:inherit;
  4068. background-color:rgba(0, 0, 0, 1);
  4069. border:none;
  4070. border-radius:0px;
  4071. -moz-box-shadow:none;
  4072. -webkit-box-shadow:none;
  4073. box-shadow:none;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:9px;
  4078. color:#FFFFFF;
  4079. }
  4080. #u129059 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:838px;
  4084. top:435px;
  4085. width:19px;
  4086. height:13px;
  4087. display:flex;
  4088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:9px;
  4092. color:#FFFFFF;
  4093. }
  4094. #u129059 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:0px 0px 0px 0px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u129059_text {
  4102. border-width:0px;
  4103. white-space:nowrap;
  4104. text-transform:none;
  4105. }
  4106. #u129060_div {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:122px;
  4112. height:30px;
  4113. background:inherit;
  4114. background-color:rgba(255, 255, 255, 0);
  4115. border:none;
  4116. border-left:0px;
  4117. border-top:0px;
  4118. border-right:0px;
  4119. border-radius:0px;
  4120. border-bottom-right-radius:0px;
  4121. border-bottom-left-radius:0px;
  4122. -moz-box-shadow:none;
  4123. -webkit-box-shadow:none;
  4124. box-shadow:none;
  4125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4126. font-weight:500;
  4127. font-style:normal;
  4128. font-size:14px;
  4129. line-height:30px;
  4130. }
  4131. #u129060 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:523px;
  4135. top:445px;
  4136. width:122px;
  4137. height:30px;
  4138. display:flex;
  4139. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4140. font-weight:500;
  4141. font-style:normal;
  4142. font-size:14px;
  4143. line-height:30px;
  4144. }
  4145. #u129060 .text {
  4146. position:absolute;
  4147. align-self:flex-start;
  4148. padding:0px 0px 0px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u129060_text {
  4153. border-width:0px;
  4154. white-space:nowrap;
  4155. text-transform:none;
  4156. }
  4157. #u129061_div {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:325px;
  4163. height:80px;
  4164. background:inherit;
  4165. background-color:rgba(255, 255, 255, 0);
  4166. border:none;
  4167. border-left:0px;
  4168. border-top:0px;
  4169. border-right:0px;
  4170. border-radius:0px;
  4171. border-bottom-right-radius:0px;
  4172. border-bottom-left-radius:0px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:12px;
  4180. line-height:20px;
  4181. }
  4182. #u129061 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:522px;
  4186. top:474px;
  4187. width:325px;
  4188. height:80px;
  4189. display:flex;
  4190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:12px;
  4194. line-height:20px;
  4195. }
  4196. #u129061 .text {
  4197. position:absolute;
  4198. align-self:flex-start;
  4199. padding:0px 0px 0px 0px;
  4200. box-sizing:border-box;
  4201. width:100%;
  4202. }
  4203. #u129061_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. }
  4208. #u129062 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:0px;
  4214. height:0px;
  4215. }
  4216. #u129063_div {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:355px;
  4222. height:128px;
  4223. background:inherit;
  4224. background-color:rgba(255, 255, 255, 1);
  4225. border:none;
  4226. border-radius:10px;
  4227. -moz-box-shadow:none;
  4228. -webkit-box-shadow:none;
  4229. box-shadow:none;
  4230. }
  4231. #u129063 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:502px;
  4235. top:573px;
  4236. width:355px;
  4237. height:128px;
  4238. display:flex;
  4239. }
  4240. #u129063 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 2px 2px 2px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u129063_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. }
  4252. #u129064_div {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:19px;
  4258. height:13px;
  4259. background:inherit;
  4260. background-color:rgba(0, 0, 0, 1);
  4261. border:none;
  4262. border-radius:0px;
  4263. -moz-box-shadow:none;
  4264. -webkit-box-shadow:none;
  4265. box-shadow:none;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:9px;
  4270. color:#FFFFFF;
  4271. }
  4272. #u129064 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:838px;
  4276. top:573px;
  4277. width:19px;
  4278. height:13px;
  4279. display:flex;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:9px;
  4284. color:#FFFFFF;
  4285. }
  4286. #u129064 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:0px 0px 0px 0px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u129064_text {
  4294. border-width:0px;
  4295. white-space:nowrap;
  4296. text-transform:none;
  4297. }
  4298. #u129065_div {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:57px;
  4304. height:30px;
  4305. background:inherit;
  4306. background-color:rgba(255, 255, 255, 0);
  4307. border:none;
  4308. border-left:0px;
  4309. border-top:0px;
  4310. border-right:0px;
  4311. border-radius:0px;
  4312. border-bottom-right-radius:0px;
  4313. border-bottom-left-radius:0px;
  4314. -moz-box-shadow:none;
  4315. -webkit-box-shadow:none;
  4316. box-shadow:none;
  4317. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4318. font-weight:500;
  4319. font-style:normal;
  4320. font-size:14px;
  4321. line-height:30px;
  4322. }
  4323. #u129065 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:523px;
  4327. top:583px;
  4328. width:57px;
  4329. height:30px;
  4330. display:flex;
  4331. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4332. font-weight:500;
  4333. font-style:normal;
  4334. font-size:14px;
  4335. line-height:30px;
  4336. }
  4337. #u129065 .text {
  4338. position:absolute;
  4339. align-self:flex-start;
  4340. padding:0px 0px 0px 0px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u129065_text {
  4345. border-width:0px;
  4346. white-space:nowrap;
  4347. text-transform:none;
  4348. }
  4349. #u129066_div {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:325px;
  4355. height:80px;
  4356. background:inherit;
  4357. background-color:rgba(255, 255, 255, 0);
  4358. border:none;
  4359. border-left:0px;
  4360. border-top:0px;
  4361. border-right:0px;
  4362. border-radius:0px;
  4363. border-bottom-right-radius:0px;
  4364. border-bottom-left-radius:0px;
  4365. -moz-box-shadow:none;
  4366. -webkit-box-shadow:none;
  4367. box-shadow:none;
  4368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4369. font-weight:400;
  4370. font-style:normal;
  4371. font-size:12px;
  4372. line-height:20px;
  4373. }
  4374. #u129066 {
  4375. border-width:0px;
  4376. position:absolute;
  4377. left:522px;
  4378. top:612px;
  4379. width:325px;
  4380. height:80px;
  4381. display:flex;
  4382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4383. font-weight:400;
  4384. font-style:normal;
  4385. font-size:12px;
  4386. line-height:20px;
  4387. }
  4388. #u129066 .text {
  4389. position:absolute;
  4390. align-self:flex-start;
  4391. padding:0px 0px 0px 0px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u129066_text {
  4396. border-width:0px;
  4397. word-wrap:break-word;
  4398. text-transform:none;
  4399. }
  4400. #u129067 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:0px;
  4406. height:0px;
  4407. }
  4408. #u129068_div {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:355px;
  4414. height:128px;
  4415. background:inherit;
  4416. background-color:rgba(255, 255, 255, 1);
  4417. border:none;
  4418. border-radius:10px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. }
  4423. #u129068 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:502px;
  4427. top:711px;
  4428. width:355px;
  4429. height:128px;
  4430. display:flex;
  4431. }
  4432. #u129068 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 2px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u129068_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. }
  4444. #u129069_div {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:19px;
  4450. height:13px;
  4451. background:inherit;
  4452. background-color:rgba(0, 0, 0, 1);
  4453. border:none;
  4454. border-radius:0px;
  4455. -moz-box-shadow:none;
  4456. -webkit-box-shadow:none;
  4457. box-shadow:none;
  4458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4459. font-weight:400;
  4460. font-style:normal;
  4461. font-size:9px;
  4462. color:#FFFFFF;
  4463. }
  4464. #u129069 {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:838px;
  4468. top:711px;
  4469. width:19px;
  4470. height:13px;
  4471. display:flex;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:9px;
  4476. color:#FFFFFF;
  4477. }
  4478. #u129069 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:0px 0px 0px 0px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u129069_text {
  4486. border-width:0px;
  4487. white-space:nowrap;
  4488. text-transform:none;
  4489. }
  4490. #u129070_div {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:211px;
  4496. height:30px;
  4497. background:inherit;
  4498. background-color:rgba(255, 255, 255, 0);
  4499. border:none;
  4500. border-left:0px;
  4501. border-top:0px;
  4502. border-right:0px;
  4503. border-radius:0px;
  4504. border-bottom-right-radius:0px;
  4505. border-bottom-left-radius:0px;
  4506. -moz-box-shadow:none;
  4507. -webkit-box-shadow:none;
  4508. box-shadow:none;
  4509. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4510. font-weight:500;
  4511. font-style:normal;
  4512. font-size:14px;
  4513. line-height:30px;
  4514. }
  4515. #u129070 {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:523px;
  4519. top:721px;
  4520. width:211px;
  4521. height:30px;
  4522. display:flex;
  4523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4524. font-weight:500;
  4525. font-style:normal;
  4526. font-size:14px;
  4527. line-height:30px;
  4528. }
  4529. #u129070 .text {
  4530. position:absolute;
  4531. align-self:flex-start;
  4532. padding:0px 0px 0px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u129070_text {
  4537. border-width:0px;
  4538. white-space:nowrap;
  4539. text-transform:none;
  4540. }
  4541. #u129071_div {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:325px;
  4547. height:80px;
  4548. background:inherit;
  4549. background-color:rgba(255, 255, 255, 0);
  4550. border:none;
  4551. border-left:0px;
  4552. border-top:0px;
  4553. border-right:0px;
  4554. border-radius:0px;
  4555. border-bottom-right-radius:0px;
  4556. border-bottom-left-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. line-height:20px;
  4565. }
  4566. #u129071 {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:522px;
  4570. top:750px;
  4571. width:325px;
  4572. height:80px;
  4573. display:flex;
  4574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4575. font-weight:400;
  4576. font-style:normal;
  4577. font-size:12px;
  4578. line-height:20px;
  4579. }
  4580. #u129071 .text {
  4581. position:absolute;
  4582. align-self:flex-start;
  4583. padding:0px 0px 0px 0px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u129071_text {
  4588. border-width:0px;
  4589. word-wrap:break-word;
  4590. text-transform:none;
  4591. }
  4592. #u129072 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:0px;
  4596. top:0px;
  4597. width:0px;
  4598. height:0px;
  4599. }
  4600. #u129073_div {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:197px;
  4606. height:20px;
  4607. background:inherit;
  4608. background-color:rgba(255, 255, 255, 0);
  4609. border:none;
  4610. border-radius:0px;
  4611. -moz-box-shadow:none;
  4612. -webkit-box-shadow:none;
  4613. box-shadow:none;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. }
  4618. #u129073 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:972px;
  4622. top:76px;
  4623. width:197px;
  4624. height:20px;
  4625. display:flex;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. }
  4630. #u129073 .text {
  4631. position:absolute;
  4632. align-self:flex-start;
  4633. padding:0px 0px 0px 0px;
  4634. box-sizing:border-box;
  4635. width:100%;
  4636. }
  4637. #u129073_text {
  4638. border-width:0px;
  4639. white-space:nowrap;
  4640. text-transform:none;
  4641. }
  4642. #u129074_img {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:18px;
  4648. height:14px;
  4649. }
  4650. #u129074 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:1191px;
  4654. top:80px;
  4655. width:18px;
  4656. height:14px;
  4657. display:flex;
  4658. }
  4659. #u129074 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:2px 2px 2px 2px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u129074_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. visibility:hidden;
  4671. }
  4672. #u129075_div {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:49px;
  4678. height:30px;
  4679. background:inherit;
  4680. background-color:rgba(255, 255, 255, 0);
  4681. border:none;
  4682. border-radius:0px;
  4683. -moz-box-shadow:none;
  4684. -webkit-box-shadow:none;
  4685. box-shadow:none;
  4686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:12px;
  4690. color:#7F7F7F;
  4691. }
  4692. #u129075 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:976px;
  4696. top:151px;
  4697. width:49px;
  4698. height:30px;
  4699. display:flex;
  4700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. color:#7F7F7F;
  4705. }
  4706. #u129075 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:0px 0px 0px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u129075_text {
  4714. border-width:0px;
  4715. white-space:nowrap;
  4716. text-transform:none;
  4717. }
  4718. #u129076 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:0px;
  4724. height:0px;
  4725. }
  4726. #u129077_div {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:355px;
  4732. height:100px;
  4733. background:inherit;
  4734. background-color:rgba(255, 255, 255, 1);
  4735. border:none;
  4736. border-radius:10px;
  4737. -moz-box-shadow:none;
  4738. -webkit-box-shadow:none;
  4739. box-shadow:none;
  4740. }
  4741. #u129077 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:966px;
  4745. top:187px;
  4746. width:355px;
  4747. height:100px;
  4748. display:flex;
  4749. }
  4750. #u129077 .text {
  4751. position:absolute;
  4752. align-self:center;
  4753. padding:2px 2px 2px 2px;
  4754. box-sizing:border-box;
  4755. width:100%;
  4756. }
  4757. #u129077_text {
  4758. border-width:0px;
  4759. word-wrap:break-word;
  4760. text-transform:none;
  4761. }
  4762. #u129078_div {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:19px;
  4768. height:13px;
  4769. background:inherit;
  4770. background-color:rgba(0, 0, 0, 1);
  4771. border:none;
  4772. border-radius:0px;
  4773. -moz-box-shadow:none;
  4774. -webkit-box-shadow:none;
  4775. box-shadow:none;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:9px;
  4780. color:#FFFFFF;
  4781. }
  4782. #u129078 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:1302px;
  4786. top:187px;
  4787. width:19px;
  4788. height:13px;
  4789. display:flex;
  4790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:9px;
  4794. color:#FFFFFF;
  4795. }
  4796. #u129078 .text {
  4797. position:absolute;
  4798. align-self:center;
  4799. padding:0px 0px 0px 0px;
  4800. box-sizing:border-box;
  4801. width:100%;
  4802. }
  4803. #u129078_text {
  4804. border-width:0px;
  4805. white-space:nowrap;
  4806. text-transform:none;
  4807. }
  4808. #u129079_div {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:85px;
  4814. height:30px;
  4815. background:inherit;
  4816. background-color:rgba(255, 255, 255, 0);
  4817. border:none;
  4818. border-left:0px;
  4819. border-top:0px;
  4820. border-right:0px;
  4821. border-radius:0px;
  4822. border-bottom-right-radius:0px;
  4823. border-bottom-left-radius:0px;
  4824. -moz-box-shadow:none;
  4825. -webkit-box-shadow:none;
  4826. box-shadow:none;
  4827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4828. font-weight:500;
  4829. font-style:normal;
  4830. font-size:14px;
  4831. line-height:30px;
  4832. }
  4833. #u129079 {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:987px;
  4837. top:197px;
  4838. width:85px;
  4839. height:30px;
  4840. display:flex;
  4841. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4842. font-weight:500;
  4843. font-style:normal;
  4844. font-size:14px;
  4845. line-height:30px;
  4846. }
  4847. #u129079 .text {
  4848. position:absolute;
  4849. align-self:flex-start;
  4850. padding:0px 0px 0px 0px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u129079_text {
  4855. border-width:0px;
  4856. white-space:nowrap;
  4857. text-transform:none;
  4858. }
  4859. #u129080_div {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:325px;
  4865. height:50px;
  4866. background:inherit;
  4867. background-color:rgba(255, 255, 255, 0);
  4868. border:none;
  4869. border-left:0px;
  4870. border-top:0px;
  4871. border-right:0px;
  4872. border-radius:0px;
  4873. border-bottom-right-radius:0px;
  4874. border-bottom-left-radius:0px;
  4875. -moz-box-shadow:none;
  4876. -webkit-box-shadow:none;
  4877. box-shadow:none;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. line-height:25px;
  4882. }
  4883. #u129080 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:986px;
  4887. top:226px;
  4888. width:325px;
  4889. height:50px;
  4890. display:flex;
  4891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. line-height:25px;
  4895. }
  4896. #u129080 .text {
  4897. position:absolute;
  4898. align-self:flex-start;
  4899. padding:0px 0px 0px 0px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u129080_text {
  4904. border-width:0px;
  4905. word-wrap:break-word;
  4906. text-transform:none;
  4907. }
  4908. #u129081 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:0px;
  4914. height:0px;
  4915. }
  4916. #u129082_div {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:355px;
  4922. height:128px;
  4923. background:inherit;
  4924. background-color:rgba(255, 255, 255, 1);
  4925. border:none;
  4926. border-radius:10px;
  4927. -moz-box-shadow:none;
  4928. -webkit-box-shadow:none;
  4929. box-shadow:none;
  4930. }
  4931. #u129082 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:966px;
  4935. top:297px;
  4936. width:355px;
  4937. height:128px;
  4938. display:flex;
  4939. }
  4940. #u129082 .text {
  4941. position:absolute;
  4942. align-self:center;
  4943. padding:2px 2px 2px 2px;
  4944. box-sizing:border-box;
  4945. width:100%;
  4946. }
  4947. #u129082_text {
  4948. border-width:0px;
  4949. word-wrap:break-word;
  4950. text-transform:none;
  4951. }
  4952. #u129083_div {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:19px;
  4958. height:13px;
  4959. background:inherit;
  4960. background-color:rgba(0, 0, 0, 1);
  4961. border:none;
  4962. border-radius:0px;
  4963. -moz-box-shadow:none;
  4964. -webkit-box-shadow:none;
  4965. box-shadow:none;
  4966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4967. font-weight:400;
  4968. font-style:normal;
  4969. font-size:9px;
  4970. color:#FFFFFF;
  4971. }
  4972. #u129083 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:1302px;
  4976. top:297px;
  4977. width:19px;
  4978. height:13px;
  4979. display:flex;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:9px;
  4984. color:#FFFFFF;
  4985. }
  4986. #u129083 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:0px 0px 0px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u129083_text {
  4994. border-width:0px;
  4995. white-space:nowrap;
  4996. text-transform:none;
  4997. }
  4998. #u129084_div {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:150px;
  5004. height:30px;
  5005. background:inherit;
  5006. background-color:rgba(255, 255, 255, 0);
  5007. border:none;
  5008. border-left:0px;
  5009. border-top:0px;
  5010. border-right:0px;
  5011. border-radius:0px;
  5012. border-bottom-right-radius:0px;
  5013. border-bottom-left-radius:0px;
  5014. -moz-box-shadow:none;
  5015. -webkit-box-shadow:none;
  5016. box-shadow:none;
  5017. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5018. font-weight:500;
  5019. font-style:normal;
  5020. font-size:14px;
  5021. line-height:30px;
  5022. }
  5023. #u129084 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:987px;
  5027. top:307px;
  5028. width:150px;
  5029. height:30px;
  5030. display:flex;
  5031. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5032. font-weight:500;
  5033. font-style:normal;
  5034. font-size:14px;
  5035. line-height:30px;
  5036. }
  5037. #u129084 .text {
  5038. position:absolute;
  5039. align-self:flex-start;
  5040. padding:0px 0px 0px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u129084_text {
  5045. border-width:0px;
  5046. white-space:nowrap;
  5047. text-transform:none;
  5048. }
  5049. #u129085_div {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:325px;
  5055. height:80px;
  5056. background:inherit;
  5057. background-color:rgba(255, 255, 255, 0);
  5058. border:none;
  5059. border-left:0px;
  5060. border-top:0px;
  5061. border-right:0px;
  5062. border-radius:0px;
  5063. border-bottom-right-radius:0px;
  5064. border-bottom-left-radius:0px;
  5065. -moz-box-shadow:none;
  5066. -webkit-box-shadow:none;
  5067. box-shadow:none;
  5068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:12px;
  5072. line-height:20px;
  5073. }
  5074. #u129085 {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:986px;
  5078. top:336px;
  5079. width:325px;
  5080. height:80px;
  5081. display:flex;
  5082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:12px;
  5086. line-height:20px;
  5087. }
  5088. #u129085 .text {
  5089. position:absolute;
  5090. align-self:flex-start;
  5091. padding:0px 0px 0px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u129085_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. }
  5100. #u129086 {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:0px;
  5106. height:0px;
  5107. }
  5108. #u129087_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:355px;
  5114. height:128px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 1);
  5117. border:none;
  5118. border-radius:10px;
  5119. -moz-box-shadow:none;
  5120. -webkit-box-shadow:none;
  5121. box-shadow:none;
  5122. }
  5123. #u129087 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:966px;
  5127. top:435px;
  5128. width:355px;
  5129. height:128px;
  5130. display:flex;
  5131. }
  5132. #u129087 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 2px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u129087_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. }
  5144. #u129088_div {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:19px;
  5150. height:13px;
  5151. background:inherit;
  5152. background-color:rgba(0, 0, 0, 1);
  5153. border:none;
  5154. border-radius:0px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:9px;
  5162. color:#FFFFFF;
  5163. }
  5164. #u129088 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:1302px;
  5168. top:435px;
  5169. width:19px;
  5170. height:13px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:9px;
  5176. color:#FFFFFF;
  5177. }
  5178. #u129088 .text {
  5179. position:absolute;
  5180. align-self:center;
  5181. padding:0px 0px 0px 0px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u129088_text {
  5186. border-width:0px;
  5187. white-space:nowrap;
  5188. text-transform:none;
  5189. }
  5190. #u129089_div {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:122px;
  5196. height:30px;
  5197. background:inherit;
  5198. background-color:rgba(255, 255, 255, 0);
  5199. border:none;
  5200. border-left:0px;
  5201. border-top:0px;
  5202. border-right:0px;
  5203. border-radius:0px;
  5204. border-bottom-right-radius:0px;
  5205. border-bottom-left-radius:0px;
  5206. -moz-box-shadow:none;
  5207. -webkit-box-shadow:none;
  5208. box-shadow:none;
  5209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5210. font-weight:500;
  5211. font-style:normal;
  5212. font-size:14px;
  5213. line-height:30px;
  5214. }
  5215. #u129089 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:987px;
  5219. top:445px;
  5220. width:122px;
  5221. height:30px;
  5222. display:flex;
  5223. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5224. font-weight:500;
  5225. font-style:normal;
  5226. font-size:14px;
  5227. line-height:30px;
  5228. }
  5229. #u129089 .text {
  5230. position:absolute;
  5231. align-self:flex-start;
  5232. padding:0px 0px 0px 0px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u129089_text {
  5237. border-width:0px;
  5238. white-space:nowrap;
  5239. text-transform:none;
  5240. }
  5241. #u129090_div {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:325px;
  5247. height:80px;
  5248. background:inherit;
  5249. background-color:rgba(255, 255, 255, 0);
  5250. border:none;
  5251. border-left:0px;
  5252. border-top:0px;
  5253. border-right:0px;
  5254. border-radius:0px;
  5255. border-bottom-right-radius:0px;
  5256. border-bottom-left-radius:0px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. line-height:20px;
  5265. }
  5266. #u129090 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:986px;
  5270. top:474px;
  5271. width:325px;
  5272. height:80px;
  5273. display:flex;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:12px;
  5278. line-height:20px;
  5279. }
  5280. #u129090 .text {
  5281. position:absolute;
  5282. align-self:flex-start;
  5283. padding:0px 0px 0px 0px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u129090_text {
  5288. border-width:0px;
  5289. word-wrap:break-word;
  5290. text-transform:none;
  5291. }
  5292. #u129091 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:0px;
  5298. height:0px;
  5299. }
  5300. #u129092_div {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:355px;
  5306. height:128px;
  5307. background:inherit;
  5308. background-color:rgba(255, 255, 255, 1);
  5309. border:none;
  5310. border-radius:10px;
  5311. -moz-box-shadow:none;
  5312. -webkit-box-shadow:none;
  5313. box-shadow:none;
  5314. }
  5315. #u129092 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:966px;
  5319. top:573px;
  5320. width:355px;
  5321. height:128px;
  5322. display:flex;
  5323. }
  5324. #u129092 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:2px 2px 2px 2px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u129092_text {
  5332. border-width:0px;
  5333. word-wrap:break-word;
  5334. text-transform:none;
  5335. }
  5336. #u129093_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:19px;
  5342. height:13px;
  5343. background:inherit;
  5344. background-color:rgba(0, 0, 0, 1);
  5345. border:none;
  5346. border-radius:0px;
  5347. -moz-box-shadow:none;
  5348. -webkit-box-shadow:none;
  5349. box-shadow:none;
  5350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5351. font-weight:400;
  5352. font-style:normal;
  5353. font-size:9px;
  5354. color:#FFFFFF;
  5355. }
  5356. #u129093 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:1302px;
  5360. top:573px;
  5361. width:19px;
  5362. height:13px;
  5363. display:flex;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:9px;
  5368. color:#FFFFFF;
  5369. }
  5370. #u129093 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:0px 0px 0px 0px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u129093_text {
  5378. border-width:0px;
  5379. white-space:nowrap;
  5380. text-transform:none;
  5381. }
  5382. #u129094_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:57px;
  5388. height:30px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 0);
  5391. border:none;
  5392. border-left:0px;
  5393. border-top:0px;
  5394. border-right:0px;
  5395. border-radius:0px;
  5396. border-bottom-right-radius:0px;
  5397. border-bottom-left-radius:0px;
  5398. -moz-box-shadow:none;
  5399. -webkit-box-shadow:none;
  5400. box-shadow:none;
  5401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5402. font-weight:500;
  5403. font-style:normal;
  5404. font-size:14px;
  5405. line-height:30px;
  5406. }
  5407. #u129094 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:987px;
  5411. top:583px;
  5412. width:57px;
  5413. height:30px;
  5414. display:flex;
  5415. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5416. font-weight:500;
  5417. font-style:normal;
  5418. font-size:14px;
  5419. line-height:30px;
  5420. }
  5421. #u129094 .text {
  5422. position:absolute;
  5423. align-self:flex-start;
  5424. padding:0px 0px 0px 0px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u129094_text {
  5429. border-width:0px;
  5430. white-space:nowrap;
  5431. text-transform:none;
  5432. }
  5433. #u129095_div {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:325px;
  5439. height:80px;
  5440. background:inherit;
  5441. background-color:rgba(255, 255, 255, 0);
  5442. border:none;
  5443. border-left:0px;
  5444. border-top:0px;
  5445. border-right:0px;
  5446. border-radius:0px;
  5447. border-bottom-right-radius:0px;
  5448. border-bottom-left-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:12px;
  5456. line-height:20px;
  5457. }
  5458. #u129095 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:986px;
  5462. top:612px;
  5463. width:325px;
  5464. height:80px;
  5465. display:flex;
  5466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:12px;
  5470. line-height:20px;
  5471. }
  5472. #u129095 .text {
  5473. position:absolute;
  5474. align-self:flex-start;
  5475. padding:0px 0px 0px 0px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u129095_text {
  5480. border-width:0px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. }
  5484. #u129096 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:0px;
  5490. height:0px;
  5491. }
  5492. #u129097_div {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:0px;
  5496. top:0px;
  5497. width:355px;
  5498. height:128px;
  5499. background:inherit;
  5500. background-color:rgba(255, 255, 255, 1);
  5501. border:none;
  5502. border-radius:10px;
  5503. -moz-box-shadow:none;
  5504. -webkit-box-shadow:none;
  5505. box-shadow:none;
  5506. }
  5507. #u129097 {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:966px;
  5511. top:711px;
  5512. width:355px;
  5513. height:128px;
  5514. display:flex;
  5515. }
  5516. #u129097 .text {
  5517. position:absolute;
  5518. align-self:center;
  5519. padding:2px 2px 2px 2px;
  5520. box-sizing:border-box;
  5521. width:100%;
  5522. }
  5523. #u129097_text {
  5524. border-width:0px;
  5525. word-wrap:break-word;
  5526. text-transform:none;
  5527. }
  5528. #u129098_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:19px;
  5534. height:13px;
  5535. background:inherit;
  5536. background-color:rgba(0, 0, 0, 1);
  5537. border:none;
  5538. border-radius:0px;
  5539. -moz-box-shadow:none;
  5540. -webkit-box-shadow:none;
  5541. box-shadow:none;
  5542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5543. font-weight:400;
  5544. font-style:normal;
  5545. font-size:9px;
  5546. color:#FFFFFF;
  5547. }
  5548. #u129098 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:1302px;
  5552. top:711px;
  5553. width:19px;
  5554. height:13px;
  5555. display:flex;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:9px;
  5560. color:#FFFFFF;
  5561. }
  5562. #u129098 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:0px 0px 0px 0px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u129098_text {
  5570. border-width:0px;
  5571. white-space:nowrap;
  5572. text-transform:none;
  5573. }
  5574. #u129099_div {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:0px;
  5579. width:211px;
  5580. height:30px;
  5581. background:inherit;
  5582. background-color:rgba(255, 255, 255, 0);
  5583. border:none;
  5584. border-left:0px;
  5585. border-top:0px;
  5586. border-right:0px;
  5587. border-radius:0px;
  5588. border-bottom-right-radius:0px;
  5589. border-bottom-left-radius:0px;
  5590. -moz-box-shadow:none;
  5591. -webkit-box-shadow:none;
  5592. box-shadow:none;
  5593. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5594. font-weight:500;
  5595. font-style:normal;
  5596. font-size:14px;
  5597. line-height:30px;
  5598. }
  5599. #u129099 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:987px;
  5603. top:721px;
  5604. width:211px;
  5605. height:30px;
  5606. display:flex;
  5607. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5608. font-weight:500;
  5609. font-style:normal;
  5610. font-size:14px;
  5611. line-height:30px;
  5612. }
  5613. #u129099 .text {
  5614. position:absolute;
  5615. align-self:flex-start;
  5616. padding:0px 0px 0px 0px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u129099_text {
  5621. border-width:0px;
  5622. white-space:nowrap;
  5623. text-transform:none;
  5624. }
  5625. #u129100_div {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:325px;
  5631. height:80px;
  5632. background:inherit;
  5633. background-color:rgba(255, 255, 255, 0);
  5634. border:none;
  5635. border-left:0px;
  5636. border-top:0px;
  5637. border-right:0px;
  5638. border-radius:0px;
  5639. border-bottom-right-radius:0px;
  5640. border-bottom-left-radius:0px;
  5641. -moz-box-shadow:none;
  5642. -webkit-box-shadow:none;
  5643. box-shadow:none;
  5644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5645. font-weight:400;
  5646. font-style:normal;
  5647. font-size:12px;
  5648. line-height:20px;
  5649. }
  5650. #u129100 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:986px;
  5654. top:750px;
  5655. width:325px;
  5656. height:80px;
  5657. display:flex;
  5658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:12px;
  5662. line-height:20px;
  5663. }
  5664. #u129100 .text {
  5665. position:absolute;
  5666. align-self:flex-start;
  5667. padding:0px 0px 0px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u129100_text {
  5672. border-width:0px;
  5673. word-wrap:break-word;
  5674. text-transform:none;
  5675. }
  5676. #u129101_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:169px;
  5682. height:30px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 0);
  5685. border:none;
  5686. border-radius:0px;
  5687. -moz-box-shadow:none;
  5688. -webkit-box-shadow:none;
  5689. box-shadow:none;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:12px;
  5694. color:#D9001B;
  5695. }
  5696. #u129101 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:1116px;
  5700. top:151px;
  5701. width:169px;
  5702. height:30px;
  5703. display:flex;
  5704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:12px;
  5708. color:#D9001B;
  5709. }
  5710. #u129101 .text {
  5711. position:absolute;
  5712. align-self:center;
  5713. padding:0px 0px 0px 0px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u129101_text {
  5718. border-width:0px;
  5719. white-space:nowrap;
  5720. text-transform:none;
  5721. }
  5722. #u129102 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:1250px;
  5726. top:132px;
  5727. width:0px;
  5728. height:0px;
  5729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:12px;
  5733. color:#333333;
  5734. }
  5735. #u129102_seg0 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:-54px;
  5739. top:-5px;
  5740. width:54px;
  5741. height:10px;
  5742. }
  5743. #u129102_seg1 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:-54px;
  5747. top:-5px;
  5748. width:10px;
  5749. height:24px;
  5750. }
  5751. #u129102_seg2 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:-58px;
  5755. top:9px;
  5756. width:18px;
  5757. height:18px;
  5758. }
  5759. #u129102_text {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:-84px;
  5763. top:-8px;
  5764. width:100px;
  5765. word-wrap:break-word;
  5766. text-transform:none;
  5767. visibility:hidden;
  5768. }
  5769. #u129103 {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:0px;
  5775. height:0px;
  5776. }
  5777. #u129104_div {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:51px;
  5783. height:14px;
  5784. background:inherit;
  5785. background-color:rgba(255, 255, 255, 0);
  5786. border:none;
  5787. border-left:0px;
  5788. border-top:0px;
  5789. border-right:0px;
  5790. border-radius:0px;
  5791. border-bottom-right-radius:0px;
  5792. border-bottom-left-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:10px;
  5800. text-align:center;
  5801. }
  5802. #u129104 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:51px;
  5806. top:246px;
  5807. width:51px;
  5808. height:14px;
  5809. display:flex;
  5810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:10px;
  5814. text-align:center;
  5815. }
  5816. #u129104 .text {
  5817. position:absolute;
  5818. align-self:flex-start;
  5819. padding:0px 0px 0px 0px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u129104_text {
  5824. border-width:0px;
  5825. word-wrap:break-word;
  5826. text-transform:none;
  5827. }
  5828. #u129105_img {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:30px;
  5834. height:30px;
  5835. }
  5836. #u129105 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:61px;
  5840. top:206px;
  5841. width:30px;
  5842. height:30px;
  5843. display:flex;
  5844. }
  5845. #u129105 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:2px 2px 2px 2px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u129105_text {
  5853. border-width:0px;
  5854. word-wrap:break-word;
  5855. text-transform:none;
  5856. visibility:hidden;
  5857. }
  5858. #u129106_div {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:9px;
  5864. height:11px;
  5865. background:inherit;
  5866. background-color:rgba(217, 0, 27, 1);
  5867. border:none;
  5868. border-radius:4px;
  5869. -moz-box-shadow:none;
  5870. -webkit-box-shadow:none;
  5871. box-shadow:none;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:8px;
  5876. color:#FFFFFF;
  5877. text-align:center;
  5878. }
  5879. #u129106 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:85px;
  5883. top:201px;
  5884. width:9px;
  5885. height:11px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:8px;
  5891. color:#FFFFFF;
  5892. text-align:center;
  5893. }
  5894. #u129106 .text {
  5895. position:absolute;
  5896. align-self:flex-start;
  5897. padding:0px 0px 0px 0px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u129106_text {
  5902. border-width:0px;
  5903. white-space:nowrap;
  5904. text-transform:none;
  5905. }
  5906. #u129107 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:0px;
  5912. height:0px;
  5913. }
  5914. #u129108_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:361px;
  5920. height:90px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 1);
  5923. box-sizing:border-box;
  5924. border-width:1px;
  5925. border-style:solid;
  5926. border-color:rgba(242, 242, 242, 1);
  5927. border-radius:4px;
  5928. -moz-box-shadow:none;
  5929. -webkit-box-shadow:none;
  5930. box-shadow:none;
  5931. }
  5932. #u129108 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:36px;
  5936. top:297px;
  5937. width:361px;
  5938. height:90px;
  5939. display:flex;
  5940. }
  5941. #u129108 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:2px 2px 2px 2px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u129108_text {
  5949. border-width:0px;
  5950. word-wrap:break-word;
  5951. text-transform:none;
  5952. visibility:hidden;
  5953. }
  5954. #u129109_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:37px;
  5960. height:50px;
  5961. background:inherit;
  5962. background-color:rgba(255, 255, 255, 0);
  5963. border:none;
  5964. border-radius:0px;
  5965. -moz-box-shadow:none;
  5966. -webkit-box-shadow:none;
  5967. box-shadow:none;
  5968. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5969. font-weight:650;
  5970. font-style:normal;
  5971. font-size:18px;
  5972. color:#298FFF;
  5973. }
  5974. #u129109 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:55px;
  5978. top:311px;
  5979. width:37px;
  5980. height:50px;
  5981. display:flex;
  5982. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5983. font-weight:650;
  5984. font-style:normal;
  5985. font-size:18px;
  5986. color:#298FFF;
  5987. }
  5988. #u129109 .text {
  5989. position:absolute;
  5990. align-self:flex-start;
  5991. padding:0px 0px 0px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u129109_text {
  5996. border-width:0px;
  5997. white-space:nowrap;
  5998. text-transform:none;
  5999. }
  6000. #u129110_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:149px;
  6006. height:18px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 0);
  6009. border:none;
  6010. border-radius:0px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6015. font-weight:500;
  6016. font-style:normal;
  6017. }
  6018. #u129110 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:107px;
  6022. top:307px;
  6023. width:149px;
  6024. height:18px;
  6025. display:flex;
  6026. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6027. font-weight:500;
  6028. font-style:normal;
  6029. }
  6030. #u129110 .text {
  6031. position:absolute;
  6032. align-self:flex-start;
  6033. padding:0px 0px 0px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u129110_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u129111_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:261px;
  6048. height:36px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 0);
  6051. border:none;
  6052. border-radius:0px;
  6053. -moz-box-shadow:none;
  6054. -webkit-box-shadow:none;
  6055. box-shadow:none;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:10px;
  6060. color:#7F7F7F;
  6061. line-height:18px;
  6062. }
  6063. #u129111 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:107px;
  6067. top:330px;
  6068. width:261px;
  6069. height:36px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:10px;
  6075. color:#7F7F7F;
  6076. line-height:18px;
  6077. }
  6078. #u129111 .text {
  6079. position:absolute;
  6080. align-self:flex-start;
  6081. padding:0px 0px 0px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u129111_text {
  6086. border-width:0px;
  6087. word-wrap:break-word;
  6088. text-transform:none;
  6089. }
  6090. #u129112_img {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:7px;
  6096. height:7px;
  6097. }
  6098. #u129112 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:161px;
  6102. top:374px;
  6103. width:7px;
  6104. height:7px;
  6105. display:flex;
  6106. }
  6107. #u129112 .text {
  6108. position:absolute;
  6109. align-self:center;
  6110. padding:2px 2px 2px 2px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u129112_text {
  6115. border-width:0px;
  6116. word-wrap:break-word;
  6117. text-transform:none;
  6118. visibility:hidden;
  6119. }
  6120. #u129113_img {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:7px;
  6126. height:7px;
  6127. }
  6128. #u129113 {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:180px;
  6132. top:374px;
  6133. width:7px;
  6134. height:7px;
  6135. display:flex;
  6136. }
  6137. #u129113 .text {
  6138. position:absolute;
  6139. align-self:center;
  6140. padding:2px 2px 2px 2px;
  6141. box-sizing:border-box;
  6142. width:100%;
  6143. }
  6144. #u129113_text {
  6145. border-width:0px;
  6146. word-wrap:break-word;
  6147. text-transform:none;
  6148. visibility:hidden;
  6149. }
  6150. #u129114_img {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:7px;
  6156. height:7px;
  6157. }
  6158. #u129114 {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:199px;
  6162. top:374px;
  6163. width:7px;
  6164. height:7px;
  6165. display:flex;
  6166. }
  6167. #u129114 .text {
  6168. position:absolute;
  6169. align-self:center;
  6170. padding:2px 2px 2px 2px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u129114_text {
  6175. border-width:0px;
  6176. word-wrap:break-word;
  6177. text-transform:none;
  6178. visibility:hidden;
  6179. }
  6180. #u129115_img {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:7px;
  6186. height:7px;
  6187. }
  6188. #u129115 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:218px;
  6192. top:374px;
  6193. width:7px;
  6194. height:7px;
  6195. display:flex;
  6196. }
  6197. #u129115 .text {
  6198. position:absolute;
  6199. align-self:center;
  6200. padding:2px 2px 2px 2px;
  6201. box-sizing:border-box;
  6202. width:100%;
  6203. }
  6204. #u129115_text {
  6205. border-width:0px;
  6206. word-wrap:break-word;
  6207. text-transform:none;
  6208. visibility:hidden;
  6209. }
  6210. #u129116_img {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:11px;
  6216. height:11px;
  6217. }
  6218. #u129116 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:379px;
  6222. top:305px;
  6223. width:11px;
  6224. height:11px;
  6225. display:flex;
  6226. }
  6227. #u129116 .text {
  6228. position:absolute;
  6229. align-self:center;
  6230. padding:2px 2px 2px 2px;
  6231. box-sizing:border-box;
  6232. width:100%;
  6233. }
  6234. #u129116_text {
  6235. border-width:0px;
  6236. word-wrap:break-word;
  6237. text-transform:none;
  6238. visibility:hidden;
  6239. }
  6240. #u129117 {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:0px;
  6244. top:0px;
  6245. width:0px;
  6246. height:0px;
  6247. }
  6248. #u129118_div {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:51px;
  6254. height:14px;
  6255. background:inherit;
  6256. background-color:rgba(255, 255, 255, 0);
  6257. border:none;
  6258. border-left:0px;
  6259. border-top:0px;
  6260. border-right:0px;
  6261. border-radius:0px;
  6262. border-bottom-right-radius:0px;
  6263. border-bottom-left-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:10px;
  6271. text-align:center;
  6272. }
  6273. #u129118 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:145px;
  6277. top:246px;
  6278. width:51px;
  6279. height:14px;
  6280. display:flex;
  6281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6282. font-weight:400;
  6283. font-style:normal;
  6284. font-size:10px;
  6285. text-align:center;
  6286. }
  6287. #u129118 .text {
  6288. position:absolute;
  6289. align-self:flex-start;
  6290. padding:0px 0px 0px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u129118_text {
  6295. border-width:0px;
  6296. word-wrap:break-word;
  6297. text-transform:none;
  6298. }
  6299. #u129119_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:30px;
  6305. height:30px;
  6306. }
  6307. #u129119 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:155px;
  6311. top:206px;
  6312. width:30px;
  6313. height:30px;
  6314. display:flex;
  6315. }
  6316. #u129119 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u129119_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u129120_div {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:9px;
  6335. height:11px;
  6336. background:inherit;
  6337. background-color:rgba(217, 0, 27, 1);
  6338. border:none;
  6339. border-radius:4px;
  6340. -moz-box-shadow:none;
  6341. -webkit-box-shadow:none;
  6342. box-shadow:none;
  6343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6344. font-weight:400;
  6345. font-style:normal;
  6346. font-size:8px;
  6347. color:#FFFFFF;
  6348. text-align:center;
  6349. }
  6350. #u129120 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:179px;
  6354. top:201px;
  6355. width:9px;
  6356. height:11px;
  6357. display:flex;
  6358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:8px;
  6362. color:#FFFFFF;
  6363. text-align:center;
  6364. }
  6365. #u129120 .text {
  6366. position:absolute;
  6367. align-self:flex-start;
  6368. padding:0px 0px 0px 0px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u129120_text {
  6373. border-width:0px;
  6374. white-space:nowrap;
  6375. text-transform:none;
  6376. }
  6377. #u129121_div {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:375px;
  6383. height:446px;
  6384. background:inherit;
  6385. background-color:rgba(215, 215, 215, 1);
  6386. border:none;
  6387. border-top:0px;
  6388. border-radius:29px;
  6389. border-top-left-radius:0px;
  6390. border-top-right-radius:0px;
  6391. -moz-box-shadow:none;
  6392. -webkit-box-shadow:none;
  6393. box-shadow:none;
  6394. }
  6395. #u129121 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:29px;
  6399. top:397px;
  6400. width:375px;
  6401. height:446px;
  6402. display:flex;
  6403. }
  6404. #u129121 .text {
  6405. position:absolute;
  6406. align-self:center;
  6407. padding:2px 2px 2px 2px;
  6408. box-sizing:border-box;
  6409. width:100%;
  6410. }
  6411. #u129121_text {
  6412. border-width:0px;
  6413. word-wrap:break-word;
  6414. text-transform:none;
  6415. }
  6416. #u129122_div {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:49px;
  6422. height:30px;
  6423. background:inherit;
  6424. background-color:rgba(255, 255, 255, 0);
  6425. border:none;
  6426. border-radius:0px;
  6427. -moz-box-shadow:none;
  6428. -webkit-box-shadow:none;
  6429. box-shadow:none;
  6430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:12px;
  6434. color:#7F7F7F;
  6435. }
  6436. #u129122 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:39px;
  6440. top:402px;
  6441. width:49px;
  6442. height:30px;
  6443. display:flex;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:12px;
  6448. color:#7F7F7F;
  6449. }
  6450. #u129122 .text {
  6451. position:absolute;
  6452. align-self:center;
  6453. padding:0px 0px 0px 0px;
  6454. box-sizing:border-box;
  6455. width:100%;
  6456. }
  6457. #u129122_text {
  6458. border-width:0px;
  6459. white-space:nowrap;
  6460. text-transform:none;
  6461. }
  6462. #u129123 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:0px;
  6468. height:0px;
  6469. }
  6470. #u129124_div {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:57px;
  6476. height:30px;
  6477. background:inherit;
  6478. background-color:rgba(255, 255, 255, 0);
  6479. border:none;
  6480. border-radius:0px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. color:#7F7F7F;
  6488. }
  6489. #u129124 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:199px;
  6493. top:499px;
  6494. width:57px;
  6495. height:30px;
  6496. display:flex;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. color:#7F7F7F;
  6501. }
  6502. #u129124 .text {
  6503. position:absolute;
  6504. align-self:center;
  6505. padding:0px 0px 0px 0px;
  6506. box-sizing:border-box;
  6507. width:100%;
  6508. }
  6509. #u129124_text {
  6510. border-width:0px;
  6511. white-space:nowrap;
  6512. text-transform:none;
  6513. }
  6514. #u129125_img {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:25px;
  6520. height:25px;
  6521. }
  6522. #u129125 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:165px;
  6526. top:502px;
  6527. width:25px;
  6528. height:25px;
  6529. display:flex;
  6530. color:#7F7F7F;
  6531. }
  6532. #u129125 .text {
  6533. position:absolute;
  6534. align-self:center;
  6535. padding:2px 2px 2px 2px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u129125_text {
  6540. border-width:0px;
  6541. word-wrap:break-word;
  6542. text-transform:none;
  6543. }