styles.css 137 KB

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