styles.css 133 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1804px;
  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. #u214784_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u214784 {
  28. border-width:0px;
  29. position:absolute;
  30. left:918px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u214784 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u214784_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u214785_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. #u214785 {
  73. border-width:0px;
  74. position:absolute;
  75. left:947px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u214785 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u214785_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u214786 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u214787_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. #u214787 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1227px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u214787 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u214787_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u214788 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u214789_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u214789 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1290px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u214789 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u214789_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u214790_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u214790 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1296px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u214790 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u214790_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u214791 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u214792_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u214792 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1241px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u214792 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u214792_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u214793_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u214793 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1257px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u214793 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u214793_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u214794_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u214794 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1248px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u214794 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u214794_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u214795_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u214795 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1265px;
  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. #u214795 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u214795_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u214796_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u214796 {
  351. border-width:0px;
  352. position:absolute;
  353. left:947px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u214796 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u214796_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u214797_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. #u214797 {
  393. border-width:0px;
  394. position:absolute;
  395. left:947px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u214797 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u214797_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u214798 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u214799_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u214799 {
  431. border-width:0px;
  432. position:absolute;
  433. left:987px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u214799 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u214799_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u214800_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. #u214800 {
  472. border-width:0px;
  473. position:absolute;
  474. left:987px;
  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. #u214800 .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. #u214800_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u214801 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u214802_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u214802 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1257px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u214802 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u214802_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u214803_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. #u214803 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1257px;
  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. #u214803 .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. #u214803_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u214804_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. #u214804 {
  594. border-width:0px;
  595. position:absolute;
  596. left:947px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u214804 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u214804_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u214805 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u214806_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u214806 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1169px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u214806 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u214806_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u214807_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. #u214807 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1163px;
  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. #u214807 .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. #u214807_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u214808 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u214809_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u214809 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1075px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u214809 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u214809_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u214810_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. #u214810 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1069px;
  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. #u214810 .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. #u214810_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u214811_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:731px;
  786. }
  787. #u214811 {
  788. border-width:0px;
  789. position:absolute;
  790. left:947px;
  791. top:108px;
  792. width:375px;
  793. height:731px;
  794. display:flex;
  795. }
  796. #u214811 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 2px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u214811_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u214812_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:375px;
  815. height:423px;
  816. background:inherit;
  817. background-color:rgba(255, 255, 255, 1);
  818. border:none;
  819. border-left:0px;
  820. border-top:0px;
  821. border-right:0px;
  822. border-radius:0px;
  823. border-bottom-right-radius:0px;
  824. border-bottom-left-radius:0px;
  825. -moz-box-shadow:none;
  826. -webkit-box-shadow:none;
  827. box-shadow:none;
  828. }
  829. #u214812 {
  830. border-width:0px;
  831. position:absolute;
  832. left:947px;
  833. top:272px;
  834. width:375px;
  835. height:423px;
  836. display:flex;
  837. }
  838. #u214812 .text {
  839. position:absolute;
  840. align-self:center;
  841. padding:2px 2px 2px 2px;
  842. box-sizing:border-box;
  843. width:100%;
  844. }
  845. #u214812_text {
  846. border-width:0px;
  847. word-wrap:break-word;
  848. text-transform:none;
  849. visibility:hidden;
  850. }
  851. #u214814_img {
  852. border-width:0px;
  853. position:absolute;
  854. left:0px;
  855. top:0px;
  856. width:433px;
  857. height:865px;
  858. }
  859. #u214814 {
  860. border-width:0px;
  861. position:absolute;
  862. left:463px;
  863. top:0px;
  864. width:433px;
  865. height:865px;
  866. display:flex;
  867. }
  868. #u214814 .text {
  869. position:absolute;
  870. align-self:center;
  871. padding:2px 2px 2px 2px;
  872. box-sizing:border-box;
  873. width:100%;
  874. }
  875. #u214814_text {
  876. border-width:0px;
  877. word-wrap:break-word;
  878. text-transform:none;
  879. visibility:hidden;
  880. }
  881. #u214815_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:375px;
  887. height:40px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 1);
  890. box-sizing:border-box;
  891. border-width:1px;
  892. border-style:solid;
  893. border-color:rgba(215, 215, 215, 1);
  894. border-left:0px;
  895. border-top:0px;
  896. border-right:0px;
  897. border-radius:0px;
  898. border-bottom-right-radius:0px;
  899. border-bottom-left-radius:0px;
  900. -moz-box-shadow:none;
  901. -webkit-box-shadow:none;
  902. box-shadow:none;
  903. }
  904. #u214815 {
  905. border-width:0px;
  906. position:absolute;
  907. left:492px;
  908. top:67px;
  909. width:375px;
  910. height:40px;
  911. display:flex;
  912. }
  913. #u214815 .text {
  914. position:absolute;
  915. align-self:center;
  916. padding:2px 2px 2px 2px;
  917. box-sizing:border-box;
  918. width:100%;
  919. }
  920. #u214815_text {
  921. border-width:0px;
  922. word-wrap:break-word;
  923. text-transform:none;
  924. visibility:hidden;
  925. }
  926. #u214816 {
  927. border-width:0px;
  928. position:absolute;
  929. left:0px;
  930. top:0px;
  931. width:0px;
  932. height:0px;
  933. }
  934. #u214817_div {
  935. border-width:0px;
  936. position:absolute;
  937. left:0px;
  938. top:0px;
  939. width:88px;
  940. height:32px;
  941. background:inherit;
  942. background-color:rgba(255, 255, 255, 1);
  943. box-sizing:border-box;
  944. border-width:1px;
  945. border-style:solid;
  946. border-color:rgba(242, 242, 242, 1);
  947. border-radius:33px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. }
  952. #u214817 {
  953. border-width:0px;
  954. position:absolute;
  955. left:772px;
  956. top:71px;
  957. width:88px;
  958. height:32px;
  959. display:flex;
  960. }
  961. #u214817 .text {
  962. position:absolute;
  963. align-self:center;
  964. padding:2px 2px 2px 2px;
  965. box-sizing:border-box;
  966. width:100%;
  967. }
  968. #u214817_text {
  969. border-width:0px;
  970. word-wrap:break-word;
  971. text-transform:none;
  972. visibility:hidden;
  973. }
  974. #u214818 {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:0px;
  980. height:0px;
  981. }
  982. #u214819_img {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:18px;
  988. height:18px;
  989. }
  990. #u214819 {
  991. border-width:0px;
  992. position:absolute;
  993. left:835px;
  994. top:78px;
  995. width:18px;
  996. height:18px;
  997. display:flex;
  998. }
  999. #u214819 .text {
  1000. position:absolute;
  1001. align-self:center;
  1002. padding:2px 2px 2px 2px;
  1003. box-sizing:border-box;
  1004. width:100%;
  1005. }
  1006. #u214819_text {
  1007. border-width:0px;
  1008. word-wrap:break-word;
  1009. text-transform:none;
  1010. visibility:hidden;
  1011. }
  1012. #u214820_img {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:0px;
  1016. top:0px;
  1017. width:6px;
  1018. height:6px;
  1019. }
  1020. #u214820 {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:841px;
  1024. top:84px;
  1025. width:6px;
  1026. height:6px;
  1027. display:flex;
  1028. }
  1029. #u214820 .text {
  1030. position:absolute;
  1031. align-self:center;
  1032. padding:2px 2px 2px 2px;
  1033. box-sizing:border-box;
  1034. width:100%;
  1035. }
  1036. #u214820_text {
  1037. border-width:0px;
  1038. word-wrap:break-word;
  1039. text-transform:none;
  1040. visibility:hidden;
  1041. }
  1042. #u214821 {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:0px;
  1048. height:0px;
  1049. }
  1050. #u214822_img {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:5px;
  1056. height:5px;
  1057. }
  1058. #u214822 {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:786px;
  1062. top:85px;
  1063. width:5px;
  1064. height:5px;
  1065. display:flex;
  1066. }
  1067. #u214822 .text {
  1068. position:absolute;
  1069. align-self:center;
  1070. padding:2px 2px 2px 2px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u214822_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. visibility:hidden;
  1079. }
  1080. #u214823_img {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:5px;
  1086. height:5px;
  1087. }
  1088. #u214823 {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:802px;
  1092. top:85px;
  1093. width:5px;
  1094. height:5px;
  1095. display:flex;
  1096. }
  1097. #u214823 .text {
  1098. position:absolute;
  1099. align-self:center;
  1100. padding:2px 2px 2px 2px;
  1101. box-sizing:border-box;
  1102. width:100%;
  1103. }
  1104. #u214823_text {
  1105. border-width:0px;
  1106. word-wrap:break-word;
  1107. text-transform:none;
  1108. visibility:hidden;
  1109. }
  1110. #u214824_img {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:7px;
  1116. height:7px;
  1117. }
  1118. #u214824 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:793px;
  1122. top:84px;
  1123. width:7px;
  1124. height:7px;
  1125. display:flex;
  1126. }
  1127. #u214824 .text {
  1128. position:absolute;
  1129. align-self:center;
  1130. padding:2px 2px 2px 2px;
  1131. box-sizing:border-box;
  1132. width:100%;
  1133. }
  1134. #u214824_text {
  1135. border-width:0px;
  1136. word-wrap:break-word;
  1137. text-transform:none;
  1138. visibility:hidden;
  1139. }
  1140. #u214825_img {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:0px;
  1144. top:0px;
  1145. width:19px;
  1146. height:2px;
  1147. }
  1148. #u214825 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:810px;
  1152. top:87px;
  1153. width:18px;
  1154. height:1px;
  1155. display:flex;
  1156. -webkit-transform:rotate(90deg);
  1157. -moz-transform:rotate(90deg);
  1158. -ms-transform:rotate(90deg);
  1159. transform:rotate(90deg);
  1160. }
  1161. #u214825 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u214825_text {
  1169. border-width:0px;
  1170. word-wrap:break-word;
  1171. text-transform:none;
  1172. visibility:hidden;
  1173. }
  1174. #u214826_img {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:375px;
  1180. height:44px;
  1181. }
  1182. #u214826 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:492px;
  1186. top:24px;
  1187. width:375px;
  1188. height:44px;
  1189. display:flex;
  1190. }
  1191. #u214826 .text {
  1192. position:absolute;
  1193. align-self:center;
  1194. padding:2px 2px 2px 2px;
  1195. box-sizing:border-box;
  1196. width:100%;
  1197. }
  1198. #u214826_text {
  1199. border-width:0px;
  1200. word-wrap:break-word;
  1201. text-transform:none;
  1202. visibility:hidden;
  1203. }
  1204. #u214827_div {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:375px;
  1210. height:50px;
  1211. background:inherit;
  1212. background-color:rgba(255, 255, 255, 1);
  1213. box-sizing:border-box;
  1214. border-width:1px;
  1215. border-style:solid;
  1216. border-color:rgba(242, 242, 242, 1);
  1217. border-radius:26px;
  1218. border-top-left-radius:0px;
  1219. border-top-right-radius:0px;
  1220. -moz-box-shadow:none;
  1221. -webkit-box-shadow:none;
  1222. box-shadow:none;
  1223. }
  1224. #u214827 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:492px;
  1228. top:788px;
  1229. width:375px;
  1230. height:50px;
  1231. display:flex;
  1232. }
  1233. #u214827 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u214827_text {
  1241. border-width:0px;
  1242. word-wrap:break-word;
  1243. text-transform:none;
  1244. visibility:hidden;
  1245. }
  1246. #u214828 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:0px;
  1252. height:0px;
  1253. }
  1254. #u214829_img {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:24px;
  1260. height:24px;
  1261. }
  1262. #u214829 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:532px;
  1266. top:792px;
  1267. width:24px;
  1268. height:24px;
  1269. display:flex;
  1270. font-size:8px;
  1271. }
  1272. #u214829 .text {
  1273. position:absolute;
  1274. align-self:center;
  1275. padding:2px 2px 2px 2px;
  1276. box-sizing:border-box;
  1277. width:100%;
  1278. }
  1279. #u214829_text {
  1280. border-width:0px;
  1281. word-wrap:break-word;
  1282. text-transform:none;
  1283. }
  1284. #u214830_div {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:25px;
  1290. height:17px;
  1291. background:inherit;
  1292. background-color:rgba(255, 255, 255, 0);
  1293. border:none;
  1294. border-radius:0px;
  1295. -moz-box-shadow:none;
  1296. -webkit-box-shadow:none;
  1297. box-shadow:none;
  1298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1299. font-weight:400;
  1300. font-style:normal;
  1301. font-size:12px;
  1302. }
  1303. #u214830 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:532px;
  1307. top:817px;
  1308. width:25px;
  1309. height:17px;
  1310. display:flex;
  1311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1312. font-weight:400;
  1313. font-style:normal;
  1314. font-size:12px;
  1315. }
  1316. #u214830 .text {
  1317. position:absolute;
  1318. align-self:flex-start;
  1319. padding:0px 0px 0px 0px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u214830_text {
  1324. border-width:0px;
  1325. white-space:nowrap;
  1326. text-transform:none;
  1327. }
  1328. #u214831 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:0px;
  1332. top:0px;
  1333. width:0px;
  1334. height:0px;
  1335. }
  1336. #u214832_img {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:24px;
  1342. height:24px;
  1343. }
  1344. #u214832 {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:802px;
  1348. top:794px;
  1349. width:24px;
  1350. height:24px;
  1351. display:flex;
  1352. font-size:8px;
  1353. }
  1354. #u214832 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:2px 2px 2px 2px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u214832_text {
  1362. border-width:0px;
  1363. word-wrap:break-word;
  1364. text-transform:none;
  1365. }
  1366. #u214833_div {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:25px;
  1372. height:17px;
  1373. background:inherit;
  1374. background-color:rgba(255, 255, 255, 0);
  1375. border:none;
  1376. border-radius:0px;
  1377. -moz-box-shadow:none;
  1378. -webkit-box-shadow:none;
  1379. box-shadow:none;
  1380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1381. font-weight:400;
  1382. font-style:normal;
  1383. font-size:12px;
  1384. }
  1385. #u214833 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:802px;
  1389. top:819px;
  1390. width:25px;
  1391. height:17px;
  1392. display:flex;
  1393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1394. font-weight:400;
  1395. font-style:normal;
  1396. font-size:12px;
  1397. }
  1398. #u214833 .text {
  1399. position:absolute;
  1400. align-self:flex-start;
  1401. padding:0px 0px 0px 0px;
  1402. box-sizing:border-box;
  1403. width:100%;
  1404. }
  1405. #u214833_text {
  1406. border-width:0px;
  1407. white-space:nowrap;
  1408. text-transform:none;
  1409. }
  1410. #u214834_div {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:375px;
  1416. height:681px;
  1417. background:inherit;
  1418. background-color:rgba(242, 242, 242, 0.462745098039216);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. }
  1425. #u214834 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:492px;
  1429. top:107px;
  1430. width:375px;
  1431. height:681px;
  1432. display:flex;
  1433. }
  1434. #u214834 .text {
  1435. position:absolute;
  1436. align-self:center;
  1437. padding:2px 2px 2px 2px;
  1438. box-sizing:border-box;
  1439. width:100%;
  1440. }
  1441. #u214834_text {
  1442. border-width:0px;
  1443. word-wrap:break-word;
  1444. text-transform:none;
  1445. visibility:hidden;
  1446. }
  1447. #u214835 {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:0px;
  1453. height:0px;
  1454. }
  1455. #u214836_img {
  1456. border-width:0px;
  1457. position:absolute;
  1458. left:0px;
  1459. top:0px;
  1460. width:24px;
  1461. height:24px;
  1462. }
  1463. #u214836 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:714px;
  1467. top:792px;
  1468. width:24px;
  1469. height:24px;
  1470. display:flex;
  1471. font-size:8px;
  1472. }
  1473. #u214836 .text {
  1474. position:absolute;
  1475. align-self:center;
  1476. padding:2px 2px 2px 2px;
  1477. box-sizing:border-box;
  1478. width:100%;
  1479. }
  1480. #u214836_text {
  1481. border-width:0px;
  1482. word-wrap:break-word;
  1483. text-transform:none;
  1484. }
  1485. #u214837_div {
  1486. border-width:0px;
  1487. position:absolute;
  1488. left:0px;
  1489. top:0px;
  1490. width:37px;
  1491. height:17px;
  1492. background:inherit;
  1493. background-color:rgba(255, 255, 255, 0);
  1494. border:none;
  1495. border-radius:0px;
  1496. -moz-box-shadow:none;
  1497. -webkit-box-shadow:none;
  1498. box-shadow:none;
  1499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1500. font-weight:400;
  1501. font-style:normal;
  1502. font-size:12px;
  1503. }
  1504. #u214837 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:708px;
  1508. top:817px;
  1509. width:37px;
  1510. height:17px;
  1511. display:flex;
  1512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1513. font-weight:400;
  1514. font-style:normal;
  1515. font-size:12px;
  1516. }
  1517. #u214837 .text {
  1518. position:absolute;
  1519. align-self:flex-start;
  1520. padding:0px 0px 0px 0px;
  1521. box-sizing:border-box;
  1522. width:100%;
  1523. }
  1524. #u214837_text {
  1525. border-width:0px;
  1526. white-space:nowrap;
  1527. text-transform:none;
  1528. }
  1529. #u214838 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:0px;
  1535. height:0px;
  1536. }
  1537. #u214839_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:24px;
  1543. height:24px;
  1544. }
  1545. #u214839 {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:620px;
  1549. top:792px;
  1550. width:24px;
  1551. height:24px;
  1552. display:flex;
  1553. font-size:8px;
  1554. }
  1555. #u214839 .text {
  1556. position:absolute;
  1557. align-self:center;
  1558. padding:2px 2px 2px 2px;
  1559. box-sizing:border-box;
  1560. width:100%;
  1561. }
  1562. #u214839_text {
  1563. border-width:0px;
  1564. word-wrap:break-word;
  1565. text-transform:none;
  1566. }
  1567. #u214840_div {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:37px;
  1573. height:17px;
  1574. background:inherit;
  1575. background-color:rgba(255, 255, 255, 0);
  1576. border:none;
  1577. border-radius:0px;
  1578. -moz-box-shadow:none;
  1579. -webkit-box-shadow:none;
  1580. box-shadow:none;
  1581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1582. font-weight:400;
  1583. font-style:normal;
  1584. font-size:12px;
  1585. }
  1586. #u214840 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:614px;
  1590. top:817px;
  1591. width:37px;
  1592. height:17px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:12px;
  1598. }
  1599. #u214840 .text {
  1600. position:absolute;
  1601. align-self:flex-start;
  1602. padding:0px 0px 0px 0px;
  1603. box-sizing:border-box;
  1604. width:100%;
  1605. }
  1606. #u214840_text {
  1607. border-width:0px;
  1608. white-space:nowrap;
  1609. text-transform:none;
  1610. }
  1611. #u214841_img {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:0px;
  1615. top:0px;
  1616. width:375px;
  1617. height:731px;
  1618. }
  1619. #u214841 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:492px;
  1623. top:108px;
  1624. width:375px;
  1625. height:731px;
  1626. display:flex;
  1627. }
  1628. #u214841 .text {
  1629. position:absolute;
  1630. align-self:center;
  1631. padding:2px 2px 2px 2px;
  1632. box-sizing:border-box;
  1633. width:100%;
  1634. }
  1635. #u214841_text {
  1636. border-width:0px;
  1637. word-wrap:break-word;
  1638. text-transform:none;
  1639. visibility:hidden;
  1640. }
  1641. #u214842 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:0px;
  1647. height:0px;
  1648. }
  1649. #u214843_img {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:11px;
  1655. height:18px;
  1656. }
  1657. #u214843 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:502px;
  1661. top:80px;
  1662. width:11px;
  1663. height:18px;
  1664. display:flex;
  1665. }
  1666. #u214843 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u214843_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u214844_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:29px;
  1685. height:30px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-left:0px;
  1690. border-top:0px;
  1691. border-right:0px;
  1692. border-radius:0px;
  1693. border-bottom-right-radius:0px;
  1694. border-bottom-left-radius:0px;
  1695. -moz-box-shadow:none;
  1696. -webkit-box-shadow:none;
  1697. box-shadow:none;
  1698. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1699. font-weight:500;
  1700. font-style:normal;
  1701. font-size:14px;
  1702. line-height:30px;
  1703. }
  1704. #u214844 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:533px;
  1708. top:74px;
  1709. width:29px;
  1710. height:30px;
  1711. display:flex;
  1712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1713. font-weight:500;
  1714. font-style:normal;
  1715. font-size:14px;
  1716. line-height:30px;
  1717. }
  1718. #u214844 .text {
  1719. position:absolute;
  1720. align-self:flex-start;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u214844_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u214845 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:0px;
  1736. height:0px;
  1737. }
  1738. #u214846_div {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:376px;
  1744. height:60px;
  1745. background:inherit;
  1746. background-color:rgba(255, 255, 255, 1);
  1747. border:none;
  1748. border-top:0px;
  1749. border-radius:22px;
  1750. border-top-left-radius:0px;
  1751. border-top-right-radius:0px;
  1752. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  1753. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  1754. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  1755. }
  1756. #u214846 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:492px;
  1760. top:778px;
  1761. width:376px;
  1762. height:60px;
  1763. display:flex;
  1764. }
  1765. #u214846 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 2px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u214846_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u214847_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:334px;
  1784. height:40px;
  1785. background:inherit;
  1786. background-color:rgba(41, 143, 255, 1);
  1787. border:none;
  1788. border-radius:45px;
  1789. -moz-box-shadow:none;
  1790. -webkit-box-shadow:none;
  1791. box-shadow:none;
  1792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1793. font-weight:400;
  1794. font-style:normal;
  1795. font-size:14px;
  1796. color:#FFFFFF;
  1797. }
  1798. #u214847 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:515px;
  1802. top:788px;
  1803. width:334px;
  1804. height:40px;
  1805. display:flex;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:14px;
  1810. color:#FFFFFF;
  1811. }
  1812. #u214847 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 2px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u214847_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. }
  1824. #u214849_img {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:433px;
  1830. height:865px;
  1831. }
  1832. #u214849 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:433px;
  1838. height:865px;
  1839. display:flex;
  1840. }
  1841. #u214849 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 2px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u214849_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. visibility:hidden;
  1853. }
  1854. #u214850_div {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:375px;
  1860. height:40px;
  1861. background:inherit;
  1862. background-color:rgba(255, 255, 255, 1);
  1863. box-sizing:border-box;
  1864. border-width:1px;
  1865. border-style:solid;
  1866. border-color:rgba(215, 215, 215, 1);
  1867. border-left:0px;
  1868. border-top:0px;
  1869. border-right:0px;
  1870. border-radius:0px;
  1871. border-bottom-right-radius:0px;
  1872. border-bottom-left-radius:0px;
  1873. -moz-box-shadow:none;
  1874. -webkit-box-shadow:none;
  1875. box-shadow:none;
  1876. }
  1877. #u214850 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:29px;
  1881. top:67px;
  1882. width:375px;
  1883. height:40px;
  1884. display:flex;
  1885. }
  1886. #u214850 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u214850_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. visibility:hidden;
  1898. }
  1899. #u214851 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:0px;
  1905. height:0px;
  1906. }
  1907. #u214852_div {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:88px;
  1913. height:32px;
  1914. background:inherit;
  1915. background-color:rgba(255, 255, 255, 1);
  1916. box-sizing:border-box;
  1917. border-width:1px;
  1918. border-style:solid;
  1919. border-color:rgba(242, 242, 242, 1);
  1920. border-radius:33px;
  1921. -moz-box-shadow:none;
  1922. -webkit-box-shadow:none;
  1923. box-shadow:none;
  1924. }
  1925. #u214852 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:309px;
  1929. top:71px;
  1930. width:88px;
  1931. height:32px;
  1932. display:flex;
  1933. }
  1934. #u214852 .text {
  1935. position:absolute;
  1936. align-self:center;
  1937. padding:2px 2px 2px 2px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u214852_text {
  1942. border-width:0px;
  1943. word-wrap:break-word;
  1944. text-transform:none;
  1945. visibility:hidden;
  1946. }
  1947. #u214853 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:0px;
  1953. height:0px;
  1954. }
  1955. #u214854_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:18px;
  1961. height:18px;
  1962. }
  1963. #u214854 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:372px;
  1967. top:78px;
  1968. width:18px;
  1969. height:18px;
  1970. display:flex;
  1971. }
  1972. #u214854 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 2px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u214854_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. visibility:hidden;
  1984. }
  1985. #u214855_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:6px;
  1991. height:6px;
  1992. }
  1993. #u214855 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:378px;
  1997. top:84px;
  1998. width:6px;
  1999. height:6px;
  2000. display:flex;
  2001. }
  2002. #u214855 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:2px 2px 2px 2px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u214855_text {
  2010. border-width:0px;
  2011. word-wrap:break-word;
  2012. text-transform:none;
  2013. visibility:hidden;
  2014. }
  2015. #u214856 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:0px;
  2021. height:0px;
  2022. }
  2023. #u214857_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:5px;
  2029. height:5px;
  2030. }
  2031. #u214857 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:323px;
  2035. top:85px;
  2036. width:5px;
  2037. height:5px;
  2038. display:flex;
  2039. }
  2040. #u214857 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 2px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u214857_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. visibility:hidden;
  2052. }
  2053. #u214858_img {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:5px;
  2059. height:5px;
  2060. }
  2061. #u214858 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:339px;
  2065. top:85px;
  2066. width:5px;
  2067. height:5px;
  2068. display:flex;
  2069. }
  2070. #u214858 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 2px 2px 2px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u214858_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u214859_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:7px;
  2089. height:7px;
  2090. }
  2091. #u214859 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:330px;
  2095. top:84px;
  2096. width:7px;
  2097. height:7px;
  2098. display:flex;
  2099. }
  2100. #u214859 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u214859_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u214860_img {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:19px;
  2119. height:2px;
  2120. }
  2121. #u214860 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:347px;
  2125. top:87px;
  2126. width:18px;
  2127. height:1px;
  2128. display:flex;
  2129. -webkit-transform:rotate(90deg);
  2130. -moz-transform:rotate(90deg);
  2131. -ms-transform:rotate(90deg);
  2132. transform:rotate(90deg);
  2133. }
  2134. #u214860 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u214860_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. visibility:hidden;
  2146. }
  2147. #u214861_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:375px;
  2153. height:44px;
  2154. }
  2155. #u214861 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:29px;
  2159. top:24px;
  2160. width:375px;
  2161. height:44px;
  2162. display:flex;
  2163. }
  2164. #u214861 .text {
  2165. position:absolute;
  2166. align-self:center;
  2167. padding:2px 2px 2px 2px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u214861_text {
  2172. border-width:0px;
  2173. word-wrap:break-word;
  2174. text-transform:none;
  2175. visibility:hidden;
  2176. }
  2177. #u214862_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:375px;
  2183. height:50px;
  2184. background:inherit;
  2185. background-color:rgba(255, 255, 255, 1);
  2186. box-sizing:border-box;
  2187. border-width:1px;
  2188. border-style:solid;
  2189. border-color:rgba(242, 242, 242, 1);
  2190. border-radius:26px;
  2191. border-top-left-radius:0px;
  2192. border-top-right-radius:0px;
  2193. -moz-box-shadow:none;
  2194. -webkit-box-shadow:none;
  2195. box-shadow:none;
  2196. }
  2197. #u214862 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:29px;
  2201. top:788px;
  2202. width:375px;
  2203. height:50px;
  2204. display:flex;
  2205. }
  2206. #u214862 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 2px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u214862_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. visibility:hidden;
  2218. }
  2219. #u214863 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:0px;
  2225. height:0px;
  2226. }
  2227. #u214864_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:24px;
  2233. height:24px;
  2234. }
  2235. #u214864 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:69px;
  2239. top:792px;
  2240. width:24px;
  2241. height:24px;
  2242. display:flex;
  2243. font-size:8px;
  2244. }
  2245. #u214864 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:2px 2px 2px 2px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u214864_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. }
  2257. #u214865_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:25px;
  2263. height:17px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 0);
  2266. border:none;
  2267. border-radius:0px;
  2268. -moz-box-shadow:none;
  2269. -webkit-box-shadow:none;
  2270. box-shadow:none;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:12px;
  2275. }
  2276. #u214865 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:69px;
  2280. top:817px;
  2281. width:25px;
  2282. height:17px;
  2283. display:flex;
  2284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:12px;
  2288. }
  2289. #u214865 .text {
  2290. position:absolute;
  2291. align-self:flex-start;
  2292. padding:0px 0px 0px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u214865_text {
  2297. border-width:0px;
  2298. white-space:nowrap;
  2299. text-transform:none;
  2300. }
  2301. #u214866 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:0px;
  2307. height:0px;
  2308. }
  2309. #u214867_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:24px;
  2315. height:24px;
  2316. }
  2317. #u214867 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:339px;
  2321. top:794px;
  2322. width:24px;
  2323. height:24px;
  2324. display:flex;
  2325. font-size:8px;
  2326. }
  2327. #u214867 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 2px 2px 2px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u214867_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. }
  2339. #u214868_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:25px;
  2345. height:17px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 0);
  2348. border:none;
  2349. border-radius:0px;
  2350. -moz-box-shadow:none;
  2351. -webkit-box-shadow:none;
  2352. box-shadow:none;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:12px;
  2357. }
  2358. #u214868 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:339px;
  2362. top:819px;
  2363. width:25px;
  2364. height:17px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:12px;
  2370. }
  2371. #u214868 .text {
  2372. position:absolute;
  2373. align-self:flex-start;
  2374. padding:0px 0px 0px 0px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u214868_text {
  2379. border-width:0px;
  2380. white-space:nowrap;
  2381. text-transform:none;
  2382. }
  2383. #u214869_div {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:375px;
  2389. height:681px;
  2390. background:inherit;
  2391. background-color:rgba(242, 242, 242, 0.462745098039216);
  2392. border:none;
  2393. border-radius:0px;
  2394. -moz-box-shadow:none;
  2395. -webkit-box-shadow:none;
  2396. box-shadow:none;
  2397. }
  2398. #u214869 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:29px;
  2402. top:107px;
  2403. width:375px;
  2404. height:681px;
  2405. display:flex;
  2406. }
  2407. #u214869 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 2px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u214869_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. visibility:hidden;
  2419. }
  2420. #u214870 {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:0px;
  2426. height:0px;
  2427. }
  2428. #u214871_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:24px;
  2434. height:24px;
  2435. }
  2436. #u214871 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:251px;
  2440. top:792px;
  2441. width:24px;
  2442. height:24px;
  2443. display:flex;
  2444. font-size:8px;
  2445. }
  2446. #u214871 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 2px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u214871_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. }
  2458. #u214872_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:37px;
  2464. height:17px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 0);
  2467. border:none;
  2468. border-radius:0px;
  2469. -moz-box-shadow:none;
  2470. -webkit-box-shadow:none;
  2471. box-shadow:none;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:12px;
  2476. }
  2477. #u214872 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:245px;
  2481. top:817px;
  2482. width:37px;
  2483. height:17px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. }
  2490. #u214872 .text {
  2491. position:absolute;
  2492. align-self:flex-start;
  2493. padding:0px 0px 0px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u214872_text {
  2498. border-width:0px;
  2499. white-space:nowrap;
  2500. text-transform:none;
  2501. }
  2502. #u214873 {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:0px;
  2508. height:0px;
  2509. }
  2510. #u214874_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:24px;
  2516. height:24px;
  2517. }
  2518. #u214874 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:157px;
  2522. top:792px;
  2523. width:24px;
  2524. height:24px;
  2525. display:flex;
  2526. font-size:8px;
  2527. }
  2528. #u214874 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 2px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u214874_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. }
  2540. #u214875_div {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:37px;
  2546. height:17px;
  2547. background:inherit;
  2548. background-color:rgba(255, 255, 255, 0);
  2549. border:none;
  2550. border-radius:0px;
  2551. -moz-box-shadow:none;
  2552. -webkit-box-shadow:none;
  2553. box-shadow:none;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:12px;
  2558. }
  2559. #u214875 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:151px;
  2563. top:817px;
  2564. width:37px;
  2565. height:17px;
  2566. display:flex;
  2567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2568. font-weight:400;
  2569. font-style:normal;
  2570. font-size:12px;
  2571. }
  2572. #u214875 .text {
  2573. position:absolute;
  2574. align-self:flex-start;
  2575. padding:0px 0px 0px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u214875_text {
  2580. border-width:0px;
  2581. white-space:nowrap;
  2582. text-transform:none;
  2583. }
  2584. #u214876_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:375px;
  2590. height:731px;
  2591. }
  2592. #u214876 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:29px;
  2596. top:108px;
  2597. width:375px;
  2598. height:731px;
  2599. display:flex;
  2600. }
  2601. #u214876 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 2px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u214876_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. visibility:hidden;
  2613. }
  2614. #u214877 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:0px;
  2620. height:0px;
  2621. }
  2622. #u214878_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:11px;
  2628. height:18px;
  2629. }
  2630. #u214878 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:39px;
  2634. top:80px;
  2635. width:11px;
  2636. height:18px;
  2637. display:flex;
  2638. }
  2639. #u214878 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 2px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u214878_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. visibility:hidden;
  2651. }
  2652. #u214879_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:29px;
  2658. height:30px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-left:0px;
  2663. border-top:0px;
  2664. border-right:0px;
  2665. border-radius:0px;
  2666. border-bottom-right-radius:0px;
  2667. border-bottom-left-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2672. font-weight:500;
  2673. font-style:normal;
  2674. font-size:14px;
  2675. line-height:30px;
  2676. }
  2677. #u214879 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:70px;
  2681. top:74px;
  2682. width:29px;
  2683. height:30px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2686. font-weight:500;
  2687. font-style:normal;
  2688. font-size:14px;
  2689. line-height:30px;
  2690. }
  2691. #u214879 .text {
  2692. position:absolute;
  2693. align-self:flex-start;
  2694. padding:0px 0px 0px 0px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u214879_text {
  2699. border-width:0px;
  2700. white-space:nowrap;
  2701. text-transform:none;
  2702. }
  2703. #u214880 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:0px;
  2709. height:0px;
  2710. }
  2711. #u214881_div {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:375px;
  2717. height:387px;
  2718. background:inherit;
  2719. background-color:rgba(255, 255, 255, 1);
  2720. box-sizing:border-box;
  2721. border-width:1px;
  2722. border-style:solid;
  2723. border-color:rgba(215, 215, 215, 1);
  2724. border-left:0px;
  2725. border-top:0px;
  2726. border-right:0px;
  2727. border-radius:0px;
  2728. border-bottom-right-radius:0px;
  2729. border-bottom-left-radius:0px;
  2730. -moz-box-shadow:none;
  2731. -webkit-box-shadow:none;
  2732. box-shadow:none;
  2733. }
  2734. #u214881 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:29px;
  2738. top:108px;
  2739. width:375px;
  2740. height:387px;
  2741. display:flex;
  2742. }
  2743. #u214881 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u214881_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u214882_div {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:353px;
  2762. height:30px;
  2763. background:inherit;
  2764. background-color:rgba(255, 255, 255, 0);
  2765. border:none;
  2766. border-top:0px;
  2767. border-right:0px;
  2768. border-bottom:0px;
  2769. border-radius:0px;
  2770. border-top-left-radius:0px;
  2771. border-bottom-left-radius:0px;
  2772. -moz-box-shadow:none;
  2773. -webkit-box-shadow:none;
  2774. box-shadow:none;
  2775. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2776. font-weight:500;
  2777. font-style:normal;
  2778. font-size:14px;
  2779. line-height:30px;
  2780. }
  2781. #u214882 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:42px;
  2785. top:118px;
  2786. width:353px;
  2787. height:30px;
  2788. display:flex;
  2789. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2790. font-weight:500;
  2791. font-style:normal;
  2792. font-size:14px;
  2793. line-height:30px;
  2794. }
  2795. #u214882 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:5px 10px 5px 0px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u214882_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. }
  2807. #u214883_div {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:0px;
  2811. top:0px;
  2812. width:40px;
  2813. height:20px;
  2814. background:inherit;
  2815. background-color:rgba(242, 242, 242, 0);
  2816. border:none;
  2817. border-radius:29px;
  2818. -moz-box-shadow:none;
  2819. -webkit-box-shadow:none;
  2820. box-shadow:none;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. color:#298FFF;
  2826. text-align:center;
  2827. line-height:20px;
  2828. }
  2829. #u214883 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:334px;
  2833. top:123px;
  2834. width:40px;
  2835. height:20px;
  2836. display:flex;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:12px;
  2841. color:#298FFF;
  2842. text-align:center;
  2843. line-height:20px;
  2844. }
  2845. #u214883 .text {
  2846. position:absolute;
  2847. align-self:flex-start;
  2848. padding:0px 0px 0px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u214883_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. }
  2857. #u214884_div {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:109px;
  2863. height:25px;
  2864. background:inherit;
  2865. background-color:rgba(255, 255, 255, 0);
  2866. border:none;
  2867. border-left:0px;
  2868. border-top:0px;
  2869. border-right:0px;
  2870. border-radius:0px;
  2871. border-bottom-right-radius:0px;
  2872. border-bottom-left-radius:0px;
  2873. -moz-box-shadow:none;
  2874. -webkit-box-shadow:none;
  2875. box-shadow:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:12px;
  2880. color:#298FFF;
  2881. line-height:25px;
  2882. }
  2883. #u214884 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:42px;
  2887. top:144px;
  2888. width:109px;
  2889. height:25px;
  2890. display:flex;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:12px;
  2895. color:#298FFF;
  2896. line-height:25px;
  2897. }
  2898. #u214884 .text {
  2899. position:absolute;
  2900. align-self:flex-start;
  2901. padding:0px 0px 0px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u214884_text {
  2906. border-width:0px;
  2907. white-space:nowrap;
  2908. text-transform:none;
  2909. }
  2910. #u214885 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:0px;
  2916. height:0px;
  2917. }
  2918. #u214886_div {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:330px;
  2924. height:90px;
  2925. background:inherit;
  2926. background-color:rgba(242, 242, 242, 1);
  2927. border:none;
  2928. border-radius:6px;
  2929. -moz-box-shadow:none;
  2930. -webkit-box-shadow:none;
  2931. box-shadow:none;
  2932. }
  2933. #u214886 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:42px;
  2937. top:285px;
  2938. width:330px;
  2939. height:90px;
  2940. display:flex;
  2941. }
  2942. #u214886 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u214886_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. visibility:hidden;
  2954. }
  2955. #u214887_div {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:108px;
  2961. height:30px;
  2962. background:inherit;
  2963. background-color:rgba(255, 255, 255, 0);
  2964. border:none;
  2965. border-left:0px;
  2966. border-top:0px;
  2967. border-right:0px;
  2968. border-radius:0px;
  2969. border-bottom-right-radius:0px;
  2970. border-bottom-left-radius:0px;
  2971. -moz-box-shadow:none;
  2972. -webkit-box-shadow:none;
  2973. box-shadow:none;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:14px;
  2978. line-height:30px;
  2979. }
  2980. #u214887 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:58px;
  2984. top:300px;
  2985. width:108px;
  2986. height:30px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:14px;
  2992. line-height:30px;
  2993. }
  2994. #u214887 .text {
  2995. position:absolute;
  2996. align-self:flex-start;
  2997. padding:0px 0px 0px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u214887_text {
  3002. border-width:0px;
  3003. white-space:nowrap;
  3004. text-transform:none;
  3005. }
  3006. #u214888_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:105px;
  3012. height:25px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 0);
  3015. border:none;
  3016. border-left:0px;
  3017. border-top:0px;
  3018. border-right:0px;
  3019. border-radius:0px;
  3020. border-bottom-right-radius:0px;
  3021. border-bottom-left-radius:0px;
  3022. -moz-box-shadow:none;
  3023. -webkit-box-shadow:none;
  3024. box-shadow:none;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:12px;
  3029. line-height:25px;
  3030. }
  3031. #u214888 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:58px;
  3035. top:335px;
  3036. width:105px;
  3037. height:25px;
  3038. display:flex;
  3039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3040. font-weight:400;
  3041. font-style:normal;
  3042. font-size:12px;
  3043. line-height:25px;
  3044. }
  3045. #u214888 .text {
  3046. position:absolute;
  3047. align-self:flex-start;
  3048. padding:0px 0px 0px 0px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u214888_text {
  3053. border-width:0px;
  3054. white-space:nowrap;
  3055. text-transform:none;
  3056. }
  3057. #u214889_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:68px;
  3063. height:64px;
  3064. }
  3065. #u214889 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:294px;
  3069. top:300px;
  3070. width:68px;
  3071. height:64px;
  3072. display:flex;
  3073. }
  3074. #u214889 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 2px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u214889_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u214890 {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:0px;
  3093. height:0px;
  3094. }
  3095. #u214891_div {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:330px;
  3101. height:90px;
  3102. background:inherit;
  3103. background-color:rgba(242, 242, 242, 1);
  3104. border:none;
  3105. border-radius:6px;
  3106. -moz-box-shadow:none;
  3107. -webkit-box-shadow:none;
  3108. box-shadow:none;
  3109. }
  3110. #u214891 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:42px;
  3114. top:385px;
  3115. width:330px;
  3116. height:90px;
  3117. display:flex;
  3118. }
  3119. #u214891 .text {
  3120. position:absolute;
  3121. align-self:center;
  3122. padding:2px 2px 2px 2px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u214891_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u214892_div {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:0px;
  3136. top:0px;
  3137. width:85px;
  3138. height:30px;
  3139. background:inherit;
  3140. background-color:rgba(255, 255, 255, 0);
  3141. border:none;
  3142. border-left:0px;
  3143. border-top:0px;
  3144. border-right:0px;
  3145. border-radius:0px;
  3146. border-bottom-right-radius:0px;
  3147. border-bottom-left-radius:0px;
  3148. -moz-box-shadow:none;
  3149. -webkit-box-shadow:none;
  3150. box-shadow:none;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:14px;
  3155. line-height:30px;
  3156. }
  3157. #u214892 {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:58px;
  3161. top:400px;
  3162. width:85px;
  3163. height:30px;
  3164. display:flex;
  3165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3166. font-weight:400;
  3167. font-style:normal;
  3168. font-size:14px;
  3169. line-height:30px;
  3170. }
  3171. #u214892 .text {
  3172. position:absolute;
  3173. align-self:flex-start;
  3174. padding:0px 0px 0px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u214892_text {
  3179. border-width:0px;
  3180. white-space:nowrap;
  3181. text-transform:none;
  3182. }
  3183. #u214893_div {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:187px;
  3189. height:25px;
  3190. background:inherit;
  3191. background-color:rgba(255, 255, 255, 0);
  3192. border:none;
  3193. border-left:0px;
  3194. border-top:0px;
  3195. border-right:0px;
  3196. border-radius:0px;
  3197. border-bottom-right-radius:0px;
  3198. border-bottom-left-radius:0px;
  3199. -moz-box-shadow:none;
  3200. -webkit-box-shadow:none;
  3201. box-shadow:none;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:12px;
  3206. line-height:25px;
  3207. }
  3208. #u214893 {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:58px;
  3212. top:435px;
  3213. width:187px;
  3214. height:25px;
  3215. display:flex;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:12px;
  3220. line-height:25px;
  3221. }
  3222. #u214893 .text {
  3223. position:absolute;
  3224. align-self:flex-start;
  3225. padding:0px 0px 0px 0px;
  3226. box-sizing:border-box;
  3227. width:100%;
  3228. }
  3229. #u214893_text {
  3230. border-width:0px;
  3231. white-space:nowrap;
  3232. text-transform:none;
  3233. }
  3234. #u214894_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:68px;
  3240. height:68px;
  3241. }
  3242. #u214894 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:294px;
  3246. top:396px;
  3247. width:68px;
  3248. height:68px;
  3249. display:flex;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. }
  3254. #u214894 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 2px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u214894_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. }
  3266. #u214895_img {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:6px;
  3272. height:10px;
  3273. }
  3274. #u214895 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:381px;
  3278. top:128px;
  3279. width:6px;
  3280. height:10px;
  3281. display:flex;
  3282. -webkit-transform:rotate(90deg);
  3283. -moz-transform:rotate(90deg);
  3284. -ms-transform:rotate(90deg);
  3285. transform:rotate(90deg);
  3286. }
  3287. #u214895 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:2px 2px 2px 2px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u214895_text {
  3295. border-width:0px;
  3296. word-wrap:break-word;
  3297. text-transform:none;
  3298. visibility:hidden;
  3299. }
  3300. #u214896_div {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:181px;
  3306. height:25px;
  3307. background:inherit;
  3308. background-color:rgba(255, 255, 255, 0);
  3309. border:none;
  3310. border-left:0px;
  3311. border-top:0px;
  3312. border-right:0px;
  3313. border-radius:0px;
  3314. border-bottom-right-radius:0px;
  3315. border-bottom-left-radius:0px;
  3316. -moz-box-shadow:none;
  3317. -webkit-box-shadow:none;
  3318. box-shadow:none;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:12px;
  3323. line-height:25px;
  3324. }
  3325. #u214896 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:42px;
  3329. top:250px;
  3330. width:181px;
  3331. height:25px;
  3332. display:flex;
  3333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3334. font-weight:400;
  3335. font-style:normal;
  3336. font-size:12px;
  3337. line-height:25px;
  3338. }
  3339. #u214896 .text {
  3340. position:absolute;
  3341. align-self:flex-start;
  3342. padding:0px 0px 0px 0px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u214896_text {
  3347. border-width:0px;
  3348. white-space:nowrap;
  3349. text-transform:none;
  3350. }
  3351. #u214897_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:201px;
  3357. height:25px;
  3358. background:inherit;
  3359. background-color:rgba(255, 255, 255, 0);
  3360. border:none;
  3361. border-left:0px;
  3362. border-top:0px;
  3363. border-right:0px;
  3364. border-radius:0px;
  3365. border-bottom-right-radius:0px;
  3366. border-bottom-left-radius:0px;
  3367. -moz-box-shadow:none;
  3368. -webkit-box-shadow:none;
  3369. box-shadow:none;
  3370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:12px;
  3374. line-height:25px;
  3375. }
  3376. #u214897 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:42px;
  3380. top:175px;
  3381. width:201px;
  3382. height:25px;
  3383. display:flex;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:12px;
  3388. line-height:25px;
  3389. }
  3390. #u214897 .text {
  3391. position:absolute;
  3392. align-self:flex-start;
  3393. padding:0px 0px 0px 0px;
  3394. box-sizing:border-box;
  3395. width:100%;
  3396. }
  3397. #u214897_text {
  3398. border-width:0px;
  3399. white-space:nowrap;
  3400. text-transform:none;
  3401. }
  3402. #u214898_div {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:115px;
  3408. height:25px;
  3409. background:inherit;
  3410. background-color:rgba(255, 255, 255, 0);
  3411. border:none;
  3412. border-left:0px;
  3413. border-top:0px;
  3414. border-right:0px;
  3415. border-radius:0px;
  3416. border-bottom-right-radius:0px;
  3417. border-bottom-left-radius:0px;
  3418. -moz-box-shadow:none;
  3419. -webkit-box-shadow:none;
  3420. box-shadow:none;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:12px;
  3425. line-height:25px;
  3426. }
  3427. #u214898 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:42px;
  3431. top:200px;
  3432. width:115px;
  3433. height:25px;
  3434. display:flex;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. line-height:25px;
  3440. }
  3441. #u214898 .text {
  3442. position:absolute;
  3443. align-self:flex-start;
  3444. padding:0px 0px 0px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u214898_text {
  3449. border-width:0px;
  3450. white-space:nowrap;
  3451. text-transform:none;
  3452. }
  3453. #u214899_div {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:109px;
  3459. height:25px;
  3460. background:inherit;
  3461. background-color:rgba(255, 255, 255, 0);
  3462. border:none;
  3463. border-left:0px;
  3464. border-top:0px;
  3465. border-right:0px;
  3466. border-radius:0px;
  3467. border-bottom-right-radius:0px;
  3468. border-bottom-left-radius:0px;
  3469. -moz-box-shadow:none;
  3470. -webkit-box-shadow:none;
  3471. box-shadow:none;
  3472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3473. font-weight:400;
  3474. font-style:normal;
  3475. font-size:12px;
  3476. line-height:25px;
  3477. }
  3478. #u214899 {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:42px;
  3482. top:225px;
  3483. width:109px;
  3484. height:25px;
  3485. display:flex;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:12px;
  3490. line-height:25px;
  3491. }
  3492. #u214899 .text {
  3493. position:absolute;
  3494. align-self:flex-start;
  3495. padding:0px 0px 0px 0px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u214899_text {
  3500. border-width:0px;
  3501. white-space:nowrap;
  3502. text-transform:none;
  3503. }
  3504. #u214900 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:0px;
  3510. height:0px;
  3511. }
  3512. #u214901_div {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:376px;
  3518. height:60px;
  3519. background:inherit;
  3520. background-color:rgba(255, 255, 255, 1);
  3521. border:none;
  3522. border-top:0px;
  3523. border-radius:22px;
  3524. border-top-left-radius:0px;
  3525. border-top-right-radius:0px;
  3526. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3527. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3528. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  3529. }
  3530. #u214901 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:28px;
  3534. top:778px;
  3535. width:376px;
  3536. height:60px;
  3537. display:flex;
  3538. }
  3539. #u214901 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u214901_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u214902_div {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:150px;
  3558. height:40px;
  3559. background:inherit;
  3560. background-color:rgba(41, 143, 255, 1);
  3561. border:none;
  3562. border-radius:45px;
  3563. -moz-box-shadow:none;
  3564. -webkit-box-shadow:none;
  3565. box-shadow:none;
  3566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:14px;
  3570. color:#FFFFFF;
  3571. }
  3572. #u214902 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:227px;
  3576. top:788px;
  3577. width:150px;
  3578. height:40px;
  3579. display:flex;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:14px;
  3584. color:#FFFFFF;
  3585. }
  3586. #u214902 .text {
  3587. position:absolute;
  3588. align-self:center;
  3589. padding:2px 2px 2px 2px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u214902_text {
  3594. border-width:0px;
  3595. word-wrap:break-word;
  3596. text-transform:none;
  3597. }
  3598. #u214903_div {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:150px;
  3604. height:40px;
  3605. background:inherit;
  3606. background-color:rgba(245, 154, 35, 1);
  3607. border:none;
  3608. border-radius:45px;
  3609. -moz-box-shadow:none;
  3610. -webkit-box-shadow:none;
  3611. box-shadow:none;
  3612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3613. font-weight:400;
  3614. font-style:normal;
  3615. font-size:14px;
  3616. color:#FFFFFF;
  3617. }
  3618. #u214903 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:57px;
  3622. top:788px;
  3623. width:150px;
  3624. height:40px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:14px;
  3630. color:#FFFFFF;
  3631. }
  3632. #u214903 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 2px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u214903_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. }
  3644. #u214904 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:0px;
  3650. height:0px;
  3651. }
  3652. #u214905_div {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:375px;
  3658. height:204px;
  3659. background:inherit;
  3660. background-color:rgba(255, 255, 255, 1);
  3661. border:none;
  3662. border-left:0px;
  3663. border-top:0px;
  3664. border-right:0px;
  3665. border-radius:0px;
  3666. border-bottom-right-radius:0px;
  3667. border-bottom-left-radius:0px;
  3668. -moz-box-shadow:none;
  3669. -webkit-box-shadow:none;
  3670. box-shadow:none;
  3671. }
  3672. #u214905 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:29px;
  3676. top:505px;
  3677. width:375px;
  3678. height:204px;
  3679. display:flex;
  3680. }
  3681. #u214905 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 2px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u214905_text {
  3689. border-width:0px;
  3690. word-wrap:break-word;
  3691. text-transform:none;
  3692. visibility:hidden;
  3693. }
  3694. #u214906_div {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:353px;
  3700. height:30px;
  3701. background:inherit;
  3702. background-color:rgba(255, 255, 255, 0);
  3703. border:none;
  3704. border-top:0px;
  3705. border-right:0px;
  3706. border-bottom:0px;
  3707. border-radius:0px;
  3708. border-top-left-radius:0px;
  3709. border-bottom-left-radius:0px;
  3710. -moz-box-shadow:none;
  3711. -webkit-box-shadow:none;
  3712. box-shadow:none;
  3713. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3714. font-weight:500;
  3715. font-style:normal;
  3716. font-size:14px;
  3717. line-height:30px;
  3718. }
  3719. #u214906 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:42px;
  3723. top:515px;
  3724. width:353px;
  3725. height:30px;
  3726. display:flex;
  3727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3728. font-weight:500;
  3729. font-style:normal;
  3730. font-size:14px;
  3731. line-height:30px;
  3732. }
  3733. #u214906 .text {
  3734. position:absolute;
  3735. align-self:center;
  3736. padding:5px 10px 5px 0px;
  3737. box-sizing:border-box;
  3738. width:100%;
  3739. }
  3740. #u214906_text {
  3741. border-width:0px;
  3742. word-wrap:break-word;
  3743. text-transform:none;
  3744. }
  3745. #u214907_div {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:347px;
  3751. height:25px;
  3752. background:inherit;
  3753. background-color:rgba(255, 255, 255, 0);
  3754. border:none;
  3755. border-top:0px;
  3756. border-right:0px;
  3757. border-bottom:0px;
  3758. border-radius:0px;
  3759. border-top-left-radius:0px;
  3760. border-bottom-left-radius:0px;
  3761. -moz-box-shadow:none;
  3762. -webkit-box-shadow:none;
  3763. box-shadow:none;
  3764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3765. font-weight:400;
  3766. font-style:normal;
  3767. font-size:12px;
  3768. line-height:30px;
  3769. }
  3770. #u214907 {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:48px;
  3774. top:545px;
  3775. width:347px;
  3776. height:25px;
  3777. display:flex;
  3778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3779. font-weight:400;
  3780. font-style:normal;
  3781. font-size:12px;
  3782. line-height:30px;
  3783. }
  3784. #u214907 .text {
  3785. position:absolute;
  3786. align-self:center;
  3787. padding:5px 10px 5px 0px;
  3788. box-sizing:border-box;
  3789. width:100%;
  3790. }
  3791. #u214907_text {
  3792. border-width:0px;
  3793. word-wrap:break-word;
  3794. text-transform:none;
  3795. }
  3796. #u214908_div {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:148px;
  3802. height:40px;
  3803. background:inherit;
  3804. background-color:rgba(255, 255, 255, 0);
  3805. border:none;
  3806. border-top:0px;
  3807. border-right:0px;
  3808. border-bottom:0px;
  3809. border-radius:0px;
  3810. border-top-left-radius:0px;
  3811. border-bottom-left-radius:0px;
  3812. -moz-box-shadow:none;
  3813. -webkit-box-shadow:none;
  3814. box-shadow:none;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:12px;
  3819. line-height:30px;
  3820. }
  3821. #u214908 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:58px;
  3825. top:570px;
  3826. width:148px;
  3827. height:40px;
  3828. display:flex;
  3829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3830. font-weight:400;
  3831. font-style:normal;
  3832. font-size:12px;
  3833. line-height:30px;
  3834. }
  3835. #u214908 .text {
  3836. position:absolute;
  3837. align-self:center;
  3838. padding:5px 10px 5px 0px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u214908_text {
  3843. border-width:0px;
  3844. white-space:nowrap;
  3845. text-transform:none;
  3846. }
  3847. #u214909_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:59px;
  3853. height:40px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 0);
  3856. border:none;
  3857. border-top:0px;
  3858. border-right:0px;
  3859. border-bottom:0px;
  3860. border-radius:0px;
  3861. border-top-left-radius:0px;
  3862. border-bottom-left-radius:0px;
  3863. -moz-box-shadow:none;
  3864. -webkit-box-shadow:none;
  3865. box-shadow:none;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:12px;
  3870. line-height:30px;
  3871. }
  3872. #u214909 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:48px;
  3876. top:600px;
  3877. width:59px;
  3878. height:40px;
  3879. display:flex;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:12px;
  3884. line-height:30px;
  3885. }
  3886. #u214909 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:5px 10px 5px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u214909_text {
  3894. border-width:0px;
  3895. white-space:nowrap;
  3896. text-transform:none;
  3897. }
  3898. #u214910_div {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:205px;
  3904. height:40px;
  3905. background:inherit;
  3906. background-color:rgba(255, 255, 255, 0);
  3907. border:none;
  3908. border-top:0px;
  3909. border-right:0px;
  3910. border-bottom:0px;
  3911. border-radius:0px;
  3912. border-top-left-radius:0px;
  3913. border-bottom-left-radius:0px;
  3914. -moz-box-shadow:none;
  3915. -webkit-box-shadow:none;
  3916. box-shadow:none;
  3917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:12px;
  3921. line-height:30px;
  3922. }
  3923. #u214910 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:58px;
  3927. top:630px;
  3928. width:205px;
  3929. height:40px;
  3930. display:flex;
  3931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:12px;
  3935. line-height:30px;
  3936. }
  3937. #u214910 .text {
  3938. position:absolute;
  3939. align-self:center;
  3940. padding:5px 10px 5px 0px;
  3941. box-sizing:border-box;
  3942. width:100%;
  3943. }
  3944. #u214910_text {
  3945. border-width:0px;
  3946. white-space:nowrap;
  3947. text-transform:none;
  3948. }
  3949. #u214911_div {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:0px;
  3953. top:0px;
  3954. width:353px;
  3955. height:30px;
  3956. background:inherit;
  3957. background-color:rgba(255, 255, 255, 0);
  3958. border:none;
  3959. border-top:0px;
  3960. border-right:0px;
  3961. border-bottom:0px;
  3962. border-radius:0px;
  3963. border-top-left-radius:0px;
  3964. border-bottom-left-radius:0px;
  3965. -moz-box-shadow:none;
  3966. -webkit-box-shadow:none;
  3967. box-shadow:none;
  3968. font-size:12px;
  3969. line-height:30px;
  3970. }
  3971. #u214911 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:48px;
  3975. top:665px;
  3976. width:353px;
  3977. height:30px;
  3978. display:flex;
  3979. font-size:12px;
  3980. line-height:30px;
  3981. }
  3982. #u214911 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:5px 10px 5px 0px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u214911_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. }
  3994. #u214912_div {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:191px;
  4000. height:40px;
  4001. background:inherit;
  4002. background-color:rgba(255, 255, 255, 0);
  4003. border:none;
  4004. border-top:0px;
  4005. border-right:0px;
  4006. border-bottom:0px;
  4007. border-radius:0px;
  4008. border-top-left-radius:0px;
  4009. border-bottom-left-radius:0px;
  4010. -moz-box-shadow:none;
  4011. -webkit-box-shadow:none;
  4012. box-shadow:none;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:12px;
  4017. color:#D9001B;
  4018. line-height:30px;
  4019. }
  4020. #u214912 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:58px;
  4024. top:717px;
  4025. width:191px;
  4026. height:40px;
  4027. display:flex;
  4028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4029. font-weight:400;
  4030. font-style:normal;
  4031. font-size:12px;
  4032. color:#D9001B;
  4033. line-height:30px;
  4034. }
  4035. #u214912 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:5px 10px 5px 0px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u214912_text {
  4043. border-width:0px;
  4044. white-space:nowrap;
  4045. text-transform:none;
  4046. }
  4047. #u214913 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:0px;
  4053. height:0px;
  4054. }
  4055. #u214914_img {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:0px;
  4059. top:0px;
  4060. width:11px;
  4061. height:18px;
  4062. }
  4063. #u214914 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:957px;
  4067. top:80px;
  4068. width:11px;
  4069. height:18px;
  4070. display:flex;
  4071. }
  4072. #u214914 .text {
  4073. position:absolute;
  4074. align-self:center;
  4075. padding:2px 2px 2px 2px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u214914_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u214915_div {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:29px;
  4091. height:30px;
  4092. background:inherit;
  4093. background-color:rgba(255, 255, 255, 0);
  4094. border:none;
  4095. border-left:0px;
  4096. border-top:0px;
  4097. border-right:0px;
  4098. border-radius:0px;
  4099. border-bottom-right-radius:0px;
  4100. border-bottom-left-radius:0px;
  4101. -moz-box-shadow:none;
  4102. -webkit-box-shadow:none;
  4103. box-shadow:none;
  4104. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4105. font-weight:500;
  4106. font-style:normal;
  4107. font-size:14px;
  4108. line-height:30px;
  4109. }
  4110. #u214915 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:988px;
  4114. top:74px;
  4115. width:29px;
  4116. height:30px;
  4117. display:flex;
  4118. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4119. font-weight:500;
  4120. font-style:normal;
  4121. font-size:14px;
  4122. line-height:30px;
  4123. }
  4124. #u214915 .text {
  4125. position:absolute;
  4126. align-self:flex-start;
  4127. padding:0px 0px 0px 0px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u214915_text {
  4132. border-width:0px;
  4133. white-space:nowrap;
  4134. text-transform:none;
  4135. }
  4136. #u214916 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:0px;
  4142. height:0px;
  4143. }
  4144. #u214917_div {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:376px;
  4150. height:60px;
  4151. background:inherit;
  4152. background-color:rgba(255, 255, 255, 1);
  4153. border:none;
  4154. border-top:0px;
  4155. border-radius:22px;
  4156. border-top-left-radius:0px;
  4157. border-top-right-radius:0px;
  4158. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  4159. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  4160. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  4161. }
  4162. #u214917 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:947px;
  4166. top:778px;
  4167. width:376px;
  4168. height:60px;
  4169. display:flex;
  4170. }
  4171. #u214917 .text {
  4172. position:absolute;
  4173. align-self:center;
  4174. padding:2px 2px 2px 2px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u214917_text {
  4179. border-width:0px;
  4180. word-wrap:break-word;
  4181. text-transform:none;
  4182. visibility:hidden;
  4183. }
  4184. #u214918_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:334px;
  4190. height:40px;
  4191. background:inherit;
  4192. background-color:rgba(41, 143, 255, 1);
  4193. border:none;
  4194. border-radius:45px;
  4195. -moz-box-shadow:none;
  4196. -webkit-box-shadow:none;
  4197. box-shadow:none;
  4198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:14px;
  4202. color:#FFFFFF;
  4203. }
  4204. #u214918 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:970px;
  4208. top:788px;
  4209. width:334px;
  4210. height:40px;
  4211. display:flex;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:14px;
  4216. color:#FFFFFF;
  4217. }
  4218. #u214918 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u214918_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. }
  4230. #u214919 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:0px;
  4236. height:0px;
  4237. }
  4238. #u214920_div {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:0px;
  4242. top:0px;
  4243. width:375px;
  4244. height:154px;
  4245. background:inherit;
  4246. background-color:rgba(255, 255, 255, 1);
  4247. border:none;
  4248. border-left:0px;
  4249. border-top:0px;
  4250. border-right:0px;
  4251. border-radius:0px;
  4252. border-bottom-right-radius:0px;
  4253. border-bottom-left-radius:0px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. }
  4258. #u214920 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:947px;
  4262. top:108px;
  4263. width:375px;
  4264. height:154px;
  4265. display:flex;
  4266. }
  4267. #u214920 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 2px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u214920_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u214921_div {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:40px;
  4286. height:20px;
  4287. background:inherit;
  4288. background-color:rgba(242, 242, 242, 0);
  4289. border:none;
  4290. border-radius:29px;
  4291. -moz-box-shadow:none;
  4292. -webkit-box-shadow:none;
  4293. box-shadow:none;
  4294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:12px;
  4298. color:#00BFBF;
  4299. text-align:center;
  4300. line-height:20px;
  4301. }
  4302. #u214921 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:1252px;
  4306. top:123px;
  4307. width:40px;
  4308. height:20px;
  4309. display:flex;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:12px;
  4314. color:#00BFBF;
  4315. text-align:center;
  4316. line-height:20px;
  4317. }
  4318. #u214921 .text {
  4319. position:absolute;
  4320. align-self:flex-start;
  4321. padding:0px 0px 0px 0px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u214921_text {
  4326. border-width:0px;
  4327. word-wrap:break-word;
  4328. text-transform:none;
  4329. }
  4330. #u214922_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:6px;
  4336. height:10px;
  4337. }
  4338. #u214922 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:1299px;
  4342. top:128px;
  4343. width:6px;
  4344. height:10px;
  4345. display:flex;
  4346. -webkit-transform:rotate(270deg);
  4347. -moz-transform:rotate(270deg);
  4348. -ms-transform:rotate(270deg);
  4349. transform:rotate(270deg);
  4350. }
  4351. #u214922 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 2px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u214922_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u214923_div {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:81px;
  4370. height:40px;
  4371. background:inherit;
  4372. background-color:rgba(255, 255, 255, 0);
  4373. border:none;
  4374. border-top:0px;
  4375. border-right:0px;
  4376. border-bottom:0px;
  4377. border-radius:0px;
  4378. border-top-left-radius:0px;
  4379. border-bottom-left-radius:0px;
  4380. -moz-box-shadow:none;
  4381. -webkit-box-shadow:none;
  4382. box-shadow:none;
  4383. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4384. font-weight:500;
  4385. font-style:normal;
  4386. font-size:14px;
  4387. line-height:30px;
  4388. }
  4389. #u214923 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:957px;
  4393. top:113px;
  4394. width:81px;
  4395. height:40px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4398. font-weight:500;
  4399. font-style:normal;
  4400. font-size:14px;
  4401. line-height:30px;
  4402. }
  4403. #u214923 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:5px 10px 5px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u214923_text {
  4411. border-width:0px;
  4412. white-space:nowrap;
  4413. text-transform:none;
  4414. }
  4415. #u214924_div {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:109px;
  4421. height:17px;
  4422. background:inherit;
  4423. background-color:rgba(255, 255, 255, 0);
  4424. border:none;
  4425. border-left:0px;
  4426. border-top:0px;
  4427. border-right:0px;
  4428. border-radius:0px;
  4429. border-bottom-right-radius:0px;
  4430. border-bottom-left-radius:0px;
  4431. -moz-box-shadow:none;
  4432. -webkit-box-shadow:none;
  4433. box-shadow:none;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:12px;
  4438. color:#298FFF;
  4439. }
  4440. #u214924 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:957px;
  4444. top:148px;
  4445. width:109px;
  4446. height:17px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:12px;
  4452. color:#298FFF;
  4453. }
  4454. #u214924 .text {
  4455. position:absolute;
  4456. align-self:flex-start;
  4457. padding:0px 0px 0px 0px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u214924_text {
  4462. border-width:0px;
  4463. white-space:nowrap;
  4464. text-transform:none;
  4465. }
  4466. #u214925_div {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:201px;
  4472. height:25px;
  4473. background:inherit;
  4474. background-color:rgba(255, 255, 255, 0);
  4475. border:none;
  4476. border-left:0px;
  4477. border-top:0px;
  4478. border-right:0px;
  4479. border-radius:0px;
  4480. border-bottom-right-radius:0px;
  4481. border-bottom-left-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:12px;
  4489. line-height:25px;
  4490. }
  4491. #u214925 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:957px;
  4495. top:175px;
  4496. width:201px;
  4497. height:25px;
  4498. display:flex;
  4499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:12px;
  4503. line-height:25px;
  4504. }
  4505. #u214925 .text {
  4506. position:absolute;
  4507. align-self:flex-start;
  4508. padding:0px 0px 0px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u214925_text {
  4513. border-width:0px;
  4514. white-space:nowrap;
  4515. text-transform:none;
  4516. }
  4517. #u214926_div {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:115px;
  4523. height:25px;
  4524. background:inherit;
  4525. background-color:rgba(255, 255, 255, 0);
  4526. border:none;
  4527. border-left:0px;
  4528. border-top:0px;
  4529. border-right:0px;
  4530. border-radius:0px;
  4531. border-bottom-right-radius:0px;
  4532. border-bottom-left-radius:0px;
  4533. -moz-box-shadow:none;
  4534. -webkit-box-shadow:none;
  4535. box-shadow:none;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:12px;
  4540. line-height:25px;
  4541. }
  4542. #u214926 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:957px;
  4546. top:200px;
  4547. width:115px;
  4548. height:25px;
  4549. display:flex;
  4550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:12px;
  4554. line-height:25px;
  4555. }
  4556. #u214926 .text {
  4557. position:absolute;
  4558. align-self:flex-start;
  4559. padding:0px 0px 0px 0px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u214926_text {
  4564. border-width:0px;
  4565. white-space:nowrap;
  4566. text-transform:none;
  4567. }
  4568. #u214927_div {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:109px;
  4574. height:25px;
  4575. background:inherit;
  4576. background-color:rgba(255, 255, 255, 0);
  4577. border:none;
  4578. border-left:0px;
  4579. border-top:0px;
  4580. border-right:0px;
  4581. border-radius:0px;
  4582. border-bottom-right-radius:0px;
  4583. border-bottom-left-radius:0px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:12px;
  4591. line-height:25px;
  4592. }
  4593. #u214927 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:957px;
  4597. top:225px;
  4598. width:109px;
  4599. height:25px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:12px;
  4605. line-height:25px;
  4606. }
  4607. #u214927 .text {
  4608. position:absolute;
  4609. align-self:flex-start;
  4610. padding:0px 0px 0px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u214927_text {
  4615. border-width:0px;
  4616. white-space:nowrap;
  4617. text-transform:none;
  4618. }
  4619. #u214928 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:0px;
  4625. height:0px;
  4626. }
  4627. #u214929_div {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:375px;
  4633. height:387px;
  4634. background:inherit;
  4635. background-color:rgba(255, 255, 255, 1);
  4636. box-sizing:border-box;
  4637. border-width:1px;
  4638. border-style:solid;
  4639. border-color:rgba(215, 215, 215, 1);
  4640. border-left:0px;
  4641. border-top:0px;
  4642. border-right:0px;
  4643. border-radius:0px;
  4644. border-bottom-right-radius:0px;
  4645. border-bottom-left-radius:0px;
  4646. -moz-box-shadow:none;
  4647. -webkit-box-shadow:none;
  4648. box-shadow:none;
  4649. }
  4650. #u214929 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:492px;
  4654. top:108px;
  4655. width:375px;
  4656. height:387px;
  4657. display:flex;
  4658. }
  4659. #u214929 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:2px 2px 2px 2px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u214929_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. visibility:hidden;
  4671. }
  4672. #u214930_div {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:353px;
  4678. height:30px;
  4679. background:inherit;
  4680. background-color:rgba(255, 255, 255, 0);
  4681. border:none;
  4682. border-top:0px;
  4683. border-right:0px;
  4684. border-bottom:0px;
  4685. border-radius:0px;
  4686. border-top-left-radius:0px;
  4687. border-bottom-left-radius:0px;
  4688. -moz-box-shadow:none;
  4689. -webkit-box-shadow:none;
  4690. box-shadow:none;
  4691. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4692. font-weight:500;
  4693. font-style:normal;
  4694. font-size:14px;
  4695. line-height:30px;
  4696. }
  4697. #u214930 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:505px;
  4701. top:118px;
  4702. width:353px;
  4703. height:30px;
  4704. display:flex;
  4705. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4706. font-weight:500;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. line-height:30px;
  4710. }
  4711. #u214930 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:5px 10px 5px 0px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u214930_text {
  4719. border-width:0px;
  4720. word-wrap:break-word;
  4721. text-transform:none;
  4722. }
  4723. #u214931_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:40px;
  4729. height:20px;
  4730. background:inherit;
  4731. background-color:rgba(242, 242, 242, 0);
  4732. border:none;
  4733. border-radius:29px;
  4734. -moz-box-shadow:none;
  4735. -webkit-box-shadow:none;
  4736. box-shadow:none;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:12px;
  4741. color:#298FFF;
  4742. text-align:center;
  4743. line-height:20px;
  4744. }
  4745. #u214931 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:797px;
  4749. top:123px;
  4750. width:40px;
  4751. height:20px;
  4752. display:flex;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:12px;
  4757. color:#298FFF;
  4758. text-align:center;
  4759. line-height:20px;
  4760. }
  4761. #u214931 .text {
  4762. position:absolute;
  4763. align-self:flex-start;
  4764. padding:0px 0px 0px 0px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u214931_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. }
  4773. #u214932_div {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:109px;
  4779. height:25px;
  4780. background:inherit;
  4781. background-color:rgba(255, 255, 255, 0);
  4782. border:none;
  4783. border-left:0px;
  4784. border-top:0px;
  4785. border-right:0px;
  4786. border-radius:0px;
  4787. border-bottom-right-radius:0px;
  4788. border-bottom-left-radius:0px;
  4789. -moz-box-shadow:none;
  4790. -webkit-box-shadow:none;
  4791. box-shadow:none;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:12px;
  4796. color:#298FFF;
  4797. line-height:25px;
  4798. }
  4799. #u214932 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:505px;
  4803. top:144px;
  4804. width:109px;
  4805. height:25px;
  4806. display:flex;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:12px;
  4811. color:#298FFF;
  4812. line-height:25px;
  4813. }
  4814. #u214932 .text {
  4815. position:absolute;
  4816. align-self:flex-start;
  4817. padding:0px 0px 0px 0px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u214932_text {
  4822. border-width:0px;
  4823. white-space:nowrap;
  4824. text-transform:none;
  4825. }
  4826. #u214933 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:0px;
  4832. height:0px;
  4833. }
  4834. #u214934_div {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:330px;
  4840. height:90px;
  4841. background:inherit;
  4842. background-color:rgba(242, 242, 242, 1);
  4843. border:none;
  4844. border-radius:6px;
  4845. -moz-box-shadow:none;
  4846. -webkit-box-shadow:none;
  4847. box-shadow:none;
  4848. }
  4849. #u214934 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:505px;
  4853. top:285px;
  4854. width:330px;
  4855. height:90px;
  4856. display:flex;
  4857. }
  4858. #u214934 .text {
  4859. position:absolute;
  4860. align-self:center;
  4861. padding:2px 2px 2px 2px;
  4862. box-sizing:border-box;
  4863. width:100%;
  4864. }
  4865. #u214934_text {
  4866. border-width:0px;
  4867. word-wrap:break-word;
  4868. text-transform:none;
  4869. visibility:hidden;
  4870. }
  4871. #u214935_div {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:108px;
  4877. height:30px;
  4878. background:inherit;
  4879. background-color:rgba(255, 255, 255, 0);
  4880. border:none;
  4881. border-left:0px;
  4882. border-top:0px;
  4883. border-right:0px;
  4884. border-radius:0px;
  4885. border-bottom-right-radius:0px;
  4886. border-bottom-left-radius:0px;
  4887. -moz-box-shadow:none;
  4888. -webkit-box-shadow:none;
  4889. box-shadow:none;
  4890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:14px;
  4894. line-height:30px;
  4895. }
  4896. #u214935 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:521px;
  4900. top:300px;
  4901. width:108px;
  4902. height:30px;
  4903. display:flex;
  4904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:14px;
  4908. line-height:30px;
  4909. }
  4910. #u214935 .text {
  4911. position:absolute;
  4912. align-self:flex-start;
  4913. padding:0px 0px 0px 0px;
  4914. box-sizing:border-box;
  4915. width:100%;
  4916. }
  4917. #u214935_text {
  4918. border-width:0px;
  4919. white-space:nowrap;
  4920. text-transform:none;
  4921. }
  4922. #u214936_div {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:0px;
  4926. top:0px;
  4927. width:105px;
  4928. height:25px;
  4929. background:inherit;
  4930. background-color:rgba(255, 255, 255, 0);
  4931. border:none;
  4932. border-left:0px;
  4933. border-top:0px;
  4934. border-right:0px;
  4935. border-radius:0px;
  4936. border-bottom-right-radius:0px;
  4937. border-bottom-left-radius:0px;
  4938. -moz-box-shadow:none;
  4939. -webkit-box-shadow:none;
  4940. box-shadow:none;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. font-size:12px;
  4945. line-height:25px;
  4946. }
  4947. #u214936 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:521px;
  4951. top:335px;
  4952. width:105px;
  4953. height:25px;
  4954. display:flex;
  4955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4956. font-weight:400;
  4957. font-style:normal;
  4958. font-size:12px;
  4959. line-height:25px;
  4960. }
  4961. #u214936 .text {
  4962. position:absolute;
  4963. align-self:flex-start;
  4964. padding:0px 0px 0px 0px;
  4965. box-sizing:border-box;
  4966. width:100%;
  4967. }
  4968. #u214936_text {
  4969. border-width:0px;
  4970. white-space:nowrap;
  4971. text-transform:none;
  4972. }
  4973. #u214937_img {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:68px;
  4979. height:64px;
  4980. }
  4981. #u214937 {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:757px;
  4985. top:300px;
  4986. width:68px;
  4987. height:64px;
  4988. display:flex;
  4989. }
  4990. #u214937 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:2px 2px 2px 2px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u214937_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. visibility:hidden;
  5002. }
  5003. #u214938 {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:0px;
  5009. height:0px;
  5010. }
  5011. #u214939_div {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:330px;
  5017. height:90px;
  5018. background:inherit;
  5019. background-color:rgba(242, 242, 242, 1);
  5020. border:none;
  5021. border-radius:6px;
  5022. -moz-box-shadow:none;
  5023. -webkit-box-shadow:none;
  5024. box-shadow:none;
  5025. }
  5026. #u214939 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:505px;
  5030. top:385px;
  5031. width:330px;
  5032. height:90px;
  5033. display:flex;
  5034. }
  5035. #u214939 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:2px 2px 2px 2px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u214939_text {
  5043. border-width:0px;
  5044. word-wrap:break-word;
  5045. text-transform:none;
  5046. visibility:hidden;
  5047. }
  5048. #u214940_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:85px;
  5054. height:30px;
  5055. background:inherit;
  5056. background-color:rgba(255, 255, 255, 0);
  5057. border:none;
  5058. border-left:0px;
  5059. border-top:0px;
  5060. border-right:0px;
  5061. border-radius:0px;
  5062. border-bottom-right-radius:0px;
  5063. border-bottom-left-radius:0px;
  5064. -moz-box-shadow:none;
  5065. -webkit-box-shadow:none;
  5066. box-shadow:none;
  5067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5068. font-weight:400;
  5069. font-style:normal;
  5070. font-size:14px;
  5071. line-height:30px;
  5072. }
  5073. #u214940 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:521px;
  5077. top:400px;
  5078. width:85px;
  5079. height:30px;
  5080. display:flex;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. line-height:30px;
  5086. }
  5087. #u214940 .text {
  5088. position:absolute;
  5089. align-self:flex-start;
  5090. padding:0px 0px 0px 0px;
  5091. box-sizing:border-box;
  5092. width:100%;
  5093. }
  5094. #u214940_text {
  5095. border-width:0px;
  5096. white-space:nowrap;
  5097. text-transform:none;
  5098. }
  5099. #u214941_div {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:187px;
  5105. height:25px;
  5106. background:inherit;
  5107. background-color:rgba(255, 255, 255, 0);
  5108. border:none;
  5109. border-left:0px;
  5110. border-top:0px;
  5111. border-right:0px;
  5112. border-radius:0px;
  5113. border-bottom-right-radius:0px;
  5114. border-bottom-left-radius:0px;
  5115. -moz-box-shadow:none;
  5116. -webkit-box-shadow:none;
  5117. box-shadow:none;
  5118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5119. font-weight:400;
  5120. font-style:normal;
  5121. font-size:12px;
  5122. line-height:25px;
  5123. }
  5124. #u214941 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:521px;
  5128. top:435px;
  5129. width:187px;
  5130. height:25px;
  5131. display:flex;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:12px;
  5136. line-height:25px;
  5137. }
  5138. #u214941 .text {
  5139. position:absolute;
  5140. align-self:flex-start;
  5141. padding:0px 0px 0px 0px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u214941_text {
  5146. border-width:0px;
  5147. white-space:nowrap;
  5148. text-transform:none;
  5149. }
  5150. #u214942_img {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:68px;
  5156. height:68px;
  5157. }
  5158. #u214942 {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:757px;
  5162. top:396px;
  5163. width:68px;
  5164. height:68px;
  5165. display:flex;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. }
  5170. #u214942 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 2px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u214942_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. }
  5182. #u214943_img {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:6px;
  5188. height:10px;
  5189. }
  5190. #u214943 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:844px;
  5194. top:128px;
  5195. width:6px;
  5196. height:10px;
  5197. display:flex;
  5198. -webkit-transform:rotate(90deg);
  5199. -moz-transform:rotate(90deg);
  5200. -ms-transform:rotate(90deg);
  5201. transform:rotate(90deg);
  5202. }
  5203. #u214943 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 2px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u214943_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. visibility:hidden;
  5215. }
  5216. #u214944_div {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:181px;
  5222. height:25px;
  5223. background:inherit;
  5224. background-color:rgba(255, 255, 255, 0);
  5225. border:none;
  5226. border-left:0px;
  5227. border-top:0px;
  5228. border-right:0px;
  5229. border-radius:0px;
  5230. border-bottom-right-radius:0px;
  5231. border-bottom-left-radius:0px;
  5232. -moz-box-shadow:none;
  5233. -webkit-box-shadow:none;
  5234. box-shadow:none;
  5235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5236. font-weight:400;
  5237. font-style:normal;
  5238. font-size:12px;
  5239. line-height:25px;
  5240. }
  5241. #u214944 {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:505px;
  5245. top:250px;
  5246. width:181px;
  5247. height:25px;
  5248. display:flex;
  5249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:12px;
  5253. line-height:25px;
  5254. }
  5255. #u214944 .text {
  5256. position:absolute;
  5257. align-self:flex-start;
  5258. padding:0px 0px 0px 0px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u214944_text {
  5263. border-width:0px;
  5264. white-space:nowrap;
  5265. text-transform:none;
  5266. }
  5267. #u214945_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:201px;
  5273. height:25px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 0);
  5276. border:none;
  5277. border-left:0px;
  5278. border-top:0px;
  5279. border-right:0px;
  5280. border-radius:0px;
  5281. border-bottom-right-radius:0px;
  5282. border-bottom-left-radius:0px;
  5283. -moz-box-shadow:none;
  5284. -webkit-box-shadow:none;
  5285. box-shadow:none;
  5286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:12px;
  5290. line-height:25px;
  5291. }
  5292. #u214945 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:505px;
  5296. top:175px;
  5297. width:201px;
  5298. height:25px;
  5299. display:flex;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:12px;
  5304. line-height:25px;
  5305. }
  5306. #u214945 .text {
  5307. position:absolute;
  5308. align-self:flex-start;
  5309. padding:0px 0px 0px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u214945_text {
  5314. border-width:0px;
  5315. white-space:nowrap;
  5316. text-transform:none;
  5317. }
  5318. #u214946_div {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:115px;
  5324. height:25px;
  5325. background:inherit;
  5326. background-color:rgba(255, 255, 255, 0);
  5327. border:none;
  5328. border-left:0px;
  5329. border-top:0px;
  5330. border-right:0px;
  5331. border-radius:0px;
  5332. border-bottom-right-radius:0px;
  5333. border-bottom-left-radius:0px;
  5334. -moz-box-shadow:none;
  5335. -webkit-box-shadow:none;
  5336. box-shadow:none;
  5337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:12px;
  5341. line-height:25px;
  5342. }
  5343. #u214946 {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:505px;
  5347. top:200px;
  5348. width:115px;
  5349. height:25px;
  5350. display:flex;
  5351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:12px;
  5355. line-height:25px;
  5356. }
  5357. #u214946 .text {
  5358. position:absolute;
  5359. align-self:flex-start;
  5360. padding:0px 0px 0px 0px;
  5361. box-sizing:border-box;
  5362. width:100%;
  5363. }
  5364. #u214946_text {
  5365. border-width:0px;
  5366. white-space:nowrap;
  5367. text-transform:none;
  5368. }
  5369. #u214947_div {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:109px;
  5375. height:25px;
  5376. background:inherit;
  5377. background-color:rgba(255, 255, 255, 0);
  5378. border:none;
  5379. border-left:0px;
  5380. border-top:0px;
  5381. border-right:0px;
  5382. border-radius:0px;
  5383. border-bottom-right-radius:0px;
  5384. border-bottom-left-radius:0px;
  5385. -moz-box-shadow:none;
  5386. -webkit-box-shadow:none;
  5387. box-shadow:none;
  5388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:12px;
  5392. line-height:25px;
  5393. }
  5394. #u214947 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:505px;
  5398. top:225px;
  5399. width:109px;
  5400. height:25px;
  5401. display:flex;
  5402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:12px;
  5406. line-height:25px;
  5407. }
  5408. #u214947 .text {
  5409. position:absolute;
  5410. align-self:flex-start;
  5411. padding:0px 0px 0px 0px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u214947_text {
  5416. border-width:0px;
  5417. white-space:nowrap;
  5418. text-transform:none;
  5419. }
  5420. #u214948_div {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:0px;
  5425. width:67px;
  5426. height:40px;
  5427. background:inherit;
  5428. background-color:rgba(255, 255, 255, 0);
  5429. border:none;
  5430. border-top:0px;
  5431. border-right:0px;
  5432. border-bottom:0px;
  5433. border-radius:0px;
  5434. border-top-left-radius:0px;
  5435. border-bottom-left-radius:0px;
  5436. -moz-box-shadow:none;
  5437. -webkit-box-shadow:none;
  5438. box-shadow:none;
  5439. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5440. font-weight:500;
  5441. font-style:normal;
  5442. font-size:14px;
  5443. line-height:30px;
  5444. }
  5445. #u214948 {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:971px;
  5449. top:480px;
  5450. width:67px;
  5451. height:40px;
  5452. display:flex;
  5453. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5454. font-weight:500;
  5455. font-style:normal;
  5456. font-size:14px;
  5457. line-height:30px;
  5458. }
  5459. #u214948 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:5px 10px 5px 0px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u214948_text {
  5467. border-width:0px;
  5468. white-space:nowrap;
  5469. text-transform:none;
  5470. }
  5471. #u214949_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:59px;
  5477. height:40px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 0);
  5480. border:none;
  5481. border-top:0px;
  5482. border-right:0px;
  5483. border-bottom:0px;
  5484. border-radius:0px;
  5485. border-top-left-radius:0px;
  5486. border-bottom-left-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:12px;
  5494. line-height:30px;
  5495. }
  5496. #u214949 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:977px;
  5500. top:507px;
  5501. width:59px;
  5502. height:40px;
  5503. display:flex;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:12px;
  5508. line-height:30px;
  5509. }
  5510. #u214949 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:5px 10px 5px 0px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u214949_text {
  5518. border-width:0px;
  5519. white-space:nowrap;
  5520. text-transform:none;
  5521. }
  5522. #u214950_div {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:148px;
  5528. height:40px;
  5529. background:inherit;
  5530. background-color:rgba(255, 255, 255, 0);
  5531. border:none;
  5532. border-top:0px;
  5533. border-right:0px;
  5534. border-bottom:0px;
  5535. border-radius:0px;
  5536. border-top-left-radius:0px;
  5537. border-bottom-left-radius:0px;
  5538. -moz-box-shadow:none;
  5539. -webkit-box-shadow:none;
  5540. box-shadow:none;
  5541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. font-size:12px;
  5545. line-height:30px;
  5546. }
  5547. #u214950 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:987px;
  5551. top:540px;
  5552. width:148px;
  5553. height:40px;
  5554. display:flex;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:12px;
  5559. line-height:30px;
  5560. }
  5561. #u214950 .text {
  5562. position:absolute;
  5563. align-self:center;
  5564. padding:5px 10px 5px 0px;
  5565. box-sizing:border-box;
  5566. width:100%;
  5567. }
  5568. #u214950_text {
  5569. border-width:0px;
  5570. white-space:nowrap;
  5571. text-transform:none;
  5572. }
  5573. #u214951_div {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:59px;
  5579. height:40px;
  5580. background:inherit;
  5581. background-color:rgba(255, 255, 255, 0);
  5582. border:none;
  5583. border-top:0px;
  5584. border-right:0px;
  5585. border-bottom:0px;
  5586. border-radius:0px;
  5587. border-top-left-radius:0px;
  5588. border-bottom-left-radius:0px;
  5589. -moz-box-shadow:none;
  5590. -webkit-box-shadow:none;
  5591. box-shadow:none;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:12px;
  5596. line-height:30px;
  5597. }
  5598. #u214951 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:977px;
  5602. top:570px;
  5603. width:59px;
  5604. height:40px;
  5605. display:flex;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:12px;
  5610. line-height:30px;
  5611. }
  5612. #u214951 .text {
  5613. position:absolute;
  5614. align-self:center;
  5615. padding:5px 10px 5px 0px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u214951_text {
  5620. border-width:0px;
  5621. white-space:nowrap;
  5622. text-transform:none;
  5623. }
  5624. #u214952_div {
  5625. border-width:0px;
  5626. position:absolute;
  5627. left:0px;
  5628. top:0px;
  5629. width:205px;
  5630. height:40px;
  5631. background:inherit;
  5632. background-color:rgba(255, 255, 255, 0);
  5633. border:none;
  5634. border-top:0px;
  5635. border-right:0px;
  5636. border-bottom:0px;
  5637. border-radius:0px;
  5638. border-top-left-radius:0px;
  5639. border-bottom-left-radius:0px;
  5640. -moz-box-shadow:none;
  5641. -webkit-box-shadow:none;
  5642. box-shadow:none;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:12px;
  5647. line-height:30px;
  5648. }
  5649. #u214952 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:987px;
  5653. top:600px;
  5654. width:205px;
  5655. height:40px;
  5656. display:flex;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:12px;
  5661. line-height:30px;
  5662. }
  5663. #u214952 .text {
  5664. position:absolute;
  5665. align-self:center;
  5666. padding:5px 10px 5px 0px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u214952_text {
  5671. border-width:0px;
  5672. white-space:nowrap;
  5673. text-transform:none;
  5674. }
  5675. #u214953_div {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:353px;
  5681. height:30px;
  5682. background:inherit;
  5683. background-color:rgba(255, 255, 255, 0);
  5684. border:none;
  5685. border-top:0px;
  5686. border-right:0px;
  5687. border-bottom:0px;
  5688. border-radius:0px;
  5689. border-top-left-radius:0px;
  5690. border-bottom-left-radius:0px;
  5691. -moz-box-shadow:none;
  5692. -webkit-box-shadow:none;
  5693. box-shadow:none;
  5694. font-size:12px;
  5695. line-height:30px;
  5696. }
  5697. #u214953 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:977px;
  5701. top:635px;
  5702. width:353px;
  5703. height:30px;
  5704. display:flex;
  5705. font-size:12px;
  5706. line-height:30px;
  5707. }
  5708. #u214953 .text {
  5709. position:absolute;
  5710. align-self:center;
  5711. padding:5px 10px 5px 0px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u214953_text {
  5716. border-width:0px;
  5717. word-wrap:break-word;
  5718. text-transform:none;
  5719. }
  5720. #u214955_img {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:433px;
  5726. height:865px;
  5727. }
  5728. #u214955 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:1371px;
  5732. top:0px;
  5733. width:433px;
  5734. height:865px;
  5735. display:flex;
  5736. }
  5737. #u214955 .text {
  5738. position:absolute;
  5739. align-self:center;
  5740. padding:2px 2px 2px 2px;
  5741. box-sizing:border-box;
  5742. width:100%;
  5743. }
  5744. #u214955_text {
  5745. border-width:0px;
  5746. word-wrap:break-word;
  5747. text-transform:none;
  5748. visibility:hidden;
  5749. }
  5750. #u214956_div {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:375px;
  5756. height:40px;
  5757. background:inherit;
  5758. background-color:rgba(255, 255, 255, 1);
  5759. box-sizing:border-box;
  5760. border-width:1px;
  5761. border-style:solid;
  5762. border-color:rgba(215, 215, 215, 1);
  5763. border-left:0px;
  5764. border-top:0px;
  5765. border-right:0px;
  5766. border-radius:0px;
  5767. border-bottom-right-radius:0px;
  5768. border-bottom-left-radius:0px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. }
  5773. #u214956 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:1400px;
  5777. top:67px;
  5778. width:375px;
  5779. height:40px;
  5780. display:flex;
  5781. }
  5782. #u214956 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 2px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u214956_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u214957 {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:0px;
  5801. height:0px;
  5802. }
  5803. #u214958_div {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:88px;
  5809. height:32px;
  5810. background:inherit;
  5811. background-color:rgba(255, 255, 255, 1);
  5812. box-sizing:border-box;
  5813. border-width:1px;
  5814. border-style:solid;
  5815. border-color:rgba(242, 242, 242, 1);
  5816. border-radius:33px;
  5817. -moz-box-shadow:none;
  5818. -webkit-box-shadow:none;
  5819. box-shadow:none;
  5820. }
  5821. #u214958 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:1680px;
  5825. top:71px;
  5826. width:88px;
  5827. height:32px;
  5828. display:flex;
  5829. }
  5830. #u214958 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 2px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u214958_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u214959 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:0px;
  5849. height:0px;
  5850. }
  5851. #u214960_img {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:0px;
  5855. top:0px;
  5856. width:18px;
  5857. height:18px;
  5858. }
  5859. #u214960 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:1743px;
  5863. top:78px;
  5864. width:18px;
  5865. height:18px;
  5866. display:flex;
  5867. }
  5868. #u214960 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 2px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u214960_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u214961_img {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:6px;
  5887. height:6px;
  5888. }
  5889. #u214961 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:1749px;
  5893. top:84px;
  5894. width:6px;
  5895. height:6px;
  5896. display:flex;
  5897. }
  5898. #u214961 .text {
  5899. position:absolute;
  5900. align-self:center;
  5901. padding:2px 2px 2px 2px;
  5902. box-sizing:border-box;
  5903. width:100%;
  5904. }
  5905. #u214961_text {
  5906. border-width:0px;
  5907. word-wrap:break-word;
  5908. text-transform:none;
  5909. visibility:hidden;
  5910. }
  5911. #u214962 {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:0px;
  5917. height:0px;
  5918. }
  5919. #u214963_img {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:5px;
  5925. height:5px;
  5926. }
  5927. #u214963 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:1694px;
  5931. top:85px;
  5932. width:5px;
  5933. height:5px;
  5934. display:flex;
  5935. }
  5936. #u214963 .text {
  5937. position:absolute;
  5938. align-self:center;
  5939. padding:2px 2px 2px 2px;
  5940. box-sizing:border-box;
  5941. width:100%;
  5942. }
  5943. #u214963_text {
  5944. border-width:0px;
  5945. word-wrap:break-word;
  5946. text-transform:none;
  5947. visibility:hidden;
  5948. }
  5949. #u214964_img {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:5px;
  5955. height:5px;
  5956. }
  5957. #u214964 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:1710px;
  5961. top:85px;
  5962. width:5px;
  5963. height:5px;
  5964. display:flex;
  5965. }
  5966. #u214964 .text {
  5967. position:absolute;
  5968. align-self:center;
  5969. padding:2px 2px 2px 2px;
  5970. box-sizing:border-box;
  5971. width:100%;
  5972. }
  5973. #u214964_text {
  5974. border-width:0px;
  5975. word-wrap:break-word;
  5976. text-transform:none;
  5977. visibility:hidden;
  5978. }
  5979. #u214965_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:7px;
  5985. height:7px;
  5986. }
  5987. #u214965 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:1701px;
  5991. top:84px;
  5992. width:7px;
  5993. height:7px;
  5994. display:flex;
  5995. }
  5996. #u214965 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:2px 2px 2px 2px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u214965_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. visibility:hidden;
  6008. }
  6009. #u214966_img {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:0px;
  6013. top:0px;
  6014. width:19px;
  6015. height:2px;
  6016. }
  6017. #u214966 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:1718px;
  6021. top:87px;
  6022. width:18px;
  6023. height:1px;
  6024. display:flex;
  6025. -webkit-transform:rotate(90deg);
  6026. -moz-transform:rotate(90deg);
  6027. -ms-transform:rotate(90deg);
  6028. transform:rotate(90deg);
  6029. }
  6030. #u214966 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:2px 2px 2px 2px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u214966_text {
  6038. border-width:0px;
  6039. word-wrap:break-word;
  6040. text-transform:none;
  6041. visibility:hidden;
  6042. }
  6043. #u214967_img {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:375px;
  6049. height:44px;
  6050. }
  6051. #u214967 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:1400px;
  6055. top:24px;
  6056. width:375px;
  6057. height:44px;
  6058. display:flex;
  6059. }
  6060. #u214967 .text {
  6061. position:absolute;
  6062. align-self:center;
  6063. padding:2px 2px 2px 2px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u214967_text {
  6068. border-width:0px;
  6069. word-wrap:break-word;
  6070. text-transform:none;
  6071. visibility:hidden;
  6072. }
  6073. #u214968_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:375px;
  6079. height:50px;
  6080. background:inherit;
  6081. background-color:rgba(255, 255, 255, 1);
  6082. box-sizing:border-box;
  6083. border-width:1px;
  6084. border-style:solid;
  6085. border-color:rgba(242, 242, 242, 1);
  6086. border-radius:26px;
  6087. border-top-left-radius:0px;
  6088. border-top-right-radius:0px;
  6089. -moz-box-shadow:none;
  6090. -webkit-box-shadow:none;
  6091. box-shadow:none;
  6092. }
  6093. #u214968 {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:1400px;
  6097. top:788px;
  6098. width:375px;
  6099. height:50px;
  6100. display:flex;
  6101. }
  6102. #u214968 .text {
  6103. position:absolute;
  6104. align-self:center;
  6105. padding:2px 2px 2px 2px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u214968_text {
  6110. border-width:0px;
  6111. word-wrap:break-word;
  6112. text-transform:none;
  6113. visibility:hidden;
  6114. }
  6115. #u214969 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:0px;
  6121. height:0px;
  6122. }
  6123. #u214970_img {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:24px;
  6129. height:24px;
  6130. }
  6131. #u214970 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:1440px;
  6135. top:792px;
  6136. width:24px;
  6137. height:24px;
  6138. display:flex;
  6139. font-size:8px;
  6140. }
  6141. #u214970 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 2px 2px 2px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u214970_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. }
  6153. #u214971_div {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:25px;
  6159. height:17px;
  6160. background:inherit;
  6161. background-color:rgba(255, 255, 255, 0);
  6162. border:none;
  6163. border-radius:0px;
  6164. -moz-box-shadow:none;
  6165. -webkit-box-shadow:none;
  6166. box-shadow:none;
  6167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6168. font-weight:400;
  6169. font-style:normal;
  6170. font-size:12px;
  6171. }
  6172. #u214971 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:1440px;
  6176. top:817px;
  6177. width:25px;
  6178. height:17px;
  6179. display:flex;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:12px;
  6184. }
  6185. #u214971 .text {
  6186. position:absolute;
  6187. align-self:flex-start;
  6188. padding:0px 0px 0px 0px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u214971_text {
  6193. border-width:0px;
  6194. white-space:nowrap;
  6195. text-transform:none;
  6196. }
  6197. #u214972 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:0px;
  6203. height:0px;
  6204. }
  6205. #u214973_img {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:0px;
  6209. top:0px;
  6210. width:24px;
  6211. height:24px;
  6212. }
  6213. #u214973 {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:1710px;
  6217. top:794px;
  6218. width:24px;
  6219. height:24px;
  6220. display:flex;
  6221. font-size:8px;
  6222. }
  6223. #u214973 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:2px 2px 2px 2px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u214973_text {
  6231. border-width:0px;
  6232. word-wrap:break-word;
  6233. text-transform:none;
  6234. }
  6235. #u214974_div {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:25px;
  6241. height:17px;
  6242. background:inherit;
  6243. background-color:rgba(255, 255, 255, 0);
  6244. border:none;
  6245. border-radius:0px;
  6246. -moz-box-shadow:none;
  6247. -webkit-box-shadow:none;
  6248. box-shadow:none;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:12px;
  6253. }
  6254. #u214974 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:1710px;
  6258. top:819px;
  6259. width:25px;
  6260. height:17px;
  6261. display:flex;
  6262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:12px;
  6266. }
  6267. #u214974 .text {
  6268. position:absolute;
  6269. align-self:flex-start;
  6270. padding:0px 0px 0px 0px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u214974_text {
  6275. border-width:0px;
  6276. white-space:nowrap;
  6277. text-transform:none;
  6278. }
  6279. #u214975_div {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:375px;
  6285. height:681px;
  6286. background:inherit;
  6287. background-color:rgba(242, 242, 242, 0.462745098039216);
  6288. border:none;
  6289. border-radius:0px;
  6290. -moz-box-shadow:none;
  6291. -webkit-box-shadow:none;
  6292. box-shadow:none;
  6293. }
  6294. #u214975 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:1400px;
  6298. top:107px;
  6299. width:375px;
  6300. height:681px;
  6301. display:flex;
  6302. }
  6303. #u214975 .text {
  6304. position:absolute;
  6305. align-self:center;
  6306. padding:2px 2px 2px 2px;
  6307. box-sizing:border-box;
  6308. width:100%;
  6309. }
  6310. #u214975_text {
  6311. border-width:0px;
  6312. word-wrap:break-word;
  6313. text-transform:none;
  6314. visibility:hidden;
  6315. }
  6316. #u214976 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:0px;
  6322. height:0px;
  6323. }
  6324. #u214977_img {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:24px;
  6330. height:24px;
  6331. }
  6332. #u214977 {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:1622px;
  6336. top:792px;
  6337. width:24px;
  6338. height:24px;
  6339. display:flex;
  6340. font-size:8px;
  6341. }
  6342. #u214977 .text {
  6343. position:absolute;
  6344. align-self:center;
  6345. padding:2px 2px 2px 2px;
  6346. box-sizing:border-box;
  6347. width:100%;
  6348. }
  6349. #u214977_text {
  6350. border-width:0px;
  6351. word-wrap:break-word;
  6352. text-transform:none;
  6353. }
  6354. #u214978_div {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:37px;
  6360. height:17px;
  6361. background:inherit;
  6362. background-color:rgba(255, 255, 255, 0);
  6363. border:none;
  6364. border-radius:0px;
  6365. -moz-box-shadow:none;
  6366. -webkit-box-shadow:none;
  6367. box-shadow:none;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:12px;
  6372. }
  6373. #u214978 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:1616px;
  6377. top:817px;
  6378. width:37px;
  6379. height:17px;
  6380. display:flex;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:12px;
  6385. }
  6386. #u214978 .text {
  6387. position:absolute;
  6388. align-self:flex-start;
  6389. padding:0px 0px 0px 0px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u214978_text {
  6394. border-width:0px;
  6395. white-space:nowrap;
  6396. text-transform:none;
  6397. }
  6398. #u214979 {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:0px;
  6404. height:0px;
  6405. }
  6406. #u214980_img {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:0px;
  6410. top:0px;
  6411. width:24px;
  6412. height:24px;
  6413. }
  6414. #u214980 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:1528px;
  6418. top:792px;
  6419. width:24px;
  6420. height:24px;
  6421. display:flex;
  6422. font-size:8px;
  6423. }
  6424. #u214980 .text {
  6425. position:absolute;
  6426. align-self:center;
  6427. padding:2px 2px 2px 2px;
  6428. box-sizing:border-box;
  6429. width:100%;
  6430. }
  6431. #u214980_text {
  6432. border-width:0px;
  6433. word-wrap:break-word;
  6434. text-transform:none;
  6435. }
  6436. #u214981_div {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:37px;
  6442. height:17px;
  6443. background:inherit;
  6444. background-color:rgba(255, 255, 255, 0);
  6445. border:none;
  6446. border-radius:0px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:12px;
  6454. }
  6455. #u214981 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:1522px;
  6459. top:817px;
  6460. width:37px;
  6461. height:17px;
  6462. display:flex;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:12px;
  6467. }
  6468. #u214981 .text {
  6469. position:absolute;
  6470. align-self:flex-start;
  6471. padding:0px 0px 0px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u214981_text {
  6476. border-width:0px;
  6477. white-space:nowrap;
  6478. text-transform:none;
  6479. }
  6480. #u214982_img {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:375px;
  6486. height:731px;
  6487. }
  6488. #u214982 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:1400px;
  6492. top:108px;
  6493. width:375px;
  6494. height:731px;
  6495. display:flex;
  6496. }
  6497. #u214982 .text {
  6498. position:absolute;
  6499. align-self:center;
  6500. padding:2px 2px 2px 2px;
  6501. box-sizing:border-box;
  6502. width:100%;
  6503. }
  6504. #u214982_text {
  6505. border-width:0px;
  6506. word-wrap:break-word;
  6507. text-transform:none;
  6508. visibility:hidden;
  6509. }
  6510. #u214983 {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:0px;
  6516. height:0px;
  6517. }
  6518. #u214984_img {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:0px;
  6522. top:0px;
  6523. width:11px;
  6524. height:18px;
  6525. }
  6526. #u214984 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:1410px;
  6530. top:80px;
  6531. width:11px;
  6532. height:18px;
  6533. display:flex;
  6534. }
  6535. #u214984 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 2px 2px 2px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u214984_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u214985_div {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:29px;
  6554. height:30px;
  6555. background:inherit;
  6556. background-color:rgba(255, 255, 255, 0);
  6557. border:none;
  6558. border-left:0px;
  6559. border-top:0px;
  6560. border-right:0px;
  6561. border-radius:0px;
  6562. border-bottom-right-radius:0px;
  6563. border-bottom-left-radius:0px;
  6564. -moz-box-shadow:none;
  6565. -webkit-box-shadow:none;
  6566. box-shadow:none;
  6567. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6568. font-weight:500;
  6569. font-style:normal;
  6570. font-size:14px;
  6571. line-height:30px;
  6572. }
  6573. #u214985 {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:1441px;
  6577. top:74px;
  6578. width:29px;
  6579. height:30px;
  6580. display:flex;
  6581. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6582. font-weight:500;
  6583. font-style:normal;
  6584. font-size:14px;
  6585. line-height:30px;
  6586. }
  6587. #u214985 .text {
  6588. position:absolute;
  6589. align-self:flex-start;
  6590. padding:0px 0px 0px 0px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u214985_text {
  6595. border-width:0px;
  6596. white-space:nowrap;
  6597. text-transform:none;
  6598. }
  6599. #u214986 {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:0px;
  6605. height:0px;
  6606. }
  6607. #u214987_div {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:375px;
  6613. height:154px;
  6614. background:inherit;
  6615. background-color:rgba(255, 255, 255, 1);
  6616. border:none;
  6617. border-left:0px;
  6618. border-top:0px;
  6619. border-right:0px;
  6620. border-radius:0px;
  6621. border-bottom-right-radius:0px;
  6622. border-bottom-left-radius:0px;
  6623. -moz-box-shadow:none;
  6624. -webkit-box-shadow:none;
  6625. box-shadow:none;
  6626. }
  6627. #u214987 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:1400px;
  6631. top:108px;
  6632. width:375px;
  6633. height:154px;
  6634. display:flex;
  6635. }
  6636. #u214987 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 2px 2px 2px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u214987_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u214988_div {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:40px;
  6655. height:20px;
  6656. background:inherit;
  6657. background-color:rgba(242, 242, 242, 0);
  6658. border:none;
  6659. border-radius:29px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:12px;
  6667. color:#AAAAAA;
  6668. text-align:center;
  6669. line-height:20px;
  6670. }
  6671. #u214988 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:1705px;
  6675. top:123px;
  6676. width:40px;
  6677. height:20px;
  6678. display:flex;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:12px;
  6683. color:#AAAAAA;
  6684. text-align:center;
  6685. line-height:20px;
  6686. }
  6687. #u214988 .text {
  6688. position:absolute;
  6689. align-self:flex-start;
  6690. padding:0px 0px 0px 0px;
  6691. box-sizing:border-box;
  6692. width:100%;
  6693. }
  6694. #u214988_text {
  6695. border-width:0px;
  6696. word-wrap:break-word;
  6697. text-transform:none;
  6698. }
  6699. #u214989_img {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:6px;
  6705. height:10px;
  6706. }
  6707. #u214989 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:1752px;
  6711. top:128px;
  6712. width:6px;
  6713. height:10px;
  6714. display:flex;
  6715. -webkit-transform:rotate(270deg);
  6716. -moz-transform:rotate(270deg);
  6717. -ms-transform:rotate(270deg);
  6718. transform:rotate(270deg);
  6719. }
  6720. #u214989 .text {
  6721. position:absolute;
  6722. align-self:center;
  6723. padding:2px 2px 2px 2px;
  6724. box-sizing:border-box;
  6725. width:100%;
  6726. }
  6727. #u214989_text {
  6728. border-width:0px;
  6729. word-wrap:break-word;
  6730. text-transform:none;
  6731. visibility:hidden;
  6732. }
  6733. #u214990_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:81px;
  6739. height:40px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 0);
  6742. border:none;
  6743. border-top:0px;
  6744. border-right:0px;
  6745. border-bottom:0px;
  6746. border-radius:0px;
  6747. border-top-left-radius:0px;
  6748. border-bottom-left-radius:0px;
  6749. -moz-box-shadow:none;
  6750. -webkit-box-shadow:none;
  6751. box-shadow:none;
  6752. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6753. font-weight:500;
  6754. font-style:normal;
  6755. font-size:14px;
  6756. line-height:30px;
  6757. }
  6758. #u214990 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:1410px;
  6762. top:113px;
  6763. width:81px;
  6764. height:40px;
  6765. display:flex;
  6766. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6767. font-weight:500;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. line-height:30px;
  6771. }
  6772. #u214990 .text {
  6773. position:absolute;
  6774. align-self:center;
  6775. padding:5px 10px 5px 0px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u214990_text {
  6780. border-width:0px;
  6781. white-space:nowrap;
  6782. text-transform:none;
  6783. }
  6784. #u214991_div {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:109px;
  6790. height:17px;
  6791. background:inherit;
  6792. background-color:rgba(255, 255, 255, 0);
  6793. border:none;
  6794. border-left:0px;
  6795. border-top:0px;
  6796. border-right:0px;
  6797. border-radius:0px;
  6798. border-bottom-right-radius:0px;
  6799. border-bottom-left-radius:0px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:12px;
  6807. color:#298FFF;
  6808. }
  6809. #u214991 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:1410px;
  6813. top:148px;
  6814. width:109px;
  6815. height:17px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:12px;
  6821. color:#298FFF;
  6822. }
  6823. #u214991 .text {
  6824. position:absolute;
  6825. align-self:flex-start;
  6826. padding:0px 0px 0px 0px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u214991_text {
  6831. border-width:0px;
  6832. white-space:nowrap;
  6833. text-transform:none;
  6834. }
  6835. #u214992_div {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:201px;
  6841. height:25px;
  6842. background:inherit;
  6843. background-color:rgba(255, 255, 255, 0);
  6844. border:none;
  6845. border-left:0px;
  6846. border-top:0px;
  6847. border-right:0px;
  6848. border-radius:0px;
  6849. border-bottom-right-radius:0px;
  6850. border-bottom-left-radius:0px;
  6851. -moz-box-shadow:none;
  6852. -webkit-box-shadow:none;
  6853. box-shadow:none;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:12px;
  6858. line-height:25px;
  6859. }
  6860. #u214992 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:1410px;
  6864. top:175px;
  6865. width:201px;
  6866. height:25px;
  6867. display:flex;
  6868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6869. font-weight:400;
  6870. font-style:normal;
  6871. font-size:12px;
  6872. line-height:25px;
  6873. }
  6874. #u214992 .text {
  6875. position:absolute;
  6876. align-self:flex-start;
  6877. padding:0px 0px 0px 0px;
  6878. box-sizing:border-box;
  6879. width:100%;
  6880. }
  6881. #u214992_text {
  6882. border-width:0px;
  6883. white-space:nowrap;
  6884. text-transform:none;
  6885. }
  6886. #u214993_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:115px;
  6892. height:25px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 0);
  6895. border:none;
  6896. border-left:0px;
  6897. border-top:0px;
  6898. border-right:0px;
  6899. border-radius:0px;
  6900. border-bottom-right-radius:0px;
  6901. border-bottom-left-radius:0px;
  6902. -moz-box-shadow:none;
  6903. -webkit-box-shadow:none;
  6904. box-shadow:none;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:12px;
  6909. line-height:25px;
  6910. }
  6911. #u214993 {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:1410px;
  6915. top:200px;
  6916. width:115px;
  6917. height:25px;
  6918. display:flex;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:12px;
  6923. line-height:25px;
  6924. }
  6925. #u214993 .text {
  6926. position:absolute;
  6927. align-self:flex-start;
  6928. padding:0px 0px 0px 0px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u214993_text {
  6933. border-width:0px;
  6934. white-space:nowrap;
  6935. text-transform:none;
  6936. }
  6937. #u214994_div {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:109px;
  6943. height:25px;
  6944. background:inherit;
  6945. background-color:rgba(255, 255, 255, 0);
  6946. border:none;
  6947. border-left:0px;
  6948. border-top:0px;
  6949. border-right:0px;
  6950. border-radius:0px;
  6951. border-bottom-right-radius:0px;
  6952. border-bottom-left-radius:0px;
  6953. -moz-box-shadow:none;
  6954. -webkit-box-shadow:none;
  6955. box-shadow:none;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:12px;
  6960. line-height:25px;
  6961. }
  6962. #u214994 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:1410px;
  6966. top:225px;
  6967. width:109px;
  6968. height:25px;
  6969. display:flex;
  6970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:12px;
  6974. line-height:25px;
  6975. }
  6976. #u214994 .text {
  6977. position:absolute;
  6978. align-self:flex-start;
  6979. padding:0px 0px 0px 0px;
  6980. box-sizing:border-box;
  6981. width:100%;
  6982. }
  6983. #u214994_text {
  6984. border-width:0px;
  6985. white-space:nowrap;
  6986. text-transform:none;
  6987. }
  6988. #u214995 {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:0px;
  6994. height:0px;
  6995. }
  6996. #u214996_div {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:375px;
  7002. height:170px;
  7003. background:inherit;
  7004. background-color:rgba(255, 255, 255, 1);
  7005. border:none;
  7006. border-left:0px;
  7007. border-top:0px;
  7008. border-right:0px;
  7009. border-radius:0px;
  7010. border-bottom-right-radius:0px;
  7011. border-bottom-left-radius:0px;
  7012. -moz-box-shadow:none;
  7013. -webkit-box-shadow:none;
  7014. box-shadow:none;
  7015. }
  7016. #u214996 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:1400px;
  7020. top:272px;
  7021. width:375px;
  7022. height:170px;
  7023. display:flex;
  7024. }
  7025. #u214996 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 2px 2px 2px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u214996_text {
  7033. border-width:0px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. visibility:hidden;
  7037. }
  7038. #u214997_div {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:353px;
  7044. height:30px;
  7045. background:inherit;
  7046. background-color:rgba(255, 255, 255, 0);
  7047. border:none;
  7048. border-top:0px;
  7049. border-right:0px;
  7050. border-bottom:0px;
  7051. border-radius:0px;
  7052. border-top-left-radius:0px;
  7053. border-bottom-left-radius:0px;
  7054. -moz-box-shadow:none;
  7055. -webkit-box-shadow:none;
  7056. box-shadow:none;
  7057. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7058. font-weight:500;
  7059. font-style:normal;
  7060. font-size:14px;
  7061. line-height:30px;
  7062. }
  7063. #u214997 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1413px;
  7067. top:282px;
  7068. width:353px;
  7069. height:30px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7072. font-weight:500;
  7073. font-style:normal;
  7074. font-size:14px;
  7075. line-height:30px;
  7076. }
  7077. #u214997 .text {
  7078. position:absolute;
  7079. align-self:center;
  7080. padding:5px 10px 5px 0px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u214997_text {
  7085. border-width:0px;
  7086. word-wrap:break-word;
  7087. text-transform:none;
  7088. }
  7089. #u214998_div {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:347px;
  7095. height:25px;
  7096. background:inherit;
  7097. background-color:rgba(255, 255, 255, 0);
  7098. border:none;
  7099. border-top:0px;
  7100. border-right:0px;
  7101. border-bottom:0px;
  7102. border-radius:0px;
  7103. border-top-left-radius:0px;
  7104. border-bottom-left-radius:0px;
  7105. -moz-box-shadow:none;
  7106. -webkit-box-shadow:none;
  7107. box-shadow:none;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:12px;
  7112. line-height:30px;
  7113. }
  7114. #u214998 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:1419px;
  7118. top:312px;
  7119. width:347px;
  7120. height:25px;
  7121. display:flex;
  7122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7123. font-weight:400;
  7124. font-style:normal;
  7125. font-size:12px;
  7126. line-height:30px;
  7127. }
  7128. #u214998 .text {
  7129. position:absolute;
  7130. align-self:center;
  7131. padding:5px 10px 5px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u214998_text {
  7136. border-width:0px;
  7137. word-wrap:break-word;
  7138. text-transform:none;
  7139. }
  7140. #u214999_div {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:0px;
  7144. top:0px;
  7145. width:148px;
  7146. height:40px;
  7147. background:inherit;
  7148. background-color:rgba(255, 255, 255, 0);
  7149. border:none;
  7150. border-top:0px;
  7151. border-right:0px;
  7152. border-bottom:0px;
  7153. border-radius:0px;
  7154. border-top-left-radius:0px;
  7155. border-bottom-left-radius:0px;
  7156. -moz-box-shadow:none;
  7157. -webkit-box-shadow:none;
  7158. box-shadow:none;
  7159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. line-height:30px;
  7164. }
  7165. #u214999 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:1429px;
  7169. top:337px;
  7170. width:148px;
  7171. height:40px;
  7172. display:flex;
  7173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7174. font-weight:400;
  7175. font-style:normal;
  7176. font-size:12px;
  7177. line-height:30px;
  7178. }
  7179. #u214999 .text {
  7180. position:absolute;
  7181. align-self:center;
  7182. padding:5px 10px 5px 0px;
  7183. box-sizing:border-box;
  7184. width:100%;
  7185. }
  7186. #u214999_text {
  7187. border-width:0px;
  7188. white-space:nowrap;
  7189. text-transform:none;
  7190. }
  7191. #u215000_div {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:59px;
  7197. height:40px;
  7198. background:inherit;
  7199. background-color:rgba(255, 255, 255, 0);
  7200. border:none;
  7201. border-top:0px;
  7202. border-right:0px;
  7203. border-bottom:0px;
  7204. border-radius:0px;
  7205. border-top-left-radius:0px;
  7206. border-bottom-left-radius:0px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:12px;
  7214. line-height:30px;
  7215. }
  7216. #u215000 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:1419px;
  7220. top:367px;
  7221. width:59px;
  7222. height:40px;
  7223. display:flex;
  7224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7225. font-weight:400;
  7226. font-style:normal;
  7227. font-size:12px;
  7228. line-height:30px;
  7229. }
  7230. #u215000 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:5px 10px 5px 0px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u215000_text {
  7238. border-width:0px;
  7239. white-space:nowrap;
  7240. text-transform:none;
  7241. }
  7242. #u215001_div {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:205px;
  7248. height:40px;
  7249. background:inherit;
  7250. background-color:rgba(255, 255, 255, 0);
  7251. border:none;
  7252. border-top:0px;
  7253. border-right:0px;
  7254. border-bottom:0px;
  7255. border-radius:0px;
  7256. border-top-left-radius:0px;
  7257. border-bottom-left-radius:0px;
  7258. -moz-box-shadow:none;
  7259. -webkit-box-shadow:none;
  7260. box-shadow:none;
  7261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:12px;
  7265. line-height:30px;
  7266. }
  7267. #u215001 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:1429px;
  7271. top:397px;
  7272. width:205px;
  7273. height:40px;
  7274. display:flex;
  7275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:12px;
  7279. line-height:30px;
  7280. }
  7281. #u215001 .text {
  7282. position:absolute;
  7283. align-self:center;
  7284. padding:5px 10px 5px 0px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u215001_text {
  7289. border-width:0px;
  7290. white-space:nowrap;
  7291. text-transform:none;
  7292. }
  7293. #u215002_img {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:143px;
  7299. height:143px;
  7300. }
  7301. #u215002 {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:1063px;
  7305. top:332px;
  7306. width:143px;
  7307. height:143px;
  7308. display:flex;
  7309. }
  7310. #u215002 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:2px 2px 2px 2px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u215002_text {
  7318. border-width:0px;
  7319. word-wrap:break-word;
  7320. text-transform:none;
  7321. visibility:hidden;
  7322. }
  7323. #u215003_div {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:81px;
  7329. height:40px;
  7330. background:inherit;
  7331. background-color:rgba(255, 255, 255, 0);
  7332. border:none;
  7333. border-top:0px;
  7334. border-right:0px;
  7335. border-bottom:0px;
  7336. border-radius:0px;
  7337. border-top-left-radius:0px;
  7338. border-bottom-left-radius:0px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7343. font-weight:500;
  7344. font-style:normal;
  7345. font-size:14px;
  7346. line-height:30px;
  7347. }
  7348. #u215003 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:1094px;
  7352. top:272px;
  7353. width:81px;
  7354. height:40px;
  7355. display:flex;
  7356. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7357. font-weight:500;
  7358. font-style:normal;
  7359. font-size:14px;
  7360. line-height:30px;
  7361. }
  7362. #u215003 .text {
  7363. position:absolute;
  7364. align-self:center;
  7365. padding:5px 10px 5px 0px;
  7366. box-sizing:border-box;
  7367. width:100%;
  7368. }
  7369. #u215003_text {
  7370. border-width:0px;
  7371. white-space:nowrap;
  7372. text-transform:none;
  7373. }
  7374. #u215004_div {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:187px;
  7380. height:14px;
  7381. background:inherit;
  7382. background-color:rgba(255, 255, 255, 0);
  7383. border:none;
  7384. border-top:0px;
  7385. border-right:0px;
  7386. border-bottom:0px;
  7387. border-radius:0px;
  7388. border-top-left-radius:0px;
  7389. border-bottom-left-radius:0px;
  7390. -moz-box-shadow:none;
  7391. -webkit-box-shadow:none;
  7392. box-shadow:none;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:10px;
  7397. }
  7398. #u215004 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:1041px;
  7402. top:308px;
  7403. width:187px;
  7404. height:14px;
  7405. display:flex;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:10px;
  7410. }
  7411. #u215004 .text {
  7412. position:absolute;
  7413. align-self:center;
  7414. padding:0px 0px 0px 0px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u215004_text {
  7419. border-width:0px;
  7420. white-space:nowrap;
  7421. text-transform:none;
  7422. }