styles.css 143 KB

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