styles.css 190 KB

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