styles.css 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2250px;
  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. #u47047_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u47047 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1364px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u47047 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u47047_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u47048_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u47048 {
  73. border-width:0px;
  74. position:absolute;
  75. left:1393px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u47048 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u47048_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u47049 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u47050_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u47050 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1673px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u47050 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u47050_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u47051 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u47052_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u47052 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1736px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u47052 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u47052_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u47053_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u47053 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1742px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u47053 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u47053_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u47054 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u47055_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u47055 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1687px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u47055 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u47055_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u47056_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u47056 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1703px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u47056 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u47056_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u47057_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u47057 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1694px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u47057 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u47057_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u47058_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u47058 {
  317. border-width:0px;
  318. position:absolute;
  319. left:1711px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u47058 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u47058_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u47059_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u47059 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1393px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u47059 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u47059_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u47060_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u47060 {
  393. border-width:0px;
  394. position:absolute;
  395. left:1393px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u47060 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u47060_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u47061 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u47062_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u47062 {
  431. border-width:0px;
  432. position:absolute;
  433. left:1433px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u47062 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u47062_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u47063_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u47063 {
  472. border-width:0px;
  473. position:absolute;
  474. left:1433px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u47063 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u47063_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u47064 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u47065_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u47065 {
  513. border-width:0px;
  514. position:absolute;
  515. left:1703px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u47065 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u47065_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u47066_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u47066 {
  554. border-width:0px;
  555. position:absolute;
  556. left:1703px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u47066 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u47066_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u47067_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u47067 {
  594. border-width:0px;
  595. position:absolute;
  596. left:1393px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u47067 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u47067_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u47068 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u47069_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u47069 {
  632. border-width:0px;
  633. position:absolute;
  634. left:1615px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u47069 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u47069_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u47070_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u47070 {
  673. border-width:0px;
  674. position:absolute;
  675. left:1609px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u47070 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u47070_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u47071 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u47072_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u47072 {
  714. border-width:0px;
  715. position:absolute;
  716. left:1521px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u47072 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u47072_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u47073_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u47073 {
  755. border-width:0px;
  756. position:absolute;
  757. left:1515px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u47073 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u47073_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u47074_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u47074 {
  798. border-width:0px;
  799. position:absolute;
  800. left:1393px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u47074 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u47074_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u47075_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:57px;
  825. height:30px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 0);
  828. border:none;
  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. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  839. font-weight:500;
  840. font-style:normal;
  841. font-size:14px;
  842. line-height:30px;
  843. }
  844. #u47075 {
  845. border-width:0px;
  846. position:absolute;
  847. left:1545px;
  848. top:73px;
  849. width:57px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  853. font-weight:500;
  854. font-style:normal;
  855. font-size:14px;
  856. line-height:30px;
  857. }
  858. #u47075 .text {
  859. position:absolute;
  860. align-self:flex-start;
  861. padding:0px 0px 0px 0px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u47075_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u47076 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u47077_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u47077 {
  887. border-width:0px;
  888. position:absolute;
  889. left:1406px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u47077 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u47077_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u47078_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:375px;
  914. height:92px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 1);
  917. border:none;
  918. border-left:0px;
  919. border-top:0px;
  920. border-right:0px;
  921. border-radius:0px;
  922. border-bottom-right-radius:0px;
  923. border-bottom-left-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u47078 {
  929. border-width:0px;
  930. position:absolute;
  931. left:1393px;
  932. top:115px;
  933. width:375px;
  934. height:92px;
  935. display:flex;
  936. }
  937. #u47078 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u47078_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u47079 {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:0px;
  956. height:0px;
  957. }
  958. #u47080_div {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:375px;
  964. height:80px;
  965. background:inherit;
  966. background-color:rgba(255, 255, 255, 1);
  967. border:none;
  968. border-left:0px;
  969. border-top:0px;
  970. border-right:0px;
  971. border-radius:0px;
  972. border-bottom-right-radius:0px;
  973. border-bottom-left-radius:0px;
  974. -moz-box-shadow:none;
  975. -webkit-box-shadow:none;
  976. box-shadow:none;
  977. }
  978. #u47080 {
  979. border-width:0px;
  980. position:absolute;
  981. left:1393px;
  982. top:208px;
  983. width:375px;
  984. height:80px;
  985. display:flex;
  986. }
  987. #u47080 .text {
  988. position:absolute;
  989. align-self:center;
  990. padding:2px 2px 2px 2px;
  991. box-sizing:border-box;
  992. width:100%;
  993. }
  994. #u47080_text {
  995. border-width:0px;
  996. word-wrap:break-word;
  997. text-transform:none;
  998. visibility:hidden;
  999. }
  1000. #u47081_div {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:0px;
  1004. top:0px;
  1005. width:177px;
  1006. height:30px;
  1007. background:inherit;
  1008. background-color:rgba(255, 255, 255, 0);
  1009. border:none;
  1010. border-left:0px;
  1011. border-top:0px;
  1012. border-right:0px;
  1013. border-radius:0px;
  1014. border-bottom-right-radius:0px;
  1015. border-bottom-left-radius:0px;
  1016. -moz-box-shadow:none;
  1017. -webkit-box-shadow:none;
  1018. box-shadow:none;
  1019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1020. font-weight:400;
  1021. font-style:normal;
  1022. font-size:16px;
  1023. line-height:30px;
  1024. }
  1025. #u47081 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:1470px;
  1029. top:247px;
  1030. width:177px;
  1031. height:30px;
  1032. display:flex;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. font-size:16px;
  1037. line-height:30px;
  1038. }
  1039. #u47081 .text {
  1040. position:absolute;
  1041. align-self:flex-start;
  1042. padding:0px 0px 0px 0px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u47081_text {
  1047. border-width:0px;
  1048. white-space:nowrap;
  1049. text-transform:none;
  1050. }
  1051. #u47082_div {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:49px;
  1057. height:25px;
  1058. background:inherit;
  1059. background-color:rgba(255, 255, 255, 0);
  1060. border:none;
  1061. border-left:0px;
  1062. border-top:0px;
  1063. border-right:0px;
  1064. border-radius:0px;
  1065. border-bottom-right-radius:0px;
  1066. border-bottom-left-radius:0px;
  1067. -moz-box-shadow:none;
  1068. -webkit-box-shadow:none;
  1069. box-shadow:none;
  1070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1071. font-weight:400;
  1072. font-style:normal;
  1073. font-size:12px;
  1074. color:#7F7F7F;
  1075. line-height:25px;
  1076. }
  1077. #u47082 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:1470px;
  1081. top:222px;
  1082. width:49px;
  1083. height:25px;
  1084. display:flex;
  1085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:12px;
  1089. color:#7F7F7F;
  1090. line-height:25px;
  1091. }
  1092. #u47082 .text {
  1093. position:absolute;
  1094. align-self:flex-start;
  1095. padding:0px 0px 0px 0px;
  1096. box-sizing:border-box;
  1097. width:100%;
  1098. }
  1099. #u47082_text {
  1100. border-width:0px;
  1101. white-space:nowrap;
  1102. text-transform:none;
  1103. }
  1104. #u47083 {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:0px;
  1110. height:0px;
  1111. }
  1112. #u47084_div {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:375px;
  1118. height:80px;
  1119. background:inherit;
  1120. background-color:rgba(255, 255, 255, 1);
  1121. border:none;
  1122. border-left:0px;
  1123. border-top:0px;
  1124. border-right:0px;
  1125. border-radius:0px;
  1126. border-bottom-right-radius:0px;
  1127. border-bottom-left-radius:0px;
  1128. -moz-box-shadow:none;
  1129. -webkit-box-shadow:none;
  1130. box-shadow:none;
  1131. }
  1132. #u47084 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:1393px;
  1136. top:289px;
  1137. width:375px;
  1138. height:80px;
  1139. display:flex;
  1140. }
  1141. #u47084 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u47084_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u47085_div {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:129px;
  1160. height:30px;
  1161. background:inherit;
  1162. background-color:rgba(255, 255, 255, 0);
  1163. border:none;
  1164. border-left:0px;
  1165. border-top:0px;
  1166. border-right:0px;
  1167. border-radius:0px;
  1168. border-bottom-right-radius:0px;
  1169. border-bottom-left-radius:0px;
  1170. -moz-box-shadow:none;
  1171. -webkit-box-shadow:none;
  1172. box-shadow:none;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:16px;
  1177. line-height:30px;
  1178. }
  1179. #u47085 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:1470px;
  1183. top:328px;
  1184. width:129px;
  1185. height:30px;
  1186. display:flex;
  1187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1188. font-weight:400;
  1189. font-style:normal;
  1190. font-size:16px;
  1191. line-height:30px;
  1192. }
  1193. #u47085 .text {
  1194. position:absolute;
  1195. align-self:flex-start;
  1196. padding:0px 0px 0px 0px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u47085_text {
  1201. border-width:0px;
  1202. white-space:nowrap;
  1203. text-transform:none;
  1204. }
  1205. #u47086_div {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:0px;
  1209. top:0px;
  1210. width:73px;
  1211. height:25px;
  1212. background:inherit;
  1213. background-color:rgba(255, 255, 255, 0);
  1214. border:none;
  1215. border-left:0px;
  1216. border-top:0px;
  1217. border-right:0px;
  1218. border-radius:0px;
  1219. border-bottom-right-radius:0px;
  1220. border-bottom-left-radius:0px;
  1221. -moz-box-shadow:none;
  1222. -webkit-box-shadow:none;
  1223. box-shadow:none;
  1224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1225. font-weight:400;
  1226. font-style:normal;
  1227. font-size:12px;
  1228. color:#7F7F7F;
  1229. line-height:25px;
  1230. }
  1231. #u47086 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:1470px;
  1235. top:303px;
  1236. width:73px;
  1237. height:25px;
  1238. display:flex;
  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. line-height:25px;
  1245. }
  1246. #u47086 .text {
  1247. position:absolute;
  1248. align-self:flex-start;
  1249. padding:0px 0px 0px 0px;
  1250. box-sizing:border-box;
  1251. width:100%;
  1252. }
  1253. #u47086_text {
  1254. border-width:0px;
  1255. white-space:nowrap;
  1256. text-transform:none;
  1257. }
  1258. #u47087_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:375px;
  1264. height:90px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 1);
  1267. border:none;
  1268. border-left:0px;
  1269. border-top:0px;
  1270. border-right:0px;
  1271. border-radius:0px;
  1272. border-bottom-right-radius:0px;
  1273. border-bottom-left-radius:0px;
  1274. -moz-box-shadow:none;
  1275. -webkit-box-shadow:none;
  1276. box-shadow:none;
  1277. }
  1278. #u47087 {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:1393px;
  1282. top:532px;
  1283. width:375px;
  1284. height:90px;
  1285. display:flex;
  1286. }
  1287. #u47087 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:2px 2px 2px 2px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u47087_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. visibility:hidden;
  1299. }
  1300. #u47088_div {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:129px;
  1306. height:60px;
  1307. background:inherit;
  1308. background-color:rgba(255, 255, 255, 0);
  1309. border:none;
  1310. border-left:0px;
  1311. border-top:0px;
  1312. border-right:0px;
  1313. border-radius:0px;
  1314. border-bottom-right-radius:0px;
  1315. border-bottom-left-radius:0px;
  1316. -moz-box-shadow:none;
  1317. -webkit-box-shadow:none;
  1318. box-shadow:none;
  1319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1320. font-weight:400;
  1321. font-style:normal;
  1322. font-size:16px;
  1323. line-height:30px;
  1324. }
  1325. #u47088 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:1470px;
  1329. top:547px;
  1330. width:129px;
  1331. height:60px;
  1332. display:flex;
  1333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1334. font-weight:400;
  1335. font-style:normal;
  1336. font-size:16px;
  1337. line-height:30px;
  1338. }
  1339. #u47088 .text {
  1340. position:absolute;
  1341. align-self:flex-start;
  1342. padding:0px 0px 0px 0px;
  1343. box-sizing:border-box;
  1344. width:100%;
  1345. }
  1346. #u47088_text {
  1347. border-width:0px;
  1348. white-space:nowrap;
  1349. text-transform:none;
  1350. }
  1351. #u47089_div {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:68px;
  1357. height:30px;
  1358. background:inherit;
  1359. background-color:rgba(242, 242, 242, 1);
  1360. border:none;
  1361. border-radius:40px;
  1362. -moz-box-shadow:none;
  1363. -webkit-box-shadow:none;
  1364. box-shadow:none;
  1365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1366. font-weight:400;
  1367. font-style:normal;
  1368. font-size:12px;
  1369. color:#7F7F7F;
  1370. }
  1371. #u47089 {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:1678px;
  1375. top:136px;
  1376. width:68px;
  1377. height:30px;
  1378. display:flex;
  1379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1380. font-weight:400;
  1381. font-style:normal;
  1382. font-size:12px;
  1383. color:#7F7F7F;
  1384. }
  1385. #u47089 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u47089_text {
  1393. border-width:0px;
  1394. word-wrap:break-word;
  1395. text-transform:none;
  1396. }
  1397. #u47091_img {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:433px;
  1403. height:865px;
  1404. }
  1405. #u47091 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:433px;
  1411. height:865px;
  1412. display:flex;
  1413. }
  1414. #u47091 .text {
  1415. position:absolute;
  1416. align-self:center;
  1417. padding:2px 2px 2px 2px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u47091_text {
  1422. border-width:0px;
  1423. word-wrap:break-word;
  1424. text-transform:none;
  1425. visibility:hidden;
  1426. }
  1427. #u47092_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:375px;
  1433. height:40px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 1);
  1436. box-sizing:border-box;
  1437. border-width:1px;
  1438. border-style:solid;
  1439. border-color:rgba(215, 215, 215, 1);
  1440. border-left:0px;
  1441. border-top:0px;
  1442. border-right:0px;
  1443. border-radius:0px;
  1444. border-bottom-right-radius:0px;
  1445. border-bottom-left-radius:0px;
  1446. -moz-box-shadow:none;
  1447. -webkit-box-shadow:none;
  1448. box-shadow:none;
  1449. }
  1450. #u47092 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:29px;
  1454. top:67px;
  1455. width:375px;
  1456. height:40px;
  1457. display:flex;
  1458. }
  1459. #u47092 .text {
  1460. position:absolute;
  1461. align-self:center;
  1462. padding:2px 2px 2px 2px;
  1463. box-sizing:border-box;
  1464. width:100%;
  1465. }
  1466. #u47092_text {
  1467. border-width:0px;
  1468. word-wrap:break-word;
  1469. text-transform:none;
  1470. visibility:hidden;
  1471. }
  1472. #u47093 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:0px;
  1477. width:0px;
  1478. height:0px;
  1479. }
  1480. #u47094_div {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:0px;
  1484. top:0px;
  1485. width:88px;
  1486. height:32px;
  1487. background:inherit;
  1488. background-color:rgba(255, 255, 255, 1);
  1489. box-sizing:border-box;
  1490. border-width:1px;
  1491. border-style:solid;
  1492. border-color:rgba(242, 242, 242, 1);
  1493. border-radius:33px;
  1494. -moz-box-shadow:none;
  1495. -webkit-box-shadow:none;
  1496. box-shadow:none;
  1497. }
  1498. #u47094 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:309px;
  1502. top:71px;
  1503. width:88px;
  1504. height:32px;
  1505. display:flex;
  1506. }
  1507. #u47094 .text {
  1508. position:absolute;
  1509. align-self:center;
  1510. padding:2px 2px 2px 2px;
  1511. box-sizing:border-box;
  1512. width:100%;
  1513. }
  1514. #u47094_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u47095 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:0px;
  1524. top:0px;
  1525. width:0px;
  1526. height:0px;
  1527. }
  1528. #u47096_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:18px;
  1534. height:18px;
  1535. }
  1536. #u47096 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:372px;
  1540. top:78px;
  1541. width:18px;
  1542. height:18px;
  1543. display:flex;
  1544. }
  1545. #u47096 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u47096_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u47097_img {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:6px;
  1564. height:6px;
  1565. }
  1566. #u47097 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:378px;
  1570. top:84px;
  1571. width:6px;
  1572. height:6px;
  1573. display:flex;
  1574. }
  1575. #u47097 .text {
  1576. position:absolute;
  1577. align-self:center;
  1578. padding:2px 2px 2px 2px;
  1579. box-sizing:border-box;
  1580. width:100%;
  1581. }
  1582. #u47097_text {
  1583. border-width:0px;
  1584. word-wrap:break-word;
  1585. text-transform:none;
  1586. visibility:hidden;
  1587. }
  1588. #u47098 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:0px;
  1594. height:0px;
  1595. }
  1596. #u47099_img {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:5px;
  1602. height:5px;
  1603. }
  1604. #u47099 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:323px;
  1608. top:85px;
  1609. width:5px;
  1610. height:5px;
  1611. display:flex;
  1612. }
  1613. #u47099 .text {
  1614. position:absolute;
  1615. align-self:center;
  1616. padding:2px 2px 2px 2px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u47099_text {
  1621. border-width:0px;
  1622. word-wrap:break-word;
  1623. text-transform:none;
  1624. visibility:hidden;
  1625. }
  1626. #u47100_img {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:0px;
  1630. top:0px;
  1631. width:5px;
  1632. height:5px;
  1633. }
  1634. #u47100 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:339px;
  1638. top:85px;
  1639. width:5px;
  1640. height:5px;
  1641. display:flex;
  1642. }
  1643. #u47100 .text {
  1644. position:absolute;
  1645. align-self:center;
  1646. padding:2px 2px 2px 2px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u47100_text {
  1651. border-width:0px;
  1652. word-wrap:break-word;
  1653. text-transform:none;
  1654. visibility:hidden;
  1655. }
  1656. #u47101_img {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:0px;
  1660. top:0px;
  1661. width:7px;
  1662. height:7px;
  1663. }
  1664. #u47101 {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:330px;
  1668. top:84px;
  1669. width:7px;
  1670. height:7px;
  1671. display:flex;
  1672. }
  1673. #u47101 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 2px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u47101_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u47102_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:19px;
  1692. height:2px;
  1693. }
  1694. #u47102 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:347px;
  1698. top:87px;
  1699. width:18px;
  1700. height:1px;
  1701. display:flex;
  1702. -webkit-transform:rotate(90deg);
  1703. -moz-transform:rotate(90deg);
  1704. -ms-transform:rotate(90deg);
  1705. transform:rotate(90deg);
  1706. }
  1707. #u47102 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 2px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u47102_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. visibility:hidden;
  1719. }
  1720. #u47103_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:375px;
  1726. height:44px;
  1727. }
  1728. #u47103 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:29px;
  1732. top:24px;
  1733. width:375px;
  1734. height:44px;
  1735. display:flex;
  1736. }
  1737. #u47103 .text {
  1738. position:absolute;
  1739. align-self:center;
  1740. padding:2px 2px 2px 2px;
  1741. box-sizing:border-box;
  1742. width:100%;
  1743. }
  1744. #u47103_text {
  1745. border-width:0px;
  1746. word-wrap:break-word;
  1747. text-transform:none;
  1748. visibility:hidden;
  1749. }
  1750. #u47104_div {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:375px;
  1756. height:50px;
  1757. background:inherit;
  1758. background-color:rgba(255, 255, 255, 1);
  1759. box-sizing:border-box;
  1760. border-width:1px;
  1761. border-style:solid;
  1762. border-color:rgba(242, 242, 242, 1);
  1763. border-radius:26px;
  1764. border-top-left-radius:0px;
  1765. border-top-right-radius:0px;
  1766. -moz-box-shadow:none;
  1767. -webkit-box-shadow:none;
  1768. box-shadow:none;
  1769. }
  1770. #u47104 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:29px;
  1774. top:788px;
  1775. width:375px;
  1776. height:50px;
  1777. display:flex;
  1778. }
  1779. #u47104 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 2px 2px 2px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u47104_text {
  1787. border-width:0px;
  1788. word-wrap:break-word;
  1789. text-transform:none;
  1790. visibility:hidden;
  1791. }
  1792. #u47105 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:0px;
  1798. height:0px;
  1799. }
  1800. #u47106_img {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:24px;
  1806. height:24px;
  1807. }
  1808. #u47106 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:69px;
  1812. top:792px;
  1813. width:24px;
  1814. height:24px;
  1815. display:flex;
  1816. font-size:8px;
  1817. }
  1818. #u47106 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:2px 2px 2px 2px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u47106_text {
  1826. border-width:0px;
  1827. word-wrap:break-word;
  1828. text-transform:none;
  1829. }
  1830. #u47107_div {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:25px;
  1836. height:17px;
  1837. background:inherit;
  1838. background-color:rgba(255, 255, 255, 0);
  1839. border:none;
  1840. border-radius:0px;
  1841. -moz-box-shadow:none;
  1842. -webkit-box-shadow:none;
  1843. box-shadow:none;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:12px;
  1848. }
  1849. #u47107 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:69px;
  1853. top:817px;
  1854. width:25px;
  1855. height:17px;
  1856. display:flex;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:12px;
  1861. }
  1862. #u47107 .text {
  1863. position:absolute;
  1864. align-self:flex-start;
  1865. padding:0px 0px 0px 0px;
  1866. box-sizing:border-box;
  1867. width:100%;
  1868. }
  1869. #u47107_text {
  1870. border-width:0px;
  1871. white-space:nowrap;
  1872. text-transform:none;
  1873. }
  1874. #u47108 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:0px;
  1880. height:0px;
  1881. }
  1882. #u47109_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:24px;
  1888. height:24px;
  1889. }
  1890. #u47109 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:339px;
  1894. top:794px;
  1895. width:24px;
  1896. height:24px;
  1897. display:flex;
  1898. font-size:8px;
  1899. }
  1900. #u47109 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:2px 2px 2px 2px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u47109_text {
  1908. border-width:0px;
  1909. word-wrap:break-word;
  1910. text-transform:none;
  1911. }
  1912. #u47110_div {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:25px;
  1918. height:17px;
  1919. background:inherit;
  1920. background-color:rgba(255, 255, 255, 0);
  1921. border:none;
  1922. border-radius:0px;
  1923. -moz-box-shadow:none;
  1924. -webkit-box-shadow:none;
  1925. box-shadow:none;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:12px;
  1930. }
  1931. #u47110 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:339px;
  1935. top:819px;
  1936. width:25px;
  1937. height:17px;
  1938. display:flex;
  1939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. font-size:12px;
  1943. }
  1944. #u47110 .text {
  1945. position:absolute;
  1946. align-self:flex-start;
  1947. padding:0px 0px 0px 0px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u47110_text {
  1952. border-width:0px;
  1953. white-space:nowrap;
  1954. text-transform:none;
  1955. }
  1956. #u47111_div {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:375px;
  1962. height:681px;
  1963. background:inherit;
  1964. background-color:rgba(242, 242, 242, 0.462745098039216);
  1965. border:none;
  1966. border-radius:0px;
  1967. -moz-box-shadow:none;
  1968. -webkit-box-shadow:none;
  1969. box-shadow:none;
  1970. }
  1971. #u47111 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:29px;
  1975. top:107px;
  1976. width:375px;
  1977. height:681px;
  1978. display:flex;
  1979. }
  1980. #u47111 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u47111_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. visibility:hidden;
  1992. }
  1993. #u47112 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:0px;
  1999. height:0px;
  2000. }
  2001. #u47113_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:24px;
  2007. height:24px;
  2008. }
  2009. #u47113 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:251px;
  2013. top:792px;
  2014. width:24px;
  2015. height:24px;
  2016. display:flex;
  2017. font-size:8px;
  2018. }
  2019. #u47113 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:2px 2px 2px 2px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u47113_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. }
  2031. #u47114_div {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:37px;
  2037. height:17px;
  2038. background:inherit;
  2039. background-color:rgba(255, 255, 255, 0);
  2040. border:none;
  2041. border-radius:0px;
  2042. -moz-box-shadow:none;
  2043. -webkit-box-shadow:none;
  2044. box-shadow:none;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:12px;
  2049. }
  2050. #u47114 {
  2051. border-width:0px;
  2052. position:absolute;
  2053. left:245px;
  2054. top:817px;
  2055. width:37px;
  2056. height:17px;
  2057. display:flex;
  2058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2059. font-weight:400;
  2060. font-style:normal;
  2061. font-size:12px;
  2062. }
  2063. #u47114 .text {
  2064. position:absolute;
  2065. align-self:flex-start;
  2066. padding:0px 0px 0px 0px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u47114_text {
  2071. border-width:0px;
  2072. white-space:nowrap;
  2073. text-transform:none;
  2074. }
  2075. #u47115 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:0px;
  2081. height:0px;
  2082. }
  2083. #u47116_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:24px;
  2089. height:24px;
  2090. }
  2091. #u47116 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:157px;
  2095. top:792px;
  2096. width:24px;
  2097. height:24px;
  2098. display:flex;
  2099. font-size:8px;
  2100. }
  2101. #u47116 .text {
  2102. position:absolute;
  2103. align-self:center;
  2104. padding:2px 2px 2px 2px;
  2105. box-sizing:border-box;
  2106. width:100%;
  2107. }
  2108. #u47116_text {
  2109. border-width:0px;
  2110. word-wrap:break-word;
  2111. text-transform:none;
  2112. }
  2113. #u47117_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:37px;
  2119. height:17px;
  2120. background:inherit;
  2121. background-color:rgba(255, 255, 255, 0);
  2122. border:none;
  2123. border-radius:0px;
  2124. -moz-box-shadow:none;
  2125. -webkit-box-shadow:none;
  2126. box-shadow:none;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:12px;
  2131. }
  2132. #u47117 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:151px;
  2136. top:817px;
  2137. width:37px;
  2138. height:17px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:12px;
  2144. }
  2145. #u47117 .text {
  2146. position:absolute;
  2147. align-self:flex-start;
  2148. padding:0px 0px 0px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u47117_text {
  2153. border-width:0px;
  2154. white-space:nowrap;
  2155. text-transform:none;
  2156. }
  2157. #u47118_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:375px;
  2163. height:735px;
  2164. background:inherit;
  2165. background-color:rgba(242, 242, 242, 1);
  2166. border:none;
  2167. border-top:0px;
  2168. border-radius:25px;
  2169. border-top-left-radius:0px;
  2170. border-top-right-radius:0px;
  2171. -moz-box-shadow:none;
  2172. -webkit-box-shadow:none;
  2173. box-shadow:none;
  2174. }
  2175. #u47118 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:29px;
  2179. top:105px;
  2180. width:375px;
  2181. height:735px;
  2182. display:flex;
  2183. }
  2184. #u47118 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 2px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u47118_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u47119_div {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:113px;
  2203. height:30px;
  2204. background:inherit;
  2205. background-color:rgba(255, 255, 255, 0);
  2206. border:none;
  2207. border-left:0px;
  2208. border-top:0px;
  2209. border-right:0px;
  2210. border-radius:0px;
  2211. border-bottom-right-radius:0px;
  2212. border-bottom-left-radius:0px;
  2213. -moz-box-shadow:none;
  2214. -webkit-box-shadow:none;
  2215. box-shadow:none;
  2216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2217. font-weight:500;
  2218. font-style:normal;
  2219. font-size:14px;
  2220. line-height:30px;
  2221. }
  2222. #u47119 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:160px;
  2226. top:73px;
  2227. width:113px;
  2228. height:30px;
  2229. display:flex;
  2230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2231. font-weight:500;
  2232. font-style:normal;
  2233. font-size:14px;
  2234. line-height:30px;
  2235. }
  2236. #u47119 .text {
  2237. position:absolute;
  2238. align-self:flex-start;
  2239. padding:0px 0px 0px 0px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u47119_text {
  2244. border-width:0px;
  2245. white-space:nowrap;
  2246. text-transform:none;
  2247. }
  2248. #u47120 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:0px;
  2254. height:0px;
  2255. }
  2256. #u47121_img {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:11px;
  2262. height:18px;
  2263. }
  2264. #u47121 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:42px;
  2268. top:79px;
  2269. width:11px;
  2270. height:18px;
  2271. display:flex;
  2272. }
  2273. #u47121 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u47121_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u47122 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:0px;
  2292. height:0px;
  2293. }
  2294. #u47123_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:375px;
  2300. height:40px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 1);
  2303. border:none;
  2304. border-radius:0px;
  2305. -moz-box-shadow:none;
  2306. -webkit-box-shadow:none;
  2307. box-shadow:none;
  2308. }
  2309. #u47123 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:29px;
  2313. top:105px;
  2314. width:375px;
  2315. height:40px;
  2316. display:flex;
  2317. }
  2318. #u47123 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 2px 2px 2px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u47123_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u47124_div {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:43px;
  2337. height:40px;
  2338. background:inherit;
  2339. background-color:rgba(255, 255, 255, 0);
  2340. border:none;
  2341. border-left:0px;
  2342. border-top:0px;
  2343. border-right:0px;
  2344. border-radius:0px;
  2345. border-bottom-right-radius:0px;
  2346. border-bottom-left-radius:0px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:14px;
  2354. line-height:30px;
  2355. }
  2356. #u47124 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:305px;
  2360. top:105px;
  2361. width:43px;
  2362. height:40px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:14px;
  2368. line-height:30px;
  2369. }
  2370. #u47124 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:0px 0px 0px 0px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u47124_text {
  2378. border-width:0px;
  2379. white-space:nowrap;
  2380. text-transform:none;
  2381. }
  2382. #u47125_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:43px;
  2388. height:40px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0);
  2391. border:none;
  2392. border-left:0px;
  2393. border-top:0px;
  2394. border-right:0px;
  2395. border-radius:0px;
  2396. border-bottom-right-radius:0px;
  2397. border-bottom-left-radius:0px;
  2398. -moz-box-shadow:none;
  2399. -webkit-box-shadow:none;
  2400. box-shadow:none;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. line-height:30px;
  2406. }
  2407. #u47125 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:200px;
  2411. top:105px;
  2412. width:43px;
  2413. height:40px;
  2414. display:flex;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:14px;
  2419. line-height:30px;
  2420. }
  2421. #u47125 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u47125_text {
  2429. border-width:0px;
  2430. white-space:nowrap;
  2431. text-transform:none;
  2432. }
  2433. #u47126_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:43px;
  2439. height:40px;
  2440. background:inherit;
  2441. background-color:rgba(255, 255, 255, 0);
  2442. box-sizing:border-box;
  2443. border-width:2px;
  2444. border-style:solid;
  2445. border-color:rgba(51, 51, 51, 1);
  2446. border-left:0px;
  2447. border-top:0px;
  2448. border-right:0px;
  2449. border-radius:0px;
  2450. border-bottom-right-radius:0px;
  2451. border-bottom-left-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. font-size:14px;
  2459. line-height:40px;
  2460. }
  2461. #u47126 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:85px;
  2465. top:105px;
  2466. width:43px;
  2467. height:40px;
  2468. display:flex;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:14px;
  2473. line-height:40px;
  2474. }
  2475. #u47126 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:0px 0px 0px 0px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u47126_text {
  2483. border-width:0px;
  2484. white-space:nowrap;
  2485. text-transform:none;
  2486. }
  2487. #u47128_img {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:433px;
  2493. height:865px;
  2494. }
  2495. #u47128 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:453px;
  2499. top:0px;
  2500. width:433px;
  2501. height:865px;
  2502. display:flex;
  2503. }
  2504. #u47128 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u47128_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u47129_div {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:375px;
  2523. height:40px;
  2524. background:inherit;
  2525. background-color:rgba(255, 255, 255, 1);
  2526. box-sizing:border-box;
  2527. border-width:1px;
  2528. border-style:solid;
  2529. border-color:rgba(215, 215, 215, 1);
  2530. border-left:0px;
  2531. border-top:0px;
  2532. border-right:0px;
  2533. border-radius:0px;
  2534. border-bottom-right-radius:0px;
  2535. border-bottom-left-radius:0px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. }
  2540. #u47129 {
  2541. border-width:0px;
  2542. position:absolute;
  2543. left:482px;
  2544. top:67px;
  2545. width:375px;
  2546. height:40px;
  2547. display:flex;
  2548. }
  2549. #u47129 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:2px 2px 2px 2px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u47129_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u47130 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:0px;
  2568. height:0px;
  2569. }
  2570. #u47131_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:88px;
  2576. height:32px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 1);
  2579. box-sizing:border-box;
  2580. border-width:1px;
  2581. border-style:solid;
  2582. border-color:rgba(242, 242, 242, 1);
  2583. border-radius:33px;
  2584. -moz-box-shadow:none;
  2585. -webkit-box-shadow:none;
  2586. box-shadow:none;
  2587. }
  2588. #u47131 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:762px;
  2592. top:71px;
  2593. width:88px;
  2594. height:32px;
  2595. display:flex;
  2596. }
  2597. #u47131 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 2px 2px 2px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u47131_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u47132 {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:0px;
  2616. height:0px;
  2617. }
  2618. #u47133_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:18px;
  2624. height:18px;
  2625. }
  2626. #u47133 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:825px;
  2630. top:78px;
  2631. width:18px;
  2632. height:18px;
  2633. display:flex;
  2634. }
  2635. #u47133 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 2px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u47133_text {
  2643. border-width:0px;
  2644. word-wrap:break-word;
  2645. text-transform:none;
  2646. visibility:hidden;
  2647. }
  2648. #u47134_img {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:6px;
  2654. height:6px;
  2655. }
  2656. #u47134 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:831px;
  2660. top:84px;
  2661. width:6px;
  2662. height:6px;
  2663. display:flex;
  2664. }
  2665. #u47134 .text {
  2666. position:absolute;
  2667. align-self:center;
  2668. padding:2px 2px 2px 2px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u47134_text {
  2673. border-width:0px;
  2674. word-wrap:break-word;
  2675. text-transform:none;
  2676. visibility:hidden;
  2677. }
  2678. #u47135 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:0px;
  2684. height:0px;
  2685. }
  2686. #u47136_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:5px;
  2692. height:5px;
  2693. }
  2694. #u47136 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:776px;
  2698. top:85px;
  2699. width:5px;
  2700. height:5px;
  2701. display:flex;
  2702. }
  2703. #u47136 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u47136_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u47137_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:5px;
  2722. height:5px;
  2723. }
  2724. #u47137 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:792px;
  2728. top:85px;
  2729. width:5px;
  2730. height:5px;
  2731. display:flex;
  2732. }
  2733. #u47137 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 2px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u47137_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. visibility:hidden;
  2745. }
  2746. #u47138_img {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:7px;
  2752. height:7px;
  2753. }
  2754. #u47138 {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:783px;
  2758. top:84px;
  2759. width:7px;
  2760. height:7px;
  2761. display:flex;
  2762. }
  2763. #u47138 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u47138_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u47139_img {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:19px;
  2782. height:2px;
  2783. }
  2784. #u47139 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:800px;
  2788. top:87px;
  2789. width:18px;
  2790. height:1px;
  2791. display:flex;
  2792. -webkit-transform:rotate(90deg);
  2793. -moz-transform:rotate(90deg);
  2794. -ms-transform:rotate(90deg);
  2795. transform:rotate(90deg);
  2796. }
  2797. #u47139 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 2px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u47139_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u47140_img {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:375px;
  2816. height:44px;
  2817. }
  2818. #u47140 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:482px;
  2822. top:24px;
  2823. width:375px;
  2824. height:44px;
  2825. display:flex;
  2826. }
  2827. #u47140 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 2px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u47140_text {
  2835. border-width:0px;
  2836. word-wrap:break-word;
  2837. text-transform:none;
  2838. visibility:hidden;
  2839. }
  2840. #u47141_div {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:375px;
  2846. height:50px;
  2847. background:inherit;
  2848. background-color:rgba(255, 255, 255, 1);
  2849. box-sizing:border-box;
  2850. border-width:1px;
  2851. border-style:solid;
  2852. border-color:rgba(242, 242, 242, 1);
  2853. border-radius:26px;
  2854. border-top-left-radius:0px;
  2855. border-top-right-radius:0px;
  2856. -moz-box-shadow:none;
  2857. -webkit-box-shadow:none;
  2858. box-shadow:none;
  2859. }
  2860. #u47141 {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:482px;
  2864. top:788px;
  2865. width:375px;
  2866. height:50px;
  2867. display:flex;
  2868. }
  2869. #u47141 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:2px 2px 2px 2px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u47141_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. visibility:hidden;
  2881. }
  2882. #u47142 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:0px;
  2888. height:0px;
  2889. }
  2890. #u47143_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:24px;
  2896. height:24px;
  2897. }
  2898. #u47143 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:522px;
  2902. top:792px;
  2903. width:24px;
  2904. height:24px;
  2905. display:flex;
  2906. font-size:8px;
  2907. }
  2908. #u47143 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 2px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u47143_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. }
  2920. #u47144_div {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:25px;
  2926. height:17px;
  2927. background:inherit;
  2928. background-color:rgba(255, 255, 255, 0);
  2929. border:none;
  2930. border-radius:0px;
  2931. -moz-box-shadow:none;
  2932. -webkit-box-shadow:none;
  2933. box-shadow:none;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:12px;
  2938. }
  2939. #u47144 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:522px;
  2943. top:817px;
  2944. width:25px;
  2945. height:17px;
  2946. display:flex;
  2947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:12px;
  2951. }
  2952. #u47144 .text {
  2953. position:absolute;
  2954. align-self:flex-start;
  2955. padding:0px 0px 0px 0px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u47144_text {
  2960. border-width:0px;
  2961. white-space:nowrap;
  2962. text-transform:none;
  2963. }
  2964. #u47145 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:0px;
  2970. height:0px;
  2971. }
  2972. #u47146_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:24px;
  2978. height:24px;
  2979. }
  2980. #u47146 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:792px;
  2984. top:794px;
  2985. width:24px;
  2986. height:24px;
  2987. display:flex;
  2988. font-size:8px;
  2989. }
  2990. #u47146 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 2px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u47146_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. }
  3002. #u47147_div {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:25px;
  3008. height:17px;
  3009. background:inherit;
  3010. background-color:rgba(255, 255, 255, 0);
  3011. border:none;
  3012. border-radius:0px;
  3013. -moz-box-shadow:none;
  3014. -webkit-box-shadow:none;
  3015. box-shadow:none;
  3016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:12px;
  3020. }
  3021. #u47147 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:792px;
  3025. top:819px;
  3026. width:25px;
  3027. height:17px;
  3028. display:flex;
  3029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:12px;
  3033. }
  3034. #u47147 .text {
  3035. position:absolute;
  3036. align-self:flex-start;
  3037. padding:0px 0px 0px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u47147_text {
  3042. border-width:0px;
  3043. white-space:nowrap;
  3044. text-transform:none;
  3045. }
  3046. #u47148_div {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:375px;
  3052. height:681px;
  3053. background:inherit;
  3054. background-color:rgba(242, 242, 242, 0.462745098039216);
  3055. border:none;
  3056. border-radius:0px;
  3057. -moz-box-shadow:none;
  3058. -webkit-box-shadow:none;
  3059. box-shadow:none;
  3060. }
  3061. #u47148 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:482px;
  3065. top:107px;
  3066. width:375px;
  3067. height:681px;
  3068. display:flex;
  3069. }
  3070. #u47148 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u47148_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u47149 {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:0px;
  3089. height:0px;
  3090. }
  3091. #u47150_img {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:24px;
  3097. height:24px;
  3098. }
  3099. #u47150 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:704px;
  3103. top:792px;
  3104. width:24px;
  3105. height:24px;
  3106. display:flex;
  3107. font-size:8px;
  3108. }
  3109. #u47150 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u47150_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. }
  3121. #u47151_div {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:37px;
  3127. height:17px;
  3128. background:inherit;
  3129. background-color:rgba(255, 255, 255, 0);
  3130. border:none;
  3131. border-radius:0px;
  3132. -moz-box-shadow:none;
  3133. -webkit-box-shadow:none;
  3134. box-shadow:none;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:12px;
  3139. }
  3140. #u47151 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:698px;
  3144. top:817px;
  3145. width:37px;
  3146. height:17px;
  3147. display:flex;
  3148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:12px;
  3152. }
  3153. #u47151 .text {
  3154. position:absolute;
  3155. align-self:flex-start;
  3156. padding:0px 0px 0px 0px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u47151_text {
  3161. border-width:0px;
  3162. white-space:nowrap;
  3163. text-transform:none;
  3164. }
  3165. #u47152 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:0px;
  3171. height:0px;
  3172. }
  3173. #u47153_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:24px;
  3179. height:24px;
  3180. }
  3181. #u47153 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:610px;
  3185. top:792px;
  3186. width:24px;
  3187. height:24px;
  3188. display:flex;
  3189. font-size:8px;
  3190. }
  3191. #u47153 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 2px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u47153_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. }
  3203. #u47154_div {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:37px;
  3209. height:17px;
  3210. background:inherit;
  3211. background-color:rgba(255, 255, 255, 0);
  3212. border:none;
  3213. border-radius:0px;
  3214. -moz-box-shadow:none;
  3215. -webkit-box-shadow:none;
  3216. box-shadow:none;
  3217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3218. font-weight:400;
  3219. font-style:normal;
  3220. font-size:12px;
  3221. }
  3222. #u47154 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:604px;
  3226. top:817px;
  3227. width:37px;
  3228. height:17px;
  3229. display:flex;
  3230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3231. font-weight:400;
  3232. font-style:normal;
  3233. font-size:12px;
  3234. }
  3235. #u47154 .text {
  3236. position:absolute;
  3237. align-self:flex-start;
  3238. padding:0px 0px 0px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u47154_text {
  3243. border-width:0px;
  3244. white-space:nowrap;
  3245. text-transform:none;
  3246. }
  3247. #u47155_div {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:375px;
  3253. height:735px;
  3254. background:inherit;
  3255. background-color:rgba(242, 242, 242, 1);
  3256. border:none;
  3257. border-top:0px;
  3258. border-radius:25px;
  3259. border-top-left-radius:0px;
  3260. border-top-right-radius:0px;
  3261. -moz-box-shadow:none;
  3262. -webkit-box-shadow:none;
  3263. box-shadow:none;
  3264. }
  3265. #u47155 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:482px;
  3269. top:105px;
  3270. width:375px;
  3271. height:735px;
  3272. display:flex;
  3273. }
  3274. #u47155 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 2px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u47155_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u47156 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:0px;
  3293. height:0px;
  3294. }
  3295. #u47157_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:11px;
  3301. height:18px;
  3302. }
  3303. #u47157 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:495px;
  3307. top:79px;
  3308. width:11px;
  3309. height:18px;
  3310. display:flex;
  3311. }
  3312. #u47157 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 2px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u47157_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u47158 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:0px;
  3331. height:0px;
  3332. }
  3333. #u47159_div {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:375px;
  3339. height:40px;
  3340. background:inherit;
  3341. background-color:rgba(255, 255, 255, 1);
  3342. border:none;
  3343. border-radius:0px;
  3344. -moz-box-shadow:none;
  3345. -webkit-box-shadow:none;
  3346. box-shadow:none;
  3347. }
  3348. #u47159 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:482px;
  3352. top:105px;
  3353. width:375px;
  3354. height:40px;
  3355. display:flex;
  3356. }
  3357. #u47159 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 2px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u47159_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u47160_div {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:43px;
  3376. height:40px;
  3377. background:inherit;
  3378. background-color:rgba(255, 255, 255, 0);
  3379. box-sizing:border-box;
  3380. border-width:2px;
  3381. border-style:solid;
  3382. border-color:rgba(51, 51, 51, 1);
  3383. border-left:0px;
  3384. border-top:0px;
  3385. border-right:0px;
  3386. border-radius:0px;
  3387. border-bottom-right-radius:0px;
  3388. border-bottom-left-radius:0px;
  3389. -moz-box-shadow:none;
  3390. -webkit-box-shadow:none;
  3391. box-shadow:none;
  3392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3393. font-weight:400;
  3394. font-style:normal;
  3395. font-size:14px;
  3396. line-height:30px;
  3397. }
  3398. #u47160 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:758px;
  3402. top:105px;
  3403. width:43px;
  3404. height:40px;
  3405. display:flex;
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:14px;
  3410. line-height:30px;
  3411. }
  3412. #u47160 .text {
  3413. position:absolute;
  3414. align-self:center;
  3415. padding:0px 0px 0px 0px;
  3416. box-sizing:border-box;
  3417. width:100%;
  3418. }
  3419. #u47160_text {
  3420. border-width:0px;
  3421. white-space:nowrap;
  3422. text-transform:none;
  3423. }
  3424. #u47161_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:43px;
  3430. height:40px;
  3431. background:inherit;
  3432. background-color:rgba(255, 255, 255, 0);
  3433. box-sizing:border-box;
  3434. border-width:2px;
  3435. border-style:solid;
  3436. border-color:rgba(51, 51, 51, 1);
  3437. border-left:0px;
  3438. border-top:0px;
  3439. border-right:0px;
  3440. border-radius:0px;
  3441. border-bottom-right-radius:0px;
  3442. border-bottom-left-radius:0px;
  3443. -moz-box-shadow:none;
  3444. -webkit-box-shadow:none;
  3445. box-shadow:none;
  3446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:14px;
  3450. line-height:30px;
  3451. }
  3452. #u47161 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:653px;
  3456. top:105px;
  3457. width:43px;
  3458. height:40px;
  3459. display:flex;
  3460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:14px;
  3464. line-height:30px;
  3465. }
  3466. #u47161 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:0px 0px 0px 0px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u47161_text {
  3474. border-width:0px;
  3475. white-space:nowrap;
  3476. text-transform:none;
  3477. }
  3478. #u47162_div {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:52px;
  3484. height:40px;
  3485. background:inherit;
  3486. background-color:rgba(255, 255, 255, 0);
  3487. border:none;
  3488. border-left:0px;
  3489. border-top:0px;
  3490. border-right:0px;
  3491. border-radius:0px;
  3492. border-bottom-right-radius:0px;
  3493. border-bottom-left-radius:0px;
  3494. -moz-box-shadow:none;
  3495. -webkit-box-shadow:none;
  3496. box-shadow:none;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:14px;
  3501. line-height:30px;
  3502. }
  3503. #u47162 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:538px;
  3507. top:105px;
  3508. width:52px;
  3509. height:40px;
  3510. display:flex;
  3511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3512. font-weight:400;
  3513. font-style:normal;
  3514. font-size:14px;
  3515. line-height:30px;
  3516. }
  3517. #u47162 .text {
  3518. position:absolute;
  3519. align-self:center;
  3520. padding:0px 0px 0px 0px;
  3521. box-sizing:border-box;
  3522. width:100%;
  3523. }
  3524. #u47162_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. }
  3529. #u47164_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:433px;
  3535. height:865px;
  3536. }
  3537. #u47164 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:911px;
  3541. top:0px;
  3542. width:433px;
  3543. height:865px;
  3544. display:flex;
  3545. }
  3546. #u47164 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u47164_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u47165_div {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:375px;
  3565. height:40px;
  3566. background:inherit;
  3567. background-color:rgba(255, 255, 255, 1);
  3568. box-sizing:border-box;
  3569. border-width:1px;
  3570. border-style:solid;
  3571. border-color:rgba(215, 215, 215, 1);
  3572. border-left:0px;
  3573. border-top:0px;
  3574. border-right:0px;
  3575. border-radius:0px;
  3576. border-bottom-right-radius:0px;
  3577. border-bottom-left-radius:0px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. }
  3582. #u47165 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:940px;
  3586. top:67px;
  3587. width:375px;
  3588. height:40px;
  3589. display:flex;
  3590. }
  3591. #u47165 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 2px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u47165_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u47166 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:0px;
  3610. height:0px;
  3611. }
  3612. #u47167_div {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:0px;
  3616. top:0px;
  3617. width:88px;
  3618. height:32px;
  3619. background:inherit;
  3620. background-color:rgba(255, 255, 255, 1);
  3621. box-sizing:border-box;
  3622. border-width:1px;
  3623. border-style:solid;
  3624. border-color:rgba(242, 242, 242, 1);
  3625. border-radius:33px;
  3626. -moz-box-shadow:none;
  3627. -webkit-box-shadow:none;
  3628. box-shadow:none;
  3629. }
  3630. #u47167 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:1220px;
  3634. top:71px;
  3635. width:88px;
  3636. height:32px;
  3637. display:flex;
  3638. }
  3639. #u47167 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 2px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u47167_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. visibility:hidden;
  3651. }
  3652. #u47168 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:0px;
  3658. height:0px;
  3659. }
  3660. #u47169_img {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:18px;
  3666. height:18px;
  3667. }
  3668. #u47169 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:1283px;
  3672. top:78px;
  3673. width:18px;
  3674. height:18px;
  3675. display:flex;
  3676. }
  3677. #u47169 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:2px 2px 2px 2px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u47169_text {
  3685. border-width:0px;
  3686. word-wrap:break-word;
  3687. text-transform:none;
  3688. visibility:hidden;
  3689. }
  3690. #u47170_img {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:6px;
  3696. height:6px;
  3697. }
  3698. #u47170 {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:1289px;
  3702. top:84px;
  3703. width:6px;
  3704. height:6px;
  3705. display:flex;
  3706. }
  3707. #u47170 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 2px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u47170_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u47171 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:0px;
  3726. height:0px;
  3727. }
  3728. #u47172_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:5px;
  3734. height:5px;
  3735. }
  3736. #u47172 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:1234px;
  3740. top:85px;
  3741. width:5px;
  3742. height:5px;
  3743. display:flex;
  3744. }
  3745. #u47172 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 2px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u47172_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u47173_img {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:5px;
  3764. height:5px;
  3765. }
  3766. #u47173 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:1250px;
  3770. top:85px;
  3771. width:5px;
  3772. height:5px;
  3773. display:flex;
  3774. }
  3775. #u47173 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 2px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u47173_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u47174_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:7px;
  3794. height:7px;
  3795. }
  3796. #u47174 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:1241px;
  3800. top:84px;
  3801. width:7px;
  3802. height:7px;
  3803. display:flex;
  3804. }
  3805. #u47174 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 2px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u47174_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u47175_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:19px;
  3824. height:2px;
  3825. }
  3826. #u47175 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:1258px;
  3830. top:87px;
  3831. width:18px;
  3832. height:1px;
  3833. display:flex;
  3834. -webkit-transform:rotate(90deg);
  3835. -moz-transform:rotate(90deg);
  3836. -ms-transform:rotate(90deg);
  3837. transform:rotate(90deg);
  3838. }
  3839. #u47175 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 2px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u47175_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u47176_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:375px;
  3858. height:44px;
  3859. }
  3860. #u47176 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:940px;
  3864. top:24px;
  3865. width:375px;
  3866. height:44px;
  3867. display:flex;
  3868. }
  3869. #u47176 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 2px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u47176_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u47177_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:375px;
  3888. height:50px;
  3889. background:inherit;
  3890. background-color:rgba(255, 255, 255, 1);
  3891. box-sizing:border-box;
  3892. border-width:1px;
  3893. border-style:solid;
  3894. border-color:rgba(242, 242, 242, 1);
  3895. border-radius:26px;
  3896. border-top-left-radius:0px;
  3897. border-top-right-radius:0px;
  3898. -moz-box-shadow:none;
  3899. -webkit-box-shadow:none;
  3900. box-shadow:none;
  3901. }
  3902. #u47177 {
  3903. border-width:0px;
  3904. position:absolute;
  3905. left:940px;
  3906. top:788px;
  3907. width:375px;
  3908. height:50px;
  3909. display:flex;
  3910. }
  3911. #u47177 .text {
  3912. position:absolute;
  3913. align-self:center;
  3914. padding:2px 2px 2px 2px;
  3915. box-sizing:border-box;
  3916. width:100%;
  3917. }
  3918. #u47177_text {
  3919. border-width:0px;
  3920. word-wrap:break-word;
  3921. text-transform:none;
  3922. visibility:hidden;
  3923. }
  3924. #u47178 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:0px;
  3930. height:0px;
  3931. }
  3932. #u47179_img {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:0px;
  3936. top:0px;
  3937. width:24px;
  3938. height:24px;
  3939. }
  3940. #u47179 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:980px;
  3944. top:792px;
  3945. width:24px;
  3946. height:24px;
  3947. display:flex;
  3948. font-size:8px;
  3949. }
  3950. #u47179 .text {
  3951. position:absolute;
  3952. align-self:center;
  3953. padding:2px 2px 2px 2px;
  3954. box-sizing:border-box;
  3955. width:100%;
  3956. }
  3957. #u47179_text {
  3958. border-width:0px;
  3959. word-wrap:break-word;
  3960. text-transform:none;
  3961. }
  3962. #u47180_div {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:25px;
  3968. height:17px;
  3969. background:inherit;
  3970. background-color:rgba(255, 255, 255, 0);
  3971. border:none;
  3972. border-radius:0px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. }
  3981. #u47180 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:980px;
  3985. top:817px;
  3986. width:25px;
  3987. height:17px;
  3988. display:flex;
  3989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. }
  3994. #u47180 .text {
  3995. position:absolute;
  3996. align-self:flex-start;
  3997. padding:0px 0px 0px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u47180_text {
  4002. border-width:0px;
  4003. white-space:nowrap;
  4004. text-transform:none;
  4005. }
  4006. #u47181 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:0px;
  4012. height:0px;
  4013. }
  4014. #u47182_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:24px;
  4020. height:24px;
  4021. }
  4022. #u47182 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:1250px;
  4026. top:794px;
  4027. width:24px;
  4028. height:24px;
  4029. display:flex;
  4030. font-size:8px;
  4031. }
  4032. #u47182 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 2px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u47182_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. }
  4044. #u47183_div {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:25px;
  4050. height:17px;
  4051. background:inherit;
  4052. background-color:rgba(255, 255, 255, 0);
  4053. border:none;
  4054. border-radius:0px;
  4055. -moz-box-shadow:none;
  4056. -webkit-box-shadow:none;
  4057. box-shadow:none;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:12px;
  4062. }
  4063. #u47183 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:1250px;
  4067. top:819px;
  4068. width:25px;
  4069. height:17px;
  4070. display:flex;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:12px;
  4075. }
  4076. #u47183 .text {
  4077. position:absolute;
  4078. align-self:flex-start;
  4079. padding:0px 0px 0px 0px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u47183_text {
  4084. border-width:0px;
  4085. white-space:nowrap;
  4086. text-transform:none;
  4087. }
  4088. #u47184_div {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:375px;
  4094. height:681px;
  4095. background:inherit;
  4096. background-color:rgba(242, 242, 242, 0.462745098039216);
  4097. border:none;
  4098. border-radius:0px;
  4099. -moz-box-shadow:none;
  4100. -webkit-box-shadow:none;
  4101. box-shadow:none;
  4102. }
  4103. #u47184 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:940px;
  4107. top:107px;
  4108. width:375px;
  4109. height:681px;
  4110. display:flex;
  4111. }
  4112. #u47184 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 2px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u47184_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u47185 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:0px;
  4131. height:0px;
  4132. }
  4133. #u47186_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:24px;
  4139. height:24px;
  4140. }
  4141. #u47186 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:1162px;
  4145. top:792px;
  4146. width:24px;
  4147. height:24px;
  4148. display:flex;
  4149. font-size:8px;
  4150. }
  4151. #u47186 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u47186_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. }
  4163. #u47187_div {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:0px;
  4167. top:0px;
  4168. width:37px;
  4169. height:17px;
  4170. background:inherit;
  4171. background-color:rgba(255, 255, 255, 0);
  4172. border:none;
  4173. border-radius:0px;
  4174. -moz-box-shadow:none;
  4175. -webkit-box-shadow:none;
  4176. box-shadow:none;
  4177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:12px;
  4181. }
  4182. #u47187 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:1156px;
  4186. top:817px;
  4187. width:37px;
  4188. height:17px;
  4189. display:flex;
  4190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:12px;
  4194. }
  4195. #u47187 .text {
  4196. position:absolute;
  4197. align-self:flex-start;
  4198. padding:0px 0px 0px 0px;
  4199. box-sizing:border-box;
  4200. width:100%;
  4201. }
  4202. #u47187_text {
  4203. border-width:0px;
  4204. white-space:nowrap;
  4205. text-transform:none;
  4206. }
  4207. #u47188 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:0px;
  4213. height:0px;
  4214. }
  4215. #u47189_img {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:24px;
  4221. height:24px;
  4222. }
  4223. #u47189 {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:1068px;
  4227. top:792px;
  4228. width:24px;
  4229. height:24px;
  4230. display:flex;
  4231. font-size:8px;
  4232. }
  4233. #u47189 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 2px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u47189_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. }
  4245. #u47190_div {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:37px;
  4251. height:17px;
  4252. background:inherit;
  4253. background-color:rgba(255, 255, 255, 0);
  4254. border:none;
  4255. border-radius:0px;
  4256. -moz-box-shadow:none;
  4257. -webkit-box-shadow:none;
  4258. box-shadow:none;
  4259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4260. font-weight:400;
  4261. font-style:normal;
  4262. font-size:12px;
  4263. }
  4264. #u47190 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:1062px;
  4268. top:817px;
  4269. width:37px;
  4270. height:17px;
  4271. display:flex;
  4272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:12px;
  4276. }
  4277. #u47190 .text {
  4278. position:absolute;
  4279. align-self:flex-start;
  4280. padding:0px 0px 0px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u47190_text {
  4285. border-width:0px;
  4286. white-space:nowrap;
  4287. text-transform:none;
  4288. }
  4289. #u47191_div {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:375px;
  4295. height:735px;
  4296. background:inherit;
  4297. background-color:rgba(242, 242, 242, 1);
  4298. border:none;
  4299. border-top:0px;
  4300. border-radius:25px;
  4301. border-top-left-radius:0px;
  4302. border-top-right-radius:0px;
  4303. -moz-box-shadow:none;
  4304. -webkit-box-shadow:none;
  4305. box-shadow:none;
  4306. }
  4307. #u47191 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:940px;
  4311. top:105px;
  4312. width:375px;
  4313. height:735px;
  4314. display:flex;
  4315. }
  4316. #u47191 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u47191_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u47192 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:0px;
  4335. height:0px;
  4336. }
  4337. #u47193_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:11px;
  4343. height:18px;
  4344. }
  4345. #u47193 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:953px;
  4349. top:79px;
  4350. width:11px;
  4351. height:18px;
  4352. display:flex;
  4353. }
  4354. #u47193 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 2px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u47193_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u47194 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:0px;
  4373. height:0px;
  4374. }
  4375. #u47195_div {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:375px;
  4381. height:40px;
  4382. background:inherit;
  4383. background-color:rgba(255, 255, 255, 1);
  4384. border:none;
  4385. border-radius:0px;
  4386. -moz-box-shadow:none;
  4387. -webkit-box-shadow:none;
  4388. box-shadow:none;
  4389. }
  4390. #u47195 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:940px;
  4394. top:105px;
  4395. width:375px;
  4396. height:40px;
  4397. display:flex;
  4398. }
  4399. #u47195 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 2px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u47195_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u47196_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:43px;
  4418. height:40px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 0);
  4421. box-sizing:border-box;
  4422. border-width:2px;
  4423. border-style:solid;
  4424. border-color:rgba(51, 51, 51, 1);
  4425. border-left:0px;
  4426. border-top:0px;
  4427. border-right:0px;
  4428. border-radius:0px;
  4429. border-bottom-right-radius:0px;
  4430. border-bottom-left-radius:0px;
  4431. -moz-box-shadow:none;
  4432. -webkit-box-shadow:none;
  4433. box-shadow:none;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. line-height:30px;
  4439. }
  4440. #u47196 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:1216px;
  4444. top:105px;
  4445. width:43px;
  4446. height:40px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:14px;
  4452. line-height:30px;
  4453. }
  4454. #u47196 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:0px 0px 0px 0px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u47196_text {
  4462. border-width:0px;
  4463. white-space:nowrap;
  4464. text-transform:none;
  4465. }
  4466. #u47197_div {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:43px;
  4472. height:40px;
  4473. background:inherit;
  4474. background-color:rgba(255, 255, 255, 0);
  4475. border:none;
  4476. border-left:0px;
  4477. border-top:0px;
  4478. border-right:0px;
  4479. border-radius:0px;
  4480. border-bottom-right-radius:0px;
  4481. border-bottom-left-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:14px;
  4489. line-height:30px;
  4490. }
  4491. #u47197 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:1111px;
  4495. top:105px;
  4496. width:43px;
  4497. height:40px;
  4498. display:flex;
  4499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:14px;
  4503. line-height:30px;
  4504. }
  4505. #u47197 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:0px 0px 0px 0px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u47197_text {
  4513. border-width:0px;
  4514. white-space:nowrap;
  4515. text-transform:none;
  4516. }
  4517. #u47198_div {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:52px;
  4523. height:40px;
  4524. background:inherit;
  4525. background-color:rgba(255, 255, 255, 0);
  4526. border:none;
  4527. border-left:0px;
  4528. border-top:0px;
  4529. border-right:0px;
  4530. border-radius:0px;
  4531. border-bottom-right-radius:0px;
  4532. border-bottom-left-radius:0px;
  4533. -moz-box-shadow:none;
  4534. -webkit-box-shadow:none;
  4535. box-shadow:none;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:14px;
  4540. line-height:30px;
  4541. }
  4542. #u47198 {
  4543. border-width:0px;
  4544. position:absolute;
  4545. left:996px;
  4546. top:105px;
  4547. width:52px;
  4548. height:40px;
  4549. display:flex;
  4550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4551. font-weight:400;
  4552. font-style:normal;
  4553. font-size:14px;
  4554. line-height:30px;
  4555. }
  4556. #u47198 .text {
  4557. position:absolute;
  4558. align-self:center;
  4559. padding:0px 0px 0px 0px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u47198_text {
  4564. border-width:0px;
  4565. word-wrap:break-word;
  4566. text-transform:none;
  4567. }
  4568. #u47199_div {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:113px;
  4574. height:30px;
  4575. background:inherit;
  4576. background-color:rgba(255, 255, 255, 0);
  4577. border:none;
  4578. border-radius:0px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4583. font-weight:500;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. line-height:30px;
  4587. }
  4588. #u47199 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:608px;
  4592. top:73px;
  4593. width:113px;
  4594. height:30px;
  4595. display:flex;
  4596. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4597. font-weight:500;
  4598. font-style:normal;
  4599. font-size:14px;
  4600. line-height:30px;
  4601. }
  4602. #u47199 .text {
  4603. position:absolute;
  4604. align-self:flex-start;
  4605. padding:0px 0px 0px 0px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u47199_text {
  4610. border-width:0px;
  4611. white-space:nowrap;
  4612. text-transform:none;
  4613. }
  4614. #u47200_div {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:113px;
  4620. height:30px;
  4621. background:inherit;
  4622. background-color:rgba(255, 255, 255, 0);
  4623. border:none;
  4624. border-radius:0px;
  4625. -moz-box-shadow:none;
  4626. -webkit-box-shadow:none;
  4627. box-shadow:none;
  4628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4629. font-weight:500;
  4630. font-style:normal;
  4631. font-size:14px;
  4632. line-height:30px;
  4633. }
  4634. #u47200 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:1070px;
  4638. top:73px;
  4639. width:113px;
  4640. height:30px;
  4641. display:flex;
  4642. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4643. font-weight:500;
  4644. font-style:normal;
  4645. font-size:14px;
  4646. line-height:30px;
  4647. }
  4648. #u47200 .text {
  4649. position:absolute;
  4650. align-self:flex-start;
  4651. padding:0px 0px 0px 0px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u47200_text {
  4656. border-width:0px;
  4657. white-space:nowrap;
  4658. text-transform:none;
  4659. }
  4660. #u47201 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:0px;
  4666. height:0px;
  4667. }
  4668. #u47202_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:300px;
  4674. height:149px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 1);
  4677. border:none;
  4678. border-radius:10px;
  4679. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4680. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4681. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4682. }
  4683. #u47202 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:86px;
  4687. top:417px;
  4688. width:300px;
  4689. height:149px;
  4690. display:flex;
  4691. }
  4692. #u47202 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 2px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u47202_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. visibility:hidden;
  4704. }
  4705. #u47203_div {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:217px;
  4711. height:30px;
  4712. background:inherit;
  4713. background-color:rgba(255, 255, 255, 0);
  4714. border:none;
  4715. border-left:0px;
  4716. border-top:0px;
  4717. border-right:0px;
  4718. border-radius:0px;
  4719. border-bottom-right-radius:0px;
  4720. border-bottom-left-radius:0px;
  4721. -moz-box-shadow:none;
  4722. -webkit-box-shadow:none;
  4723. box-shadow:none;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:18px;
  4728. text-align:center;
  4729. line-height:30px;
  4730. }
  4731. #u47203 {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:127px;
  4735. top:451px;
  4736. width:217px;
  4737. height:30px;
  4738. display:flex;
  4739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4740. font-weight:400;
  4741. font-style:normal;
  4742. font-size:18px;
  4743. text-align:center;
  4744. line-height:30px;
  4745. }
  4746. #u47203 .text {
  4747. position:absolute;
  4748. align-self:flex-start;
  4749. padding:0px 0px 0px 0px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u47203_text {
  4754. border-width:0px;
  4755. white-space:nowrap;
  4756. text-transform:none;
  4757. }
  4758. #u47204_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:301px;
  4764. height:2px;
  4765. }
  4766. #u47204 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:86px;
  4770. top:517px;
  4771. width:300px;
  4772. height:1px;
  4773. display:flex;
  4774. }
  4775. #u47204 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 2px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u47204_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u47205_div {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:41px;
  4794. height:30px;
  4795. background:inherit;
  4796. background-color:rgba(255, 255, 255, 0);
  4797. border:none;
  4798. border-left:0px;
  4799. border-top:0px;
  4800. border-right:0px;
  4801. border-radius:0px;
  4802. border-bottom-right-radius:0px;
  4803. border-bottom-left-radius:0px;
  4804. -moz-box-shadow:none;
  4805. -webkit-box-shadow:none;
  4806. box-shadow:none;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:18px;
  4811. color:#1890FF;
  4812. text-align:center;
  4813. line-height:30px;
  4814. }
  4815. #u47205 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:302px;
  4819. top:527px;
  4820. width:41px;
  4821. height:30px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:18px;
  4827. color:#1890FF;
  4828. text-align:center;
  4829. line-height:30px;
  4830. }
  4831. #u47205 .text {
  4832. position:absolute;
  4833. align-self:flex-start;
  4834. padding:0px 0px 0px 0px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u47205_text {
  4839. border-width:0px;
  4840. word-wrap:break-word;
  4841. text-transform:none;
  4842. }
  4843. #u47206_div {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:41px;
  4849. height:30px;
  4850. background:inherit;
  4851. background-color:rgba(255, 255, 255, 0);
  4852. border:none;
  4853. border-left:0px;
  4854. border-top:0px;
  4855. border-right:0px;
  4856. border-radius:0px;
  4857. border-bottom-right-radius:0px;
  4858. border-bottom-left-radius:0px;
  4859. -moz-box-shadow:none;
  4860. -webkit-box-shadow:none;
  4861. box-shadow:none;
  4862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:18px;
  4866. color:#1890FF;
  4867. text-align:center;
  4868. line-height:30px;
  4869. }
  4870. #u47206 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:132px;
  4874. top:527px;
  4875. width:41px;
  4876. height:30px;
  4877. display:flex;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:18px;
  4882. color:#1890FF;
  4883. text-align:center;
  4884. line-height:30px;
  4885. }
  4886. #u47206 .text {
  4887. position:absolute;
  4888. align-self:flex-start;
  4889. padding:0px 0px 0px 0px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u47206_text {
  4894. border-width:0px;
  4895. word-wrap:break-word;
  4896. text-transform:none;
  4897. }
  4898. #u47207_img {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:2px;
  4904. height:49px;
  4905. }
  4906. #u47207 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:235px;
  4910. top:518px;
  4911. width:1px;
  4912. height:48px;
  4913. display:flex;
  4914. }
  4915. #u47207 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 2px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u47207_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u47208 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:0px;
  4934. height:0px;
  4935. }
  4936. #u47209_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:300px;
  4942. height:149px;
  4943. background:inherit;
  4944. background-color:rgba(255, 255, 255, 1);
  4945. border:none;
  4946. border-radius:10px;
  4947. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4948. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4949. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4950. }
  4951. #u47209 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:67px;
  4955. top:598px;
  4956. width:300px;
  4957. height:149px;
  4958. display:flex;
  4959. }
  4960. #u47209 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:2px 2px 2px 2px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u47209_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. visibility:hidden;
  4972. }
  4973. #u47210_div {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:217px;
  4979. height:30px;
  4980. background:inherit;
  4981. background-color:rgba(255, 255, 255, 0);
  4982. border:none;
  4983. border-left:0px;
  4984. border-top:0px;
  4985. border-right:0px;
  4986. border-radius:0px;
  4987. border-bottom-right-radius:0px;
  4988. border-bottom-left-radius:0px;
  4989. -moz-box-shadow:none;
  4990. -webkit-box-shadow:none;
  4991. box-shadow:none;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. font-size:18px;
  4996. text-align:center;
  4997. line-height:30px;
  4998. }
  4999. #u47210 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:108px;
  5003. top:632px;
  5004. width:217px;
  5005. height:30px;
  5006. display:flex;
  5007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:18px;
  5011. text-align:center;
  5012. line-height:30px;
  5013. }
  5014. #u47210 .text {
  5015. position:absolute;
  5016. align-self:flex-start;
  5017. padding:0px 0px 0px 0px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u47210_text {
  5022. border-width:0px;
  5023. white-space:nowrap;
  5024. text-transform:none;
  5025. }
  5026. #u47211_img {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:301px;
  5032. height:2px;
  5033. }
  5034. #u47211 {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:67px;
  5038. top:698px;
  5039. width:300px;
  5040. height:1px;
  5041. display:flex;
  5042. }
  5043. #u47211 .text {
  5044. position:absolute;
  5045. align-self:center;
  5046. padding:2px 2px 2px 2px;
  5047. box-sizing:border-box;
  5048. width:100%;
  5049. }
  5050. #u47211_text {
  5051. border-width:0px;
  5052. word-wrap:break-word;
  5053. text-transform:none;
  5054. visibility:hidden;
  5055. }
  5056. #u47212_div {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:41px;
  5062. height:30px;
  5063. background:inherit;
  5064. background-color:rgba(255, 255, 255, 0);
  5065. border:none;
  5066. border-left:0px;
  5067. border-top:0px;
  5068. border-right:0px;
  5069. border-radius:0px;
  5070. border-bottom-right-radius:0px;
  5071. border-bottom-left-radius:0px;
  5072. -moz-box-shadow:none;
  5073. -webkit-box-shadow:none;
  5074. box-shadow:none;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:18px;
  5079. color:#1890FF;
  5080. text-align:center;
  5081. line-height:30px;
  5082. }
  5083. #u47212 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:283px;
  5087. top:708px;
  5088. width:41px;
  5089. height:30px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:18px;
  5095. color:#1890FF;
  5096. text-align:center;
  5097. line-height:30px;
  5098. }
  5099. #u47212 .text {
  5100. position:absolute;
  5101. align-self:flex-start;
  5102. padding:0px 0px 0px 0px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u47212_text {
  5107. border-width:0px;
  5108. word-wrap:break-word;
  5109. text-transform:none;
  5110. }
  5111. #u47213_div {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:41px;
  5117. height:30px;
  5118. background:inherit;
  5119. background-color:rgba(255, 255, 255, 0);
  5120. border:none;
  5121. border-left:0px;
  5122. border-top:0px;
  5123. border-right:0px;
  5124. border-radius:0px;
  5125. border-bottom-right-radius:0px;
  5126. border-bottom-left-radius:0px;
  5127. -moz-box-shadow:none;
  5128. -webkit-box-shadow:none;
  5129. box-shadow:none;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:18px;
  5134. color:#1890FF;
  5135. text-align:center;
  5136. line-height:30px;
  5137. }
  5138. #u47213 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:113px;
  5142. top:708px;
  5143. width:41px;
  5144. height:30px;
  5145. display:flex;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:18px;
  5150. color:#1890FF;
  5151. text-align:center;
  5152. line-height:30px;
  5153. }
  5154. #u47213 .text {
  5155. position:absolute;
  5156. align-self:flex-start;
  5157. padding:0px 0px 0px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u47213_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. }
  5166. #u47214_img {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:2px;
  5172. height:49px;
  5173. }
  5174. #u47214 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:216px;
  5178. top:699px;
  5179. width:1px;
  5180. height:48px;
  5181. display:flex;
  5182. }
  5183. #u47214 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:2px 2px 2px 2px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u47214_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u47215 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:0px;
  5202. height:0px;
  5203. }
  5204. #u47216_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:375px;
  5210. height:80px;
  5211. background:inherit;
  5212. background-color:rgba(255, 255, 255, 1);
  5213. border:none;
  5214. border-left:0px;
  5215. border-top:0px;
  5216. border-right:0px;
  5217. border-radius:0px;
  5218. border-bottom-right-radius:0px;
  5219. border-bottom-left-radius:0px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. }
  5224. #u47216 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:1393px;
  5228. top:451px;
  5229. width:375px;
  5230. height:80px;
  5231. display:flex;
  5232. }
  5233. #u47216 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u47216_text {
  5241. border-width:0px;
  5242. word-wrap:break-word;
  5243. text-transform:none;
  5244. visibility:hidden;
  5245. }
  5246. #u47217_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:225px;
  5252. height:30px;
  5253. background:inherit;
  5254. background-color:rgba(255, 255, 255, 0);
  5255. border:none;
  5256. border-left:0px;
  5257. border-top:0px;
  5258. border-right:0px;
  5259. border-radius:0px;
  5260. border-bottom-right-radius:0px;
  5261. border-bottom-left-radius:0px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:16px;
  5269. line-height:30px;
  5270. }
  5271. #u47217 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:1470px;
  5275. top:490px;
  5276. width:225px;
  5277. height:30px;
  5278. display:flex;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:16px;
  5283. line-height:30px;
  5284. }
  5285. #u47217 .text {
  5286. position:absolute;
  5287. align-self:flex-start;
  5288. padding:0px 0px 0px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u47217_text {
  5293. border-width:0px;
  5294. white-space:nowrap;
  5295. text-transform:none;
  5296. }
  5297. #u47218_div {
  5298. border-width:0px;
  5299. position:absolute;
  5300. left:0px;
  5301. top:0px;
  5302. width:49px;
  5303. height:25px;
  5304. background:inherit;
  5305. background-color:rgba(255, 255, 255, 0);
  5306. border:none;
  5307. border-left:0px;
  5308. border-top:0px;
  5309. border-right:0px;
  5310. border-radius:0px;
  5311. border-bottom-right-radius:0px;
  5312. border-bottom-left-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:12px;
  5320. color:#7F7F7F;
  5321. line-height:25px;
  5322. }
  5323. #u47218 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:1470px;
  5327. top:465px;
  5328. width:49px;
  5329. height:25px;
  5330. display:flex;
  5331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:12px;
  5335. color:#7F7F7F;
  5336. line-height:25px;
  5337. }
  5338. #u47218 .text {
  5339. position:absolute;
  5340. align-self:flex-start;
  5341. padding:0px 0px 0px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u47218_text {
  5346. border-width:0px;
  5347. white-space:nowrap;
  5348. text-transform:none;
  5349. }
  5350. #u47219 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:0px;
  5356. height:0px;
  5357. }
  5358. #u47220_div {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:358px;
  5364. height:200px;
  5365. background:inherit;
  5366. background-color:rgba(255, 255, 255, 1);
  5367. border:none;
  5368. border-radius:4px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. }
  5373. #u47220 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:38px;
  5377. top:155px;
  5378. width:358px;
  5379. height:200px;
  5380. display:flex;
  5381. }
  5382. #u47220 .text {
  5383. position:absolute;
  5384. align-self:center;
  5385. padding:2px 2px 2px 2px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u47220_text {
  5390. border-width:0px;
  5391. word-wrap:break-word;
  5392. text-transform:none;
  5393. visibility:hidden;
  5394. }
  5395. #u47221_div {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:0px;
  5399. top:0px;
  5400. width:48px;
  5401. height:50px;
  5402. background:inherit;
  5403. background-color:rgba(24, 144, 255, 1);
  5404. border:none;
  5405. border-radius:4px;
  5406. -moz-box-shadow:none;
  5407. -webkit-box-shadow:none;
  5408. box-shadow:none;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. color:#FFFFFF;
  5413. }
  5414. #u47221 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:54px;
  5418. top:175px;
  5419. width:48px;
  5420. height:50px;
  5421. display:flex;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. color:#FFFFFF;
  5426. }
  5427. #u47221 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u47221_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. }
  5439. #u47222_div {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:127px;
  5445. height:30px;
  5446. background:inherit;
  5447. background-color:rgba(255, 255, 255, 0);
  5448. border:none;
  5449. border-left:0px;
  5450. border-top:0px;
  5451. border-right:0px;
  5452. border-radius:0px;
  5453. border-bottom-right-radius:0px;
  5454. border-bottom-left-radius:0px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:18px;
  5462. line-height:30px;
  5463. }
  5464. #u47222 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:116px;
  5468. top:175px;
  5469. width:127px;
  5470. height:30px;
  5471. display:flex;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:18px;
  5476. line-height:30px;
  5477. }
  5478. #u47222 .text {
  5479. position:absolute;
  5480. align-self:flex-start;
  5481. padding:0px 0px 0px 0px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u47222_text {
  5486. border-width:0px;
  5487. white-space:nowrap;
  5488. text-transform:none;
  5489. }
  5490. #u47223_img {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:181px;
  5496. height:80px;
  5497. }
  5498. #u47223 {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:120px;
  5502. top:234px;
  5503. width:181px;
  5504. height:80px;
  5505. display:flex;
  5506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. font-size:12px;
  5510. color:#7F7F7F;
  5511. line-height:20px;
  5512. }
  5513. #u47223 .text {
  5514. position:absolute;
  5515. align-self:center;
  5516. padding:0px 0px 0px 0px;
  5517. box-sizing:border-box;
  5518. width:100%;
  5519. }
  5520. #u47223_text {
  5521. border-width:0px;
  5522. white-space:nowrap;
  5523. text-transform:none;
  5524. }
  5525. #u47224 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:0px;
  5531. height:0px;
  5532. }
  5533. #u47225_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:60px;
  5539. height:20px;
  5540. background:inherit;
  5541. background-color:rgba(255, 255, 255, 1);
  5542. box-sizing:border-box;
  5543. border-width:1px;
  5544. border-style:solid;
  5545. border-color:rgba(215, 215, 215, 1);
  5546. border-radius:2px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. }
  5551. #u47225 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:116px;
  5555. top:205px;
  5556. width:60px;
  5557. height:20px;
  5558. display:flex;
  5559. }
  5560. #u47225 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 2px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u47225_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. visibility:hidden;
  5572. }
  5573. #u47226 {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:0px;
  5579. height:0px;
  5580. }
  5581. #u47227_div {
  5582. border-width:0px;
  5583. position:absolute;
  5584. left:0px;
  5585. top:0px;
  5586. width:37px;
  5587. height:17px;
  5588. background:inherit;
  5589. background-color:rgba(255, 255, 255, 0);
  5590. border:none;
  5591. border-left:0px;
  5592. border-top:0px;
  5593. border-right:0px;
  5594. border-radius:0px;
  5595. border-bottom-right-radius:0px;
  5596. border-bottom-left-radius:0px;
  5597. -moz-box-shadow:none;
  5598. -webkit-box-shadow:none;
  5599. box-shadow:none;
  5600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:12px;
  5604. color:#7F7F7F;
  5605. }
  5606. #u47227 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:135px;
  5610. top:207px;
  5611. width:37px;
  5612. height:17px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:12px;
  5618. color:#7F7F7F;
  5619. }
  5620. #u47227 .text {
  5621. position:absolute;
  5622. align-self:flex-start;
  5623. padding:0px 0px 0px 0px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u47227_text {
  5628. border-width:0px;
  5629. white-space:nowrap;
  5630. text-transform:none;
  5631. }
  5632. #u47228 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:0px;
  5638. height:0px;
  5639. }
  5640. #u47229_img {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:12px;
  5646. height:12px;
  5647. }
  5648. #u47229 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:120px;
  5652. top:209px;
  5653. width:12px;
  5654. height:12px;
  5655. display:flex;
  5656. }
  5657. #u47229 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 2px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u47229_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u47230_img {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:6px;
  5676. height:4px;
  5677. }
  5678. #u47230 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:123px;
  5682. top:213px;
  5683. width:6px;
  5684. height:4px;
  5685. display:flex;
  5686. }
  5687. #u47230 .text {
  5688. position:absolute;
  5689. align-self:center;
  5690. padding:2px 2px 2px 2px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u47230_text {
  5695. border-width:0px;
  5696. word-wrap:break-word;
  5697. text-transform:none;
  5698. visibility:hidden;
  5699. }
  5700. #u47231_div {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:58px;
  5706. height:30px;
  5707. background:inherit;
  5708. background-color:rgba(24, 144, 255, 1);
  5709. border:none;
  5710. border-radius:40px;
  5711. -moz-box-shadow:none;
  5712. -webkit-box-shadow:none;
  5713. box-shadow:none;
  5714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:12px;
  5718. color:#FFFFFF;
  5719. }
  5720. #u47231 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:328px;
  5724. top:318px;
  5725. width:58px;
  5726. height:30px;
  5727. display:flex;
  5728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:12px;
  5732. color:#FFFFFF;
  5733. }
  5734. #u47231 .text {
  5735. position:absolute;
  5736. align-self:center;
  5737. padding:2px 2px 2px 2px;
  5738. box-sizing:border-box;
  5739. width:100%;
  5740. }
  5741. #u47231_text {
  5742. border-width:0px;
  5743. word-wrap:break-word;
  5744. text-transform:none;
  5745. }
  5746. #u47232_div {
  5747. border-width:0px;
  5748. position:absolute;
  5749. left:0px;
  5750. top:0px;
  5751. width:58px;
  5752. height:30px;
  5753. background:inherit;
  5754. background-color:rgba(255, 255, 255, 1);
  5755. box-sizing:border-box;
  5756. border-width:1px;
  5757. border-style:solid;
  5758. border-color:rgba(127, 127, 127, 1);
  5759. border-radius:40px;
  5760. -moz-box-shadow:none;
  5761. -webkit-box-shadow:none;
  5762. box-shadow:none;
  5763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:12px;
  5767. }
  5768. #u47232 {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:260px;
  5772. top:318px;
  5773. width:58px;
  5774. height:30px;
  5775. display:flex;
  5776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:12px;
  5780. }
  5781. #u47232 .text {
  5782. position:absolute;
  5783. align-self:center;
  5784. padding:2px 2px 2px 2px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u47232_text {
  5789. border-width:0px;
  5790. word-wrap:break-word;
  5791. text-transform:none;
  5792. }
  5793. #u47233 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:0px;
  5799. height:0px;
  5800. }
  5801. #u47234_div {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:358px;
  5807. height:200px;
  5808. background:inherit;
  5809. background-color:rgba(255, 255, 255, 1);
  5810. border:none;
  5811. border-radius:4px;
  5812. -moz-box-shadow:none;
  5813. -webkit-box-shadow:none;
  5814. box-shadow:none;
  5815. }
  5816. #u47234 {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:492px;
  5820. top:155px;
  5821. width:358px;
  5822. height:200px;
  5823. display:flex;
  5824. }
  5825. #u47234 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:2px 2px 2px 2px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u47234_text {
  5833. border-width:0px;
  5834. word-wrap:break-word;
  5835. text-transform:none;
  5836. visibility:hidden;
  5837. }
  5838. #u47235_div {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:48px;
  5844. height:50px;
  5845. background:inherit;
  5846. background-color:rgba(24, 144, 255, 1);
  5847. border:none;
  5848. border-radius:4px;
  5849. -moz-box-shadow:none;
  5850. -webkit-box-shadow:none;
  5851. box-shadow:none;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. color:#FFFFFF;
  5856. }
  5857. #u47235 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:508px;
  5861. top:175px;
  5862. width:48px;
  5863. height:50px;
  5864. display:flex;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. color:#FFFFFF;
  5869. }
  5870. #u47235 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 2px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u47235_text {
  5878. border-width:0px;
  5879. word-wrap:break-word;
  5880. text-transform:none;
  5881. }
  5882. #u47236_div {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:127px;
  5888. height:30px;
  5889. background:inherit;
  5890. background-color:rgba(255, 255, 255, 0);
  5891. border:none;
  5892. border-left:0px;
  5893. border-top:0px;
  5894. border-right:0px;
  5895. border-radius:0px;
  5896. border-bottom-right-radius:0px;
  5897. border-bottom-left-radius:0px;
  5898. -moz-box-shadow:none;
  5899. -webkit-box-shadow:none;
  5900. box-shadow:none;
  5901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5902. font-weight:400;
  5903. font-style:normal;
  5904. font-size:18px;
  5905. line-height:30px;
  5906. }
  5907. #u47236 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:570px;
  5911. top:175px;
  5912. width:127px;
  5913. height:30px;
  5914. display:flex;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:18px;
  5919. line-height:30px;
  5920. }
  5921. #u47236 .text {
  5922. position:absolute;
  5923. align-self:flex-start;
  5924. padding:0px 0px 0px 0px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u47236_text {
  5929. border-width:0px;
  5930. white-space:nowrap;
  5931. text-transform:none;
  5932. }
  5933. #u47237_img {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:181px;
  5939. height:80px;
  5940. }
  5941. #u47237 {
  5942. border-width:0px;
  5943. position:absolute;
  5944. left:574px;
  5945. top:234px;
  5946. width:181px;
  5947. height:80px;
  5948. display:flex;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:12px;
  5953. color:#7F7F7F;
  5954. line-height:20px;
  5955. }
  5956. #u47237 .text {
  5957. position:absolute;
  5958. align-self:center;
  5959. padding:0px 0px 0px 0px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u47237_text {
  5964. border-width:0px;
  5965. white-space:nowrap;
  5966. text-transform:none;
  5967. }
  5968. #u47238 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:0px;
  5974. height:0px;
  5975. }
  5976. #u47239_div {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:60px;
  5982. height:20px;
  5983. background:inherit;
  5984. background-color:rgba(255, 255, 255, 1);
  5985. box-sizing:border-box;
  5986. border-width:1px;
  5987. border-style:solid;
  5988. border-color:rgba(215, 215, 215, 1);
  5989. border-radius:2px;
  5990. -moz-box-shadow:none;
  5991. -webkit-box-shadow:none;
  5992. box-shadow:none;
  5993. }
  5994. #u47239 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:570px;
  5998. top:205px;
  5999. width:60px;
  6000. height:20px;
  6001. display:flex;
  6002. }
  6003. #u47239 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:2px 2px 2px 2px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u47239_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. visibility:hidden;
  6015. }
  6016. #u47240 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:0px;
  6022. height:0px;
  6023. }
  6024. #u47241_div {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:37px;
  6030. height:17px;
  6031. background:inherit;
  6032. background-color:rgba(255, 255, 255, 0);
  6033. border:none;
  6034. border-left:0px;
  6035. border-top:0px;
  6036. border-right:0px;
  6037. border-radius:0px;
  6038. border-bottom-right-radius:0px;
  6039. border-bottom-left-radius:0px;
  6040. -moz-box-shadow:none;
  6041. -webkit-box-shadow:none;
  6042. box-shadow:none;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:12px;
  6047. color:#7F7F7F;
  6048. }
  6049. #u47241 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:589px;
  6053. top:207px;
  6054. width:37px;
  6055. height:17px;
  6056. display:flex;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:12px;
  6061. color:#7F7F7F;
  6062. }
  6063. #u47241 .text {
  6064. position:absolute;
  6065. align-self:flex-start;
  6066. padding:0px 0px 0px 0px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u47241_text {
  6071. border-width:0px;
  6072. white-space:nowrap;
  6073. text-transform:none;
  6074. }
  6075. #u47242 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:0px;
  6081. height:0px;
  6082. }
  6083. #u47243_img {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:12px;
  6089. height:12px;
  6090. }
  6091. #u47243 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:574px;
  6095. top:209px;
  6096. width:12px;
  6097. height:12px;
  6098. display:flex;
  6099. }
  6100. #u47243 .text {
  6101. position:absolute;
  6102. align-self:center;
  6103. padding:2px 2px 2px 2px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u47243_text {
  6108. border-width:0px;
  6109. word-wrap:break-word;
  6110. text-transform:none;
  6111. visibility:hidden;
  6112. }
  6113. #u47244_img {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:6px;
  6119. height:4px;
  6120. }
  6121. #u47244 {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:577px;
  6125. top:213px;
  6126. width:6px;
  6127. height:4px;
  6128. display:flex;
  6129. }
  6130. #u47244 .text {
  6131. position:absolute;
  6132. align-self:center;
  6133. padding:2px 2px 2px 2px;
  6134. box-sizing:border-box;
  6135. width:100%;
  6136. }
  6137. #u47244_text {
  6138. border-width:0px;
  6139. word-wrap:break-word;
  6140. text-transform:none;
  6141. visibility:hidden;
  6142. }
  6143. #u47245_div {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:85px;
  6149. height:30px;
  6150. background:inherit;
  6151. background-color:rgba(242, 242, 242, 1);
  6152. border:none;
  6153. border-radius:40px;
  6154. -moz-box-shadow:none;
  6155. -webkit-box-shadow:none;
  6156. box-shadow:none;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:12px;
  6161. color:#AAAAAA;
  6162. }
  6163. #u47245 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:754px;
  6167. top:315px;
  6168. width:85px;
  6169. height:30px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:12px;
  6175. color:#AAAAAA;
  6176. }
  6177. #u47245 .text {
  6178. position:absolute;
  6179. align-self:center;
  6180. padding:2px 2px 2px 2px;
  6181. box-sizing:border-box;
  6182. width:100%;
  6183. }
  6184. #u47245_text {
  6185. border-width:0px;
  6186. word-wrap:break-word;
  6187. text-transform:none;
  6188. }
  6189. #u47246 {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:0px;
  6195. height:0px;
  6196. }
  6197. #u47247_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:358px;
  6203. height:200px;
  6204. background:inherit;
  6205. background-color:rgba(255, 255, 255, 1);
  6206. border:none;
  6207. border-radius:4px;
  6208. -moz-box-shadow:none;
  6209. -webkit-box-shadow:none;
  6210. box-shadow:none;
  6211. }
  6212. #u47247 {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:947px;
  6216. top:155px;
  6217. width:358px;
  6218. height:200px;
  6219. display:flex;
  6220. }
  6221. #u47247 .text {
  6222. position:absolute;
  6223. align-self:center;
  6224. padding:2px 2px 2px 2px;
  6225. box-sizing:border-box;
  6226. width:100%;
  6227. }
  6228. #u47247_text {
  6229. border-width:0px;
  6230. word-wrap:break-word;
  6231. text-transform:none;
  6232. visibility:hidden;
  6233. }
  6234. #u47248_div {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:0px;
  6238. top:0px;
  6239. width:48px;
  6240. height:50px;
  6241. background:inherit;
  6242. background-color:rgba(24, 144, 255, 1);
  6243. border:none;
  6244. border-radius:4px;
  6245. -moz-box-shadow:none;
  6246. -webkit-box-shadow:none;
  6247. box-shadow:none;
  6248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. color:#FFFFFF;
  6252. }
  6253. #u47248 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:963px;
  6257. top:175px;
  6258. width:48px;
  6259. height:50px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. color:#FFFFFF;
  6265. }
  6266. #u47248 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 2px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u47248_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. }
  6278. #u47249_div {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:127px;
  6284. height:30px;
  6285. background:inherit;
  6286. background-color:rgba(255, 255, 255, 0);
  6287. border:none;
  6288. border-left:0px;
  6289. border-top:0px;
  6290. border-right:0px;
  6291. border-radius:0px;
  6292. border-bottom-right-radius:0px;
  6293. border-bottom-left-radius:0px;
  6294. -moz-box-shadow:none;
  6295. -webkit-box-shadow:none;
  6296. box-shadow:none;
  6297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:18px;
  6301. line-height:30px;
  6302. }
  6303. #u47249 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:1025px;
  6307. top:175px;
  6308. width:127px;
  6309. height:30px;
  6310. display:flex;
  6311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6312. font-weight:400;
  6313. font-style:normal;
  6314. font-size:18px;
  6315. line-height:30px;
  6316. }
  6317. #u47249 .text {
  6318. position:absolute;
  6319. align-self:flex-start;
  6320. padding:0px 0px 0px 0px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u47249_text {
  6325. border-width:0px;
  6326. white-space:nowrap;
  6327. text-transform:none;
  6328. }
  6329. #u47250_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:181px;
  6335. height:80px;
  6336. }
  6337. #u47250 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:1029px;
  6341. top:234px;
  6342. width:181px;
  6343. height:80px;
  6344. display:flex;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:12px;
  6349. color:#7F7F7F;
  6350. line-height:20px;
  6351. }
  6352. #u47250 .text {
  6353. position:absolute;
  6354. align-self:center;
  6355. padding:0px 0px 0px 0px;
  6356. box-sizing:border-box;
  6357. width:100%;
  6358. }
  6359. #u47250_text {
  6360. border-width:0px;
  6361. white-space:nowrap;
  6362. text-transform:none;
  6363. }
  6364. #u47251 {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:0px;
  6370. height:0px;
  6371. }
  6372. #u47252_div {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:60px;
  6378. height:20px;
  6379. background:inherit;
  6380. background-color:rgba(255, 255, 255, 1);
  6381. box-sizing:border-box;
  6382. border-width:1px;
  6383. border-style:solid;
  6384. border-color:rgba(215, 215, 215, 1);
  6385. border-radius:2px;
  6386. -moz-box-shadow:none;
  6387. -webkit-box-shadow:none;
  6388. box-shadow:none;
  6389. }
  6390. #u47252 {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:1025px;
  6394. top:205px;
  6395. width:60px;
  6396. height:20px;
  6397. display:flex;
  6398. }
  6399. #u47252 .text {
  6400. position:absolute;
  6401. align-self:center;
  6402. padding:2px 2px 2px 2px;
  6403. box-sizing:border-box;
  6404. width:100%;
  6405. }
  6406. #u47252_text {
  6407. border-width:0px;
  6408. word-wrap:break-word;
  6409. text-transform:none;
  6410. visibility:hidden;
  6411. }
  6412. #u47253 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:0px;
  6416. top:0px;
  6417. width:0px;
  6418. height:0px;
  6419. }
  6420. #u47254_div {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:37px;
  6426. height:17px;
  6427. background:inherit;
  6428. background-color:rgba(255, 255, 255, 0);
  6429. border:none;
  6430. border-left:0px;
  6431. border-top:0px;
  6432. border-right:0px;
  6433. border-radius:0px;
  6434. border-bottom-right-radius:0px;
  6435. border-bottom-left-radius:0px;
  6436. -moz-box-shadow:none;
  6437. -webkit-box-shadow:none;
  6438. box-shadow:none;
  6439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6440. font-weight:400;
  6441. font-style:normal;
  6442. font-size:12px;
  6443. color:#7F7F7F;
  6444. }
  6445. #u47254 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:1044px;
  6449. top:207px;
  6450. width:37px;
  6451. height:17px;
  6452. display:flex;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:12px;
  6457. color:#7F7F7F;
  6458. }
  6459. #u47254 .text {
  6460. position:absolute;
  6461. align-self:flex-start;
  6462. padding:0px 0px 0px 0px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u47254_text {
  6467. border-width:0px;
  6468. white-space:nowrap;
  6469. text-transform:none;
  6470. }
  6471. #u47255 {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:0px;
  6477. height:0px;
  6478. }
  6479. #u47256_img {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:0px;
  6484. width:12px;
  6485. height:12px;
  6486. }
  6487. #u47256 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:1029px;
  6491. top:209px;
  6492. width:12px;
  6493. height:12px;
  6494. display:flex;
  6495. }
  6496. #u47256 .text {
  6497. position:absolute;
  6498. align-self:center;
  6499. padding:2px 2px 2px 2px;
  6500. box-sizing:border-box;
  6501. width:100%;
  6502. }
  6503. #u47256_text {
  6504. border-width:0px;
  6505. word-wrap:break-word;
  6506. text-transform:none;
  6507. visibility:hidden;
  6508. }
  6509. #u47257_img {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:6px;
  6515. height:4px;
  6516. }
  6517. #u47257 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:1032px;
  6521. top:213px;
  6522. width:6px;
  6523. height:4px;
  6524. display:flex;
  6525. }
  6526. #u47257 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 2px 2px 2px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u47257_text {
  6534. border-width:0px;
  6535. word-wrap:break-word;
  6536. text-transform:none;
  6537. visibility:hidden;
  6538. }
  6539. #u47258_div {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:85px;
  6545. height:30px;
  6546. background:inherit;
  6547. background-color:rgba(242, 242, 242, 1);
  6548. border:none;
  6549. border-radius:40px;
  6550. -moz-box-shadow:none;
  6551. -webkit-box-shadow:none;
  6552. box-shadow:none;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:12px;
  6557. color:#AAAAAA;
  6558. }
  6559. #u47258 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:1209px;
  6563. top:315px;
  6564. width:85px;
  6565. height:30px;
  6566. display:flex;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:12px;
  6571. color:#AAAAAA;
  6572. }
  6573. #u47258 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 2px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u47258_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. }
  6585. #u47259 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:0px;
  6591. height:0px;
  6592. }
  6593. #u47260_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:358px;
  6599. height:200px;
  6600. background:inherit;
  6601. background-color:rgba(255, 255, 255, 1);
  6602. border:none;
  6603. border-radius:4px;
  6604. -moz-box-shadow:none;
  6605. -webkit-box-shadow:none;
  6606. box-shadow:none;
  6607. }
  6608. #u47260 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:947px;
  6612. top:365px;
  6613. width:358px;
  6614. height:200px;
  6615. display:flex;
  6616. }
  6617. #u47260 .text {
  6618. position:absolute;
  6619. align-self:center;
  6620. padding:2px 2px 2px 2px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u47260_text {
  6625. border-width:0px;
  6626. word-wrap:break-word;
  6627. text-transform:none;
  6628. visibility:hidden;
  6629. }
  6630. #u47261_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:48px;
  6636. height:50px;
  6637. background:inherit;
  6638. background-color:rgba(24, 144, 255, 1);
  6639. border:none;
  6640. border-radius:4px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. color:#FFFFFF;
  6648. }
  6649. #u47261 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:963px;
  6653. top:385px;
  6654. width:48px;
  6655. height:50px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. color:#FFFFFF;
  6661. }
  6662. #u47261 .text {
  6663. position:absolute;
  6664. align-self:center;
  6665. padding:2px 2px 2px 2px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u47261_text {
  6670. border-width:0px;
  6671. word-wrap:break-word;
  6672. text-transform:none;
  6673. }
  6674. #u47262_div {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:127px;
  6680. height:30px;
  6681. background:inherit;
  6682. background-color:rgba(255, 255, 255, 0);
  6683. border:none;
  6684. border-left:0px;
  6685. border-top:0px;
  6686. border-right:0px;
  6687. border-radius:0px;
  6688. border-bottom-right-radius:0px;
  6689. border-bottom-left-radius:0px;
  6690. -moz-box-shadow:none;
  6691. -webkit-box-shadow:none;
  6692. box-shadow:none;
  6693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:18px;
  6697. line-height:30px;
  6698. }
  6699. #u47262 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:1025px;
  6703. top:385px;
  6704. width:127px;
  6705. height:30px;
  6706. display:flex;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:18px;
  6711. line-height:30px;
  6712. }
  6713. #u47262 .text {
  6714. position:absolute;
  6715. align-self:flex-start;
  6716. padding:0px 0px 0px 0px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u47262_text {
  6721. border-width:0px;
  6722. white-space:nowrap;
  6723. text-transform:none;
  6724. }
  6725. #u47263_img {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:181px;
  6731. height:80px;
  6732. }
  6733. #u47263 {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:1029px;
  6737. top:444px;
  6738. width:181px;
  6739. height:80px;
  6740. display:flex;
  6741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:12px;
  6745. color:#7F7F7F;
  6746. line-height:20px;
  6747. }
  6748. #u47263 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:0px 0px 0px 0px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u47263_text {
  6756. border-width:0px;
  6757. white-space:nowrap;
  6758. text-transform:none;
  6759. }
  6760. #u47264 {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:0px;
  6766. height:0px;
  6767. }
  6768. #u47265_div {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:60px;
  6774. height:20px;
  6775. background:inherit;
  6776. background-color:rgba(255, 255, 255, 1);
  6777. box-sizing:border-box;
  6778. border-width:1px;
  6779. border-style:solid;
  6780. border-color:rgba(215, 215, 215, 1);
  6781. border-radius:2px;
  6782. -moz-box-shadow:none;
  6783. -webkit-box-shadow:none;
  6784. box-shadow:none;
  6785. }
  6786. #u47265 {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:1025px;
  6790. top:415px;
  6791. width:60px;
  6792. height:20px;
  6793. display:flex;
  6794. }
  6795. #u47265 .text {
  6796. position:absolute;
  6797. align-self:center;
  6798. padding:2px 2px 2px 2px;
  6799. box-sizing:border-box;
  6800. width:100%;
  6801. }
  6802. #u47265_text {
  6803. border-width:0px;
  6804. word-wrap:break-word;
  6805. text-transform:none;
  6806. visibility:hidden;
  6807. }
  6808. #u47266 {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:0px;
  6812. top:0px;
  6813. width:0px;
  6814. height:0px;
  6815. }
  6816. #u47267_div {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:37px;
  6822. height:17px;
  6823. background:inherit;
  6824. background-color:rgba(255, 255, 255, 0);
  6825. border:none;
  6826. border-left:0px;
  6827. border-top:0px;
  6828. border-right:0px;
  6829. border-radius:0px;
  6830. border-bottom-right-radius:0px;
  6831. border-bottom-left-radius:0px;
  6832. -moz-box-shadow:none;
  6833. -webkit-box-shadow:none;
  6834. box-shadow:none;
  6835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:12px;
  6839. color:#7F7F7F;
  6840. }
  6841. #u47267 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:1044px;
  6845. top:417px;
  6846. width:37px;
  6847. height:17px;
  6848. display:flex;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:12px;
  6853. color:#7F7F7F;
  6854. }
  6855. #u47267 .text {
  6856. position:absolute;
  6857. align-self:flex-start;
  6858. padding:0px 0px 0px 0px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u47267_text {
  6863. border-width:0px;
  6864. white-space:nowrap;
  6865. text-transform:none;
  6866. }
  6867. #u47268 {
  6868. border-width:0px;
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:0px;
  6873. height:0px;
  6874. }
  6875. #u47269_img {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:12px;
  6881. height:12px;
  6882. }
  6883. #u47269 {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:1029px;
  6887. top:419px;
  6888. width:12px;
  6889. height:12px;
  6890. display:flex;
  6891. }
  6892. #u47269 .text {
  6893. position:absolute;
  6894. align-self:center;
  6895. padding:2px 2px 2px 2px;
  6896. box-sizing:border-box;
  6897. width:100%;
  6898. }
  6899. #u47269_text {
  6900. border-width:0px;
  6901. word-wrap:break-word;
  6902. text-transform:none;
  6903. visibility:hidden;
  6904. }
  6905. #u47270_img {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:6px;
  6911. height:4px;
  6912. }
  6913. #u47270 {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:1032px;
  6917. top:423px;
  6918. width:6px;
  6919. height:4px;
  6920. display:flex;
  6921. }
  6922. #u47270 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 2px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u47270_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u47271_div {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:85px;
  6941. height:30px;
  6942. background:inherit;
  6943. background-color:rgba(242, 242, 242, 1);
  6944. border:none;
  6945. border-radius:40px;
  6946. -moz-box-shadow:none;
  6947. -webkit-box-shadow:none;
  6948. box-shadow:none;
  6949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:12px;
  6953. color:#AAAAAA;
  6954. }
  6955. #u47271 {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:1209px;
  6959. top:525px;
  6960. width:85px;
  6961. height:30px;
  6962. display:flex;
  6963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:12px;
  6967. color:#AAAAAA;
  6968. }
  6969. #u47271 .text {
  6970. position:absolute;
  6971. align-self:center;
  6972. padding:2px 2px 2px 2px;
  6973. box-sizing:border-box;
  6974. width:100%;
  6975. }
  6976. #u47271_text {
  6977. border-width:0px;
  6978. word-wrap:break-word;
  6979. text-transform:none;
  6980. }
  6981. #u47272_div {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:0px;
  6985. top:0px;
  6986. width:48px;
  6987. height:50px;
  6988. background:inherit;
  6989. background-color:rgba(24, 144, 255, 1);
  6990. border:none;
  6991. border-radius:4px;
  6992. -moz-box-shadow:none;
  6993. -webkit-box-shadow:none;
  6994. box-shadow:none;
  6995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6996. font-weight:400;
  6997. font-style:normal;
  6998. color:#FFFFFF;
  6999. }
  7000. #u47272 {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:1413px;
  7004. top:136px;
  7005. width:48px;
  7006. height:50px;
  7007. display:flex;
  7008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. color:#FFFFFF;
  7012. }
  7013. #u47272 .text {
  7014. position:absolute;
  7015. align-self:center;
  7016. padding:2px 2px 2px 2px;
  7017. box-sizing:border-box;
  7018. width:100%;
  7019. }
  7020. #u47272_text {
  7021. border-width:0px;
  7022. word-wrap:break-word;
  7023. text-transform:none;
  7024. }
  7025. #u47273_div {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:127px;
  7031. height:30px;
  7032. background:inherit;
  7033. background-color:rgba(255, 255, 255, 0);
  7034. border:none;
  7035. border-left:0px;
  7036. border-top:0px;
  7037. border-right:0px;
  7038. border-radius:0px;
  7039. border-bottom-right-radius:0px;
  7040. border-bottom-left-radius:0px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:18px;
  7048. line-height:30px;
  7049. }
  7050. #u47273 {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:1475px;
  7054. top:136px;
  7055. width:127px;
  7056. height:30px;
  7057. display:flex;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:18px;
  7062. line-height:30px;
  7063. }
  7064. #u47273 .text {
  7065. position:absolute;
  7066. align-self:flex-start;
  7067. padding:0px 0px 0px 0px;
  7068. box-sizing:border-box;
  7069. width:100%;
  7070. }
  7071. #u47273_text {
  7072. border-width:0px;
  7073. white-space:nowrap;
  7074. text-transform:none;
  7075. }
  7076. #u47274 {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:0px;
  7082. height:0px;
  7083. }
  7084. #u47275_div {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:60px;
  7090. height:20px;
  7091. background:inherit;
  7092. background-color:rgba(255, 255, 255, 1);
  7093. box-sizing:border-box;
  7094. border-width:1px;
  7095. border-style:solid;
  7096. border-color:rgba(215, 215, 215, 1);
  7097. border-radius:2px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. }
  7102. #u47275 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:1475px;
  7106. top:171px;
  7107. width:60px;
  7108. height:20px;
  7109. display:flex;
  7110. }
  7111. #u47275 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u47275_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u47276 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:0px;
  7130. height:0px;
  7131. }
  7132. #u47277_div {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:37px;
  7138. height:17px;
  7139. background:inherit;
  7140. background-color:rgba(255, 255, 255, 0);
  7141. border:none;
  7142. border-left:0px;
  7143. border-top:0px;
  7144. border-right:0px;
  7145. border-radius:0px;
  7146. border-bottom-right-radius:0px;
  7147. border-bottom-left-radius:0px;
  7148. -moz-box-shadow:none;
  7149. -webkit-box-shadow:none;
  7150. box-shadow:none;
  7151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:12px;
  7155. color:#7F7F7F;
  7156. }
  7157. #u47277 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:1494px;
  7161. top:173px;
  7162. width:37px;
  7163. height:17px;
  7164. display:flex;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:12px;
  7169. color:#7F7F7F;
  7170. }
  7171. #u47277 .text {
  7172. position:absolute;
  7173. align-self:flex-start;
  7174. padding:0px 0px 0px 0px;
  7175. box-sizing:border-box;
  7176. width:100%;
  7177. }
  7178. #u47277_text {
  7179. border-width:0px;
  7180. white-space:nowrap;
  7181. text-transform:none;
  7182. }
  7183. #u47278 {
  7184. border-width:0px;
  7185. position:absolute;
  7186. left:0px;
  7187. top:0px;
  7188. width:0px;
  7189. height:0px;
  7190. }
  7191. #u47279_img {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:12px;
  7197. height:12px;
  7198. }
  7199. #u47279 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:1479px;
  7203. top:175px;
  7204. width:12px;
  7205. height:12px;
  7206. display:flex;
  7207. }
  7208. #u47279 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 2px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u47279_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. visibility:hidden;
  7220. }
  7221. #u47280_img {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:6px;
  7227. height:4px;
  7228. }
  7229. #u47280 {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:1482px;
  7233. top:179px;
  7234. width:6px;
  7235. height:4px;
  7236. display:flex;
  7237. }
  7238. #u47280 .text {
  7239. position:absolute;
  7240. align-self:center;
  7241. padding:2px 2px 2px 2px;
  7242. box-sizing:border-box;
  7243. width:100%;
  7244. }
  7245. #u47280_text {
  7246. border-width:0px;
  7247. word-wrap:break-word;
  7248. text-transform:none;
  7249. visibility:hidden;
  7250. }
  7251. #u47281 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:0px;
  7255. top:0px;
  7256. width:0px;
  7257. height:0px;
  7258. }
  7259. #u47282_div {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:375px;
  7265. height:80px;
  7266. background:inherit;
  7267. background-color:rgba(255, 255, 255, 1);
  7268. border:none;
  7269. border-left:0px;
  7270. border-top:0px;
  7271. border-right:0px;
  7272. border-radius:0px;
  7273. border-bottom-right-radius:0px;
  7274. border-bottom-left-radius:0px;
  7275. -moz-box-shadow:none;
  7276. -webkit-box-shadow:none;
  7277. box-shadow:none;
  7278. }
  7279. #u47282 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:1393px;
  7283. top:370px;
  7284. width:375px;
  7285. height:80px;
  7286. display:flex;
  7287. }
  7288. #u47282 .text {
  7289. position:absolute;
  7290. align-self:center;
  7291. padding:2px 2px 2px 2px;
  7292. box-sizing:border-box;
  7293. width:100%;
  7294. }
  7295. #u47282_text {
  7296. border-width:0px;
  7297. word-wrap:break-word;
  7298. text-transform:none;
  7299. visibility:hidden;
  7300. }
  7301. #u47283_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:193px;
  7307. height:30px;
  7308. background:inherit;
  7309. background-color:rgba(255, 255, 255, 0);
  7310. border:none;
  7311. border-left:0px;
  7312. border-top:0px;
  7313. border-right:0px;
  7314. border-radius:0px;
  7315. border-bottom-right-radius:0px;
  7316. border-bottom-left-radius:0px;
  7317. -moz-box-shadow:none;
  7318. -webkit-box-shadow:none;
  7319. box-shadow:none;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:16px;
  7324. line-height:30px;
  7325. }
  7326. #u47283 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:1470px;
  7330. top:409px;
  7331. width:193px;
  7332. height:30px;
  7333. display:flex;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:16px;
  7338. line-height:30px;
  7339. }
  7340. #u47283 .text {
  7341. position:absolute;
  7342. align-self:flex-start;
  7343. padding:0px 0px 0px 0px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u47283_text {
  7348. border-width:0px;
  7349. white-space:nowrap;
  7350. text-transform:none;
  7351. }
  7352. #u47284_div {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:49px;
  7358. height:25px;
  7359. background:inherit;
  7360. background-color:rgba(255, 255, 255, 0);
  7361. border:none;
  7362. border-left:0px;
  7363. border-top:0px;
  7364. border-right:0px;
  7365. border-radius:0px;
  7366. border-bottom-right-radius:0px;
  7367. border-bottom-left-radius:0px;
  7368. -moz-box-shadow:none;
  7369. -webkit-box-shadow:none;
  7370. box-shadow:none;
  7371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:12px;
  7375. color:#7F7F7F;
  7376. line-height:25px;
  7377. }
  7378. #u47284 {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:1470px;
  7382. top:384px;
  7383. width:49px;
  7384. height:25px;
  7385. display:flex;
  7386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:12px;
  7390. color:#7F7F7F;
  7391. line-height:25px;
  7392. }
  7393. #u47284 .text {
  7394. position:absolute;
  7395. align-self:flex-start;
  7396. padding:0px 0px 0px 0px;
  7397. box-sizing:border-box;
  7398. width:100%;
  7399. }
  7400. #u47284_text {
  7401. border-width:0px;
  7402. white-space:nowrap;
  7403. text-transform:none;
  7404. }
  7405. #u47286_img {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:433px;
  7411. height:865px;
  7412. }
  7413. #u47286 {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:1817px;
  7417. top:0px;
  7418. width:433px;
  7419. height:865px;
  7420. display:flex;
  7421. }
  7422. #u47286 .text {
  7423. position:absolute;
  7424. align-self:center;
  7425. padding:2px 2px 2px 2px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u47286_text {
  7430. border-width:0px;
  7431. word-wrap:break-word;
  7432. text-transform:none;
  7433. visibility:hidden;
  7434. }
  7435. #u47287_div {
  7436. border-width:0px;
  7437. position:absolute;
  7438. left:0px;
  7439. top:0px;
  7440. width:375px;
  7441. height:40px;
  7442. background:inherit;
  7443. background-color:rgba(255, 255, 255, 1);
  7444. box-sizing:border-box;
  7445. border-width:1px;
  7446. border-style:solid;
  7447. border-color:rgba(215, 215, 215, 1);
  7448. border-left:0px;
  7449. border-top:0px;
  7450. border-right:0px;
  7451. border-radius:0px;
  7452. border-bottom-right-radius:0px;
  7453. border-bottom-left-radius:0px;
  7454. -moz-box-shadow:none;
  7455. -webkit-box-shadow:none;
  7456. box-shadow:none;
  7457. }
  7458. #u47287 {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:1846px;
  7462. top:67px;
  7463. width:375px;
  7464. height:40px;
  7465. display:flex;
  7466. }
  7467. #u47287 .text {
  7468. position:absolute;
  7469. align-self:center;
  7470. padding:2px 2px 2px 2px;
  7471. box-sizing:border-box;
  7472. width:100%;
  7473. }
  7474. #u47287_text {
  7475. border-width:0px;
  7476. word-wrap:break-word;
  7477. text-transform:none;
  7478. visibility:hidden;
  7479. }
  7480. #u47288 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:0px;
  7484. top:0px;
  7485. width:0px;
  7486. height:0px;
  7487. }
  7488. #u47289_div {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:0px;
  7492. top:0px;
  7493. width:88px;
  7494. height:32px;
  7495. background:inherit;
  7496. background-color:rgba(255, 255, 255, 1);
  7497. box-sizing:border-box;
  7498. border-width:1px;
  7499. border-style:solid;
  7500. border-color:rgba(242, 242, 242, 1);
  7501. border-radius:33px;
  7502. -moz-box-shadow:none;
  7503. -webkit-box-shadow:none;
  7504. box-shadow:none;
  7505. }
  7506. #u47289 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:2126px;
  7510. top:71px;
  7511. width:88px;
  7512. height:32px;
  7513. display:flex;
  7514. }
  7515. #u47289 .text {
  7516. position:absolute;
  7517. align-self:center;
  7518. padding:2px 2px 2px 2px;
  7519. box-sizing:border-box;
  7520. width:100%;
  7521. }
  7522. #u47289_text {
  7523. border-width:0px;
  7524. word-wrap:break-word;
  7525. text-transform:none;
  7526. visibility:hidden;
  7527. }
  7528. #u47290 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:0px;
  7534. height:0px;
  7535. }
  7536. #u47291_img {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:18px;
  7542. height:18px;
  7543. }
  7544. #u47291 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:2189px;
  7548. top:78px;
  7549. width:18px;
  7550. height:18px;
  7551. display:flex;
  7552. }
  7553. #u47291 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 2px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u47291_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u47292_img {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:6px;
  7572. height:6px;
  7573. }
  7574. #u47292 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:2195px;
  7578. top:84px;
  7579. width:6px;
  7580. height:6px;
  7581. display:flex;
  7582. }
  7583. #u47292 .text {
  7584. position:absolute;
  7585. align-self:center;
  7586. padding:2px 2px 2px 2px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u47292_text {
  7591. border-width:0px;
  7592. word-wrap:break-word;
  7593. text-transform:none;
  7594. visibility:hidden;
  7595. }
  7596. #u47293 {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:0px;
  7602. height:0px;
  7603. }
  7604. #u47294_img {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:0px;
  7609. width:5px;
  7610. height:5px;
  7611. }
  7612. #u47294 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:2140px;
  7616. top:85px;
  7617. width:5px;
  7618. height:5px;
  7619. display:flex;
  7620. }
  7621. #u47294 .text {
  7622. position:absolute;
  7623. align-self:center;
  7624. padding:2px 2px 2px 2px;
  7625. box-sizing:border-box;
  7626. width:100%;
  7627. }
  7628. #u47294_text {
  7629. border-width:0px;
  7630. word-wrap:break-word;
  7631. text-transform:none;
  7632. visibility:hidden;
  7633. }
  7634. #u47295_img {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:5px;
  7640. height:5px;
  7641. }
  7642. #u47295 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:2156px;
  7646. top:85px;
  7647. width:5px;
  7648. height:5px;
  7649. display:flex;
  7650. }
  7651. #u47295 .text {
  7652. position:absolute;
  7653. align-self:center;
  7654. padding:2px 2px 2px 2px;
  7655. box-sizing:border-box;
  7656. width:100%;
  7657. }
  7658. #u47295_text {
  7659. border-width:0px;
  7660. word-wrap:break-word;
  7661. text-transform:none;
  7662. visibility:hidden;
  7663. }
  7664. #u47296_img {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:7px;
  7670. height:7px;
  7671. }
  7672. #u47296 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:2147px;
  7676. top:84px;
  7677. width:7px;
  7678. height:7px;
  7679. display:flex;
  7680. }
  7681. #u47296 .text {
  7682. position:absolute;
  7683. align-self:center;
  7684. padding:2px 2px 2px 2px;
  7685. box-sizing:border-box;
  7686. width:100%;
  7687. }
  7688. #u47296_text {
  7689. border-width:0px;
  7690. word-wrap:break-word;
  7691. text-transform:none;
  7692. visibility:hidden;
  7693. }
  7694. #u47297_img {
  7695. border-width:0px;
  7696. position:absolute;
  7697. left:0px;
  7698. top:0px;
  7699. width:19px;
  7700. height:2px;
  7701. }
  7702. #u47297 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:2164px;
  7706. top:87px;
  7707. width:18px;
  7708. height:1px;
  7709. display:flex;
  7710. -webkit-transform:rotate(90deg);
  7711. -moz-transform:rotate(90deg);
  7712. -ms-transform:rotate(90deg);
  7713. transform:rotate(90deg);
  7714. }
  7715. #u47297 .text {
  7716. position:absolute;
  7717. align-self:center;
  7718. padding:2px 2px 2px 2px;
  7719. box-sizing:border-box;
  7720. width:100%;
  7721. }
  7722. #u47297_text {
  7723. border-width:0px;
  7724. word-wrap:break-word;
  7725. text-transform:none;
  7726. visibility:hidden;
  7727. }
  7728. #u47298_img {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:0px;
  7732. top:0px;
  7733. width:375px;
  7734. height:44px;
  7735. }
  7736. #u47298 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:1846px;
  7740. top:24px;
  7741. width:375px;
  7742. height:44px;
  7743. display:flex;
  7744. }
  7745. #u47298 .text {
  7746. position:absolute;
  7747. align-self:center;
  7748. padding:2px 2px 2px 2px;
  7749. box-sizing:border-box;
  7750. width:100%;
  7751. }
  7752. #u47298_text {
  7753. border-width:0px;
  7754. word-wrap:break-word;
  7755. text-transform:none;
  7756. visibility:hidden;
  7757. }
  7758. #u47299_div {
  7759. border-width:0px;
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:375px;
  7764. height:50px;
  7765. background:inherit;
  7766. background-color:rgba(255, 255, 255, 1);
  7767. box-sizing:border-box;
  7768. border-width:1px;
  7769. border-style:solid;
  7770. border-color:rgba(242, 242, 242, 1);
  7771. border-radius:26px;
  7772. border-top-left-radius:0px;
  7773. border-top-right-radius:0px;
  7774. -moz-box-shadow:none;
  7775. -webkit-box-shadow:none;
  7776. box-shadow:none;
  7777. }
  7778. #u47299 {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:1846px;
  7782. top:788px;
  7783. width:375px;
  7784. height:50px;
  7785. display:flex;
  7786. }
  7787. #u47299 .text {
  7788. position:absolute;
  7789. align-self:center;
  7790. padding:2px 2px 2px 2px;
  7791. box-sizing:border-box;
  7792. width:100%;
  7793. }
  7794. #u47299_text {
  7795. border-width:0px;
  7796. word-wrap:break-word;
  7797. text-transform:none;
  7798. visibility:hidden;
  7799. }
  7800. #u47300 {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:0px;
  7806. height:0px;
  7807. }
  7808. #u47301_img {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:24px;
  7814. height:24px;
  7815. }
  7816. #u47301 {
  7817. border-width:0px;
  7818. position:absolute;
  7819. left:1886px;
  7820. top:792px;
  7821. width:24px;
  7822. height:24px;
  7823. display:flex;
  7824. font-size:8px;
  7825. }
  7826. #u47301 .text {
  7827. position:absolute;
  7828. align-self:center;
  7829. padding:2px 2px 2px 2px;
  7830. box-sizing:border-box;
  7831. width:100%;
  7832. }
  7833. #u47301_text {
  7834. border-width:0px;
  7835. word-wrap:break-word;
  7836. text-transform:none;
  7837. }
  7838. #u47302_div {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:0px;
  7842. top:0px;
  7843. width:25px;
  7844. height:17px;
  7845. background:inherit;
  7846. background-color:rgba(255, 255, 255, 0);
  7847. border:none;
  7848. border-radius:0px;
  7849. -moz-box-shadow:none;
  7850. -webkit-box-shadow:none;
  7851. box-shadow:none;
  7852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:12px;
  7856. }
  7857. #u47302 {
  7858. border-width:0px;
  7859. position:absolute;
  7860. left:1886px;
  7861. top:817px;
  7862. width:25px;
  7863. height:17px;
  7864. display:flex;
  7865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7866. font-weight:400;
  7867. font-style:normal;
  7868. font-size:12px;
  7869. }
  7870. #u47302 .text {
  7871. position:absolute;
  7872. align-self:flex-start;
  7873. padding:0px 0px 0px 0px;
  7874. box-sizing:border-box;
  7875. width:100%;
  7876. }
  7877. #u47302_text {
  7878. border-width:0px;
  7879. white-space:nowrap;
  7880. text-transform:none;
  7881. }
  7882. #u47303 {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:0px;
  7886. top:0px;
  7887. width:0px;
  7888. height:0px;
  7889. }
  7890. #u47304_img {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:0px;
  7894. top:0px;
  7895. width:24px;
  7896. height:24px;
  7897. }
  7898. #u47304 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:2156px;
  7902. top:794px;
  7903. width:24px;
  7904. height:24px;
  7905. display:flex;
  7906. font-size:8px;
  7907. }
  7908. #u47304 .text {
  7909. position:absolute;
  7910. align-self:center;
  7911. padding:2px 2px 2px 2px;
  7912. box-sizing:border-box;
  7913. width:100%;
  7914. }
  7915. #u47304_text {
  7916. border-width:0px;
  7917. word-wrap:break-word;
  7918. text-transform:none;
  7919. }
  7920. #u47305_div {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:25px;
  7926. height:17px;
  7927. background:inherit;
  7928. background-color:rgba(255, 255, 255, 0);
  7929. border:none;
  7930. border-radius:0px;
  7931. -moz-box-shadow:none;
  7932. -webkit-box-shadow:none;
  7933. box-shadow:none;
  7934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7935. font-weight:400;
  7936. font-style:normal;
  7937. font-size:12px;
  7938. }
  7939. #u47305 {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:2156px;
  7943. top:819px;
  7944. width:25px;
  7945. height:17px;
  7946. display:flex;
  7947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7948. font-weight:400;
  7949. font-style:normal;
  7950. font-size:12px;
  7951. }
  7952. #u47305 .text {
  7953. position:absolute;
  7954. align-self:flex-start;
  7955. padding:0px 0px 0px 0px;
  7956. box-sizing:border-box;
  7957. width:100%;
  7958. }
  7959. #u47305_text {
  7960. border-width:0px;
  7961. white-space:nowrap;
  7962. text-transform:none;
  7963. }
  7964. #u47306_div {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:375px;
  7970. height:681px;
  7971. background:inherit;
  7972. background-color:rgba(242, 242, 242, 0.462745098039216);
  7973. border:none;
  7974. border-radius:0px;
  7975. -moz-box-shadow:none;
  7976. -webkit-box-shadow:none;
  7977. box-shadow:none;
  7978. }
  7979. #u47306 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:1846px;
  7983. top:107px;
  7984. width:375px;
  7985. height:681px;
  7986. display:flex;
  7987. }
  7988. #u47306 .text {
  7989. position:absolute;
  7990. align-self:center;
  7991. padding:2px 2px 2px 2px;
  7992. box-sizing:border-box;
  7993. width:100%;
  7994. }
  7995. #u47306_text {
  7996. border-width:0px;
  7997. word-wrap:break-word;
  7998. text-transform:none;
  7999. visibility:hidden;
  8000. }
  8001. #u47307 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:0px;
  8005. top:0px;
  8006. width:0px;
  8007. height:0px;
  8008. }
  8009. #u47308_img {
  8010. border-width:0px;
  8011. position:absolute;
  8012. left:0px;
  8013. top:0px;
  8014. width:24px;
  8015. height:24px;
  8016. }
  8017. #u47308 {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:2068px;
  8021. top:792px;
  8022. width:24px;
  8023. height:24px;
  8024. display:flex;
  8025. font-size:8px;
  8026. }
  8027. #u47308 .text {
  8028. position:absolute;
  8029. align-self:center;
  8030. padding:2px 2px 2px 2px;
  8031. box-sizing:border-box;
  8032. width:100%;
  8033. }
  8034. #u47308_text {
  8035. border-width:0px;
  8036. word-wrap:break-word;
  8037. text-transform:none;
  8038. }
  8039. #u47309_div {
  8040. border-width:0px;
  8041. position:absolute;
  8042. left:0px;
  8043. top:0px;
  8044. width:37px;
  8045. height:17px;
  8046. background:inherit;
  8047. background-color:rgba(255, 255, 255, 0);
  8048. border:none;
  8049. border-radius:0px;
  8050. -moz-box-shadow:none;
  8051. -webkit-box-shadow:none;
  8052. box-shadow:none;
  8053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8054. font-weight:400;
  8055. font-style:normal;
  8056. font-size:12px;
  8057. }
  8058. #u47309 {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:2062px;
  8062. top:817px;
  8063. width:37px;
  8064. height:17px;
  8065. display:flex;
  8066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8067. font-weight:400;
  8068. font-style:normal;
  8069. font-size:12px;
  8070. }
  8071. #u47309 .text {
  8072. position:absolute;
  8073. align-self:flex-start;
  8074. padding:0px 0px 0px 0px;
  8075. box-sizing:border-box;
  8076. width:100%;
  8077. }
  8078. #u47309_text {
  8079. border-width:0px;
  8080. white-space:nowrap;
  8081. text-transform:none;
  8082. }
  8083. #u47310 {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:0px;
  8087. top:0px;
  8088. width:0px;
  8089. height:0px;
  8090. }
  8091. #u47311_img {
  8092. border-width:0px;
  8093. position:absolute;
  8094. left:0px;
  8095. top:0px;
  8096. width:24px;
  8097. height:24px;
  8098. }
  8099. #u47311 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:1974px;
  8103. top:792px;
  8104. width:24px;
  8105. height:24px;
  8106. display:flex;
  8107. font-size:8px;
  8108. }
  8109. #u47311 .text {
  8110. position:absolute;
  8111. align-self:center;
  8112. padding:2px 2px 2px 2px;
  8113. box-sizing:border-box;
  8114. width:100%;
  8115. }
  8116. #u47311_text {
  8117. border-width:0px;
  8118. word-wrap:break-word;
  8119. text-transform:none;
  8120. }
  8121. #u47312_div {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:0px;
  8125. top:0px;
  8126. width:37px;
  8127. height:17px;
  8128. background:inherit;
  8129. background-color:rgba(255, 255, 255, 0);
  8130. border:none;
  8131. border-radius:0px;
  8132. -moz-box-shadow:none;
  8133. -webkit-box-shadow:none;
  8134. box-shadow:none;
  8135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8136. font-weight:400;
  8137. font-style:normal;
  8138. font-size:12px;
  8139. }
  8140. #u47312 {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:1968px;
  8144. top:817px;
  8145. width:37px;
  8146. height:17px;
  8147. display:flex;
  8148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8149. font-weight:400;
  8150. font-style:normal;
  8151. font-size:12px;
  8152. }
  8153. #u47312 .text {
  8154. position:absolute;
  8155. align-self:flex-start;
  8156. padding:0px 0px 0px 0px;
  8157. box-sizing:border-box;
  8158. width:100%;
  8159. }
  8160. #u47312_text {
  8161. border-width:0px;
  8162. white-space:nowrap;
  8163. text-transform:none;
  8164. }
  8165. #u47313_div {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:375px;
  8171. height:735px;
  8172. background:inherit;
  8173. background-color:rgba(242, 242, 242, 1);
  8174. border:none;
  8175. border-top:0px;
  8176. border-radius:25px;
  8177. border-top-left-radius:0px;
  8178. border-top-right-radius:0px;
  8179. -moz-box-shadow:none;
  8180. -webkit-box-shadow:none;
  8181. box-shadow:none;
  8182. }
  8183. #u47313 {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:1846px;
  8187. top:105px;
  8188. width:375px;
  8189. height:735px;
  8190. display:flex;
  8191. }
  8192. #u47313 .text {
  8193. position:absolute;
  8194. align-self:center;
  8195. padding:2px 2px 2px 2px;
  8196. box-sizing:border-box;
  8197. width:100%;
  8198. }
  8199. #u47313_text {
  8200. border-width:0px;
  8201. word-wrap:break-word;
  8202. text-transform:none;
  8203. visibility:hidden;
  8204. }
  8205. #u47314_div {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:57px;
  8211. height:30px;
  8212. background:inherit;
  8213. background-color:rgba(255, 255, 255, 0);
  8214. border:none;
  8215. border-left:0px;
  8216. border-top:0px;
  8217. border-right:0px;
  8218. border-radius:0px;
  8219. border-bottom-right-radius:0px;
  8220. border-bottom-left-radius:0px;
  8221. -moz-box-shadow:none;
  8222. -webkit-box-shadow:none;
  8223. box-shadow:none;
  8224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8225. font-weight:500;
  8226. font-style:normal;
  8227. font-size:14px;
  8228. line-height:30px;
  8229. }
  8230. #u47314 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:1998px;
  8234. top:73px;
  8235. width:57px;
  8236. height:30px;
  8237. display:flex;
  8238. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8239. font-weight:500;
  8240. font-style:normal;
  8241. font-size:14px;
  8242. line-height:30px;
  8243. }
  8244. #u47314 .text {
  8245. position:absolute;
  8246. align-self:flex-start;
  8247. padding:0px 0px 0px 0px;
  8248. box-sizing:border-box;
  8249. width:100%;
  8250. }
  8251. #u47314_text {
  8252. border-width:0px;
  8253. white-space:nowrap;
  8254. text-transform:none;
  8255. }
  8256. #u47315 {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:0px;
  8262. height:0px;
  8263. }
  8264. #u47316_img {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:0px;
  8268. top:0px;
  8269. width:11px;
  8270. height:18px;
  8271. }
  8272. #u47316 {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:1859px;
  8276. top:79px;
  8277. width:11px;
  8278. height:18px;
  8279. display:flex;
  8280. }
  8281. #u47316 .text {
  8282. position:absolute;
  8283. align-self:center;
  8284. padding:2px 2px 2px 2px;
  8285. box-sizing:border-box;
  8286. width:100%;
  8287. }
  8288. #u47316_text {
  8289. border-width:0px;
  8290. word-wrap:break-word;
  8291. text-transform:none;
  8292. visibility:hidden;
  8293. }
  8294. #u47317_div {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:0px;
  8298. top:0px;
  8299. width:375px;
  8300. height:92px;
  8301. background:inherit;
  8302. background-color:rgba(255, 255, 255, 1);
  8303. border:none;
  8304. border-left:0px;
  8305. border-top:0px;
  8306. border-right:0px;
  8307. border-radius:0px;
  8308. border-bottom-right-radius:0px;
  8309. border-bottom-left-radius:0px;
  8310. -moz-box-shadow:none;
  8311. -webkit-box-shadow:none;
  8312. box-shadow:none;
  8313. }
  8314. #u47317 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:1846px;
  8318. top:115px;
  8319. width:375px;
  8320. height:92px;
  8321. display:flex;
  8322. }
  8323. #u47317 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 2px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u47317_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. visibility:hidden;
  8335. }
  8336. #u47318 {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:0px;
  8342. height:0px;
  8343. }
  8344. #u47319_div {
  8345. border-width:0px;
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:375px;
  8350. height:80px;
  8351. background:inherit;
  8352. background-color:rgba(255, 255, 255, 1);
  8353. border:none;
  8354. border-left:0px;
  8355. border-top:0px;
  8356. border-right:0px;
  8357. border-radius:0px;
  8358. border-bottom-right-radius:0px;
  8359. border-bottom-left-radius:0px;
  8360. -moz-box-shadow:none;
  8361. -webkit-box-shadow:none;
  8362. box-shadow:none;
  8363. }
  8364. #u47319 {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:1846px;
  8368. top:208px;
  8369. width:375px;
  8370. height:80px;
  8371. display:flex;
  8372. }
  8373. #u47319 .text {
  8374. position:absolute;
  8375. align-self:center;
  8376. padding:2px 2px 2px 2px;
  8377. box-sizing:border-box;
  8378. width:100%;
  8379. }
  8380. #u47319_text {
  8381. border-width:0px;
  8382. word-wrap:break-word;
  8383. text-transform:none;
  8384. visibility:hidden;
  8385. }
  8386. #u47320_div {
  8387. border-width:0px;
  8388. position:absolute;
  8389. left:0px;
  8390. top:0px;
  8391. width:177px;
  8392. height:30px;
  8393. background:inherit;
  8394. background-color:rgba(255, 255, 255, 0);
  8395. border:none;
  8396. border-left:0px;
  8397. border-top:0px;
  8398. border-right:0px;
  8399. border-radius:0px;
  8400. border-bottom-right-radius:0px;
  8401. border-bottom-left-radius:0px;
  8402. -moz-box-shadow:none;
  8403. -webkit-box-shadow:none;
  8404. box-shadow:none;
  8405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8406. font-weight:400;
  8407. font-style:normal;
  8408. font-size:16px;
  8409. line-height:30px;
  8410. }
  8411. #u47320 {
  8412. border-width:0px;
  8413. position:absolute;
  8414. left:1923px;
  8415. top:247px;
  8416. width:177px;
  8417. height:30px;
  8418. display:flex;
  8419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. font-size:16px;
  8423. line-height:30px;
  8424. }
  8425. #u47320 .text {
  8426. position:absolute;
  8427. align-self:flex-start;
  8428. padding:0px 0px 0px 0px;
  8429. box-sizing:border-box;
  8430. width:100%;
  8431. }
  8432. #u47320_text {
  8433. border-width:0px;
  8434. white-space:nowrap;
  8435. text-transform:none;
  8436. }
  8437. #u47321_div {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:0px;
  8442. width:49px;
  8443. height:25px;
  8444. background:inherit;
  8445. background-color:rgba(255, 255, 255, 0);
  8446. border:none;
  8447. border-left:0px;
  8448. border-top:0px;
  8449. border-right:0px;
  8450. border-radius:0px;
  8451. border-bottom-right-radius:0px;
  8452. border-bottom-left-radius:0px;
  8453. -moz-box-shadow:none;
  8454. -webkit-box-shadow:none;
  8455. box-shadow:none;
  8456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8457. font-weight:400;
  8458. font-style:normal;
  8459. font-size:12px;
  8460. color:#7F7F7F;
  8461. line-height:25px;
  8462. }
  8463. #u47321 {
  8464. border-width:0px;
  8465. position:absolute;
  8466. left:1923px;
  8467. top:222px;
  8468. width:49px;
  8469. height:25px;
  8470. display:flex;
  8471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8472. font-weight:400;
  8473. font-style:normal;
  8474. font-size:12px;
  8475. color:#7F7F7F;
  8476. line-height:25px;
  8477. }
  8478. #u47321 .text {
  8479. position:absolute;
  8480. align-self:flex-start;
  8481. padding:0px 0px 0px 0px;
  8482. box-sizing:border-box;
  8483. width:100%;
  8484. }
  8485. #u47321_text {
  8486. border-width:0px;
  8487. white-space:nowrap;
  8488. text-transform:none;
  8489. }
  8490. #u47322 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:0px;
  8494. top:0px;
  8495. width:0px;
  8496. height:0px;
  8497. }
  8498. #u47323_div {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:0px;
  8502. top:0px;
  8503. width:375px;
  8504. height:80px;
  8505. background:inherit;
  8506. background-color:rgba(255, 255, 255, 1);
  8507. border:none;
  8508. border-left:0px;
  8509. border-top:0px;
  8510. border-right:0px;
  8511. border-radius:0px;
  8512. border-bottom-right-radius:0px;
  8513. border-bottom-left-radius:0px;
  8514. -moz-box-shadow:none;
  8515. -webkit-box-shadow:none;
  8516. box-shadow:none;
  8517. }
  8518. #u47323 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:1846px;
  8522. top:289px;
  8523. width:375px;
  8524. height:80px;
  8525. display:flex;
  8526. }
  8527. #u47323 .text {
  8528. position:absolute;
  8529. align-self:center;
  8530. padding:2px 2px 2px 2px;
  8531. box-sizing:border-box;
  8532. width:100%;
  8533. }
  8534. #u47323_text {
  8535. border-width:0px;
  8536. word-wrap:break-word;
  8537. text-transform:none;
  8538. visibility:hidden;
  8539. }
  8540. #u47324_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:129px;
  8546. height:30px;
  8547. background:inherit;
  8548. background-color:rgba(255, 255, 255, 0);
  8549. border:none;
  8550. border-left:0px;
  8551. border-top:0px;
  8552. border-right:0px;
  8553. border-radius:0px;
  8554. border-bottom-right-radius:0px;
  8555. border-bottom-left-radius:0px;
  8556. -moz-box-shadow:none;
  8557. -webkit-box-shadow:none;
  8558. box-shadow:none;
  8559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8560. font-weight:400;
  8561. font-style:normal;
  8562. font-size:16px;
  8563. line-height:30px;
  8564. }
  8565. #u47324 {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:1923px;
  8569. top:328px;
  8570. width:129px;
  8571. height:30px;
  8572. display:flex;
  8573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8574. font-weight:400;
  8575. font-style:normal;
  8576. font-size:16px;
  8577. line-height:30px;
  8578. }
  8579. #u47324 .text {
  8580. position:absolute;
  8581. align-self:flex-start;
  8582. padding:0px 0px 0px 0px;
  8583. box-sizing:border-box;
  8584. width:100%;
  8585. }
  8586. #u47324_text {
  8587. border-width:0px;
  8588. white-space:nowrap;
  8589. text-transform:none;
  8590. }
  8591. #u47325_div {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:73px;
  8597. height:25px;
  8598. background:inherit;
  8599. background-color:rgba(255, 255, 255, 0);
  8600. border:none;
  8601. border-left:0px;
  8602. border-top:0px;
  8603. border-right:0px;
  8604. border-radius:0px;
  8605. border-bottom-right-radius:0px;
  8606. border-bottom-left-radius:0px;
  8607. -moz-box-shadow:none;
  8608. -webkit-box-shadow:none;
  8609. box-shadow:none;
  8610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8611. font-weight:400;
  8612. font-style:normal;
  8613. font-size:12px;
  8614. color:#7F7F7F;
  8615. line-height:25px;
  8616. }
  8617. #u47325 {
  8618. border-width:0px;
  8619. position:absolute;
  8620. left:1923px;
  8621. top:303px;
  8622. width:73px;
  8623. height:25px;
  8624. display:flex;
  8625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:12px;
  8629. color:#7F7F7F;
  8630. line-height:25px;
  8631. }
  8632. #u47325 .text {
  8633. position:absolute;
  8634. align-self:flex-start;
  8635. padding:0px 0px 0px 0px;
  8636. box-sizing:border-box;
  8637. width:100%;
  8638. }
  8639. #u47325_text {
  8640. border-width:0px;
  8641. white-space:nowrap;
  8642. text-transform:none;
  8643. }
  8644. #u47326_div {
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:375px;
  8650. height:60px;
  8651. background:inherit;
  8652. background-color:rgba(255, 255, 255, 1);
  8653. border:none;
  8654. border-left:0px;
  8655. border-top:0px;
  8656. border-right:0px;
  8657. border-radius:0px;
  8658. border-bottom-right-radius:0px;
  8659. border-bottom-left-radius:0px;
  8660. -moz-box-shadow:none;
  8661. -webkit-box-shadow:none;
  8662. box-shadow:none;
  8663. }
  8664. #u47326 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:1846px;
  8668. top:532px;
  8669. width:375px;
  8670. height:60px;
  8671. display:flex;
  8672. }
  8673. #u47326 .text {
  8674. position:absolute;
  8675. align-self:center;
  8676. padding:2px 2px 2px 2px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u47326_text {
  8681. border-width:0px;
  8682. word-wrap:break-word;
  8683. text-transform:none;
  8684. visibility:hidden;
  8685. }
  8686. #u47327_div {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:0px;
  8690. top:0px;
  8691. width:124px;
  8692. height:30px;
  8693. background:inherit;
  8694. background-color:rgba(255, 255, 255, 0);
  8695. border:none;
  8696. border-left:0px;
  8697. border-top:0px;
  8698. border-right:0px;
  8699. border-radius:0px;
  8700. border-bottom-right-radius:0px;
  8701. border-bottom-left-radius:0px;
  8702. -moz-box-shadow:none;
  8703. -webkit-box-shadow:none;
  8704. box-shadow:none;
  8705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8706. font-weight:400;
  8707. font-style:normal;
  8708. font-size:16px;
  8709. line-height:30px;
  8710. }
  8711. #u47327 {
  8712. border-width:0px;
  8713. position:absolute;
  8714. left:1923px;
  8715. top:547px;
  8716. width:124px;
  8717. height:30px;
  8718. display:flex;
  8719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8720. font-weight:400;
  8721. font-style:normal;
  8722. font-size:16px;
  8723. line-height:30px;
  8724. }
  8725. #u47327 .text {
  8726. position:absolute;
  8727. align-self:flex-start;
  8728. padding:0px 0px 0px 0px;
  8729. box-sizing:border-box;
  8730. width:100%;
  8731. }
  8732. #u47327_text {
  8733. border-width:0px;
  8734. white-space:nowrap;
  8735. text-transform:none;
  8736. }
  8737. #u47328_div {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:0px;
  8741. top:0px;
  8742. width:68px;
  8743. height:30px;
  8744. background:inherit;
  8745. background-color:rgba(242, 242, 242, 1);
  8746. border:none;
  8747. border-radius:40px;
  8748. -moz-box-shadow:none;
  8749. -webkit-box-shadow:none;
  8750. box-shadow:none;
  8751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8752. font-weight:400;
  8753. font-style:normal;
  8754. font-size:12px;
  8755. color:#7F7F7F;
  8756. }
  8757. #u47328 {
  8758. border-width:0px;
  8759. position:absolute;
  8760. left:2131px;
  8761. top:136px;
  8762. width:68px;
  8763. height:30px;
  8764. display:flex;
  8765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8766. font-weight:400;
  8767. font-style:normal;
  8768. font-size:12px;
  8769. color:#7F7F7F;
  8770. }
  8771. #u47328 .text {
  8772. position:absolute;
  8773. align-self:center;
  8774. padding:2px 2px 2px 2px;
  8775. box-sizing:border-box;
  8776. width:100%;
  8777. }
  8778. #u47328_text {
  8779. border-width:0px;
  8780. word-wrap:break-word;
  8781. text-transform:none;
  8782. }
  8783. #u47329 {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:0px;
  8787. top:0px;
  8788. width:0px;
  8789. height:0px;
  8790. }
  8791. #u47330_div {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:375px;
  8797. height:80px;
  8798. background:inherit;
  8799. background-color:rgba(255, 255, 255, 1);
  8800. border:none;
  8801. border-left:0px;
  8802. border-top:0px;
  8803. border-right:0px;
  8804. border-radius:0px;
  8805. border-bottom-right-radius:0px;
  8806. border-bottom-left-radius:0px;
  8807. -moz-box-shadow:none;
  8808. -webkit-box-shadow:none;
  8809. box-shadow:none;
  8810. }
  8811. #u47330 {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:1846px;
  8815. top:451px;
  8816. width:375px;
  8817. height:80px;
  8818. display:flex;
  8819. }
  8820. #u47330 .text {
  8821. position:absolute;
  8822. align-self:center;
  8823. padding:2px 2px 2px 2px;
  8824. box-sizing:border-box;
  8825. width:100%;
  8826. }
  8827. #u47330_text {
  8828. border-width:0px;
  8829. word-wrap:break-word;
  8830. text-transform:none;
  8831. visibility:hidden;
  8832. }
  8833. #u47331_div {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:0px;
  8837. top:0px;
  8838. width:225px;
  8839. height:30px;
  8840. background:inherit;
  8841. background-color:rgba(255, 255, 255, 0);
  8842. border:none;
  8843. border-left:0px;
  8844. border-top:0px;
  8845. border-right:0px;
  8846. border-radius:0px;
  8847. border-bottom-right-radius:0px;
  8848. border-bottom-left-radius:0px;
  8849. -moz-box-shadow:none;
  8850. -webkit-box-shadow:none;
  8851. box-shadow:none;
  8852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:16px;
  8856. line-height:30px;
  8857. }
  8858. #u47331 {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:1923px;
  8862. top:490px;
  8863. width:225px;
  8864. height:30px;
  8865. display:flex;
  8866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8867. font-weight:400;
  8868. font-style:normal;
  8869. font-size:16px;
  8870. line-height:30px;
  8871. }
  8872. #u47331 .text {
  8873. position:absolute;
  8874. align-self:flex-start;
  8875. padding:0px 0px 0px 0px;
  8876. box-sizing:border-box;
  8877. width:100%;
  8878. }
  8879. #u47331_text {
  8880. border-width:0px;
  8881. white-space:nowrap;
  8882. text-transform:none;
  8883. }
  8884. #u47332_div {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:0px;
  8888. top:0px;
  8889. width:49px;
  8890. height:25px;
  8891. background:inherit;
  8892. background-color:rgba(255, 255, 255, 0);
  8893. border:none;
  8894. border-left:0px;
  8895. border-top:0px;
  8896. border-right:0px;
  8897. border-radius:0px;
  8898. border-bottom-right-radius:0px;
  8899. border-bottom-left-radius:0px;
  8900. -moz-box-shadow:none;
  8901. -webkit-box-shadow:none;
  8902. box-shadow:none;
  8903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8904. font-weight:400;
  8905. font-style:normal;
  8906. font-size:12px;
  8907. color:#7F7F7F;
  8908. line-height:25px;
  8909. }
  8910. #u47332 {
  8911. border-width:0px;
  8912. position:absolute;
  8913. left:1923px;
  8914. top:465px;
  8915. width:49px;
  8916. height:25px;
  8917. display:flex;
  8918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:12px;
  8922. color:#7F7F7F;
  8923. line-height:25px;
  8924. }
  8925. #u47332 .text {
  8926. position:absolute;
  8927. align-self:flex-start;
  8928. padding:0px 0px 0px 0px;
  8929. box-sizing:border-box;
  8930. width:100%;
  8931. }
  8932. #u47332_text {
  8933. border-width:0px;
  8934. white-space:nowrap;
  8935. text-transform:none;
  8936. }
  8937. #u47333_div {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:0px;
  8941. top:0px;
  8942. width:48px;
  8943. height:50px;
  8944. background:inherit;
  8945. background-color:rgba(24, 144, 255, 1);
  8946. border:none;
  8947. border-radius:4px;
  8948. -moz-box-shadow:none;
  8949. -webkit-box-shadow:none;
  8950. box-shadow:none;
  8951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8952. font-weight:400;
  8953. font-style:normal;
  8954. color:#FFFFFF;
  8955. }
  8956. #u47333 {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:1866px;
  8960. top:136px;
  8961. width:48px;
  8962. height:50px;
  8963. display:flex;
  8964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. color:#FFFFFF;
  8968. }
  8969. #u47333 .text {
  8970. position:absolute;
  8971. align-self:center;
  8972. padding:2px 2px 2px 2px;
  8973. box-sizing:border-box;
  8974. width:100%;
  8975. }
  8976. #u47333_text {
  8977. border-width:0px;
  8978. word-wrap:break-word;
  8979. text-transform:none;
  8980. }
  8981. #u47334_div {
  8982. border-width:0px;
  8983. position:absolute;
  8984. left:0px;
  8985. top:0px;
  8986. width:127px;
  8987. height:30px;
  8988. background:inherit;
  8989. background-color:rgba(255, 255, 255, 0);
  8990. border:none;
  8991. border-left:0px;
  8992. border-top:0px;
  8993. border-right:0px;
  8994. border-radius:0px;
  8995. border-bottom-right-radius:0px;
  8996. border-bottom-left-radius:0px;
  8997. -moz-box-shadow:none;
  8998. -webkit-box-shadow:none;
  8999. box-shadow:none;
  9000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9001. font-weight:400;
  9002. font-style:normal;
  9003. font-size:18px;
  9004. line-height:30px;
  9005. }
  9006. #u47334 {
  9007. border-width:0px;
  9008. position:absolute;
  9009. left:1928px;
  9010. top:136px;
  9011. width:127px;
  9012. height:30px;
  9013. display:flex;
  9014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9015. font-weight:400;
  9016. font-style:normal;
  9017. font-size:18px;
  9018. line-height:30px;
  9019. }
  9020. #u47334 .text {
  9021. position:absolute;
  9022. align-self:flex-start;
  9023. padding:0px 0px 0px 0px;
  9024. box-sizing:border-box;
  9025. width:100%;
  9026. }
  9027. #u47334_text {
  9028. border-width:0px;
  9029. white-space:nowrap;
  9030. text-transform:none;
  9031. }
  9032. #u47335 {
  9033. border-width:0px;
  9034. position:absolute;
  9035. left:0px;
  9036. top:0px;
  9037. width:0px;
  9038. height:0px;
  9039. }
  9040. #u47336_div {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:60px;
  9046. height:20px;
  9047. background:inherit;
  9048. background-color:rgba(255, 255, 255, 1);
  9049. box-sizing:border-box;
  9050. border-width:1px;
  9051. border-style:solid;
  9052. border-color:rgba(215, 215, 215, 1);
  9053. border-radius:2px;
  9054. -moz-box-shadow:none;
  9055. -webkit-box-shadow:none;
  9056. box-shadow:none;
  9057. }
  9058. #u47336 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:1928px;
  9062. top:171px;
  9063. width:60px;
  9064. height:20px;
  9065. display:flex;
  9066. }
  9067. #u47336 .text {
  9068. position:absolute;
  9069. align-self:center;
  9070. padding:2px 2px 2px 2px;
  9071. box-sizing:border-box;
  9072. width:100%;
  9073. }
  9074. #u47336_text {
  9075. border-width:0px;
  9076. word-wrap:break-word;
  9077. text-transform:none;
  9078. visibility:hidden;
  9079. }
  9080. #u47337 {
  9081. border-width:0px;
  9082. position:absolute;
  9083. left:0px;
  9084. top:0px;
  9085. width:0px;
  9086. height:0px;
  9087. }
  9088. #u47338_div {
  9089. border-width:0px;
  9090. position:absolute;
  9091. left:0px;
  9092. top:0px;
  9093. width:37px;
  9094. height:17px;
  9095. background:inherit;
  9096. background-color:rgba(255, 255, 255, 0);
  9097. border:none;
  9098. border-left:0px;
  9099. border-top:0px;
  9100. border-right:0px;
  9101. border-radius:0px;
  9102. border-bottom-right-radius:0px;
  9103. border-bottom-left-radius:0px;
  9104. -moz-box-shadow:none;
  9105. -webkit-box-shadow:none;
  9106. box-shadow:none;
  9107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9108. font-weight:400;
  9109. font-style:normal;
  9110. font-size:12px;
  9111. color:#7F7F7F;
  9112. }
  9113. #u47338 {
  9114. border-width:0px;
  9115. position:absolute;
  9116. left:1947px;
  9117. top:173px;
  9118. width:37px;
  9119. height:17px;
  9120. display:flex;
  9121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9122. font-weight:400;
  9123. font-style:normal;
  9124. font-size:12px;
  9125. color:#7F7F7F;
  9126. }
  9127. #u47338 .text {
  9128. position:absolute;
  9129. align-self:flex-start;
  9130. padding:0px 0px 0px 0px;
  9131. box-sizing:border-box;
  9132. width:100%;
  9133. }
  9134. #u47338_text {
  9135. border-width:0px;
  9136. white-space:nowrap;
  9137. text-transform:none;
  9138. }
  9139. #u47339 {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:0px;
  9145. height:0px;
  9146. }
  9147. #u47340_img {
  9148. border-width:0px;
  9149. position:absolute;
  9150. left:0px;
  9151. top:0px;
  9152. width:12px;
  9153. height:12px;
  9154. }
  9155. #u47340 {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:1932px;
  9159. top:175px;
  9160. width:12px;
  9161. height:12px;
  9162. display:flex;
  9163. }
  9164. #u47340 .text {
  9165. position:absolute;
  9166. align-self:center;
  9167. padding:2px 2px 2px 2px;
  9168. box-sizing:border-box;
  9169. width:100%;
  9170. }
  9171. #u47340_text {
  9172. border-width:0px;
  9173. word-wrap:break-word;
  9174. text-transform:none;
  9175. visibility:hidden;
  9176. }
  9177. #u47341_img {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:0px;
  9181. top:0px;
  9182. width:6px;
  9183. height:4px;
  9184. }
  9185. #u47341 {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:1935px;
  9189. top:179px;
  9190. width:6px;
  9191. height:4px;
  9192. display:flex;
  9193. }
  9194. #u47341 .text {
  9195. position:absolute;
  9196. align-self:center;
  9197. padding:2px 2px 2px 2px;
  9198. box-sizing:border-box;
  9199. width:100%;
  9200. }
  9201. #u47341_text {
  9202. border-width:0px;
  9203. word-wrap:break-word;
  9204. text-transform:none;
  9205. visibility:hidden;
  9206. }
  9207. #u47342 {
  9208. border-width:0px;
  9209. position:absolute;
  9210. left:0px;
  9211. top:0px;
  9212. width:0px;
  9213. height:0px;
  9214. }
  9215. #u47343_div {
  9216. border-width:0px;
  9217. position:absolute;
  9218. left:0px;
  9219. top:0px;
  9220. width:375px;
  9221. height:80px;
  9222. background:inherit;
  9223. background-color:rgba(255, 255, 255, 1);
  9224. border:none;
  9225. border-left:0px;
  9226. border-top:0px;
  9227. border-right:0px;
  9228. border-radius:0px;
  9229. border-bottom-right-radius:0px;
  9230. border-bottom-left-radius:0px;
  9231. -moz-box-shadow:none;
  9232. -webkit-box-shadow:none;
  9233. box-shadow:none;
  9234. }
  9235. #u47343 {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:1846px;
  9239. top:370px;
  9240. width:375px;
  9241. height:80px;
  9242. display:flex;
  9243. }
  9244. #u47343 .text {
  9245. position:absolute;
  9246. align-self:center;
  9247. padding:2px 2px 2px 2px;
  9248. box-sizing:border-box;
  9249. width:100%;
  9250. }
  9251. #u47343_text {
  9252. border-width:0px;
  9253. word-wrap:break-word;
  9254. text-transform:none;
  9255. visibility:hidden;
  9256. }
  9257. #u47344_div {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:193px;
  9263. height:30px;
  9264. background:inherit;
  9265. background-color:rgba(255, 255, 255, 0);
  9266. border:none;
  9267. border-left:0px;
  9268. border-top:0px;
  9269. border-right:0px;
  9270. border-radius:0px;
  9271. border-bottom-right-radius:0px;
  9272. border-bottom-left-radius:0px;
  9273. -moz-box-shadow:none;
  9274. -webkit-box-shadow:none;
  9275. box-shadow:none;
  9276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:16px;
  9280. line-height:30px;
  9281. }
  9282. #u47344 {
  9283. border-width:0px;
  9284. position:absolute;
  9285. left:1923px;
  9286. top:409px;
  9287. width:193px;
  9288. height:30px;
  9289. display:flex;
  9290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9291. font-weight:400;
  9292. font-style:normal;
  9293. font-size:16px;
  9294. line-height:30px;
  9295. }
  9296. #u47344 .text {
  9297. position:absolute;
  9298. align-self:flex-start;
  9299. padding:0px 0px 0px 0px;
  9300. box-sizing:border-box;
  9301. width:100%;
  9302. }
  9303. #u47344_text {
  9304. border-width:0px;
  9305. white-space:nowrap;
  9306. text-transform:none;
  9307. }
  9308. #u47345_div {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:0px;
  9312. top:0px;
  9313. width:49px;
  9314. height:25px;
  9315. background:inherit;
  9316. background-color:rgba(255, 255, 255, 0);
  9317. border:none;
  9318. border-left:0px;
  9319. border-top:0px;
  9320. border-right:0px;
  9321. border-radius:0px;
  9322. border-bottom-right-radius:0px;
  9323. border-bottom-left-radius:0px;
  9324. -moz-box-shadow:none;
  9325. -webkit-box-shadow:none;
  9326. box-shadow:none;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:12px;
  9331. color:#7F7F7F;
  9332. line-height:25px;
  9333. }
  9334. #u47345 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:1923px;
  9338. top:384px;
  9339. width:49px;
  9340. height:25px;
  9341. display:flex;
  9342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9343. font-weight:400;
  9344. font-style:normal;
  9345. font-size:12px;
  9346. color:#7F7F7F;
  9347. line-height:25px;
  9348. }
  9349. #u47345 .text {
  9350. position:absolute;
  9351. align-self:flex-start;
  9352. padding:0px 0px 0px 0px;
  9353. box-sizing:border-box;
  9354. width:100%;
  9355. }
  9356. #u47345_text {
  9357. border-width:0px;
  9358. white-space:nowrap;
  9359. text-transform:none;
  9360. }
  9361. #u47346_div {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:144px;
  9367. height:40px;
  9368. background:inherit;
  9369. background-color:rgba(24, 144, 255, 1);
  9370. border:none;
  9371. border-radius:40px;
  9372. -moz-box-shadow:none;
  9373. -webkit-box-shadow:none;
  9374. box-shadow:none;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:14px;
  9379. color:#FFFFFF;
  9380. }
  9381. #u47346 {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:2044px;
  9385. top:619px;
  9386. width:144px;
  9387. height:40px;
  9388. display:flex;
  9389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9390. font-weight:400;
  9391. font-style:normal;
  9392. font-size:14px;
  9393. color:#FFFFFF;
  9394. }
  9395. #u47346 .text {
  9396. position:absolute;
  9397. align-self:center;
  9398. padding:2px 2px 2px 2px;
  9399. box-sizing:border-box;
  9400. width:100%;
  9401. }
  9402. #u47346_text {
  9403. border-width:0px;
  9404. word-wrap:break-word;
  9405. text-transform:none;
  9406. }
  9407. #u47347_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:144px;
  9413. height:40px;
  9414. background:inherit;
  9415. background-color:rgba(255, 255, 255, 1);
  9416. box-sizing:border-box;
  9417. border-width:1px;
  9418. border-style:solid;
  9419. border-color:rgba(127, 127, 127, 1);
  9420. border-radius:40px;
  9421. -moz-box-shadow:none;
  9422. -webkit-box-shadow:none;
  9423. box-shadow:none;
  9424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9425. font-weight:400;
  9426. font-style:normal;
  9427. font-size:14px;
  9428. }
  9429. #u47347 {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:1880px;
  9433. top:619px;
  9434. width:144px;
  9435. height:40px;
  9436. display:flex;
  9437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9438. font-weight:400;
  9439. font-style:normal;
  9440. font-size:14px;
  9441. }
  9442. #u47347 .text {
  9443. position:absolute;
  9444. align-self:center;
  9445. padding:2px 2px 2px 2px;
  9446. box-sizing:border-box;
  9447. width:100%;
  9448. }
  9449. #u47347_text {
  9450. border-width:0px;
  9451. word-wrap:break-word;
  9452. text-transform:none;
  9453. }