styles.css 181 KB

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