styles.css 194 KB

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