styles.css 117 KB

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