styles.css 136 KB

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