styles.css 154 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1736px;
  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. #u146813 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u146815_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. }
  35. #u146815 {
  36. border-width:0px;
  37. position:absolute;
  38. left:-553px;
  39. top:-9px;
  40. width:433px;
  41. height:865px;
  42. display:flex;
  43. }
  44. #u146815 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u146815_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u146816_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:375px;
  63. height:40px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 1);
  66. box-sizing:border-box;
  67. border-width:1px;
  68. border-style:solid;
  69. border-color:rgba(215, 215, 215, 1);
  70. border-left:0px;
  71. border-top:0px;
  72. border-right:0px;
  73. border-radius:0px;
  74. border-bottom-right-radius:0px;
  75. border-bottom-left-radius:0px;
  76. -moz-box-shadow:none;
  77. -webkit-box-shadow:none;
  78. box-shadow:none;
  79. }
  80. #u146816 {
  81. border-width:0px;
  82. position:absolute;
  83. left:-524px;
  84. top:58px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. }
  89. #u146816 .text {
  90. position:absolute;
  91. align-self:center;
  92. padding:2px 2px 2px 2px;
  93. box-sizing:border-box;
  94. width:100%;
  95. }
  96. #u146816_text {
  97. border-width:0px;
  98. word-wrap:break-word;
  99. text-transform:none;
  100. visibility:hidden;
  101. }
  102. #u146817 {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:0px;
  108. height:0px;
  109. }
  110. #u146818_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:88px;
  116. height:32px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 1);
  119. box-sizing:border-box;
  120. border-width:1px;
  121. border-style:solid;
  122. border-color:rgba(242, 242, 242, 1);
  123. border-radius:33px;
  124. -moz-box-shadow:none;
  125. -webkit-box-shadow:none;
  126. box-shadow:none;
  127. }
  128. #u146818 {
  129. border-width:0px;
  130. position:absolute;
  131. left:-244px;
  132. top:62px;
  133. width:88px;
  134. height:32px;
  135. display:flex;
  136. }
  137. #u146818 .text {
  138. position:absolute;
  139. align-self:center;
  140. padding:2px 2px 2px 2px;
  141. box-sizing:border-box;
  142. width:100%;
  143. }
  144. #u146818_text {
  145. border-width:0px;
  146. word-wrap:break-word;
  147. text-transform:none;
  148. visibility:hidden;
  149. }
  150. #u146819 {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:0px;
  156. height:0px;
  157. }
  158. #u146820_img {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:18px;
  164. height:18px;
  165. }
  166. #u146820 {
  167. border-width:0px;
  168. position:absolute;
  169. left:-181px;
  170. top:69px;
  171. width:18px;
  172. height:18px;
  173. display:flex;
  174. }
  175. #u146820 .text {
  176. position:absolute;
  177. align-self:center;
  178. padding:2px 2px 2px 2px;
  179. box-sizing:border-box;
  180. width:100%;
  181. }
  182. #u146820_text {
  183. border-width:0px;
  184. word-wrap:break-word;
  185. text-transform:none;
  186. visibility:hidden;
  187. }
  188. #u146821_img {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:6px;
  194. height:6px;
  195. }
  196. #u146821 {
  197. border-width:0px;
  198. position:absolute;
  199. left:-175px;
  200. top:75px;
  201. width:6px;
  202. height:6px;
  203. display:flex;
  204. }
  205. #u146821 .text {
  206. position:absolute;
  207. align-self:center;
  208. padding:2px 2px 2px 2px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u146821_text {
  213. border-width:0px;
  214. word-wrap:break-word;
  215. text-transform:none;
  216. visibility:hidden;
  217. }
  218. #u146822 {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:0px;
  224. height:0px;
  225. }
  226. #u146823_img {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:5px;
  232. height:5px;
  233. }
  234. #u146823 {
  235. border-width:0px;
  236. position:absolute;
  237. left:-230px;
  238. top:76px;
  239. width:5px;
  240. height:5px;
  241. display:flex;
  242. }
  243. #u146823 .text {
  244. position:absolute;
  245. align-self:center;
  246. padding:2px 2px 2px 2px;
  247. box-sizing:border-box;
  248. width:100%;
  249. }
  250. #u146823_text {
  251. border-width:0px;
  252. word-wrap:break-word;
  253. text-transform:none;
  254. visibility:hidden;
  255. }
  256. #u146824_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:5px;
  262. height:5px;
  263. }
  264. #u146824 {
  265. border-width:0px;
  266. position:absolute;
  267. left:-214px;
  268. top:76px;
  269. width:5px;
  270. height:5px;
  271. display:flex;
  272. }
  273. #u146824 .text {
  274. position:absolute;
  275. align-self:center;
  276. padding:2px 2px 2px 2px;
  277. box-sizing:border-box;
  278. width:100%;
  279. }
  280. #u146824_text {
  281. border-width:0px;
  282. word-wrap:break-word;
  283. text-transform:none;
  284. visibility:hidden;
  285. }
  286. #u146825_img {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:7px;
  292. height:7px;
  293. }
  294. #u146825 {
  295. border-width:0px;
  296. position:absolute;
  297. left:-223px;
  298. top:75px;
  299. width:7px;
  300. height:7px;
  301. display:flex;
  302. }
  303. #u146825 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u146825_text {
  311. border-width:0px;
  312. word-wrap:break-word;
  313. text-transform:none;
  314. visibility:hidden;
  315. }
  316. #u146826_img {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:19px;
  322. height:2px;
  323. }
  324. #u146826 {
  325. border-width:0px;
  326. position:absolute;
  327. left:-206px;
  328. top:78px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. }
  337. #u146826 .text {
  338. position:absolute;
  339. align-self:center;
  340. padding:2px 2px 2px 2px;
  341. box-sizing:border-box;
  342. width:100%;
  343. }
  344. #u146826_text {
  345. border-width:0px;
  346. word-wrap:break-word;
  347. text-transform:none;
  348. visibility:hidden;
  349. }
  350. #u146827_img {
  351. border-width:0px;
  352. position:absolute;
  353. left:0px;
  354. top:0px;
  355. width:375px;
  356. height:44px;
  357. }
  358. #u146827 {
  359. border-width:0px;
  360. position:absolute;
  361. left:-524px;
  362. top:15px;
  363. width:375px;
  364. height:44px;
  365. display:flex;
  366. }
  367. #u146827 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u146827_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. visibility:hidden;
  379. }
  380. #u146828_div {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:375px;
  386. height:50px;
  387. background:inherit;
  388. background-color:rgba(255, 255, 255, 1);
  389. box-sizing:border-box;
  390. border-width:1px;
  391. border-style:solid;
  392. border-color:rgba(242, 242, 242, 1);
  393. border-radius:26px;
  394. border-top-left-radius:0px;
  395. border-top-right-radius:0px;
  396. -moz-box-shadow:none;
  397. -webkit-box-shadow:none;
  398. box-shadow:none;
  399. }
  400. #u146828 {
  401. border-width:0px;
  402. position:absolute;
  403. left:-524px;
  404. top:779px;
  405. width:375px;
  406. height:50px;
  407. display:flex;
  408. }
  409. #u146828 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 2px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u146828_text {
  417. border-width:0px;
  418. word-wrap:break-word;
  419. text-transform:none;
  420. visibility:hidden;
  421. }
  422. #u146829 {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:0px;
  428. height:0px;
  429. }
  430. #u146830_img {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:24px;
  436. height:24px;
  437. }
  438. #u146830 {
  439. border-width:0px;
  440. position:absolute;
  441. left:-484px;
  442. top:783px;
  443. width:24px;
  444. height:24px;
  445. display:flex;
  446. font-size:8px;
  447. }
  448. #u146830 .text {
  449. position:absolute;
  450. align-self:center;
  451. padding:2px 2px 2px 2px;
  452. box-sizing:border-box;
  453. width:100%;
  454. }
  455. #u146830_text {
  456. border-width:0px;
  457. word-wrap:break-word;
  458. text-transform:none;
  459. }
  460. #u146831_div {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:25px;
  466. height:17px;
  467. background:inherit;
  468. background-color:rgba(255, 255, 255, 0);
  469. border:none;
  470. border-radius:0px;
  471. -moz-box-shadow:none;
  472. -webkit-box-shadow:none;
  473. box-shadow:none;
  474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  475. font-weight:400;
  476. font-style:normal;
  477. font-size:12px;
  478. }
  479. #u146831 {
  480. border-width:0px;
  481. position:absolute;
  482. left:-484px;
  483. top:808px;
  484. width:25px;
  485. height:17px;
  486. display:flex;
  487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  488. font-weight:400;
  489. font-style:normal;
  490. font-size:12px;
  491. }
  492. #u146831 .text {
  493. position:absolute;
  494. align-self:flex-start;
  495. padding:0px 0px 0px 0px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u146831_text {
  500. border-width:0px;
  501. white-space:nowrap;
  502. text-transform:none;
  503. }
  504. #u146832 {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:0px;
  510. height:0px;
  511. }
  512. #u146833_img {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:24px;
  518. height:24px;
  519. }
  520. #u146833 {
  521. border-width:0px;
  522. position:absolute;
  523. left:-214px;
  524. top:785px;
  525. width:24px;
  526. height:24px;
  527. display:flex;
  528. font-size:8px;
  529. }
  530. #u146833 .text {
  531. position:absolute;
  532. align-self:center;
  533. padding:2px 2px 2px 2px;
  534. box-sizing:border-box;
  535. width:100%;
  536. }
  537. #u146833_text {
  538. border-width:0px;
  539. word-wrap:break-word;
  540. text-transform:none;
  541. }
  542. #u146834_div {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:25px;
  548. height:17px;
  549. background:inherit;
  550. background-color:rgba(255, 255, 255, 0);
  551. border:none;
  552. border-radius:0px;
  553. -moz-box-shadow:none;
  554. -webkit-box-shadow:none;
  555. box-shadow:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:12px;
  560. }
  561. #u146834 {
  562. border-width:0px;
  563. position:absolute;
  564. left:-214px;
  565. top:810px;
  566. width:25px;
  567. height:17px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u146834 .text {
  575. position:absolute;
  576. align-self:flex-start;
  577. padding:0px 0px 0px 0px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u146834_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u146835_div {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:375px;
  592. height:681px;
  593. background:inherit;
  594. background-color:rgba(242, 242, 242, 0.462745098039216);
  595. border:none;
  596. border-radius:0px;
  597. -moz-box-shadow:none;
  598. -webkit-box-shadow:none;
  599. box-shadow:none;
  600. }
  601. #u146835 {
  602. border-width:0px;
  603. position:absolute;
  604. left:-524px;
  605. top:98px;
  606. width:375px;
  607. height:681px;
  608. display:flex;
  609. }
  610. #u146835 .text {
  611. position:absolute;
  612. align-self:center;
  613. padding:2px 2px 2px 2px;
  614. box-sizing:border-box;
  615. width:100%;
  616. }
  617. #u146835_text {
  618. border-width:0px;
  619. word-wrap:break-word;
  620. text-transform:none;
  621. visibility:hidden;
  622. }
  623. #u146836 {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:0px;
  629. height:0px;
  630. }
  631. #u146837_img {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:24px;
  637. height:24px;
  638. }
  639. #u146837 {
  640. border-width:0px;
  641. position:absolute;
  642. left:-302px;
  643. top:783px;
  644. width:24px;
  645. height:24px;
  646. display:flex;
  647. font-size:8px;
  648. }
  649. #u146837 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:2px 2px 2px 2px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u146837_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u146838_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:37px;
  667. height:17px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border:none;
  671. border-radius:0px;
  672. -moz-box-shadow:none;
  673. -webkit-box-shadow:none;
  674. box-shadow:none;
  675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  676. font-weight:400;
  677. font-style:normal;
  678. font-size:12px;
  679. }
  680. #u146838 {
  681. border-width:0px;
  682. position:absolute;
  683. left:-308px;
  684. top:808px;
  685. width:37px;
  686. height:17px;
  687. display:flex;
  688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  689. font-weight:400;
  690. font-style:normal;
  691. font-size:12px;
  692. }
  693. #u146838 .text {
  694. position:absolute;
  695. align-self:flex-start;
  696. padding:0px 0px 0px 0px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u146838_text {
  701. border-width:0px;
  702. white-space:nowrap;
  703. text-transform:none;
  704. }
  705. #u146839 {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:0px;
  711. height:0px;
  712. }
  713. #u146840_img {
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:24px;
  719. height:24px;
  720. }
  721. #u146840 {
  722. border-width:0px;
  723. position:absolute;
  724. left:-396px;
  725. top:783px;
  726. width:24px;
  727. height:24px;
  728. display:flex;
  729. font-size:8px;
  730. }
  731. #u146840 .text {
  732. position:absolute;
  733. align-self:center;
  734. padding:2px 2px 2px 2px;
  735. box-sizing:border-box;
  736. width:100%;
  737. }
  738. #u146840_text {
  739. border-width:0px;
  740. word-wrap:break-word;
  741. text-transform:none;
  742. }
  743. #u146841_div {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:37px;
  749. height:17px;
  750. background:inherit;
  751. background-color:rgba(255, 255, 255, 0);
  752. border:none;
  753. border-radius:0px;
  754. -moz-box-shadow:none;
  755. -webkit-box-shadow:none;
  756. box-shadow:none;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:12px;
  761. }
  762. #u146841 {
  763. border-width:0px;
  764. position:absolute;
  765. left:-402px;
  766. top:808px;
  767. width:37px;
  768. height:17px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u146841 .text {
  776. position:absolute;
  777. align-self:flex-start;
  778. padding:0px 0px 0px 0px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u146841_text {
  783. border-width:0px;
  784. white-space:nowrap;
  785. text-transform:none;
  786. }
  787. #u146842_div {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:375px;
  793. height:40px;
  794. background:inherit;
  795. background-color:rgba(255, 255, 255, 1);
  796. box-sizing:border-box;
  797. border-width:1px;
  798. border-style:solid;
  799. border-color:rgba(215, 215, 215, 1);
  800. border-left:0px;
  801. border-top:0px;
  802. border-right:0px;
  803. border-radius:0px;
  804. border-bottom-right-radius:0px;
  805. border-bottom-left-radius:0px;
  806. -moz-box-shadow:none;
  807. -webkit-box-shadow:none;
  808. box-shadow:none;
  809. }
  810. #u146842 {
  811. border-width:0px;
  812. position:absolute;
  813. left:-524px;
  814. top:58px;
  815. width:375px;
  816. height:40px;
  817. display:flex;
  818. }
  819. #u146842 .text {
  820. position:absolute;
  821. align-self:center;
  822. padding:2px 2px 2px 2px;
  823. box-sizing:border-box;
  824. width:100%;
  825. }
  826. #u146842_text {
  827. border-width:0px;
  828. word-wrap:break-word;
  829. text-transform:none;
  830. visibility:hidden;
  831. }
  832. #u146843 {
  833. border-width:0px;
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:0px;
  838. height:0px;
  839. }
  840. #u146844_div {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:88px;
  846. height:32px;
  847. background:inherit;
  848. background-color:rgba(255, 255, 255, 1);
  849. box-sizing:border-box;
  850. border-width:1px;
  851. border-style:solid;
  852. border-color:rgba(242, 242, 242, 1);
  853. border-radius:33px;
  854. -moz-box-shadow:none;
  855. -webkit-box-shadow:none;
  856. box-shadow:none;
  857. }
  858. #u146844 {
  859. border-width:0px;
  860. position:absolute;
  861. left:-244px;
  862. top:62px;
  863. width:88px;
  864. height:32px;
  865. display:flex;
  866. }
  867. #u146844 .text {
  868. position:absolute;
  869. align-self:center;
  870. padding:2px 2px 2px 2px;
  871. box-sizing:border-box;
  872. width:100%;
  873. }
  874. #u146844_text {
  875. border-width:0px;
  876. word-wrap:break-word;
  877. text-transform:none;
  878. visibility:hidden;
  879. }
  880. #u146845 {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:0px;
  886. height:0px;
  887. }
  888. #u146846_img {
  889. border-width:0px;
  890. position:absolute;
  891. left:0px;
  892. top:0px;
  893. width:18px;
  894. height:18px;
  895. }
  896. #u146846 {
  897. border-width:0px;
  898. position:absolute;
  899. left:-181px;
  900. top:69px;
  901. width:18px;
  902. height:18px;
  903. display:flex;
  904. }
  905. #u146846 .text {
  906. position:absolute;
  907. align-self:center;
  908. padding:2px 2px 2px 2px;
  909. box-sizing:border-box;
  910. width:100%;
  911. }
  912. #u146846_text {
  913. border-width:0px;
  914. word-wrap:break-word;
  915. text-transform:none;
  916. visibility:hidden;
  917. }
  918. #u146847_img {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:6px;
  924. height:6px;
  925. }
  926. #u146847 {
  927. border-width:0px;
  928. position:absolute;
  929. left:-175px;
  930. top:75px;
  931. width:6px;
  932. height:6px;
  933. display:flex;
  934. }
  935. #u146847 .text {
  936. position:absolute;
  937. align-self:center;
  938. padding:2px 2px 2px 2px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u146847_text {
  943. border-width:0px;
  944. word-wrap:break-word;
  945. text-transform:none;
  946. visibility:hidden;
  947. }
  948. #u146848 {
  949. border-width:0px;
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:0px;
  954. height:0px;
  955. }
  956. #u146849_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:5px;
  962. height:5px;
  963. }
  964. #u146849 {
  965. border-width:0px;
  966. position:absolute;
  967. left:-230px;
  968. top:76px;
  969. width:5px;
  970. height:5px;
  971. display:flex;
  972. }
  973. #u146849 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u146849_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u146850_img {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:5px;
  992. height:5px;
  993. }
  994. #u146850 {
  995. border-width:0px;
  996. position:absolute;
  997. left:-214px;
  998. top:76px;
  999. width:5px;
  1000. height:5px;
  1001. display:flex;
  1002. }
  1003. #u146850 .text {
  1004. position:absolute;
  1005. align-self:center;
  1006. padding:2px 2px 2px 2px;
  1007. box-sizing:border-box;
  1008. width:100%;
  1009. }
  1010. #u146850_text {
  1011. border-width:0px;
  1012. word-wrap:break-word;
  1013. text-transform:none;
  1014. visibility:hidden;
  1015. }
  1016. #u146851_img {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:7px;
  1022. height:7px;
  1023. }
  1024. #u146851 {
  1025. border-width:0px;
  1026. position:absolute;
  1027. left:-223px;
  1028. top:75px;
  1029. width:7px;
  1030. height:7px;
  1031. display:flex;
  1032. }
  1033. #u146851 .text {
  1034. position:absolute;
  1035. align-self:center;
  1036. padding:2px 2px 2px 2px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u146851_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u146852_img {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:19px;
  1052. height:2px;
  1053. }
  1054. #u146852 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:-206px;
  1058. top:78px;
  1059. width:18px;
  1060. height:1px;
  1061. display:flex;
  1062. -webkit-transform:rotate(90deg);
  1063. -moz-transform:rotate(90deg);
  1064. -ms-transform:rotate(90deg);
  1065. transform:rotate(90deg);
  1066. }
  1067. #u146852 .text {
  1068. position:absolute;
  1069. align-self:center;
  1070. padding:2px 2px 2px 2px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u146852_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. visibility:hidden;
  1079. }
  1080. #u146853_div {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:65px;
  1086. height:22px;
  1087. background:inherit;
  1088. background-color:rgba(255, 255, 255, 0);
  1089. border:none;
  1090. border-radius:0px;
  1091. -moz-box-shadow:none;
  1092. -webkit-box-shadow:none;
  1093. box-shadow:none;
  1094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1095. font-weight:400;
  1096. font-style:normal;
  1097. font-size:16px;
  1098. color:#000000;
  1099. }
  1100. #u146853 {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:-366px;
  1104. top:69px;
  1105. width:65px;
  1106. height:22px;
  1107. display:flex;
  1108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:16px;
  1112. color:#000000;
  1113. }
  1114. #u146853 .text {
  1115. position:absolute;
  1116. align-self:flex-start;
  1117. padding:0px 0px 0px 0px;
  1118. box-sizing:border-box;
  1119. width:100%;
  1120. }
  1121. #u146853_text {
  1122. border-width:0px;
  1123. white-space:nowrap;
  1124. text-transform:none;
  1125. }
  1126. #u146854_div {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:0px;
  1130. top:0px;
  1131. width:12px;
  1132. height:12px;
  1133. background:inherit;
  1134. background-color:rgba(255, 255, 255, 0);
  1135. box-sizing:border-box;
  1136. border-width:2px;
  1137. border-style:solid;
  1138. border-color:rgba(51, 51, 51, 1);
  1139. border-right:0px;
  1140. border-bottom:0px;
  1141. border-radius:0px;
  1142. border-top-right-radius:0px;
  1143. border-bottom-left-radius:0px;
  1144. -moz-box-shadow:none;
  1145. -webkit-box-shadow:none;
  1146. box-shadow:none;
  1147. }
  1148. #u146854 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:-507px;
  1152. top:72px;
  1153. width:12px;
  1154. height:12px;
  1155. display:flex;
  1156. -webkit-transform:rotate(315deg);
  1157. -moz-transform:rotate(315deg);
  1158. -ms-transform:rotate(315deg);
  1159. transform:rotate(315deg);
  1160. }
  1161. #u146854 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u146854_text {
  1169. border-width:0px;
  1170. word-wrap:break-word;
  1171. text-transform:none;
  1172. visibility:hidden;
  1173. }
  1174. #u146855_img {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:23px;
  1180. height:23px;
  1181. }
  1182. #u146855 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:-480px;
  1186. top:67px;
  1187. width:23px;
  1188. height:23px;
  1189. display:flex;
  1190. }
  1191. #u146855 .text {
  1192. position:absolute;
  1193. align-self:center;
  1194. padding:2px 2px 2px 2px;
  1195. box-sizing:border-box;
  1196. width:100%;
  1197. }
  1198. #u146855_text {
  1199. border-width:0px;
  1200. word-wrap:break-word;
  1201. text-transform:none;
  1202. visibility:hidden;
  1203. }
  1204. #u146856_div {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:375px;
  1210. height:733px;
  1211. background:inherit;
  1212. background-color:rgba(242, 242, 242, 0.996078431372549);
  1213. border:none;
  1214. border-top:0px;
  1215. border-radius:23px;
  1216. border-top-left-radius:0px;
  1217. border-top-right-radius:0px;
  1218. -moz-box-shadow:none;
  1219. -webkit-box-shadow:none;
  1220. box-shadow:none;
  1221. }
  1222. #u146856 {
  1223. border-width:0px;
  1224. position:absolute;
  1225. left:-524px;
  1226. top:97px;
  1227. width:375px;
  1228. height:733px;
  1229. display:flex;
  1230. }
  1231. #u146856 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:2px 2px 2px 2px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u146856_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. visibility:hidden;
  1243. }
  1244. #u146857 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:0px;
  1250. height:0px;
  1251. }
  1252. #u146858_div {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:355px;
  1258. height:100px;
  1259. background:inherit;
  1260. background-color:rgba(255, 255, 255, 1);
  1261. border:none;
  1262. border-radius:4px;
  1263. -moz-box-shadow:none;
  1264. -webkit-box-shadow:none;
  1265. box-shadow:none;
  1266. }
  1267. #u146858 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:-514px;
  1271. top:111px;
  1272. width:355px;
  1273. height:100px;
  1274. display:flex;
  1275. }
  1276. #u146858 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:2px 2px 2px 2px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u146858_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. visibility:hidden;
  1288. }
  1289. #u146859_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:57px;
  1295. height:20px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border:none;
  1299. border-left:0px;
  1300. border-top:0px;
  1301. border-right:0px;
  1302. border-radius:0px;
  1303. border-bottom-right-radius:0px;
  1304. border-bottom-left-radius:0px;
  1305. -moz-box-shadow:none;
  1306. -webkit-box-shadow:none;
  1307. box-shadow:none;
  1308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1309. font-weight:400;
  1310. font-style:normal;
  1311. font-size:14px;
  1312. }
  1313. #u146859 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:-498px;
  1317. top:129px;
  1318. width:57px;
  1319. height:20px;
  1320. display:flex;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:14px;
  1325. }
  1326. #u146859 .text {
  1327. position:absolute;
  1328. align-self:flex-start;
  1329. padding:0px 0px 0px 0px;
  1330. box-sizing:border-box;
  1331. width:100%;
  1332. }
  1333. #u146859_text {
  1334. border-width:0px;
  1335. white-space:nowrap;
  1336. text-transform:none;
  1337. }
  1338. #u146860_div {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:67px;
  1344. height:25px;
  1345. background:inherit;
  1346. background-color:rgba(255, 255, 255, 0);
  1347. border:none;
  1348. border-left:0px;
  1349. border-top:0px;
  1350. border-right:0px;
  1351. border-radius:0px;
  1352. border-bottom-right-radius:0px;
  1353. border-bottom-left-radius:0px;
  1354. -moz-box-shadow:none;
  1355. -webkit-box-shadow:none;
  1356. box-shadow:none;
  1357. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1358. font-style:normal;
  1359. }
  1360. #u146860 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:-488px;
  1364. top:161px;
  1365. width:67px;
  1366. height:25px;
  1367. display:flex;
  1368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1369. font-style:normal;
  1370. }
  1371. #u146860 .text {
  1372. position:absolute;
  1373. align-self:flex-start;
  1374. padding:0px 0px 0px 0px;
  1375. box-sizing:border-box;
  1376. width:100%;
  1377. }
  1378. #u146860_text {
  1379. border-width:0px;
  1380. white-space:nowrap;
  1381. text-transform:none;
  1382. }
  1383. #u146861 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:0px;
  1387. top:0px;
  1388. width:0px;
  1389. height:0px;
  1390. }
  1391. #u146862_div {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:355px;
  1397. height:50px;
  1398. background:inherit;
  1399. background-color:rgba(255, 255, 255, 1);
  1400. border:none;
  1401. border-radius:4px;
  1402. -moz-box-shadow:none;
  1403. -webkit-box-shadow:none;
  1404. box-shadow:none;
  1405. font-size:14px;
  1406. }
  1407. #u146862 {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:-514px;
  1411. top:221px;
  1412. width:355px;
  1413. height:50px;
  1414. display:flex;
  1415. font-size:14px;
  1416. }
  1417. #u146862 .text {
  1418. position:absolute;
  1419. align-self:center;
  1420. padding:2px 2px 2px 2px;
  1421. box-sizing:border-box;
  1422. width:100%;
  1423. }
  1424. #u146862_text {
  1425. border-width:0px;
  1426. word-wrap:break-word;
  1427. text-transform:none;
  1428. visibility:hidden;
  1429. }
  1430. #u146863_div {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:0px;
  1434. top:0px;
  1435. width:131px;
  1436. height:20px;
  1437. background:inherit;
  1438. background-color:rgba(255, 255, 255, 0);
  1439. border:none;
  1440. border-left:0px;
  1441. border-top:0px;
  1442. border-right:0px;
  1443. border-radius:0px;
  1444. border-bottom-right-radius:0px;
  1445. border-bottom-left-radius:0px;
  1446. -moz-box-shadow:none;
  1447. -webkit-box-shadow:none;
  1448. box-shadow:none;
  1449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1450. font-weight:400;
  1451. font-style:normal;
  1452. font-size:14px;
  1453. }
  1454. #u146863 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:-498px;
  1458. top:236px;
  1459. width:131px;
  1460. height:20px;
  1461. display:flex;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:14px;
  1466. }
  1467. #u146863 .text {
  1468. position:absolute;
  1469. align-self:flex-start;
  1470. padding:0px 0px 0px 0px;
  1471. box-sizing:border-box;
  1472. width:100%;
  1473. }
  1474. #u146863_text {
  1475. border-width:0px;
  1476. white-space:nowrap;
  1477. text-transform:none;
  1478. }
  1479. #u146864_div {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:10px;
  1485. height:10px;
  1486. background:inherit;
  1487. background-color:rgba(255, 255, 255, 0);
  1488. box-sizing:border-box;
  1489. border-width:1px;
  1490. border-style:solid;
  1491. border-color:rgba(51, 51, 51, 1);
  1492. border-right:0px;
  1493. border-bottom:0px;
  1494. border-radius:0px;
  1495. border-top-right-radius:0px;
  1496. border-bottom-left-radius:0px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-size:14px;
  1501. }
  1502. #u146864 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:-181px;
  1506. top:241px;
  1507. width:10px;
  1508. height:10px;
  1509. display:flex;
  1510. -webkit-transform:rotate(135deg);
  1511. -moz-transform:rotate(135deg);
  1512. -ms-transform:rotate(135deg);
  1513. transform:rotate(135deg);
  1514. font-size:14px;
  1515. }
  1516. #u146864 .text {
  1517. position:absolute;
  1518. align-self:center;
  1519. padding:2px 2px 2px 2px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u146864_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. visibility:hidden;
  1528. }
  1529. #u146865 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:0px;
  1535. height:0px;
  1536. }
  1537. #u146866_div {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:355px;
  1543. height:50px;
  1544. background:inherit;
  1545. background-color:rgba(255, 255, 255, 1);
  1546. border:none;
  1547. border-radius:4px;
  1548. -moz-box-shadow:none;
  1549. -webkit-box-shadow:none;
  1550. box-shadow:none;
  1551. font-size:14px;
  1552. }
  1553. #u146866 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:-514px;
  1557. top:272px;
  1558. width:355px;
  1559. height:50px;
  1560. display:flex;
  1561. font-size:14px;
  1562. }
  1563. #u146866 .text {
  1564. position:absolute;
  1565. align-self:center;
  1566. padding:2px 2px 2px 2px;
  1567. box-sizing:border-box;
  1568. width:100%;
  1569. }
  1570. #u146866_text {
  1571. border-width:0px;
  1572. word-wrap:break-word;
  1573. text-transform:none;
  1574. visibility:hidden;
  1575. }
  1576. #u146867_div {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:131px;
  1582. height:20px;
  1583. background:inherit;
  1584. background-color:rgba(255, 255, 255, 0);
  1585. border:none;
  1586. border-left:0px;
  1587. border-top:0px;
  1588. border-right:0px;
  1589. border-radius:0px;
  1590. border-bottom-right-radius:0px;
  1591. border-bottom-left-radius:0px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:14px;
  1599. }
  1600. #u146867 {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:-498px;
  1604. top:287px;
  1605. width:131px;
  1606. height:20px;
  1607. display:flex;
  1608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1609. font-weight:400;
  1610. font-style:normal;
  1611. font-size:14px;
  1612. }
  1613. #u146867 .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. #u146867_text {
  1621. border-width:0px;
  1622. white-space:nowrap;
  1623. text-transform:none;
  1624. }
  1625. #u146868_div {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:10px;
  1631. height:10px;
  1632. background:inherit;
  1633. background-color:rgba(255, 255, 255, 0);
  1634. box-sizing:border-box;
  1635. border-width:1px;
  1636. border-style:solid;
  1637. border-color:rgba(51, 51, 51, 1);
  1638. border-right:0px;
  1639. border-bottom:0px;
  1640. border-radius:0px;
  1641. border-top-right-radius:0px;
  1642. border-bottom-left-radius:0px;
  1643. -moz-box-shadow:none;
  1644. -webkit-box-shadow:none;
  1645. box-shadow:none;
  1646. font-size:14px;
  1647. }
  1648. #u146868 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:-181px;
  1652. top:292px;
  1653. width:10px;
  1654. height:10px;
  1655. display:flex;
  1656. -webkit-transform:rotate(135deg);
  1657. -moz-transform:rotate(135deg);
  1658. -ms-transform:rotate(135deg);
  1659. transform:rotate(135deg);
  1660. font-size:14px;
  1661. }
  1662. #u146868 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u146868_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u146869_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:60px;
  1681. height:30px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. box-sizing:border-box;
  1685. border-width:1px;
  1686. border-style:solid;
  1687. border-color:rgba(77, 140, 252, 1);
  1688. border-radius:4px;
  1689. -moz-box-shadow:none;
  1690. -webkit-box-shadow:none;
  1691. box-shadow:none;
  1692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1693. font-weight:400;
  1694. font-style:normal;
  1695. font-size:12px;
  1696. color:#4D8CFC;
  1697. text-align:center;
  1698. line-height:20px;
  1699. }
  1700. #u146869 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:-227px;
  1704. top:161px;
  1705. width:60px;
  1706. height:30px;
  1707. display:flex;
  1708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:12px;
  1712. color:#4D8CFC;
  1713. text-align:center;
  1714. line-height:20px;
  1715. }
  1716. #u146869 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:0px 0px 0px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u146869_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. }
  1728. #u146870_div {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:339px;
  1734. height:290px;
  1735. background:inherit;
  1736. background-color:rgba(255, 255, 255, 0);
  1737. box-sizing:border-box;
  1738. border-width:1px;
  1739. border-style:solid;
  1740. border-color:rgba(192, 0, 23, 1);
  1741. border-radius:0px;
  1742. -moz-box-shadow:none;
  1743. -webkit-box-shadow:none;
  1744. box-shadow:none;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#D9001B;
  1750. text-align:left;
  1751. line-height:20px;
  1752. }
  1753. #u146870 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:-509px;
  1757. top:343px;
  1758. width:339px;
  1759. height:290px;
  1760. display:flex;
  1761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1762. font-weight:400;
  1763. font-style:normal;
  1764. font-size:12px;
  1765. color:#D9001B;
  1766. text-align:left;
  1767. line-height:20px;
  1768. }
  1769. #u146870 .text {
  1770. position:absolute;
  1771. align-self:flex-start;
  1772. padding:5px 5px 5px 5px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u146870_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. }
  1781. #u146872_img {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:433px;
  1787. height:865px;
  1788. }
  1789. #u146872 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:433px;
  1795. height:865px;
  1796. display:flex;
  1797. }
  1798. #u146872 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:2px 2px 2px 2px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u146872_text {
  1806. border-width:0px;
  1807. word-wrap:break-word;
  1808. text-transform:none;
  1809. visibility:hidden;
  1810. }
  1811. #u146873_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:375px;
  1817. height:40px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 1);
  1820. box-sizing:border-box;
  1821. border-width:1px;
  1822. border-style:solid;
  1823. border-color:rgba(215, 215, 215, 1);
  1824. border-left:0px;
  1825. border-top:0px;
  1826. border-right:0px;
  1827. border-radius:0px;
  1828. border-bottom-right-radius:0px;
  1829. border-bottom-left-radius:0px;
  1830. -moz-box-shadow:none;
  1831. -webkit-box-shadow:none;
  1832. box-shadow:none;
  1833. }
  1834. #u146873 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:29px;
  1838. top:67px;
  1839. width:375px;
  1840. height:40px;
  1841. display:flex;
  1842. }
  1843. #u146873 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u146873_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u146874 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:0px;
  1862. height:0px;
  1863. }
  1864. #u146875_div {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:0px;
  1868. top:0px;
  1869. width:88px;
  1870. height:32px;
  1871. background:inherit;
  1872. background-color:rgba(255, 255, 255, 1);
  1873. box-sizing:border-box;
  1874. border-width:1px;
  1875. border-style:solid;
  1876. border-color:rgba(242, 242, 242, 1);
  1877. border-radius:33px;
  1878. -moz-box-shadow:none;
  1879. -webkit-box-shadow:none;
  1880. box-shadow:none;
  1881. }
  1882. #u146875 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:309px;
  1886. top:71px;
  1887. width:88px;
  1888. height:32px;
  1889. display:flex;
  1890. }
  1891. #u146875 .text {
  1892. position:absolute;
  1893. align-self:center;
  1894. padding:2px 2px 2px 2px;
  1895. box-sizing:border-box;
  1896. width:100%;
  1897. }
  1898. #u146875_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u146876 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:0px;
  1910. height:0px;
  1911. }
  1912. #u146877_img {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:0px;
  1916. top:0px;
  1917. width:18px;
  1918. height:18px;
  1919. }
  1920. #u146877 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:372px;
  1924. top:78px;
  1925. width:18px;
  1926. height:18px;
  1927. display:flex;
  1928. }
  1929. #u146877 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 2px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u146877_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. visibility:hidden;
  1941. }
  1942. #u146878_img {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:6px;
  1948. height:6px;
  1949. }
  1950. #u146878 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:378px;
  1954. top:84px;
  1955. width:6px;
  1956. height:6px;
  1957. display:flex;
  1958. }
  1959. #u146878 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u146878_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. visibility:hidden;
  1971. }
  1972. #u146879 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u146880_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:5px;
  1986. height:5px;
  1987. }
  1988. #u146880 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:323px;
  1992. top:85px;
  1993. width:5px;
  1994. height:5px;
  1995. display:flex;
  1996. }
  1997. #u146880 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u146880_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u146881_img {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:5px;
  2016. height:5px;
  2017. }
  2018. #u146881 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:339px;
  2022. top:85px;
  2023. width:5px;
  2024. height:5px;
  2025. display:flex;
  2026. }
  2027. #u146881 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:2px 2px 2px 2px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u146881_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. visibility:hidden;
  2039. }
  2040. #u146882_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:7px;
  2046. height:7px;
  2047. }
  2048. #u146882 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:330px;
  2052. top:84px;
  2053. width:7px;
  2054. height:7px;
  2055. display:flex;
  2056. }
  2057. #u146882 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u146882_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u146883_img {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:19px;
  2076. height:2px;
  2077. }
  2078. #u146883 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:347px;
  2082. top:87px;
  2083. width:18px;
  2084. height:1px;
  2085. display:flex;
  2086. -webkit-transform:rotate(90deg);
  2087. -moz-transform:rotate(90deg);
  2088. -ms-transform:rotate(90deg);
  2089. transform:rotate(90deg);
  2090. }
  2091. #u146883 .text {
  2092. position:absolute;
  2093. align-self:center;
  2094. padding:2px 2px 2px 2px;
  2095. box-sizing:border-box;
  2096. width:100%;
  2097. }
  2098. #u146883_text {
  2099. border-width:0px;
  2100. word-wrap:break-word;
  2101. text-transform:none;
  2102. visibility:hidden;
  2103. }
  2104. #u146884_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:375px;
  2110. height:44px;
  2111. }
  2112. #u146884 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:29px;
  2116. top:24px;
  2117. width:375px;
  2118. height:44px;
  2119. display:flex;
  2120. }
  2121. #u146884 .text {
  2122. position:absolute;
  2123. align-self:center;
  2124. padding:2px 2px 2px 2px;
  2125. box-sizing:border-box;
  2126. width:100%;
  2127. }
  2128. #u146884_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. visibility:hidden;
  2133. }
  2134. #u146885_div {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:0px;
  2139. width:375px;
  2140. height:50px;
  2141. background:inherit;
  2142. background-color:rgba(255, 255, 255, 1);
  2143. box-sizing:border-box;
  2144. border-width:1px;
  2145. border-style:solid;
  2146. border-color:rgba(242, 242, 242, 1);
  2147. border-radius:26px;
  2148. border-top-left-radius:0px;
  2149. border-top-right-radius:0px;
  2150. -moz-box-shadow:none;
  2151. -webkit-box-shadow:none;
  2152. box-shadow:none;
  2153. }
  2154. #u146885 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:29px;
  2158. top:788px;
  2159. width:375px;
  2160. height:50px;
  2161. display:flex;
  2162. }
  2163. #u146885 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u146885_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u146886 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:0px;
  2182. height:0px;
  2183. }
  2184. #u146887_img {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:0px;
  2189. width:24px;
  2190. height:24px;
  2191. }
  2192. #u146887 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:69px;
  2196. top:792px;
  2197. width:24px;
  2198. height:24px;
  2199. display:flex;
  2200. font-size:8px;
  2201. }
  2202. #u146887 .text {
  2203. position:absolute;
  2204. align-self:center;
  2205. padding:2px 2px 2px 2px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u146887_text {
  2210. border-width:0px;
  2211. word-wrap:break-word;
  2212. text-transform:none;
  2213. }
  2214. #u146888_div {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:25px;
  2220. height:17px;
  2221. background:inherit;
  2222. background-color:rgba(255, 255, 255, 0);
  2223. border:none;
  2224. border-radius:0px;
  2225. -moz-box-shadow:none;
  2226. -webkit-box-shadow:none;
  2227. box-shadow:none;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:12px;
  2232. }
  2233. #u146888 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:69px;
  2237. top:817px;
  2238. width:25px;
  2239. height:17px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:12px;
  2245. }
  2246. #u146888 .text {
  2247. position:absolute;
  2248. align-self:flex-start;
  2249. padding:0px 0px 0px 0px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u146888_text {
  2254. border-width:0px;
  2255. white-space:nowrap;
  2256. text-transform:none;
  2257. }
  2258. #u146889 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:0px;
  2264. height:0px;
  2265. }
  2266. #u146890_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:24px;
  2272. height:24px;
  2273. }
  2274. #u146890 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:339px;
  2278. top:794px;
  2279. width:24px;
  2280. height:24px;
  2281. display:flex;
  2282. font-size:8px;
  2283. }
  2284. #u146890 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u146890_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u146891_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:25px;
  2302. height:17px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:12px;
  2314. }
  2315. #u146891 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:339px;
  2319. top:819px;
  2320. width:25px;
  2321. height:17px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:12px;
  2327. }
  2328. #u146891 .text {
  2329. position:absolute;
  2330. align-self:flex-start;
  2331. padding:0px 0px 0px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u146891_text {
  2336. border-width:0px;
  2337. white-space:nowrap;
  2338. text-transform:none;
  2339. }
  2340. #u146892_div {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:375px;
  2346. height:681px;
  2347. background:inherit;
  2348. background-color:rgba(242, 242, 242, 0.462745098039216);
  2349. border:none;
  2350. border-radius:0px;
  2351. -moz-box-shadow:none;
  2352. -webkit-box-shadow:none;
  2353. box-shadow:none;
  2354. }
  2355. #u146892 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:29px;
  2359. top:107px;
  2360. width:375px;
  2361. height:681px;
  2362. display:flex;
  2363. }
  2364. #u146892 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 2px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u146892_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. visibility:hidden;
  2376. }
  2377. #u146893 {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:0px;
  2383. height:0px;
  2384. }
  2385. #u146894_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:24px;
  2391. height:24px;
  2392. }
  2393. #u146894 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:251px;
  2397. top:792px;
  2398. width:24px;
  2399. height:24px;
  2400. display:flex;
  2401. font-size:8px;
  2402. }
  2403. #u146894 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 2px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u146894_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u146895_div {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:37px;
  2421. height:17px;
  2422. background:inherit;
  2423. background-color:rgba(255, 255, 255, 0);
  2424. border:none;
  2425. border-radius:0px;
  2426. -moz-box-shadow:none;
  2427. -webkit-box-shadow:none;
  2428. box-shadow:none;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. }
  2434. #u146895 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:245px;
  2438. top:817px;
  2439. width:37px;
  2440. height:17px;
  2441. display:flex;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:12px;
  2446. }
  2447. #u146895 .text {
  2448. position:absolute;
  2449. align-self:flex-start;
  2450. padding:0px 0px 0px 0px;
  2451. box-sizing:border-box;
  2452. width:100%;
  2453. }
  2454. #u146895_text {
  2455. border-width:0px;
  2456. white-space:nowrap;
  2457. text-transform:none;
  2458. }
  2459. #u146896 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:0px;
  2465. height:0px;
  2466. }
  2467. #u146897_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:24px;
  2473. height:24px;
  2474. }
  2475. #u146897 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:157px;
  2479. top:792px;
  2480. width:24px;
  2481. height:24px;
  2482. display:flex;
  2483. font-size:8px;
  2484. }
  2485. #u146897 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 2px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u146897_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. }
  2497. #u146898_div {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:37px;
  2503. height:17px;
  2504. background:inherit;
  2505. background-color:rgba(255, 255, 255, 0);
  2506. border:none;
  2507. border-radius:0px;
  2508. -moz-box-shadow:none;
  2509. -webkit-box-shadow:none;
  2510. box-shadow:none;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. }
  2516. #u146898 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:151px;
  2520. top:817px;
  2521. width:37px;
  2522. height:17px;
  2523. display:flex;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:12px;
  2528. }
  2529. #u146898 .text {
  2530. position:absolute;
  2531. align-self:flex-start;
  2532. padding:0px 0px 0px 0px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u146898_text {
  2537. border-width:0px;
  2538. white-space:nowrap;
  2539. text-transform:none;
  2540. }
  2541. #u146899_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:375px;
  2547. height:732px;
  2548. background:inherit;
  2549. background-color:rgba(242, 242, 242, 0.996078431372549);
  2550. border:none;
  2551. border-top:0px;
  2552. border-radius:28px;
  2553. border-top-left-radius:0px;
  2554. border-top-right-radius:0px;
  2555. -moz-box-shadow:none;
  2556. -webkit-box-shadow:none;
  2557. box-shadow:none;
  2558. }
  2559. #u146899 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:29px;
  2563. top:107px;
  2564. width:375px;
  2565. height:732px;
  2566. display:flex;
  2567. }
  2568. #u146899 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:2px 2px 2px 2px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u146899_text {
  2576. border-width:0px;
  2577. word-wrap:break-word;
  2578. text-transform:none;
  2579. visibility:hidden;
  2580. }
  2581. #u146900 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:0px;
  2587. height:0px;
  2588. }
  2589. #u146901_div {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:375px;
  2595. height:40px;
  2596. background:inherit;
  2597. background-color:rgba(255, 255, 255, 1);
  2598. box-sizing:border-box;
  2599. border-width:1px;
  2600. border-style:solid;
  2601. border-color:rgba(215, 215, 215, 1);
  2602. border-left:0px;
  2603. border-top:0px;
  2604. border-right:0px;
  2605. border-radius:0px;
  2606. border-bottom-right-radius:0px;
  2607. border-bottom-left-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. }
  2612. #u146901 {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:29px;
  2616. top:66px;
  2617. width:375px;
  2618. height:40px;
  2619. display:flex;
  2620. }
  2621. #u146901 .text {
  2622. position:absolute;
  2623. align-self:center;
  2624. padding:2px 2px 2px 2px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u146901_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. visibility:hidden;
  2633. }
  2634. #u146902 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:0px;
  2640. height:0px;
  2641. }
  2642. #u146903_div {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:88px;
  2648. height:32px;
  2649. background:inherit;
  2650. background-color:rgba(255, 255, 255, 1);
  2651. box-sizing:border-box;
  2652. border-width:1px;
  2653. border-style:solid;
  2654. border-color:rgba(242, 242, 242, 1);
  2655. border-radius:33px;
  2656. -moz-box-shadow:none;
  2657. -webkit-box-shadow:none;
  2658. box-shadow:none;
  2659. }
  2660. #u146903 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:309px;
  2664. top:71px;
  2665. width:88px;
  2666. height:32px;
  2667. display:flex;
  2668. }
  2669. #u146903 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 2px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u146903_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. visibility:hidden;
  2681. }
  2682. #u146904 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:0px;
  2688. height:0px;
  2689. }
  2690. #u146905_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:18px;
  2696. height:18px;
  2697. }
  2698. #u146905 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:372px;
  2702. top:78px;
  2703. width:18px;
  2704. height:18px;
  2705. display:flex;
  2706. }
  2707. #u146905 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u146905_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u146906_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:6px;
  2726. height:6px;
  2727. }
  2728. #u146906 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:378px;
  2732. top:84px;
  2733. width:6px;
  2734. height:6px;
  2735. display:flex;
  2736. }
  2737. #u146906 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 2px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u146906_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u146907 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:0px;
  2756. height:0px;
  2757. }
  2758. #u146908_img {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:5px;
  2764. height:5px;
  2765. }
  2766. #u146908 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:323px;
  2770. top:85px;
  2771. width:5px;
  2772. height:5px;
  2773. display:flex;
  2774. }
  2775. #u146908 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 2px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u146908_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. visibility:hidden;
  2787. }
  2788. #u146909_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:5px;
  2794. height:5px;
  2795. }
  2796. #u146909 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:339px;
  2800. top:85px;
  2801. width:5px;
  2802. height:5px;
  2803. display:flex;
  2804. }
  2805. #u146909 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u146909_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u146910_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:7px;
  2824. height:7px;
  2825. }
  2826. #u146910 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:330px;
  2830. top:84px;
  2831. width:7px;
  2832. height:7px;
  2833. display:flex;
  2834. }
  2835. #u146910 .text {
  2836. position:absolute;
  2837. align-self:center;
  2838. padding:2px 2px 2px 2px;
  2839. box-sizing:border-box;
  2840. width:100%;
  2841. }
  2842. #u146910_text {
  2843. border-width:0px;
  2844. word-wrap:break-word;
  2845. text-transform:none;
  2846. visibility:hidden;
  2847. }
  2848. #u146911_img {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:19px;
  2854. height:2px;
  2855. }
  2856. #u146911 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:347px;
  2860. top:87px;
  2861. width:18px;
  2862. height:1px;
  2863. display:flex;
  2864. -webkit-transform:rotate(90deg);
  2865. -moz-transform:rotate(90deg);
  2866. -ms-transform:rotate(90deg);
  2867. transform:rotate(90deg);
  2868. }
  2869. #u146911 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:2px 2px 2px 2px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u146911_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. visibility:hidden;
  2881. }
  2882. #u146912_div {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:12px;
  2888. height:12px;
  2889. background:inherit;
  2890. background-color:rgba(255, 255, 255, 0);
  2891. box-sizing:border-box;
  2892. border-width:2px;
  2893. border-style:solid;
  2894. border-color:rgba(51, 51, 51, 1);
  2895. border-right:0px;
  2896. border-bottom:0px;
  2897. border-radius:0px;
  2898. border-top-right-radius:0px;
  2899. border-bottom-left-radius:0px;
  2900. -moz-box-shadow:none;
  2901. -webkit-box-shadow:none;
  2902. box-shadow:none;
  2903. }
  2904. #u146912 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:44px;
  2908. top:80px;
  2909. width:12px;
  2910. height:12px;
  2911. display:flex;
  2912. -webkit-transform:rotate(315deg);
  2913. -moz-transform:rotate(315deg);
  2914. -ms-transform:rotate(315deg);
  2915. transform:rotate(315deg);
  2916. }
  2917. #u146912 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u146912_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u146913_div {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:65px;
  2936. height:22px;
  2937. background:inherit;
  2938. background-color:rgba(255, 255, 255, 0);
  2939. border:none;
  2940. border-radius:0px;
  2941. -moz-box-shadow:none;
  2942. -webkit-box-shadow:none;
  2943. box-shadow:none;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:16px;
  2948. color:#000000;
  2949. }
  2950. #u146913 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:58px;
  2954. top:75px;
  2955. width:65px;
  2956. height:22px;
  2957. display:flex;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:16px;
  2962. color:#000000;
  2963. }
  2964. #u146913 .text {
  2965. position:absolute;
  2966. align-self:flex-start;
  2967. padding:0px 0px 0px 0px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u146913_text {
  2972. border-width:0px;
  2973. white-space:nowrap;
  2974. text-transform:none;
  2975. }
  2976. #u146914 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:0px;
  2982. height:0px;
  2983. }
  2984. #u146915_div {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:375px;
  2990. height:50px;
  2991. background:inherit;
  2992. background-color:rgba(255, 255, 255, 1);
  2993. border:none;
  2994. border-radius:0px;
  2995. -moz-box-shadow:none;
  2996. -webkit-box-shadow:none;
  2997. box-shadow:none;
  2998. }
  2999. #u146915 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:29px;
  3003. top:106px;
  3004. width:375px;
  3005. height:50px;
  3006. display:flex;
  3007. }
  3008. #u146915 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 2px 2px 2px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u146915_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. visibility:hidden;
  3020. }
  3021. #u146916 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:0px;
  3027. height:0px;
  3028. }
  3029. #u146917 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:0px;
  3035. height:0px;
  3036. }
  3037. #u146918_div {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:135px;
  3043. height:30px;
  3044. background:inherit;
  3045. background-color:rgba(242, 242, 242, 1);
  3046. border:none;
  3047. border-radius:20px;
  3048. -moz-box-shadow:none;
  3049. -webkit-box-shadow:none;
  3050. box-shadow:none;
  3051. }
  3052. #u146918 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:42px;
  3056. top:116px;
  3057. width:135px;
  3058. height:30px;
  3059. display:flex;
  3060. }
  3061. #u146918 .text {
  3062. position:absolute;
  3063. align-self:center;
  3064. padding:2px 2px 2px 2px;
  3065. box-sizing:border-box;
  3066. width:100%;
  3067. }
  3068. #u146918_text {
  3069. border-width:0px;
  3070. word-wrap:break-word;
  3071. text-transform:none;
  3072. visibility:hidden;
  3073. }
  3074. #u146919_input {
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:121px;
  3079. height:22px;
  3080. padding:2px 2px 2px 2px;
  3081. font-family:'ArialMT', 'Arial', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. letter-spacing:normal;
  3086. color:#7F7F7F;
  3087. vertical-align:none;
  3088. text-align:left;
  3089. text-transform:none;
  3090. background-color:transparent;
  3091. border-color:transparent;
  3092. }
  3093. #u146919_input.disabled {
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:121px;
  3098. height:22px;
  3099. padding:2px 2px 2px 2px;
  3100. font-family:'ArialMT', 'Arial', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:12px;
  3104. letter-spacing:normal;
  3105. color:#7F7F7F;
  3106. vertical-align:none;
  3107. text-align:left;
  3108. text-transform:none;
  3109. background-color:transparent;
  3110. border-color:transparent;
  3111. }
  3112. #u146919_div {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:121px;
  3118. height:22px;
  3119. background:inherit;
  3120. background-color:rgba(255, 255, 255, 0);
  3121. border:none;
  3122. border-radius:0px;
  3123. -moz-box-shadow:none;
  3124. -webkit-box-shadow:none;
  3125. box-shadow:none;
  3126. font-size:12px;
  3127. color:#7F7F7F;
  3128. }
  3129. #u146919 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:49px;
  3133. top:120px;
  3134. width:121px;
  3135. height:22px;
  3136. display:flex;
  3137. font-size:12px;
  3138. color:#7F7F7F;
  3139. }
  3140. #u146919 .text {
  3141. position:absolute;
  3142. align-self:flex-start;
  3143. padding:2px 2px 2px 2px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u146919_div.disabled {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:121px;
  3153. height:22px;
  3154. background:inherit;
  3155. background-color:rgba(240, 240, 240, 1);
  3156. border:none;
  3157. border-radius:0px;
  3158. -moz-box-shadow:none;
  3159. -webkit-box-shadow:none;
  3160. box-shadow:none;
  3161. font-size:12px;
  3162. color:#7F7F7F;
  3163. }
  3164. #u146919.disabled {
  3165. }
  3166. .u146919_input_option {
  3167. font-size:12px;
  3168. }
  3169. #u146920_div {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:64px;
  3175. height:30px;
  3176. background:inherit;
  3177. background-color:rgba(255, 255, 255, 0);
  3178. border:none;
  3179. border-left:0px;
  3180. border-top:0px;
  3181. border-right:0px;
  3182. border-radius:0px;
  3183. border-bottom-right-radius:0px;
  3184. border-bottom-left-radius:0px;
  3185. -moz-box-shadow:none;
  3186. -webkit-box-shadow:none;
  3187. box-shadow:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#1890FF;
  3193. line-height:30px;
  3194. }
  3195. #u146920 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:332px;
  3199. top:116px;
  3200. width:64px;
  3201. height:30px;
  3202. display:flex;
  3203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:12px;
  3207. color:#1890FF;
  3208. line-height:30px;
  3209. }
  3210. #u146920 .text {
  3211. position:absolute;
  3212. align-self:flex-start;
  3213. padding:0px 0px 0px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u146920_text {
  3218. border-width:0px;
  3219. white-space:nowrap;
  3220. text-transform:none;
  3221. }
  3222. #u146921 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:0px;
  3228. height:0px;
  3229. }
  3230. #u146922_div {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:135px;
  3236. height:30px;
  3237. background:inherit;
  3238. background-color:rgba(242, 242, 242, 1);
  3239. border:none;
  3240. border-radius:20px;
  3241. -moz-box-shadow:none;
  3242. -webkit-box-shadow:none;
  3243. box-shadow:none;
  3244. }
  3245. #u146922 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:187px;
  3249. top:116px;
  3250. width:135px;
  3251. height:30px;
  3252. display:flex;
  3253. }
  3254. #u146922 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 2px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u146922_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u146923_input {
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:121px;
  3272. height:22px;
  3273. padding:2px 2px 2px 2px;
  3274. font-family:'ArialMT', 'Arial', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:12px;
  3278. letter-spacing:normal;
  3279. color:#7F7F7F;
  3280. vertical-align:none;
  3281. text-align:left;
  3282. text-transform:none;
  3283. background-color:transparent;
  3284. border-color:transparent;
  3285. }
  3286. #u146923_input.disabled {
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:121px;
  3291. height:22px;
  3292. padding:2px 2px 2px 2px;
  3293. font-family:'ArialMT', 'Arial', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. letter-spacing:normal;
  3298. color:#7F7F7F;
  3299. vertical-align:none;
  3300. text-align:left;
  3301. text-transform:none;
  3302. background-color:transparent;
  3303. border-color:transparent;
  3304. }
  3305. #u146923_div {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:0px;
  3309. top:0px;
  3310. width:121px;
  3311. height:22px;
  3312. background:inherit;
  3313. background-color:rgba(255, 255, 255, 0);
  3314. border:none;
  3315. border-radius:0px;
  3316. -moz-box-shadow:none;
  3317. -webkit-box-shadow:none;
  3318. box-shadow:none;
  3319. font-size:12px;
  3320. color:#7F7F7F;
  3321. }
  3322. #u146923 {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:194px;
  3326. top:120px;
  3327. width:121px;
  3328. height:22px;
  3329. display:flex;
  3330. font-size:12px;
  3331. color:#7F7F7F;
  3332. }
  3333. #u146923 .text {
  3334. position:absolute;
  3335. align-self:flex-start;
  3336. padding:2px 2px 2px 2px;
  3337. box-sizing:border-box;
  3338. width:100%;
  3339. }
  3340. #u146923_div.disabled {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:121px;
  3346. height:22px;
  3347. background:inherit;
  3348. background-color:rgba(240, 240, 240, 1);
  3349. border:none;
  3350. border-radius:0px;
  3351. -moz-box-shadow:none;
  3352. -webkit-box-shadow:none;
  3353. box-shadow:none;
  3354. font-size:12px;
  3355. color:#7F7F7F;
  3356. }
  3357. #u146923.disabled {
  3358. }
  3359. .u146923_input_option {
  3360. font-size:12px;
  3361. }
  3362. #u146924 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:0px;
  3368. height:0px;
  3369. }
  3370. #u146925_div {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:0px;
  3374. top:0px;
  3375. width:375px;
  3376. height:41px;
  3377. background:inherit;
  3378. background-color:rgba(255, 255, 255, 1);
  3379. border:none;
  3380. border-radius:0px;
  3381. -moz-box-shadow:none;
  3382. -webkit-box-shadow:none;
  3383. box-shadow:none;
  3384. }
  3385. #u146925 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:29px;
  3389. top:156px;
  3390. width:375px;
  3391. height:41px;
  3392. display:flex;
  3393. }
  3394. #u146925 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 2px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u146925_text {
  3402. border-width:0px;
  3403. word-wrap:break-word;
  3404. text-transform:none;
  3405. visibility:hidden;
  3406. }
  3407. #u146926_div {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:37px;
  3413. height:40px;
  3414. background:inherit;
  3415. background-color:rgba(255, 255, 255, 0);
  3416. border:none;
  3417. border-left:0px;
  3418. border-top:0px;
  3419. border-right:0px;
  3420. border-radius:0px;
  3421. border-bottom-right-radius:0px;
  3422. border-bottom-left-radius:0px;
  3423. -moz-box-shadow:none;
  3424. -webkit-box-shadow:none;
  3425. box-shadow:none;
  3426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. font-size:12px;
  3430. text-align:center;
  3431. }
  3432. #u146926 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:111px;
  3436. top:156px;
  3437. width:37px;
  3438. height:40px;
  3439. display:flex;
  3440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:12px;
  3444. text-align:center;
  3445. }
  3446. #u146926 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:0px 0px 0px 0px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u146926_text {
  3454. border-width:0px;
  3455. white-space:nowrap;
  3456. text-transform:none;
  3457. }
  3458. #u146927_div {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:37px;
  3464. height:40px;
  3465. background:inherit;
  3466. background-color:rgba(255, 255, 255, 0);
  3467. box-sizing:border-box;
  3468. border-width:2px;
  3469. border-style:solid;
  3470. border-color:rgba(24, 144, 255, 1);
  3471. border-left:0px;
  3472. border-top:0px;
  3473. border-right:0px;
  3474. border-radius:0px;
  3475. border-bottom-right-radius:0px;
  3476. border-bottom-left-radius:0px;
  3477. -moz-box-shadow:none;
  3478. -webkit-box-shadow:none;
  3479. box-shadow:none;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:12px;
  3484. color:#1890FF;
  3485. text-align:center;
  3486. }
  3487. #u146927 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:45px;
  3491. top:156px;
  3492. width:37px;
  3493. height:40px;
  3494. display:flex;
  3495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:12px;
  3499. color:#1890FF;
  3500. text-align:center;
  3501. }
  3502. #u146927 .text {
  3503. position:absolute;
  3504. align-self:center;
  3505. padding:0px 0px 0px 0px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u146927_text {
  3510. border-width:0px;
  3511. white-space:nowrap;
  3512. text-transform:none;
  3513. }
  3514. #u146928_div {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:11px;
  3520. height:11px;
  3521. background:inherit;
  3522. background-color:rgba(217, 0, 27, 1);
  3523. border:none;
  3524. border-radius:7px;
  3525. -moz-box-shadow:none;
  3526. -webkit-box-shadow:none;
  3527. box-shadow:none;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:8px;
  3532. color:#FFFFFF;
  3533. text-align:center;
  3534. }
  3535. #u146928 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:79px;
  3539. top:160px;
  3540. width:11px;
  3541. height:11px;
  3542. display:flex;
  3543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:8px;
  3547. color:#FFFFFF;
  3548. text-align:center;
  3549. }
  3550. #u146928 .text {
  3551. position:absolute;
  3552. align-self:flex-start;
  3553. padding:0px 0px 0px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u146928_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. }
  3562. #u146929_div {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:37px;
  3568. height:40px;
  3569. background:inherit;
  3570. background-color:rgba(255, 255, 255, 0);
  3571. border:none;
  3572. border-left:0px;
  3573. border-top:0px;
  3574. border-right:0px;
  3575. border-radius:0px;
  3576. border-bottom-right-radius:0px;
  3577. border-bottom-left-radius:0px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:12px;
  3585. text-align:center;
  3586. }
  3587. #u146929 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:178px;
  3591. top:156px;
  3592. width:37px;
  3593. height:40px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. text-align:center;
  3600. }
  3601. #u146929 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:0px 0px 0px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u146929_text {
  3609. border-width:0px;
  3610. white-space:nowrap;
  3611. text-transform:none;
  3612. }
  3613. #u146930_div {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:37px;
  3619. height:40px;
  3620. background:inherit;
  3621. background-color:rgba(255, 255, 255, 0);
  3622. border:none;
  3623. border-left:0px;
  3624. border-top:0px;
  3625. border-right:0px;
  3626. border-radius:0px;
  3627. border-bottom-right-radius:0px;
  3628. border-bottom-left-radius:0px;
  3629. -moz-box-shadow:none;
  3630. -webkit-box-shadow:none;
  3631. box-shadow:none;
  3632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:12px;
  3636. text-align:center;
  3637. }
  3638. #u146930 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:244px;
  3642. top:156px;
  3643. width:37px;
  3644. height:40px;
  3645. display:flex;
  3646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:12px;
  3650. text-align:center;
  3651. }
  3652. #u146930 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:0px 0px 0px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u146930_text {
  3660. border-width:0px;
  3661. white-space:nowrap;
  3662. text-transform:none;
  3663. }
  3664. #u146931_div {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:0px;
  3669. width:37px;
  3670. height:40px;
  3671. background:inherit;
  3672. background-color:rgba(255, 255, 255, 0);
  3673. border:none;
  3674. border-left:0px;
  3675. border-top:0px;
  3676. border-right:0px;
  3677. border-radius:0px;
  3678. border-bottom-right-radius:0px;
  3679. border-bottom-left-radius:0px;
  3680. -moz-box-shadow:none;
  3681. -webkit-box-shadow:none;
  3682. box-shadow:none;
  3683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:12px;
  3687. text-align:center;
  3688. }
  3689. #u146931 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:311px;
  3693. top:156px;
  3694. width:37px;
  3695. height:40px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. text-align:center;
  3702. }
  3703. #u146931 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:0px 0px 0px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u146931_text {
  3711. border-width:0px;
  3712. white-space:nowrap;
  3713. text-transform:none;
  3714. }
  3715. #u146932 {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:0px;
  3721. height:0px;
  3722. }
  3723. #u146933_img {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:0px;
  3727. top:0px;
  3728. width:355px;
  3729. height:140px;
  3730. }
  3731. #u146933 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:39px;
  3735. top:207px;
  3736. width:355px;
  3737. height:140px;
  3738. display:flex;
  3739. }
  3740. #u146933 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 2px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u146933_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u146934_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:57px;
  3759. height:30px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border:none;
  3763. border-left:0px;
  3764. border-top:0px;
  3765. border-right:0px;
  3766. border-radius:0px;
  3767. border-bottom-right-radius:0px;
  3768. border-bottom-left-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3773. font-weight:500;
  3774. font-style:normal;
  3775. font-size:14px;
  3776. line-height:30px;
  3777. }
  3778. #u146934 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:56px;
  3782. top:237px;
  3783. width:57px;
  3784. height:30px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3787. font-weight:500;
  3788. font-style:normal;
  3789. font-size:14px;
  3790. line-height:30px;
  3791. }
  3792. #u146934 .text {
  3793. position:absolute;
  3794. align-self:flex-start;
  3795. padding:0px 0px 0px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u146934_text {
  3800. border-width:0px;
  3801. white-space:nowrap;
  3802. text-transform:none;
  3803. }
  3804. #u146935_div {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:325px;
  3810. height:25px;
  3811. background:inherit;
  3812. background-color:rgba(255, 255, 255, 0);
  3813. border:none;
  3814. border-left:0px;
  3815. border-top:0px;
  3816. border-right:0px;
  3817. border-radius:0px;
  3818. border-bottom-right-radius:0px;
  3819. border-bottom-left-radius:0px;
  3820. -moz-box-shadow:none;
  3821. -webkit-box-shadow:none;
  3822. box-shadow:none;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:14px;
  3827. color:#1890FF;
  3828. line-height:25px;
  3829. }
  3830. #u146935 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:56px;
  3834. top:267px;
  3835. width:325px;
  3836. height:25px;
  3837. display:flex;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:14px;
  3842. color:#1890FF;
  3843. line-height:25px;
  3844. }
  3845. #u146935 .text {
  3846. position:absolute;
  3847. align-self:flex-start;
  3848. padding:0px 0px 0px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u146935_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. }
  3857. #u146936_div {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:8px;
  3863. height:8px;
  3864. background:inherit;
  3865. background-color:rgba(255, 255, 255, 0);
  3866. box-sizing:border-box;
  3867. border-width:1px;
  3868. border-style:solid;
  3869. border-color:rgba(127, 127, 127, 1);
  3870. border-right:0px;
  3871. border-bottom:0px;
  3872. border-radius:0px;
  3873. border-top-right-radius:0px;
  3874. border-bottom-left-radius:0px;
  3875. -moz-box-shadow:none;
  3876. -webkit-box-shadow:none;
  3877. box-shadow:none;
  3878. }
  3879. #u146936 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:370px;
  3883. top:222px;
  3884. width:8px;
  3885. height:8px;
  3886. display:flex;
  3887. -webkit-transform:rotate(135deg);
  3888. -moz-transform:rotate(135deg);
  3889. -ms-transform:rotate(135deg);
  3890. transform:rotate(135deg);
  3891. }
  3892. #u146936 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 2px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u146936_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u146937_div {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:64px;
  3911. height:20px;
  3912. background:inherit;
  3913. background-color:rgba(255, 255, 255, 0);
  3914. border:none;
  3915. border-left:0px;
  3916. border-top:0px;
  3917. border-right:0px;
  3918. border-radius:0px;
  3919. border-bottom-right-radius:0px;
  3920. border-bottom-left-radius:0px;
  3921. -moz-box-shadow:none;
  3922. -webkit-box-shadow:none;
  3923. box-shadow:none;
  3924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3925. font-weight:500;
  3926. font-style:normal;
  3927. font-size:14px;
  3928. }
  3929. #u146937 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:317px;
  3933. top:262px;
  3934. width:64px;
  3935. height:20px;
  3936. display:flex;
  3937. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3938. font-weight:500;
  3939. font-style:normal;
  3940. font-size:14px;
  3941. }
  3942. #u146937 .text {
  3943. position:absolute;
  3944. align-self:flex-start;
  3945. padding:0px 0px 0px 0px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u146937_text {
  3950. border-width:0px;
  3951. white-space:nowrap;
  3952. text-transform:none;
  3953. }
  3954. #u146938_div {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:325px;
  3960. height:40px;
  3961. background:inherit;
  3962. background-color:rgba(255, 255, 255, 0);
  3963. border:none;
  3964. border-left:0px;
  3965. border-top:0px;
  3966. border-right:0px;
  3967. border-radius:0px;
  3968. border-bottom-right-radius:0px;
  3969. border-bottom-left-radius:0px;
  3970. -moz-box-shadow:none;
  3971. -webkit-box-shadow:none;
  3972. box-shadow:none;
  3973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:12px;
  3977. line-height:20px;
  3978. }
  3979. #u146938 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:56px;
  3983. top:292px;
  3984. width:325px;
  3985. height:40px;
  3986. display:flex;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:12px;
  3991. line-height:20px;
  3992. }
  3993. #u146938 .text {
  3994. position:absolute;
  3995. align-self:flex-start;
  3996. padding:0px 0px 0px 0px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u146938_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. }
  4005. #u146939_div {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:0px;
  4009. top:0px;
  4010. width:128px;
  4011. height:17px;
  4012. background:inherit;
  4013. background-color:rgba(255, 255, 255, 0);
  4014. border:none;
  4015. border-left:0px;
  4016. border-top:0px;
  4017. border-right:0px;
  4018. border-radius:0px;
  4019. border-bottom-right-radius:0px;
  4020. border-bottom-left-radius:0px;
  4021. -moz-box-shadow:none;
  4022. -webkit-box-shadow:none;
  4023. box-shadow:none;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. color:#AAAAAA;
  4029. }
  4030. #u146939 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:56px;
  4034. top:217px;
  4035. width:128px;
  4036. height:17px;
  4037. display:flex;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. color:#AAAAAA;
  4043. }
  4044. #u146939 .text {
  4045. position:absolute;
  4046. align-self:flex-start;
  4047. padding:0px 0px 0px 0px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u146939_text {
  4052. border-width:0px;
  4053. white-space:nowrap;
  4054. text-transform:none;
  4055. }
  4056. #u146940_div {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:61px;
  4062. height:14px;
  4063. background:inherit;
  4064. background-color:rgba(255, 255, 255, 0);
  4065. border:none;
  4066. border-left:0px;
  4067. border-top:0px;
  4068. border-right:0px;
  4069. border-radius:0px;
  4070. border-bottom-right-radius:0px;
  4071. border-bottom-left-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:10px;
  4079. color:#555555;
  4080. text-align:right;
  4081. }
  4082. #u146940 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:317px;
  4086. top:282px;
  4087. width:61px;
  4088. height:14px;
  4089. display:flex;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:10px;
  4094. color:#555555;
  4095. text-align:right;
  4096. }
  4097. #u146940 .text {
  4098. position:absolute;
  4099. align-self:flex-start;
  4100. padding:0px 0px 0px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u146940_text {
  4105. border-width:0px;
  4106. white-space:nowrap;
  4107. text-transform:none;
  4108. }
  4109. #u146941 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:0px;
  4115. height:0px;
  4116. }
  4117. #u146942_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:375px;
  4123. height:773px;
  4124. background:inherit;
  4125. background-color:rgba(51, 51, 51, 0.498039215686275);
  4126. border:none;
  4127. border-top:0px;
  4128. border-radius:28px;
  4129. border-top-left-radius:0px;
  4130. border-top-right-radius:0px;
  4131. -moz-box-shadow:none;
  4132. -webkit-box-shadow:none;
  4133. box-shadow:none;
  4134. }
  4135. #u146942 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:937px;
  4139. top:107px;
  4140. width:375px;
  4141. height:773px;
  4142. display:flex;
  4143. }
  4144. #u146942 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u146942_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u146943_div {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:375px;
  4163. height:282px;
  4164. background:inherit;
  4165. background-color:rgba(255, 255, 255, 0.996078431372549);
  4166. border:none;
  4167. border-top:0px;
  4168. border-radius:28px;
  4169. border-top-left-radius:0px;
  4170. border-top-right-radius:0px;
  4171. -moz-box-shadow:none;
  4172. -webkit-box-shadow:none;
  4173. box-shadow:none;
  4174. }
  4175. #u146943 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:937px;
  4179. top:598px;
  4180. width:375px;
  4181. height:282px;
  4182. display:flex;
  4183. }
  4184. #u146943 .text {
  4185. position:absolute;
  4186. align-self:center;
  4187. padding:2px 2px 2px 2px;
  4188. box-sizing:border-box;
  4189. width:100%;
  4190. }
  4191. #u146943_text {
  4192. border-width:0px;
  4193. word-wrap:break-word;
  4194. text-transform:none;
  4195. visibility:hidden;
  4196. }
  4197. #u146944_div {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:37px;
  4203. height:30px;
  4204. background:inherit;
  4205. background-color:rgba(255, 255, 255, 0);
  4206. border:none;
  4207. border-left:0px;
  4208. border-top:0px;
  4209. border-right:0px;
  4210. border-radius:0px;
  4211. border-bottom-right-radius:0px;
  4212. border-bottom-left-radius:0px;
  4213. -moz-box-shadow:none;
  4214. -webkit-box-shadow:none;
  4215. box-shadow:none;
  4216. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4217. font-weight:500;
  4218. font-style:normal;
  4219. font-size:18px;
  4220. line-height:30px;
  4221. }
  4222. #u146944 {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:957px;
  4226. top:611px;
  4227. width:37px;
  4228. height:30px;
  4229. display:flex;
  4230. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4231. font-weight:500;
  4232. font-style:normal;
  4233. font-size:18px;
  4234. line-height:30px;
  4235. }
  4236. #u146944 .text {
  4237. position:absolute;
  4238. align-self:flex-start;
  4239. padding:0px 0px 0px 0px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u146944_text {
  4244. border-width:0px;
  4245. white-space:nowrap;
  4246. text-transform:none;
  4247. }
  4248. #u146945 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:0px;
  4254. height:0px;
  4255. }
  4256. #u146946_div {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:375px;
  4262. height:60px;
  4263. background:inherit;
  4264. background-color:rgba(255, 255, 255, 1);
  4265. box-sizing:border-box;
  4266. border-width:1px;
  4267. border-style:solid;
  4268. border-color:rgba(242, 242, 242, 1);
  4269. border-radius:20px;
  4270. border-top-left-radius:0px;
  4271. border-top-right-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. }
  4276. #u146946 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:937px;
  4280. top:820px;
  4281. width:375px;
  4282. height:60px;
  4283. display:flex;
  4284. }
  4285. #u146946 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 2px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u146946_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u146947_div {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:160px;
  4304. height:40px;
  4305. background:inherit;
  4306. background-color:rgba(0, 137, 254, 1);
  4307. border:none;
  4308. border-radius:63px;
  4309. -moz-box-shadow:none;
  4310. -webkit-box-shadow:none;
  4311. box-shadow:none;
  4312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4313. font-weight:400;
  4314. font-style:normal;
  4315. font-size:14px;
  4316. color:#FFFFFF;
  4317. }
  4318. #u146947 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:1132px;
  4322. top:830px;
  4323. width:160px;
  4324. height:40px;
  4325. display:flex;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:14px;
  4330. color:#FFFFFF;
  4331. }
  4332. #u146947 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 2px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u146947_text {
  4340. border-width:0px;
  4341. word-wrap:break-word;
  4342. text-transform:none;
  4343. }
  4344. #u146948_div {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:160px;
  4350. height:40px;
  4351. background:inherit;
  4352. background-color:rgba(255, 255, 255, 1);
  4353. box-sizing:border-box;
  4354. border-width:1px;
  4355. border-style:solid;
  4356. border-color:rgba(121, 121, 121, 1);
  4357. border-radius:63px;
  4358. -moz-box-shadow:none;
  4359. -webkit-box-shadow:none;
  4360. box-shadow:none;
  4361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4362. font-weight:400;
  4363. font-style:normal;
  4364. font-size:14px;
  4365. }
  4366. #u146948 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:957px;
  4370. top:830px;
  4371. width:160px;
  4372. height:40px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:14px;
  4378. }
  4379. #u146948 .text {
  4380. position:absolute;
  4381. align-self:center;
  4382. padding:2px 2px 2px 2px;
  4383. box-sizing:border-box;
  4384. width:100%;
  4385. }
  4386. #u146948_text {
  4387. border-width:0px;
  4388. word-wrap:break-word;
  4389. text-transform:none;
  4390. }
  4391. #u146949_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:340px;
  4397. height:92px;
  4398. background:inherit;
  4399. background-color:rgba(255, 255, 255, 1);
  4400. box-sizing:border-box;
  4401. border-width:1px;
  4402. border-style:solid;
  4403. border-color:rgba(215, 215, 215, 1);
  4404. border-radius:4px;
  4405. -moz-box-shadow:none;
  4406. -webkit-box-shadow:none;
  4407. box-shadow:none;
  4408. }
  4409. #u146949 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:957px;
  4413. top:651px;
  4414. width:340px;
  4415. height:92px;
  4416. display:flex;
  4417. }
  4418. #u146949 .text {
  4419. position:absolute;
  4420. align-self:center;
  4421. padding:2px 2px 2px 2px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u146949_text {
  4426. border-width:0px;
  4427. word-wrap:break-word;
  4428. text-transform:none;
  4429. visibility:hidden;
  4430. }
  4431. #u146950_div {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:127px;
  4437. height:30px;
  4438. background:inherit;
  4439. background-color:rgba(255, 255, 255, 0);
  4440. border:none;
  4441. border-left:0px;
  4442. border-top:0px;
  4443. border-right:0px;
  4444. border-radius:0px;
  4445. border-bottom-right-radius:0px;
  4446. border-bottom-left-radius:0px;
  4447. -moz-box-shadow:none;
  4448. -webkit-box-shadow:none;
  4449. box-shadow:none;
  4450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4451. font-weight:400;
  4452. font-style:normal;
  4453. font-size:14px;
  4454. color:#AAAAAA;
  4455. line-height:30px;
  4456. }
  4457. #u146950 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:966px;
  4461. top:659px;
  4462. width:127px;
  4463. height:30px;
  4464. display:flex;
  4465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4466. font-weight:400;
  4467. font-style:normal;
  4468. font-size:14px;
  4469. color:#AAAAAA;
  4470. line-height:30px;
  4471. }
  4472. #u146950 .text {
  4473. position:absolute;
  4474. align-self:center;
  4475. padding:0px 0px 0px 0px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u146950_text {
  4480. border-width:0px;
  4481. white-space:nowrap;
  4482. text-transform:none;
  4483. }
  4484. #u146951 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:0px;
  4490. height:0px;
  4491. }
  4492. #u146952_div {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:375px;
  4498. height:773px;
  4499. background:inherit;
  4500. background-color:rgba(51, 51, 51, 0.498039215686275);
  4501. border:none;
  4502. border-top:0px;
  4503. border-radius:28px;
  4504. border-top-left-radius:0px;
  4505. border-top-right-radius:0px;
  4506. -moz-box-shadow:none;
  4507. -webkit-box-shadow:none;
  4508. box-shadow:none;
  4509. }
  4510. #u146952 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:1361px;
  4514. top:110px;
  4515. width:375px;
  4516. height:773px;
  4517. display:flex;
  4518. }
  4519. #u146952 .text {
  4520. position:absolute;
  4521. align-self:center;
  4522. padding:2px 2px 2px 2px;
  4523. box-sizing:border-box;
  4524. width:100%;
  4525. }
  4526. #u146952_text {
  4527. border-width:0px;
  4528. word-wrap:break-word;
  4529. text-transform:none;
  4530. visibility:hidden;
  4531. }
  4532. #u146953_div {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:375px;
  4538. height:282px;
  4539. background:inherit;
  4540. background-color:rgba(255, 255, 255, 0.996078431372549);
  4541. border:none;
  4542. border-top:0px;
  4543. border-radius:28px;
  4544. border-top-left-radius:0px;
  4545. border-top-right-radius:0px;
  4546. -moz-box-shadow:none;
  4547. -webkit-box-shadow:none;
  4548. box-shadow:none;
  4549. }
  4550. #u146953 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:1361px;
  4554. top:601px;
  4555. width:375px;
  4556. height:282px;
  4557. display:flex;
  4558. }
  4559. #u146953 .text {
  4560. position:absolute;
  4561. align-self:center;
  4562. padding:2px 2px 2px 2px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u146953_text {
  4567. border-width:0px;
  4568. word-wrap:break-word;
  4569. text-transform:none;
  4570. visibility:hidden;
  4571. }
  4572. #u146954_div {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:0px;
  4576. top:0px;
  4577. width:37px;
  4578. height:30px;
  4579. background:inherit;
  4580. background-color:rgba(255, 255, 255, 0);
  4581. border:none;
  4582. border-left:0px;
  4583. border-top:0px;
  4584. border-right:0px;
  4585. border-radius:0px;
  4586. border-bottom-right-radius:0px;
  4587. border-bottom-left-radius:0px;
  4588. -moz-box-shadow:none;
  4589. -webkit-box-shadow:none;
  4590. box-shadow:none;
  4591. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4592. font-weight:500;
  4593. font-style:normal;
  4594. font-size:18px;
  4595. line-height:30px;
  4596. }
  4597. #u146954 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:1381px;
  4601. top:614px;
  4602. width:37px;
  4603. height:30px;
  4604. display:flex;
  4605. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4606. font-weight:500;
  4607. font-style:normal;
  4608. font-size:18px;
  4609. line-height:30px;
  4610. }
  4611. #u146954 .text {
  4612. position:absolute;
  4613. align-self:flex-start;
  4614. padding:0px 0px 0px 0px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u146954_text {
  4619. border-width:0px;
  4620. white-space:nowrap;
  4621. text-transform:none;
  4622. }
  4623. #u146955 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:0px;
  4627. top:0px;
  4628. width:0px;
  4629. height:0px;
  4630. }
  4631. #u146956_div {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:375px;
  4637. height:60px;
  4638. background:inherit;
  4639. background-color:rgba(255, 255, 255, 1);
  4640. box-sizing:border-box;
  4641. border-width:1px;
  4642. border-style:solid;
  4643. border-color:rgba(242, 242, 242, 1);
  4644. border-radius:20px;
  4645. border-top-left-radius:0px;
  4646. border-top-right-radius:0px;
  4647. -moz-box-shadow:none;
  4648. -webkit-box-shadow:none;
  4649. box-shadow:none;
  4650. }
  4651. #u146956 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:1361px;
  4655. top:823px;
  4656. width:375px;
  4657. height:60px;
  4658. display:flex;
  4659. }
  4660. #u146956 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 2px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u146956_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. visibility:hidden;
  4672. }
  4673. #u146957_div {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:160px;
  4679. height:40px;
  4680. background:inherit;
  4681. background-color:rgba(0, 137, 254, 1);
  4682. border:none;
  4683. border-radius:63px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:14px;
  4691. color:#FFFFFF;
  4692. }
  4693. #u146957 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:1556px;
  4697. top:833px;
  4698. width:160px;
  4699. height:40px;
  4700. display:flex;
  4701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:14px;
  4705. color:#FFFFFF;
  4706. }
  4707. #u146957 .text {
  4708. position:absolute;
  4709. align-self:center;
  4710. padding:2px 2px 2px 2px;
  4711. box-sizing:border-box;
  4712. width:100%;
  4713. }
  4714. #u146957_text {
  4715. border-width:0px;
  4716. word-wrap:break-word;
  4717. text-transform:none;
  4718. }
  4719. #u146958_div {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:160px;
  4725. height:40px;
  4726. background:inherit;
  4727. background-color:rgba(255, 255, 255, 1);
  4728. box-sizing:border-box;
  4729. border-width:1px;
  4730. border-style:solid;
  4731. border-color:rgba(121, 121, 121, 1);
  4732. border-radius:63px;
  4733. -moz-box-shadow:none;
  4734. -webkit-box-shadow:none;
  4735. box-shadow:none;
  4736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. font-size:14px;
  4740. }
  4741. #u146958 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:1381px;
  4745. top:833px;
  4746. width:160px;
  4747. height:40px;
  4748. display:flex;
  4749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4750. font-weight:400;
  4751. font-style:normal;
  4752. font-size:14px;
  4753. }
  4754. #u146958 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:2px 2px 2px 2px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u146958_text {
  4762. border-width:0px;
  4763. word-wrap:break-word;
  4764. text-transform:none;
  4765. }
  4766. #u146959_div {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:340px;
  4772. height:92px;
  4773. background:inherit;
  4774. background-color:rgba(255, 255, 255, 1);
  4775. box-sizing:border-box;
  4776. border-width:1px;
  4777. border-style:solid;
  4778. border-color:rgba(215, 215, 215, 1);
  4779. border-radius:4px;
  4780. -moz-box-shadow:none;
  4781. -webkit-box-shadow:none;
  4782. box-shadow:none;
  4783. }
  4784. #u146959 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:1381px;
  4788. top:654px;
  4789. width:340px;
  4790. height:92px;
  4791. display:flex;
  4792. }
  4793. #u146959 .text {
  4794. position:absolute;
  4795. align-self:center;
  4796. padding:2px 2px 2px 2px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u146959_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. visibility:hidden;
  4805. }
  4806. #u146960_div {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:127px;
  4812. height:30px;
  4813. background:inherit;
  4814. background-color:rgba(255, 255, 255, 0);
  4815. border:none;
  4816. border-left:0px;
  4817. border-top:0px;
  4818. border-right:0px;
  4819. border-radius:0px;
  4820. border-bottom-right-radius:0px;
  4821. border-bottom-left-radius:0px;
  4822. -moz-box-shadow:none;
  4823. -webkit-box-shadow:none;
  4824. box-shadow:none;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:14px;
  4829. color:#AAAAAA;
  4830. line-height:30px;
  4831. }
  4832. #u146960 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:1390px;
  4836. top:662px;
  4837. width:127px;
  4838. height:30px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:14px;
  4844. color:#AAAAAA;
  4845. line-height:30px;
  4846. }
  4847. #u146960 .text {
  4848. position:absolute;
  4849. align-self:center;
  4850. padding:0px 0px 0px 0px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u146960_text {
  4855. border-width:0px;
  4856. white-space:nowrap;
  4857. text-transform:none;
  4858. }
  4859. #u146962_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:433px;
  4865. height:865px;
  4866. }
  4867. #u146962 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:474px;
  4871. top:10px;
  4872. width:433px;
  4873. height:865px;
  4874. display:flex;
  4875. }
  4876. #u146962 .text {
  4877. position:absolute;
  4878. align-self:center;
  4879. padding:2px 2px 2px 2px;
  4880. box-sizing:border-box;
  4881. width:100%;
  4882. }
  4883. #u146962_text {
  4884. border-width:0px;
  4885. word-wrap:break-word;
  4886. text-transform:none;
  4887. visibility:hidden;
  4888. }
  4889. #u146963_div {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:375px;
  4895. height:40px;
  4896. background:inherit;
  4897. background-color:rgba(255, 255, 255, 1);
  4898. box-sizing:border-box;
  4899. border-width:1px;
  4900. border-style:solid;
  4901. border-color:rgba(215, 215, 215, 1);
  4902. border-left:0px;
  4903. border-top:0px;
  4904. border-right:0px;
  4905. border-radius:0px;
  4906. border-bottom-right-radius:0px;
  4907. border-bottom-left-radius:0px;
  4908. -moz-box-shadow:none;
  4909. -webkit-box-shadow:none;
  4910. box-shadow:none;
  4911. }
  4912. #u146963 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:503px;
  4916. top:77px;
  4917. width:375px;
  4918. height:40px;
  4919. display:flex;
  4920. }
  4921. #u146963 .text {
  4922. position:absolute;
  4923. align-self:center;
  4924. padding:2px 2px 2px 2px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u146963_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. visibility:hidden;
  4933. }
  4934. #u146964 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:0px;
  4940. height:0px;
  4941. }
  4942. #u146965_div {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:88px;
  4948. height:32px;
  4949. background:inherit;
  4950. background-color:rgba(255, 255, 255, 1);
  4951. box-sizing:border-box;
  4952. border-width:1px;
  4953. border-style:solid;
  4954. border-color:rgba(242, 242, 242, 1);
  4955. border-radius:33px;
  4956. -moz-box-shadow:none;
  4957. -webkit-box-shadow:none;
  4958. box-shadow:none;
  4959. }
  4960. #u146965 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:783px;
  4964. top:81px;
  4965. width:88px;
  4966. height:32px;
  4967. display:flex;
  4968. }
  4969. #u146965 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:2px 2px 2px 2px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u146965_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. visibility:hidden;
  4981. }
  4982. #u146966 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:0px;
  4988. height:0px;
  4989. }
  4990. #u146967_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:18px;
  4996. height:18px;
  4997. }
  4998. #u146967 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:846px;
  5002. top:88px;
  5003. width:18px;
  5004. height:18px;
  5005. display:flex;
  5006. }
  5007. #u146967 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 2px 2px 2px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u146967_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. visibility:hidden;
  5019. }
  5020. #u146968_img {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:6px;
  5026. height:6px;
  5027. }
  5028. #u146968 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:852px;
  5032. top:94px;
  5033. width:6px;
  5034. height:6px;
  5035. display:flex;
  5036. }
  5037. #u146968 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 2px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u146968_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u146969 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:0px;
  5056. height:0px;
  5057. }
  5058. #u146970_img {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:5px;
  5064. height:5px;
  5065. }
  5066. #u146970 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:797px;
  5070. top:95px;
  5071. width:5px;
  5072. height:5px;
  5073. display:flex;
  5074. }
  5075. #u146970 .text {
  5076. position:absolute;
  5077. align-self:center;
  5078. padding:2px 2px 2px 2px;
  5079. box-sizing:border-box;
  5080. width:100%;
  5081. }
  5082. #u146970_text {
  5083. border-width:0px;
  5084. word-wrap:break-word;
  5085. text-transform:none;
  5086. visibility:hidden;
  5087. }
  5088. #u146971_img {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:5px;
  5094. height:5px;
  5095. }
  5096. #u146971 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:813px;
  5100. top:95px;
  5101. width:5px;
  5102. height:5px;
  5103. display:flex;
  5104. }
  5105. #u146971 .text {
  5106. position:absolute;
  5107. align-self:center;
  5108. padding:2px 2px 2px 2px;
  5109. box-sizing:border-box;
  5110. width:100%;
  5111. }
  5112. #u146971_text {
  5113. border-width:0px;
  5114. word-wrap:break-word;
  5115. text-transform:none;
  5116. visibility:hidden;
  5117. }
  5118. #u146972_img {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:7px;
  5124. height:7px;
  5125. }
  5126. #u146972 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:804px;
  5130. top:94px;
  5131. width:7px;
  5132. height:7px;
  5133. display:flex;
  5134. }
  5135. #u146972 .text {
  5136. position:absolute;
  5137. align-self:center;
  5138. padding:2px 2px 2px 2px;
  5139. box-sizing:border-box;
  5140. width:100%;
  5141. }
  5142. #u146972_text {
  5143. border-width:0px;
  5144. word-wrap:break-word;
  5145. text-transform:none;
  5146. visibility:hidden;
  5147. }
  5148. #u146973_img {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:19px;
  5154. height:2px;
  5155. }
  5156. #u146973 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:821px;
  5160. top:97px;
  5161. width:18px;
  5162. height:1px;
  5163. display:flex;
  5164. -webkit-transform:rotate(90deg);
  5165. -moz-transform:rotate(90deg);
  5166. -ms-transform:rotate(90deg);
  5167. transform:rotate(90deg);
  5168. }
  5169. #u146973 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 2px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u146973_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u146974_img {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:375px;
  5188. height:44px;
  5189. }
  5190. #u146974 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:503px;
  5194. top:34px;
  5195. width:375px;
  5196. height:44px;
  5197. display:flex;
  5198. }
  5199. #u146974 .text {
  5200. position:absolute;
  5201. align-self:center;
  5202. padding:2px 2px 2px 2px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u146974_text {
  5207. border-width:0px;
  5208. word-wrap:break-word;
  5209. text-transform:none;
  5210. visibility:hidden;
  5211. }
  5212. #u146975_div {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:0px;
  5216. top:0px;
  5217. width:375px;
  5218. height:50px;
  5219. background:inherit;
  5220. background-color:rgba(255, 255, 255, 1);
  5221. box-sizing:border-box;
  5222. border-width:1px;
  5223. border-style:solid;
  5224. border-color:rgba(242, 242, 242, 1);
  5225. border-radius:26px;
  5226. border-top-left-radius:0px;
  5227. border-top-right-radius:0px;
  5228. -moz-box-shadow:none;
  5229. -webkit-box-shadow:none;
  5230. box-shadow:none;
  5231. }
  5232. #u146975 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:503px;
  5236. top:798px;
  5237. width:375px;
  5238. height:50px;
  5239. display:flex;
  5240. }
  5241. #u146975 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 2px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u146975_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u146976 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:0px;
  5260. height:0px;
  5261. }
  5262. #u146977_img {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:24px;
  5268. height:24px;
  5269. }
  5270. #u146977 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:543px;
  5274. top:802px;
  5275. width:24px;
  5276. height:24px;
  5277. display:flex;
  5278. font-size:8px;
  5279. }
  5280. #u146977 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:2px 2px 2px 2px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u146977_text {
  5288. border-width:0px;
  5289. word-wrap:break-word;
  5290. text-transform:none;
  5291. }
  5292. #u146978_div {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:25px;
  5298. height:17px;
  5299. background:inherit;
  5300. background-color:rgba(255, 255, 255, 0);
  5301. border:none;
  5302. border-radius:0px;
  5303. -moz-box-shadow:none;
  5304. -webkit-box-shadow:none;
  5305. box-shadow:none;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:12px;
  5310. }
  5311. #u146978 {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:543px;
  5315. top:827px;
  5316. width:25px;
  5317. height:17px;
  5318. display:flex;
  5319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:12px;
  5323. }
  5324. #u146978 .text {
  5325. position:absolute;
  5326. align-self:flex-start;
  5327. padding:0px 0px 0px 0px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u146978_text {
  5332. border-width:0px;
  5333. white-space:nowrap;
  5334. text-transform:none;
  5335. }
  5336. #u146979 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:0px;
  5342. height:0px;
  5343. }
  5344. #u146980_img {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:24px;
  5350. height:24px;
  5351. }
  5352. #u146980 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:813px;
  5356. top:804px;
  5357. width:24px;
  5358. height:24px;
  5359. display:flex;
  5360. font-size:8px;
  5361. }
  5362. #u146980 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:2px 2px 2px 2px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u146980_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. }
  5374. #u146981_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:25px;
  5380. height:17px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 0);
  5383. border:none;
  5384. border-radius:0px;
  5385. -moz-box-shadow:none;
  5386. -webkit-box-shadow:none;
  5387. box-shadow:none;
  5388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:12px;
  5392. }
  5393. #u146981 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:813px;
  5397. top:829px;
  5398. width:25px;
  5399. height:17px;
  5400. display:flex;
  5401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5402. font-weight:400;
  5403. font-style:normal;
  5404. font-size:12px;
  5405. }
  5406. #u146981 .text {
  5407. position:absolute;
  5408. align-self:flex-start;
  5409. padding:0px 0px 0px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u146981_text {
  5414. border-width:0px;
  5415. white-space:nowrap;
  5416. text-transform:none;
  5417. }
  5418. #u146982_div {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:375px;
  5424. height:681px;
  5425. background:inherit;
  5426. background-color:rgba(242, 242, 242, 0.462745098039216);
  5427. border:none;
  5428. border-radius:0px;
  5429. -moz-box-shadow:none;
  5430. -webkit-box-shadow:none;
  5431. box-shadow:none;
  5432. }
  5433. #u146982 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:503px;
  5437. top:117px;
  5438. width:375px;
  5439. height:681px;
  5440. display:flex;
  5441. }
  5442. #u146982 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:2px 2px 2px 2px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u146982_text {
  5450. border-width:0px;
  5451. word-wrap:break-word;
  5452. text-transform:none;
  5453. visibility:hidden;
  5454. }
  5455. #u146983 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:0px;
  5461. height:0px;
  5462. }
  5463. #u146984_img {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:24px;
  5469. height:24px;
  5470. }
  5471. #u146984 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:725px;
  5475. top:802px;
  5476. width:24px;
  5477. height:24px;
  5478. display:flex;
  5479. font-size:8px;
  5480. }
  5481. #u146984 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:2px 2px 2px 2px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u146984_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. }
  5493. #u146985_div {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:37px;
  5499. height:17px;
  5500. background:inherit;
  5501. background-color:rgba(255, 255, 255, 0);
  5502. border:none;
  5503. border-radius:0px;
  5504. -moz-box-shadow:none;
  5505. -webkit-box-shadow:none;
  5506. box-shadow:none;
  5507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:12px;
  5511. }
  5512. #u146985 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:719px;
  5516. top:827px;
  5517. width:37px;
  5518. height:17px;
  5519. display:flex;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:12px;
  5524. }
  5525. #u146985 .text {
  5526. position:absolute;
  5527. align-self:flex-start;
  5528. padding:0px 0px 0px 0px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u146985_text {
  5533. border-width:0px;
  5534. white-space:nowrap;
  5535. text-transform:none;
  5536. }
  5537. #u146986 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:0px;
  5541. top:0px;
  5542. width:0px;
  5543. height:0px;
  5544. }
  5545. #u146987_img {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:24px;
  5551. height:24px;
  5552. }
  5553. #u146987 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:631px;
  5557. top:802px;
  5558. width:24px;
  5559. height:24px;
  5560. display:flex;
  5561. font-size:8px;
  5562. }
  5563. #u146987 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u146987_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. }
  5575. #u146988_div {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:37px;
  5581. height:17px;
  5582. background:inherit;
  5583. background-color:rgba(255, 255, 255, 0);
  5584. border:none;
  5585. border-radius:0px;
  5586. -moz-box-shadow:none;
  5587. -webkit-box-shadow:none;
  5588. box-shadow:none;
  5589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:12px;
  5593. }
  5594. #u146988 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:625px;
  5598. top:827px;
  5599. width:37px;
  5600. height:17px;
  5601. display:flex;
  5602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:12px;
  5606. }
  5607. #u146988 .text {
  5608. position:absolute;
  5609. align-self:flex-start;
  5610. padding:0px 0px 0px 0px;
  5611. box-sizing:border-box;
  5612. width:100%;
  5613. }
  5614. #u146988_text {
  5615. border-width:0px;
  5616. white-space:nowrap;
  5617. text-transform:none;
  5618. }
  5619. #u146989_div {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:375px;
  5625. height:1368px;
  5626. background:inherit;
  5627. background-color:rgba(242, 242, 242, 0.996078431372549);
  5628. border:none;
  5629. border-top:0px;
  5630. border-radius:28px;
  5631. border-top-left-radius:0px;
  5632. border-top-right-radius:0px;
  5633. -moz-box-shadow:none;
  5634. -webkit-box-shadow:none;
  5635. box-shadow:none;
  5636. }
  5637. #u146989 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:503px;
  5641. top:117px;
  5642. width:375px;
  5643. height:1368px;
  5644. display:flex;
  5645. }
  5646. #u146989 .text {
  5647. position:absolute;
  5648. align-self:center;
  5649. padding:2px 2px 2px 2px;
  5650. box-sizing:border-box;
  5651. width:100%;
  5652. }
  5653. #u146989_text {
  5654. border-width:0px;
  5655. word-wrap:break-word;
  5656. text-transform:none;
  5657. visibility:hidden;
  5658. }
  5659. #u146990 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:0px;
  5665. height:0px;
  5666. }
  5667. #u146991_div {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:88px;
  5673. height:32px;
  5674. background:inherit;
  5675. background-color:rgba(255, 255, 255, 1);
  5676. box-sizing:border-box;
  5677. border-width:1px;
  5678. border-style:solid;
  5679. border-color:rgba(242, 242, 242, 1);
  5680. border-radius:33px;
  5681. -moz-box-shadow:none;
  5682. -webkit-box-shadow:none;
  5683. box-shadow:none;
  5684. }
  5685. #u146991 {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:782px;
  5689. top:81px;
  5690. width:88px;
  5691. height:32px;
  5692. display:flex;
  5693. }
  5694. #u146991 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 2px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u146991_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u146992 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:0px;
  5713. height:0px;
  5714. }
  5715. #u146993_img {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:18px;
  5721. height:18px;
  5722. }
  5723. #u146993 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:845px;
  5727. top:88px;
  5728. width:18px;
  5729. height:18px;
  5730. display:flex;
  5731. }
  5732. #u146993 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 2px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u146993_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. visibility:hidden;
  5744. }
  5745. #u146994_img {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:6px;
  5751. height:6px;
  5752. }
  5753. #u146994 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:851px;
  5757. top:94px;
  5758. width:6px;
  5759. height:6px;
  5760. display:flex;
  5761. }
  5762. #u146994 .text {
  5763. position:absolute;
  5764. align-self:center;
  5765. padding:2px 2px 2px 2px;
  5766. box-sizing:border-box;
  5767. width:100%;
  5768. }
  5769. #u146994_text {
  5770. border-width:0px;
  5771. word-wrap:break-word;
  5772. text-transform:none;
  5773. visibility:hidden;
  5774. }
  5775. #u146995 {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:0px;
  5781. height:0px;
  5782. }
  5783. #u146996_img {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:5px;
  5789. height:5px;
  5790. }
  5791. #u146996 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:796px;
  5795. top:95px;
  5796. width:5px;
  5797. height:5px;
  5798. display:flex;
  5799. }
  5800. #u146996 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:2px 2px 2px 2px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u146996_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. visibility:hidden;
  5812. }
  5813. #u146997_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:5px;
  5819. height:5px;
  5820. }
  5821. #u146997 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:812px;
  5825. top:95px;
  5826. width:5px;
  5827. height:5px;
  5828. display:flex;
  5829. }
  5830. #u146997 .text {
  5831. position:absolute;
  5832. align-self:center;
  5833. padding:2px 2px 2px 2px;
  5834. box-sizing:border-box;
  5835. width:100%;
  5836. }
  5837. #u146997_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. visibility:hidden;
  5842. }
  5843. #u146998_img {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:7px;
  5849. height:7px;
  5850. }
  5851. #u146998 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:803px;
  5855. top:94px;
  5856. width:7px;
  5857. height:7px;
  5858. display:flex;
  5859. }
  5860. #u146998 .text {
  5861. position:absolute;
  5862. align-self:center;
  5863. padding:2px 2px 2px 2px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u146998_text {
  5868. border-width:0px;
  5869. word-wrap:break-word;
  5870. text-transform:none;
  5871. visibility:hidden;
  5872. }
  5873. #u146999_img {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:19px;
  5879. height:2px;
  5880. }
  5881. #u146999 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:820px;
  5885. top:97px;
  5886. width:18px;
  5887. height:1px;
  5888. display:flex;
  5889. -webkit-transform:rotate(90deg);
  5890. -moz-transform:rotate(90deg);
  5891. -ms-transform:rotate(90deg);
  5892. transform:rotate(90deg);
  5893. }
  5894. #u146999 .text {
  5895. position:absolute;
  5896. align-self:center;
  5897. padding:2px 2px 2px 2px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u146999_text {
  5902. border-width:0px;
  5903. word-wrap:break-word;
  5904. text-transform:none;
  5905. visibility:hidden;
  5906. }
  5907. #u147000_div {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:12px;
  5913. height:12px;
  5914. background:inherit;
  5915. background-color:rgba(255, 255, 255, 0);
  5916. box-sizing:border-box;
  5917. border-width:2px;
  5918. border-style:solid;
  5919. border-color:rgba(51, 51, 51, 1);
  5920. border-right:0px;
  5921. border-bottom:0px;
  5922. border-radius:0px;
  5923. border-top-right-radius:0px;
  5924. border-bottom-left-radius:0px;
  5925. -moz-box-shadow:none;
  5926. -webkit-box-shadow:none;
  5927. box-shadow:none;
  5928. }
  5929. #u147000 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:517px;
  5933. top:91px;
  5934. width:12px;
  5935. height:12px;
  5936. display:flex;
  5937. -webkit-transform:rotate(315deg);
  5938. -moz-transform:rotate(315deg);
  5939. -ms-transform:rotate(315deg);
  5940. transform:rotate(315deg);
  5941. }
  5942. #u147000 .text {
  5943. position:absolute;
  5944. align-self:center;
  5945. padding:2px 2px 2px 2px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u147000_text {
  5950. border-width:0px;
  5951. word-wrap:break-word;
  5952. text-transform:none;
  5953. visibility:hidden;
  5954. }
  5955. #u147001_div {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:33px;
  5961. height:22px;
  5962. background:inherit;
  5963. background-color:rgba(255, 255, 255, 0);
  5964. border:none;
  5965. border-radius:0px;
  5966. -moz-box-shadow:none;
  5967. -webkit-box-shadow:none;
  5968. box-shadow:none;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:16px;
  5973. color:#000000;
  5974. }
  5975. #u147001 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:541px;
  5979. top:86px;
  5980. width:33px;
  5981. height:22px;
  5982. display:flex;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:16px;
  5987. color:#000000;
  5988. }
  5989. #u147001 .text {
  5990. position:absolute;
  5991. align-self:flex-start;
  5992. padding:0px 0px 0px 0px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u147001_text {
  5997. border-width:0px;
  5998. white-space:nowrap;
  5999. text-transform:none;
  6000. }
  6001. #u147002 {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:0px;
  6007. height:0px;
  6008. }
  6009. #u147003_div {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:0px;
  6013. top:0px;
  6014. width:375px;
  6015. height:60px;
  6016. background:inherit;
  6017. background-color:rgba(255, 255, 255, 1);
  6018. box-sizing:border-box;
  6019. border-width:1px;
  6020. border-style:solid;
  6021. border-color:rgba(242, 242, 242, 1);
  6022. border-radius:20px;
  6023. border-top-left-radius:0px;
  6024. border-top-right-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. }
  6029. #u147003 {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:503px;
  6033. top:1425px;
  6034. width:375px;
  6035. height:60px;
  6036. display:flex;
  6037. }
  6038. #u147003 .text {
  6039. position:absolute;
  6040. align-self:center;
  6041. padding:2px 2px 2px 2px;
  6042. box-sizing:border-box;
  6043. width:100%;
  6044. }
  6045. #u147003_text {
  6046. border-width:0px;
  6047. word-wrap:break-word;
  6048. text-transform:none;
  6049. visibility:hidden;
  6050. }
  6051. #u147004_div {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:160px;
  6057. height:40px;
  6058. background:inherit;
  6059. background-color:rgba(0, 137, 254, 1);
  6060. border:none;
  6061. border-radius:63px;
  6062. -moz-box-shadow:none;
  6063. -webkit-box-shadow:none;
  6064. box-shadow:none;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:14px;
  6069. color:#FFFFFF;
  6070. }
  6071. #u147004 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:698px;
  6075. top:1435px;
  6076. width:160px;
  6077. height:40px;
  6078. display:flex;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:14px;
  6083. color:#FFFFFF;
  6084. }
  6085. #u147004 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:2px 2px 2px 2px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u147004_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. }
  6097. #u147005_div {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:160px;
  6103. height:40px;
  6104. background:inherit;
  6105. background-color:rgba(255, 255, 255, 1);
  6106. box-sizing:border-box;
  6107. border-width:1px;
  6108. border-style:solid;
  6109. border-color:rgba(121, 121, 121, 1);
  6110. border-radius:63px;
  6111. -moz-box-shadow:none;
  6112. -webkit-box-shadow:none;
  6113. box-shadow:none;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:14px;
  6118. }
  6119. #u147005 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:523px;
  6123. top:1435px;
  6124. width:160px;
  6125. height:40px;
  6126. display:flex;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. }
  6132. #u147005 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:2px 2px 2px 2px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u147005_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. }
  6144. #u147006_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:375px;
  6150. height:100px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 1);
  6153. border:none;
  6154. border-left:0px;
  6155. border-top:0px;
  6156. border-right:0px;
  6157. border-radius:0px;
  6158. border-bottom-right-radius:0px;
  6159. border-bottom-left-radius:0px;
  6160. -moz-box-shadow:none;
  6161. -webkit-box-shadow:none;
  6162. box-shadow:none;
  6163. }
  6164. #u147006 {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:503px;
  6168. top:117px;
  6169. width:375px;
  6170. height:100px;
  6171. display:flex;
  6172. }
  6173. #u147006 .text {
  6174. position:absolute;
  6175. align-self:center;
  6176. padding:2px 2px 2px 2px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u147006_text {
  6181. border-width:0px;
  6182. word-wrap:break-word;
  6183. text-transform:none;
  6184. visibility:hidden;
  6185. }
  6186. #u147007_div {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:132px;
  6192. height:30px;
  6193. background:inherit;
  6194. background-color:rgba(255, 255, 255, 0);
  6195. border:none;
  6196. border-left:0px;
  6197. border-top:0px;
  6198. border-right:0px;
  6199. border-radius:0px;
  6200. border-bottom-right-radius:0px;
  6201. border-bottom-left-radius:0px;
  6202. -moz-box-shadow:none;
  6203. -webkit-box-shadow:none;
  6204. box-shadow:none;
  6205. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6206. font-weight:500;
  6207. font-style:normal;
  6208. font-size:14px;
  6209. line-height:30px;
  6210. }
  6211. #u147007 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:530px;
  6215. top:127px;
  6216. width:132px;
  6217. height:30px;
  6218. display:flex;
  6219. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6220. font-weight:500;
  6221. font-style:normal;
  6222. font-size:14px;
  6223. line-height:30px;
  6224. }
  6225. #u147007 .text {
  6226. position:absolute;
  6227. align-self:flex-start;
  6228. padding:0px 0px 0px 0px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u147007_text {
  6233. border-width:0px;
  6234. white-space:nowrap;
  6235. text-transform:none;
  6236. }
  6237. #u147008_div {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:325px;
  6243. height:50px;
  6244. background:inherit;
  6245. background-color:rgba(255, 255, 255, 0);
  6246. border:none;
  6247. border-left:0px;
  6248. border-top:0px;
  6249. border-right:0px;
  6250. border-radius:0px;
  6251. border-bottom-right-radius:0px;
  6252. border-bottom-left-radius:0px;
  6253. -moz-box-shadow:none;
  6254. -webkit-box-shadow:none;
  6255. box-shadow:none;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:12px;
  6260. line-height:25px;
  6261. }
  6262. #u147008 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:530px;
  6266. top:157px;
  6267. width:325px;
  6268. height:50px;
  6269. display:flex;
  6270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:12px;
  6274. line-height:25px;
  6275. }
  6276. #u147008 .text {
  6277. position:absolute;
  6278. align-self:flex-start;
  6279. padding:0px 0px 0px 0px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u147008_text {
  6284. border-width:0px;
  6285. word-wrap:break-word;
  6286. text-transform:none;
  6287. }
  6288. #u147009_div {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:0px;
  6292. top:0px;
  6293. width:97px;
  6294. height:25px;
  6295. background:inherit;
  6296. background-color:rgba(255, 255, 255, 0);
  6297. border:none;
  6298. border-radius:0px;
  6299. -moz-box-shadow:none;
  6300. -webkit-box-shadow:none;
  6301. box-shadow:none;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:12px;
  6306. color:#B8741A;
  6307. line-height:25px;
  6308. }
  6309. #u147009 {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:758px;
  6313. top:182px;
  6314. width:97px;
  6315. height:25px;
  6316. display:flex;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:12px;
  6321. color:#B8741A;
  6322. line-height:25px;
  6323. }
  6324. #u147009 .text {
  6325. position:absolute;
  6326. align-self:flex-start;
  6327. padding:0px 0px 0px 0px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u147009_text {
  6332. border-width:0px;
  6333. white-space:nowrap;
  6334. text-transform:none;
  6335. }
  6336. #u147010 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:0px;
  6342. height:0px;
  6343. }
  6344. #u147011_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:355px;
  6350. height:140px;
  6351. }
  6352. #u147011 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:513px;
  6356. top:227px;
  6357. width:355px;
  6358. height:140px;
  6359. display:flex;
  6360. }
  6361. #u147011 .text {
  6362. position:absolute;
  6363. align-self:center;
  6364. padding:2px 2px 2px 2px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u147011_text {
  6369. border-width:0px;
  6370. word-wrap:break-word;
  6371. text-transform:none;
  6372. visibility:hidden;
  6373. }
  6374. #u147012_div {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:159px;
  6380. height:30px;
  6381. background:inherit;
  6382. background-color:rgba(255, 255, 255, 0);
  6383. border:none;
  6384. border-left:0px;
  6385. border-top:0px;
  6386. border-right:0px;
  6387. border-radius:0px;
  6388. border-bottom-right-radius:0px;
  6389. border-bottom-left-radius:0px;
  6390. -moz-box-shadow:none;
  6391. -webkit-box-shadow:none;
  6392. box-shadow:none;
  6393. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6394. font-weight:500;
  6395. font-style:normal;
  6396. font-size:14px;
  6397. line-height:30px;
  6398. }
  6399. #u147012 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:530px;
  6403. top:237px;
  6404. width:159px;
  6405. height:30px;
  6406. display:flex;
  6407. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6408. font-weight:500;
  6409. font-style:normal;
  6410. font-size:14px;
  6411. line-height:30px;
  6412. }
  6413. #u147012 .text {
  6414. position:absolute;
  6415. align-self:flex-start;
  6416. padding:0px 0px 0px 0px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u147012_text {
  6421. border-width:0px;
  6422. white-space:nowrap;
  6423. text-transform:none;
  6424. }
  6425. #u147013_div {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:325px;
  6431. height:25px;
  6432. background:inherit;
  6433. background-color:rgba(255, 255, 255, 0);
  6434. border:none;
  6435. border-left:0px;
  6436. border-top:0px;
  6437. border-right:0px;
  6438. border-radius:0px;
  6439. border-bottom-right-radius:0px;
  6440. border-bottom-left-radius:0px;
  6441. -moz-box-shadow:none;
  6442. -webkit-box-shadow:none;
  6443. box-shadow:none;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:14px;
  6448. color:#1890FF;
  6449. line-height:25px;
  6450. }
  6451. #u147013 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:530px;
  6455. top:267px;
  6456. width:325px;
  6457. height:25px;
  6458. display:flex;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:14px;
  6463. color:#1890FF;
  6464. line-height:25px;
  6465. }
  6466. #u147013 .text {
  6467. position:absolute;
  6468. align-self:flex-start;
  6469. padding:0px 0px 0px 0px;
  6470. box-sizing:border-box;
  6471. width:100%;
  6472. }
  6473. #u147013_text {
  6474. border-width:0px;
  6475. word-wrap:break-word;
  6476. text-transform:none;
  6477. }
  6478. #u147014_div {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:325px;
  6484. height:51px;
  6485. background:inherit;
  6486. background-color:rgba(255, 255, 255, 0);
  6487. border:none;
  6488. border-left:0px;
  6489. border-top:0px;
  6490. border-right:0px;
  6491. border-radius:0px;
  6492. border-bottom-right-radius:0px;
  6493. border-bottom-left-radius:0px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. }
  6502. #u147014 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:530px;
  6506. top:297px;
  6507. width:325px;
  6508. height:51px;
  6509. display:flex;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:12px;
  6514. }
  6515. #u147014 .text {
  6516. position:absolute;
  6517. align-self:flex-start;
  6518. padding:0px 0px 0px 0px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u147014_text {
  6523. border-width:0px;
  6524. word-wrap:break-word;
  6525. text-transform:none;
  6526. }
  6527. #u147015 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:0px;
  6533. height:0px;
  6534. }
  6535. #u147016_img {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:355px;
  6541. height:840px;
  6542. }
  6543. #u147016 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:513px;
  6547. top:377px;
  6548. width:355px;
  6549. height:840px;
  6550. display:flex;
  6551. }
  6552. #u147016 .text {
  6553. position:absolute;
  6554. align-self:center;
  6555. padding:2px 2px 2px 2px;
  6556. box-sizing:border-box;
  6557. width:100%;
  6558. }
  6559. #u147016_text {
  6560. border-width:0px;
  6561. word-wrap:break-word;
  6562. text-transform:none;
  6563. visibility:hidden;
  6564. }
  6565. #u147017_div {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:0px;
  6569. top:0px;
  6570. width:318px;
  6571. height:40px;
  6572. background:inherit;
  6573. background-color:rgba(255, 255, 255, 1);
  6574. box-sizing:border-box;
  6575. border-width:1px;
  6576. border-style:solid;
  6577. border-color:rgba(242, 242, 242, 1);
  6578. border-left:0px;
  6579. border-top:0px;
  6580. border-right:0px;
  6581. border-radius:4px;
  6582. border-bottom-right-radius:0px;
  6583. border-bottom-left-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. }
  6588. #u147017 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:537px;
  6592. top:417px;
  6593. width:318px;
  6594. height:40px;
  6595. display:flex;
  6596. }
  6597. #u147017 .text {
  6598. position:absolute;
  6599. align-self:center;
  6600. padding:2px 2px 2px 2px;
  6601. box-sizing:border-box;
  6602. width:100%;
  6603. }
  6604. #u147017_text {
  6605. border-width:0px;
  6606. word-wrap:break-word;
  6607. text-transform:none;
  6608. visibility:hidden;
  6609. }
  6610. #u147018_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:73px;
  6616. height:30px;
  6617. background:inherit;
  6618. background-color:rgba(255, 255, 255, 0);
  6619. border:none;
  6620. border-left:0px;
  6621. border-top:0px;
  6622. border-right:0px;
  6623. border-radius:0px;
  6624. border-bottom-right-radius:0px;
  6625. border-bottom-left-radius:0px;
  6626. -moz-box-shadow:none;
  6627. -webkit-box-shadow:none;
  6628. box-shadow:none;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:12px;
  6633. line-height:30px;
  6634. }
  6635. #u147018 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:548px;
  6639. top:422px;
  6640. width:73px;
  6641. height:30px;
  6642. display:flex;
  6643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:12px;
  6647. line-height:30px;
  6648. }
  6649. #u147018 .text {
  6650. position:absolute;
  6651. align-self:flex-start;
  6652. padding:0px 0px 0px 0px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u147018_text {
  6657. border-width:0px;
  6658. white-space:nowrap;
  6659. text-transform:none;
  6660. }
  6661. #u147019_div {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:318px;
  6667. height:40px;
  6668. background:inherit;
  6669. background-color:rgba(255, 255, 255, 1);
  6670. box-sizing:border-box;
  6671. border-width:1px;
  6672. border-style:solid;
  6673. border-color:rgba(242, 242, 242, 1);
  6674. border-left:0px;
  6675. border-top:0px;
  6676. border-right:0px;
  6677. border-radius:4px;
  6678. border-bottom-right-radius:0px;
  6679. border-bottom-left-radius:0px;
  6680. -moz-box-shadow:none;
  6681. -webkit-box-shadow:none;
  6682. box-shadow:none;
  6683. }
  6684. #u147019 {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:537px;
  6688. top:457px;
  6689. width:318px;
  6690. height:40px;
  6691. display:flex;
  6692. }
  6693. #u147019 .text {
  6694. position:absolute;
  6695. align-self:center;
  6696. padding:2px 2px 2px 2px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u147019_text {
  6701. border-width:0px;
  6702. word-wrap:break-word;
  6703. text-transform:none;
  6704. visibility:hidden;
  6705. }
  6706. #u147020_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:73px;
  6712. height:30px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 0);
  6715. border:none;
  6716. border-left:0px;
  6717. border-top:0px;
  6718. border-right:0px;
  6719. border-radius:0px;
  6720. border-bottom-right-radius:0px;
  6721. border-bottom-left-radius:0px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. font-size:12px;
  6729. line-height:30px;
  6730. }
  6731. #u147020 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:548px;
  6735. top:462px;
  6736. width:73px;
  6737. height:30px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:12px;
  6743. line-height:30px;
  6744. }
  6745. #u147020 .text {
  6746. position:absolute;
  6747. align-self:flex-start;
  6748. padding:0px 0px 0px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u147020_text {
  6753. border-width:0px;
  6754. white-space:nowrap;
  6755. text-transform:none;
  6756. }
  6757. #u147021_div {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:57px;
  6763. height:30px;
  6764. background:inherit;
  6765. background-color:rgba(255, 255, 255, 0);
  6766. border:none;
  6767. border-left:0px;
  6768. border-top:0px;
  6769. border-right:0px;
  6770. border-radius:0px;
  6771. border-bottom-right-radius:0px;
  6772. border-bottom-left-radius:0px;
  6773. -moz-box-shadow:none;
  6774. -webkit-box-shadow:none;
  6775. box-shadow:none;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:12px;
  6780. text-align:right;
  6781. line-height:30px;
  6782. }
  6783. #u147021 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:791px;
  6787. top:422px;
  6788. width:57px;
  6789. height:30px;
  6790. display:flex;
  6791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:12px;
  6795. text-align:right;
  6796. line-height:30px;
  6797. }
  6798. #u147021 .text {
  6799. position:absolute;
  6800. align-self:flex-start;
  6801. padding:0px 0px 0px 0px;
  6802. box-sizing:border-box;
  6803. width:100%;
  6804. }
  6805. #u147021_text {
  6806. border-width:0px;
  6807. white-space:nowrap;
  6808. text-transform:none;
  6809. }
  6810. #u147022_div {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:57px;
  6816. height:30px;
  6817. background:inherit;
  6818. background-color:rgba(255, 255, 255, 0);
  6819. border:none;
  6820. border-left:0px;
  6821. border-top:0px;
  6822. border-right:0px;
  6823. border-radius:0px;
  6824. border-bottom-right-radius:0px;
  6825. border-bottom-left-radius:0px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:12px;
  6833. text-align:right;
  6834. line-height:30px;
  6835. }
  6836. #u147022 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:791px;
  6840. top:462px;
  6841. width:57px;
  6842. height:30px;
  6843. display:flex;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:12px;
  6848. text-align:right;
  6849. line-height:30px;
  6850. }
  6851. #u147022 .text {
  6852. position:absolute;
  6853. align-self:flex-start;
  6854. padding:0px 0px 0px 0px;
  6855. box-sizing:border-box;
  6856. width:100%;
  6857. }
  6858. #u147022_text {
  6859. border-width:0px;
  6860. white-space:nowrap;
  6861. text-transform:none;
  6862. }
  6863. #u147023 {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:0px;
  6869. height:0px;
  6870. }
  6871. #u147024_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:318px;
  6877. height:120px;
  6878. background:inherit;
  6879. background-color:rgba(242, 242, 242, 1);
  6880. border:none;
  6881. border-radius:4px;
  6882. -moz-box-shadow:none;
  6883. -webkit-box-shadow:none;
  6884. box-shadow:none;
  6885. }
  6886. #u147024 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:537px;
  6890. top:647px;
  6891. width:318px;
  6892. height:120px;
  6893. display:flex;
  6894. }
  6895. #u147024 .text {
  6896. position:absolute;
  6897. align-self:center;
  6898. padding:2px 2px 2px 2px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u147024_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. visibility:hidden;
  6907. }
  6908. #u147025_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:85px;
  6914. height:100px;
  6915. background:inherit;
  6916. background-color:rgba(255, 255, 255, 0);
  6917. border:none;
  6918. border-left:0px;
  6919. border-top:0px;
  6920. border-right:0px;
  6921. border-radius:0px;
  6922. border-bottom-right-radius:0px;
  6923. border-bottom-left-radius:0px;
  6924. -moz-box-shadow:none;
  6925. -webkit-box-shadow:none;
  6926. box-shadow:none;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:12px;
  6931. color:#7F7F7F;
  6932. line-height:20px;
  6933. }
  6934. #u147025 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:548px;
  6938. top:657px;
  6939. width:85px;
  6940. height:100px;
  6941. display:flex;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:12px;
  6946. color:#7F7F7F;
  6947. line-height:20px;
  6948. }
  6949. #u147025 .text {
  6950. position:absolute;
  6951. align-self:flex-start;
  6952. padding:0px 0px 0px 0px;
  6953. box-sizing:border-box;
  6954. width:100%;
  6955. }
  6956. #u147025_text {
  6957. border-width:0px;
  6958. white-space:nowrap;
  6959. text-transform:none;
  6960. }
  6961. #u147026_div {
  6962. border-width:0px;
  6963. position:absolute;
  6964. left:0px;
  6965. top:0px;
  6966. width:94px;
  6967. height:100px;
  6968. background:inherit;
  6969. background-color:rgba(255, 255, 255, 0);
  6970. border:none;
  6971. border-left:0px;
  6972. border-top:0px;
  6973. border-right:0px;
  6974. border-radius:0px;
  6975. border-bottom-right-radius:0px;
  6976. border-bottom-left-radius:0px;
  6977. -moz-box-shadow:none;
  6978. -webkit-box-shadow:none;
  6979. box-shadow:none;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:12px;
  6984. text-align:right;
  6985. line-height:20px;
  6986. }
  6987. #u147026 {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:750px;
  6991. top:657px;
  6992. width:94px;
  6993. height:100px;
  6994. display:flex;
  6995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6996. font-weight:400;
  6997. font-style:normal;
  6998. font-size:12px;
  6999. text-align:right;
  7000. line-height:20px;
  7001. }
  7002. #u147026 .text {
  7003. position:absolute;
  7004. align-self:flex-start;
  7005. padding:0px 0px 0px 0px;
  7006. box-sizing:border-box;
  7007. width:100%;
  7008. }
  7009. #u147026_text {
  7010. border-width:0px;
  7011. white-space:nowrap;
  7012. text-transform:none;
  7013. }
  7014. #u147027 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:0px;
  7020. height:0px;
  7021. }
  7022. #u147028_div {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:318px;
  7028. height:120px;
  7029. background:inherit;
  7030. background-color:rgba(242, 242, 242, 1);
  7031. border:none;
  7032. border-radius:4px;
  7033. -moz-box-shadow:none;
  7034. -webkit-box-shadow:none;
  7035. box-shadow:none;
  7036. }
  7037. #u147028 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:537px;
  7041. top:898px;
  7042. width:318px;
  7043. height:120px;
  7044. display:flex;
  7045. }
  7046. #u147028 .text {
  7047. position:absolute;
  7048. align-self:center;
  7049. padding:2px 2px 2px 2px;
  7050. box-sizing:border-box;
  7051. width:100%;
  7052. }
  7053. #u147028_text {
  7054. border-width:0px;
  7055. word-wrap:break-word;
  7056. text-transform:none;
  7057. visibility:hidden;
  7058. }
  7059. #u147029_div {
  7060. border-width:0px;
  7061. position:absolute;
  7062. left:0px;
  7063. top:0px;
  7064. width:85px;
  7065. height:100px;
  7066. background:inherit;
  7067. background-color:rgba(255, 255, 255, 0);
  7068. border:none;
  7069. border-left:0px;
  7070. border-top:0px;
  7071. border-right:0px;
  7072. border-radius:0px;
  7073. border-bottom-right-radius:0px;
  7074. border-bottom-left-radius:0px;
  7075. -moz-box-shadow:none;
  7076. -webkit-box-shadow:none;
  7077. box-shadow:none;
  7078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. font-size:12px;
  7082. color:#7F7F7F;
  7083. line-height:20px;
  7084. }
  7085. #u147029 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:548px;
  7089. top:908px;
  7090. width:85px;
  7091. height:100px;
  7092. display:flex;
  7093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:12px;
  7097. color:#7F7F7F;
  7098. line-height:20px;
  7099. }
  7100. #u147029 .text {
  7101. position:absolute;
  7102. align-self:flex-start;
  7103. padding:0px 0px 0px 0px;
  7104. box-sizing:border-box;
  7105. width:100%;
  7106. }
  7107. #u147029_text {
  7108. border-width:0px;
  7109. white-space:nowrap;
  7110. text-transform:none;
  7111. }
  7112. #u147030_div {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:94px;
  7118. height:100px;
  7119. background:inherit;
  7120. background-color:rgba(255, 255, 255, 0);
  7121. border:none;
  7122. border-left:0px;
  7123. border-top:0px;
  7124. border-right:0px;
  7125. border-radius:0px;
  7126. border-bottom-right-radius:0px;
  7127. border-bottom-left-radius:0px;
  7128. -moz-box-shadow:none;
  7129. -webkit-box-shadow:none;
  7130. box-shadow:none;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:12px;
  7135. text-align:right;
  7136. line-height:20px;
  7137. }
  7138. #u147030 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:750px;
  7142. top:908px;
  7143. width:94px;
  7144. height:100px;
  7145. display:flex;
  7146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7147. font-weight:400;
  7148. font-style:normal;
  7149. font-size:12px;
  7150. text-align:right;
  7151. line-height:20px;
  7152. }
  7153. #u147030 .text {
  7154. position:absolute;
  7155. align-self:flex-start;
  7156. padding:0px 0px 0px 0px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u147030_text {
  7161. border-width:0px;
  7162. white-space:nowrap;
  7163. text-transform:none;
  7164. }
  7165. #u147031 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:0px;
  7171. height:0px;
  7172. }
  7173. #u147032_div {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:49px;
  7179. height:30px;
  7180. background:inherit;
  7181. background-color:rgba(255, 255, 255, 0);
  7182. border:none;
  7183. border-left:0px;
  7184. border-top:0px;
  7185. border-right:0px;
  7186. border-radius:0px;
  7187. border-bottom-right-radius:0px;
  7188. border-bottom-left-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:12px;
  7196. line-height:30px;
  7197. }
  7198. #u147032 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:530px;
  7202. top:387px;
  7203. width:49px;
  7204. height:30px;
  7205. display:flex;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:12px;
  7210. line-height:30px;
  7211. }
  7212. #u147032 .text {
  7213. position:absolute;
  7214. align-self:flex-start;
  7215. padding:0px 0px 0px 0px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u147032_text {
  7220. border-width:0px;
  7221. white-space:nowrap;
  7222. text-transform:none;
  7223. }
  7224. #u147033_div {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:0px;
  7228. top:0px;
  7229. width:11px;
  7230. height:11px;
  7231. background:inherit;
  7232. background-color:rgba(255, 255, 255, 0);
  7233. box-sizing:border-box;
  7234. border-width:1px;
  7235. border-style:solid;
  7236. border-color:rgba(170, 170, 170, 1);
  7237. border-right:0px;
  7238. border-bottom:0px;
  7239. border-radius:0px;
  7240. border-top-right-radius:0px;
  7241. border-bottom-left-radius:0px;
  7242. -moz-box-shadow:none;
  7243. -webkit-box-shadow:none;
  7244. box-shadow:none;
  7245. }
  7246. #u147033 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:834px;
  7250. top:397px;
  7251. width:11px;
  7252. height:11px;
  7253. display:flex;
  7254. -webkit-transform:rotate(45deg);
  7255. -moz-transform:rotate(45deg);
  7256. -ms-transform:rotate(45deg);
  7257. transform:rotate(45deg);
  7258. }
  7259. #u147033 .text {
  7260. position:absolute;
  7261. align-self:center;
  7262. padding:2px 2px 2px 2px;
  7263. box-sizing:border-box;
  7264. width:100%;
  7265. }
  7266. #u147033_text {
  7267. border-width:0px;
  7268. word-wrap:break-word;
  7269. text-transform:none;
  7270. visibility:hidden;
  7271. }
  7272. #u147034_div {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:318px;
  7278. height:40px;
  7279. background:inherit;
  7280. background-color:rgba(255, 255, 255, 1);
  7281. box-sizing:border-box;
  7282. border-width:1px;
  7283. border-style:solid;
  7284. border-color:rgba(242, 242, 242, 1);
  7285. border-left:0px;
  7286. border-top:0px;
  7287. border-right:0px;
  7288. border-radius:4px;
  7289. border-bottom-right-radius:0px;
  7290. border-bottom-left-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. }
  7295. #u147034 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:537px;
  7299. top:497px;
  7300. width:318px;
  7301. height:40px;
  7302. display:flex;
  7303. }
  7304. #u147034 .text {
  7305. position:absolute;
  7306. align-self:center;
  7307. padding:2px 2px 2px 2px;
  7308. box-sizing:border-box;
  7309. width:100%;
  7310. }
  7311. #u147034_text {
  7312. border-width:0px;
  7313. word-wrap:break-word;
  7314. text-transform:none;
  7315. visibility:hidden;
  7316. }
  7317. #u147035_div {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:73px;
  7323. height:30px;
  7324. background:inherit;
  7325. background-color:rgba(255, 255, 255, 0);
  7326. border:none;
  7327. border-left:0px;
  7328. border-top:0px;
  7329. border-right:0px;
  7330. border-radius:0px;
  7331. border-bottom-right-radius:0px;
  7332. border-bottom-left-radius:0px;
  7333. -moz-box-shadow:none;
  7334. -webkit-box-shadow:none;
  7335. box-shadow:none;
  7336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. line-height:30px;
  7341. }
  7342. #u147035 {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:548px;
  7346. top:502px;
  7347. width:73px;
  7348. height:30px;
  7349. display:flex;
  7350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:12px;
  7354. line-height:30px;
  7355. }
  7356. #u147035 .text {
  7357. position:absolute;
  7358. align-self:flex-start;
  7359. padding:0px 0px 0px 0px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u147035_text {
  7364. border-width:0px;
  7365. white-space:nowrap;
  7366. text-transform:none;
  7367. }
  7368. #u147036_div {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:0px;
  7372. top:0px;
  7373. width:57px;
  7374. height:30px;
  7375. background:inherit;
  7376. background-color:rgba(255, 255, 255, 0);
  7377. border:none;
  7378. border-left:0px;
  7379. border-top:0px;
  7380. border-right:0px;
  7381. border-radius:0px;
  7382. border-bottom-right-radius:0px;
  7383. border-bottom-left-radius:0px;
  7384. -moz-box-shadow:none;
  7385. -webkit-box-shadow:none;
  7386. box-shadow:none;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:12px;
  7391. text-align:right;
  7392. line-height:30px;
  7393. }
  7394. #u147036 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:791px;
  7398. top:502px;
  7399. width:57px;
  7400. height:30px;
  7401. display:flex;
  7402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7403. font-weight:400;
  7404. font-style:normal;
  7405. font-size:12px;
  7406. text-align:right;
  7407. line-height:30px;
  7408. }
  7409. #u147036 .text {
  7410. position:absolute;
  7411. align-self:flex-start;
  7412. padding:0px 0px 0px 0px;
  7413. box-sizing:border-box;
  7414. width:100%;
  7415. }
  7416. #u147036_text {
  7417. border-width:0px;
  7418. white-space:nowrap;
  7419. text-transform:none;
  7420. }
  7421. #u147037_div {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:318px;
  7427. height:70px;
  7428. background:inherit;
  7429. background-color:rgba(255, 255, 255, 1);
  7430. border:none;
  7431. border-left:0px;
  7432. border-top:0px;
  7433. border-right:0px;
  7434. border-radius:4px;
  7435. border-bottom-right-radius:0px;
  7436. border-bottom-left-radius:0px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. }
  7441. #u147037 {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:537px;
  7445. top:537px;
  7446. width:318px;
  7447. height:70px;
  7448. display:flex;
  7449. }
  7450. #u147037 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:2px 2px 2px 2px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u147037_text {
  7458. border-width:0px;
  7459. word-wrap:break-word;
  7460. text-transform:none;
  7461. visibility:hidden;
  7462. }
  7463. #u147038_div {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:49px;
  7469. height:30px;
  7470. background:inherit;
  7471. background-color:rgba(255, 255, 255, 0);
  7472. border:none;
  7473. border-left:0px;
  7474. border-top:0px;
  7475. border-right:0px;
  7476. border-radius:0px;
  7477. border-bottom-right-radius:0px;
  7478. border-bottom-left-radius:0px;
  7479. -moz-box-shadow:none;
  7480. -webkit-box-shadow:none;
  7481. box-shadow:none;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:12px;
  7486. line-height:30px;
  7487. }
  7488. #u147038 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:548px;
  7492. top:542px;
  7493. width:49px;
  7494. height:30px;
  7495. display:flex;
  7496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. font-size:12px;
  7500. line-height:30px;
  7501. }
  7502. #u147038 .text {
  7503. position:absolute;
  7504. align-self:flex-start;
  7505. padding:0px 0px 0px 0px;
  7506. box-sizing:border-box;
  7507. width:100%;
  7508. }
  7509. #u147038_text {
  7510. border-width:0px;
  7511. white-space:nowrap;
  7512. text-transform:none;
  7513. }
  7514. #u147039_div {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:109px;
  7520. height:17px;
  7521. background:inherit;
  7522. background-color:rgba(255, 255, 255, 0);
  7523. border:none;
  7524. border-left:0px;
  7525. border-top:0px;
  7526. border-right:0px;
  7527. border-radius:0px;
  7528. border-bottom-right-radius:0px;
  7529. border-bottom-left-radius:0px;
  7530. -moz-box-shadow:none;
  7531. -webkit-box-shadow:none;
  7532. box-shadow:none;
  7533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7534. font-weight:400;
  7535. font-style:normal;
  7536. font-size:12px;
  7537. color:#000000;
  7538. }
  7539. #u147039 {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:548px;
  7543. top:572px;
  7544. width:109px;
  7545. height:17px;
  7546. display:flex;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:12px;
  7551. color:#000000;
  7552. }
  7553. #u147039 .text {
  7554. position:absolute;
  7555. align-self:flex-start;
  7556. padding:0px 0px 0px 0px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u147039_text {
  7561. border-width:0px;
  7562. white-space:nowrap;
  7563. text-transform:none;
  7564. }
  7565. #u147040_div {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:49px;
  7571. height:30px;
  7572. background:inherit;
  7573. background-color:rgba(255, 255, 255, 0);
  7574. border:none;
  7575. border-left:0px;
  7576. border-top:0px;
  7577. border-right:0px;
  7578. border-radius:0px;
  7579. border-bottom-right-radius:0px;
  7580. border-bottom-left-radius:0px;
  7581. -moz-box-shadow:none;
  7582. -webkit-box-shadow:none;
  7583. box-shadow:none;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:12px;
  7588. line-height:30px;
  7589. }
  7590. #u147040 {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:537px;
  7594. top:617px;
  7595. width:49px;
  7596. height:30px;
  7597. display:flex;
  7598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7599. font-weight:400;
  7600. font-style:normal;
  7601. font-size:12px;
  7602. line-height:30px;
  7603. }
  7604. #u147040 .text {
  7605. position:absolute;
  7606. align-self:flex-start;
  7607. padding:0px 0px 0px 0px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u147040_text {
  7612. border-width:0px;
  7613. white-space:nowrap;
  7614. text-transform:none;
  7615. }
  7616. #u147041 {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:0px;
  7622. height:0px;
  7623. }
  7624. #u147042_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:318px;
  7630. height:120px;
  7631. background:inherit;
  7632. background-color:rgba(242, 242, 242, 1);
  7633. border:none;
  7634. border-radius:4px;
  7635. -moz-box-shadow:none;
  7636. -webkit-box-shadow:none;
  7637. box-shadow:none;
  7638. }
  7639. #u147042 {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:537px;
  7643. top:768px;
  7644. width:318px;
  7645. height:120px;
  7646. display:flex;
  7647. }
  7648. #u147042 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:2px 2px 2px 2px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u147042_text {
  7656. border-width:0px;
  7657. word-wrap:break-word;
  7658. text-transform:none;
  7659. visibility:hidden;
  7660. }
  7661. #u147043_div {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:49px;
  7667. height:100px;
  7668. background:inherit;
  7669. background-color:rgba(255, 255, 255, 0);
  7670. border:none;
  7671. border-left:0px;
  7672. border-top:0px;
  7673. border-right:0px;
  7674. border-radius:0px;
  7675. border-bottom-right-radius:0px;
  7676. border-bottom-left-radius:0px;
  7677. -moz-box-shadow:none;
  7678. -webkit-box-shadow:none;
  7679. box-shadow:none;
  7680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. font-size:12px;
  7684. color:#7F7F7F;
  7685. line-height:20px;
  7686. }
  7687. #u147043 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:548px;
  7691. top:778px;
  7692. width:49px;
  7693. height:100px;
  7694. display:flex;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:12px;
  7699. color:#7F7F7F;
  7700. line-height:20px;
  7701. }
  7702. #u147043 .text {
  7703. position:absolute;
  7704. align-self:flex-start;
  7705. padding:0px 0px 0px 0px;
  7706. box-sizing:border-box;
  7707. width:100%;
  7708. }
  7709. #u147043_text {
  7710. border-width:0px;
  7711. white-space:nowrap;
  7712. text-transform:none;
  7713. }
  7714. #u147044_div {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:150px;
  7720. height:100px;
  7721. background:inherit;
  7722. background-color:rgba(255, 255, 255, 0);
  7723. border:none;
  7724. border-left:0px;
  7725. border-top:0px;
  7726. border-right:0px;
  7727. border-radius:0px;
  7728. border-bottom-right-radius:0px;
  7729. border-bottom-left-radius:0px;
  7730. -moz-box-shadow:none;
  7731. -webkit-box-shadow:none;
  7732. box-shadow:none;
  7733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:12px;
  7737. text-align:right;
  7738. line-height:20px;
  7739. }
  7740. #u147044 {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:694px;
  7744. top:778px;
  7745. width:150px;
  7746. height:100px;
  7747. display:flex;
  7748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7749. font-weight:400;
  7750. font-style:normal;
  7751. font-size:12px;
  7752. text-align:right;
  7753. line-height:20px;
  7754. }
  7755. #u147044 .text {
  7756. position:absolute;
  7757. align-self:flex-start;
  7758. padding:0px 0px 0px 0px;
  7759. box-sizing:border-box;
  7760. width:100%;
  7761. }
  7762. #u147044_text {
  7763. border-width:0px;
  7764. white-space:nowrap;
  7765. text-transform:none;
  7766. }
  7767. #u147045 {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:0px;
  7773. height:0px;
  7774. }
  7775. #u147046_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:318px;
  7781. height:120px;
  7782. background:inherit;
  7783. background-color:rgba(242, 242, 242, 1);
  7784. border:none;
  7785. border-radius:4px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. }
  7790. #u147046 {
  7791. border-width:0px;
  7792. position:absolute;
  7793. left:537px;
  7794. top:1019px;
  7795. width:318px;
  7796. height:120px;
  7797. display:flex;
  7798. }
  7799. #u147046 .text {
  7800. position:absolute;
  7801. align-self:center;
  7802. padding:2px 2px 2px 2px;
  7803. box-sizing:border-box;
  7804. width:100%;
  7805. }
  7806. #u147046_text {
  7807. border-width:0px;
  7808. word-wrap:break-word;
  7809. text-transform:none;
  7810. visibility:hidden;
  7811. }
  7812. #u147047_div {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:49px;
  7818. height:100px;
  7819. background:inherit;
  7820. background-color:rgba(255, 255, 255, 0);
  7821. border:none;
  7822. border-left:0px;
  7823. border-top:0px;
  7824. border-right:0px;
  7825. border-radius:0px;
  7826. border-bottom-right-radius:0px;
  7827. border-bottom-left-radius:0px;
  7828. -moz-box-shadow:none;
  7829. -webkit-box-shadow:none;
  7830. box-shadow:none;
  7831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:12px;
  7835. color:#7F7F7F;
  7836. line-height:20px;
  7837. }
  7838. #u147047 {
  7839. border-width:0px;
  7840. position:absolute;
  7841. left:548px;
  7842. top:1029px;
  7843. width:49px;
  7844. height:100px;
  7845. display:flex;
  7846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7847. font-weight:400;
  7848. font-style:normal;
  7849. font-size:12px;
  7850. color:#7F7F7F;
  7851. line-height:20px;
  7852. }
  7853. #u147047 .text {
  7854. position:absolute;
  7855. align-self:flex-start;
  7856. padding:0px 0px 0px 0px;
  7857. box-sizing:border-box;
  7858. width:100%;
  7859. }
  7860. #u147047_text {
  7861. border-width:0px;
  7862. white-space:nowrap;
  7863. text-transform:none;
  7864. }
  7865. #u147048_div {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:0px;
  7869. top:0px;
  7870. width:149px;
  7871. height:100px;
  7872. background:inherit;
  7873. background-color:rgba(255, 255, 255, 0);
  7874. border:none;
  7875. border-left:0px;
  7876. border-top:0px;
  7877. border-right:0px;
  7878. border-radius:0px;
  7879. border-bottom-right-radius:0px;
  7880. border-bottom-left-radius:0px;
  7881. -moz-box-shadow:none;
  7882. -webkit-box-shadow:none;
  7883. box-shadow:none;
  7884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7885. font-weight:400;
  7886. font-style:normal;
  7887. font-size:12px;
  7888. text-align:right;
  7889. line-height:20px;
  7890. }
  7891. #u147048 {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:695px;
  7895. top:1029px;
  7896. width:149px;
  7897. height:100px;
  7898. display:flex;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. font-size:12px;
  7903. text-align:right;
  7904. line-height:20px;
  7905. }
  7906. #u147048 .text {
  7907. position:absolute;
  7908. align-self:flex-start;
  7909. padding:0px 0px 0px 0px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u147048_text {
  7914. border-width:0px;
  7915. white-space:nowrap;
  7916. text-transform:none;
  7917. }
  7918. #u147049_div {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:318px;
  7924. height:51px;
  7925. background:inherit;
  7926. background-color:rgba(255, 255, 255, 0);
  7927. border:none;
  7928. border-left:0px;
  7929. border-top:0px;
  7930. border-right:0px;
  7931. border-radius:0px;
  7932. border-bottom-right-radius:0px;
  7933. border-bottom-left-radius:0px;
  7934. -moz-box-shadow:none;
  7935. -webkit-box-shadow:none;
  7936. box-shadow:none;
  7937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7938. font-weight:400;
  7939. font-style:normal;
  7940. font-size:12px;
  7941. }
  7942. #u147049 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:537px;
  7946. top:1149px;
  7947. width:318px;
  7948. height:51px;
  7949. display:flex;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:12px;
  7954. }
  7955. #u147049 .text {
  7956. position:absolute;
  7957. align-self:flex-start;
  7958. padding:0px 0px 0px 0px;
  7959. box-sizing:border-box;
  7960. width:100%;
  7961. }
  7962. #u147049_text {
  7963. border-width:0px;
  7964. word-wrap:break-word;
  7965. text-transform:none;
  7966. }
  7967. #u147050 {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:0px;
  7973. height:0px;
  7974. }
  7975. #u147051_div {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:355px;
  7981. height:192px;
  7982. background:inherit;
  7983. background-color:rgba(255, 255, 255, 1);
  7984. border:none;
  7985. border-radius:0px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. }
  7990. #u147051 {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:513px;
  7994. top:1227px;
  7995. width:355px;
  7996. height:192px;
  7997. display:flex;
  7998. }
  7999. #u147051 .text {
  8000. position:absolute;
  8001. align-self:center;
  8002. padding:2px 2px 2px 2px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u147051_text {
  8007. border-width:0px;
  8008. word-wrap:break-word;
  8009. text-transform:none;
  8010. visibility:hidden;
  8011. }
  8012. #u147052_div {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:0px;
  8016. top:0px;
  8017. width:103px;
  8018. height:24px;
  8019. background:inherit;
  8020. background-color:rgba(255, 255, 255, 0);
  8021. border:none;
  8022. border-top:0px;
  8023. border-right:0px;
  8024. border-bottom:0px;
  8025. border-radius:0px;
  8026. border-top-left-radius:0px;
  8027. border-bottom-left-radius:0px;
  8028. -moz-box-shadow:none;
  8029. -webkit-box-shadow:none;
  8030. box-shadow:none;
  8031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:10px;
  8035. color:#AAAAAA;
  8036. }
  8037. #u147052 {
  8038. border-width:0px;
  8039. position:absolute;
  8040. left:748px;
  8041. top:1277px;
  8042. width:103px;
  8043. height:24px;
  8044. display:flex;
  8045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8046. font-weight:400;
  8047. font-style:normal;
  8048. font-size:10px;
  8049. color:#AAAAAA;
  8050. }
  8051. #u147052 .text {
  8052. position:absolute;
  8053. align-self:flex-start;
  8054. padding:5px 0px 5px 0px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u147052_text {
  8059. border-width:0px;
  8060. white-space:nowrap;
  8061. text-transform:none;
  8062. }
  8063. #u147053 {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:0px;
  8067. top:0px;
  8068. width:0px;
  8069. height:0px;
  8070. }
  8071. #u147054_div {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:0px;
  8075. top:0px;
  8076. width:43px;
  8077. height:30px;
  8078. background:inherit;
  8079. background-color:rgba(255, 255, 255, 0);
  8080. border:none;
  8081. border-top:0px;
  8082. border-right:0px;
  8083. border-bottom:0px;
  8084. border-radius:0px;
  8085. border-top-left-radius:0px;
  8086. border-bottom-left-radius:0px;
  8087. -moz-box-shadow:none;
  8088. -webkit-box-shadow:none;
  8089. box-shadow:none;
  8090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8091. font-weight:400;
  8092. font-style:normal;
  8093. font-size:14px;
  8094. }
  8095. #u147054 {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:581px;
  8099. top:1279px;
  8100. width:43px;
  8101. height:30px;
  8102. display:flex;
  8103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8104. font-weight:400;
  8105. font-style:normal;
  8106. font-size:14px;
  8107. }
  8108. #u147054 .text {
  8109. position:absolute;
  8110. align-self:flex-start;
  8111. padding:0px 0px 0px 0px;
  8112. box-sizing:border-box;
  8113. width:100%;
  8114. }
  8115. #u147054_text {
  8116. border-width:0px;
  8117. white-space:nowrap;
  8118. text-transform:none;
  8119. }
  8120. #u147055_div {
  8121. border-width:0px;
  8122. position:absolute;
  8123. left:0px;
  8124. top:0px;
  8125. width:12px;
  8126. height:16px;
  8127. background:inherit;
  8128. background-color:rgba(255, 255, 255, 0);
  8129. border:none;
  8130. border-top:0px;
  8131. border-right:0px;
  8132. border-bottom:0px;
  8133. border-radius:0px;
  8134. border-top-left-radius:0px;
  8135. border-bottom-left-radius:0px;
  8136. -moz-box-shadow:none;
  8137. -webkit-box-shadow:none;
  8138. box-shadow:none;
  8139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:11px;
  8143. color:#AAAAAA;
  8144. }
  8145. #u147055 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:581px;
  8149. top:1307px;
  8150. width:12px;
  8151. height:16px;
  8152. display:flex;
  8153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:11px;
  8157. color:#AAAAAA;
  8158. }
  8159. #u147055 .text {
  8160. position:absolute;
  8161. align-self:flex-start;
  8162. padding:0px 0px 0px 0px;
  8163. box-sizing:border-box;
  8164. width:100%;
  8165. }
  8166. #u147055_text {
  8167. border-width:0px;
  8168. white-space:nowrap;
  8169. text-transform:none;
  8170. }
  8171. #u147056_div {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:43px;
  8177. height:20px;
  8178. background:inherit;
  8179. background-color:rgba(255, 255, 255, 0);
  8180. border:none;
  8181. border-top:0px;
  8182. border-right:0px;
  8183. border-bottom:0px;
  8184. border-radius:0px;
  8185. border-top-left-radius:0px;
  8186. border-bottom-left-radius:0px;
  8187. -moz-box-shadow:none;
  8188. -webkit-box-shadow:none;
  8189. box-shadow:none;
  8190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8191. font-weight:400;
  8192. font-style:normal;
  8193. font-size:14px;
  8194. }
  8195. #u147056 {
  8196. border-width:0px;
  8197. position:absolute;
  8198. left:581px;
  8199. top:1349px;
  8200. width:43px;
  8201. height:20px;
  8202. display:flex;
  8203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8204. font-weight:400;
  8205. font-style:normal;
  8206. font-size:14px;
  8207. }
  8208. #u147056 .text {
  8209. position:absolute;
  8210. align-self:flex-start;
  8211. padding:0px 0px 0px 0px;
  8212. box-sizing:border-box;
  8213. width:100%;
  8214. }
  8215. #u147056_text {
  8216. border-width:0px;
  8217. white-space:nowrap;
  8218. text-transform:none;
  8219. }
  8220. #u147057_div {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:91px;
  8226. height:16px;
  8227. background:inherit;
  8228. background-color:rgba(255, 255, 255, 0);
  8229. border:none;
  8230. border-top:0px;
  8231. border-right:0px;
  8232. border-bottom:0px;
  8233. border-radius:0px;
  8234. border-top-left-radius:0px;
  8235. border-bottom-left-radius:0px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. font-size:11px;
  8243. color:#AAAAAA;
  8244. }
  8245. #u147057 {
  8246. border-width:0px;
  8247. position:absolute;
  8248. left:581px;
  8249. top:1377px;
  8250. width:91px;
  8251. height:16px;
  8252. display:flex;
  8253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8254. font-weight:400;
  8255. font-style:normal;
  8256. font-size:11px;
  8257. color:#AAAAAA;
  8258. }
  8259. #u147057 .text {
  8260. position:absolute;
  8261. align-self:flex-start;
  8262. padding:0px 0px 0px 0px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u147057_text {
  8267. border-width:0px;
  8268. white-space:nowrap;
  8269. text-transform:none;
  8270. }
  8271. #u147058_div {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:29px;
  8277. height:30px;
  8278. background:inherit;
  8279. background-color:rgba(255, 255, 255, 0);
  8280. border:none;
  8281. border-top:0px;
  8282. border-right:0px;
  8283. border-bottom:0px;
  8284. border-radius:0px;
  8285. border-top-left-radius:0px;
  8286. border-bottom-left-radius:0px;
  8287. -moz-box-shadow:none;
  8288. -webkit-box-shadow:none;
  8289. box-shadow:none;
  8290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8291. font-weight:400;
  8292. font-style:normal;
  8293. font-size:14px;
  8294. }
  8295. #u147058 {
  8296. border-width:0px;
  8297. position:absolute;
  8298. left:539px;
  8299. top:1235px;
  8300. width:29px;
  8301. height:30px;
  8302. display:flex;
  8303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8304. font-weight:400;
  8305. font-style:normal;
  8306. font-size:14px;
  8307. }
  8308. #u147058 .text {
  8309. position:absolute;
  8310. align-self:flex-start;
  8311. padding:5px 0px 5px 0px;
  8312. box-sizing:border-box;
  8313. width:100%;
  8314. }
  8315. #u147058_text {
  8316. border-width:0px;
  8317. white-space:nowrap;
  8318. text-transform:none;
  8319. }
  8320. #u147059 {
  8321. border-width:0px;
  8322. position:absolute;
  8323. left:0px;
  8324. top:0px;
  8325. width:0px;
  8326. height:0px;
  8327. }
  8328. #u147060_img {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:0px;
  8332. top:0px;
  8333. width:2px;
  8334. height:32px;
  8335. }
  8336. #u147060 {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:558px;
  8340. top:1313px;
  8341. width:1px;
  8342. height:31px;
  8343. display:flex;
  8344. }
  8345. #u147060 .text {
  8346. position:absolute;
  8347. align-self:center;
  8348. padding:2px 2px 2px 2px;
  8349. box-sizing:border-box;
  8350. width:100%;
  8351. }
  8352. #u147060_text {
  8353. border-width:0px;
  8354. word-wrap:break-word;
  8355. text-transform:none;
  8356. visibility:hidden;
  8357. }
  8358. #u147061 {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:0px;
  8362. top:0px;
  8363. width:0px;
  8364. height:0px;
  8365. }
  8366. #u147062_div {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:0px;
  8370. top:0px;
  8371. width:30px;
  8372. height:30px;
  8373. background:inherit;
  8374. background-color:rgba(24, 144, 255, 1);
  8375. border:none;
  8376. border-radius:4px;
  8377. -moz-box-shadow:none;
  8378. -webkit-box-shadow:none;
  8379. box-shadow:none;
  8380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8381. font-weight:400;
  8382. font-style:normal;
  8383. font-size:10px;
  8384. color:#FFFFFF;
  8385. }
  8386. #u147062 {
  8387. border-width:0px;
  8388. position:absolute;
  8389. left:543px;
  8390. top:1349px;
  8391. width:30px;
  8392. height:30px;
  8393. display:flex;
  8394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8395. font-weight:400;
  8396. font-style:normal;
  8397. font-size:10px;
  8398. color:#FFFFFF;
  8399. }
  8400. #u147062 .text {
  8401. position:absolute;
  8402. align-self:center;
  8403. padding:2px 2px 2px 2px;
  8404. box-sizing:border-box;
  8405. width:100%;
  8406. }
  8407. #u147062_text {
  8408. border-width:0px;
  8409. word-wrap:break-word;
  8410. text-transform:none;
  8411. }
  8412. #u147063 {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:0px;
  8416. top:0px;
  8417. width:0px;
  8418. height:0px;
  8419. }
  8420. #u147064_img {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:0px;
  8424. top:0px;
  8425. width:9px;
  8426. height:9px;
  8427. }
  8428. #u147064 {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:565px;
  8432. top:1371px;
  8433. width:9px;
  8434. height:9px;
  8435. display:flex;
  8436. }
  8437. #u147064 .text {
  8438. position:absolute;
  8439. align-self:center;
  8440. padding:2px 2px 2px 2px;
  8441. box-sizing:border-box;
  8442. width:100%;
  8443. }
  8444. #u147064_text {
  8445. border-width:0px;
  8446. word-wrap:break-word;
  8447. text-transform:none;
  8448. visibility:hidden;
  8449. }
  8450. #u147065_img {
  8451. border-width:0px;
  8452. position:absolute;
  8453. left:0px;
  8454. top:0px;
  8455. width:5px;
  8456. height:1px;
  8457. }
  8458. #u147065 {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:567px;
  8462. top:1375px;
  8463. width:5px;
  8464. height:1px;
  8465. display:flex;
  8466. }
  8467. #u147065 .text {
  8468. position:absolute;
  8469. align-self:center;
  8470. padding:2px 2px 2px 2px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u147065_text {
  8475. border-width:0px;
  8476. word-wrap:break-word;
  8477. text-transform:none;
  8478. visibility:hidden;
  8479. }
  8480. #u147066 {
  8481. border-width:0px;
  8482. position:absolute;
  8483. left:0px;
  8484. top:0px;
  8485. width:0px;
  8486. height:0px;
  8487. }
  8488. #u147067_div {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:30px;
  8494. height:30px;
  8495. background:inherit;
  8496. background-color:rgba(24, 144, 255, 1);
  8497. border:none;
  8498. border-radius:4px;
  8499. -moz-box-shadow:none;
  8500. -webkit-box-shadow:none;
  8501. box-shadow:none;
  8502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8503. font-weight:400;
  8504. font-style:normal;
  8505. font-size:12px;
  8506. color:#FFFFFF;
  8507. }
  8508. #u147067 {
  8509. border-width:0px;
  8510. position:absolute;
  8511. left:543px;
  8512. top:1279px;
  8513. width:30px;
  8514. height:30px;
  8515. display:flex;
  8516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8517. font-weight:400;
  8518. font-style:normal;
  8519. font-size:12px;
  8520. color:#FFFFFF;
  8521. }
  8522. #u147067 .text {
  8523. position:absolute;
  8524. align-self:center;
  8525. padding:2px 2px 2px 2px;
  8526. box-sizing:border-box;
  8527. width:100%;
  8528. }
  8529. #u147067_text {
  8530. border-width:0px;
  8531. word-wrap:break-word;
  8532. text-transform:none;
  8533. }
  8534. #u147068 {
  8535. border-width:0px;
  8536. position:absolute;
  8537. left:0px;
  8538. top:0px;
  8539. width:0px;
  8540. height:0px;
  8541. }
  8542. #u147069_img {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:9px;
  8548. height:9px;
  8549. }
  8550. #u147069 {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:565px;
  8554. top:1301px;
  8555. width:9px;
  8556. height:9px;
  8557. display:flex;
  8558. }
  8559. #u147069 .text {
  8560. position:absolute;
  8561. align-self:center;
  8562. padding:2px 2px 2px 2px;
  8563. box-sizing:border-box;
  8564. width:100%;
  8565. }
  8566. #u147069_text {
  8567. border-width:0px;
  8568. word-wrap:break-word;
  8569. text-transform:none;
  8570. visibility:hidden;
  8571. }
  8572. #u147070_img {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:0px;
  8576. top:0px;
  8577. width:5px;
  8578. height:4px;
  8579. }
  8580. #u147070 {
  8581. border-width:0px;
  8582. position:absolute;
  8583. left:567px;
  8584. top:1304px;
  8585. width:5px;
  8586. height:4px;
  8587. display:flex;
  8588. }
  8589. #u147070 .text {
  8590. position:absolute;
  8591. align-self:center;
  8592. padding:2px 2px 2px 2px;
  8593. box-sizing:border-box;
  8594. width:100%;
  8595. }
  8596. #u147070_text {
  8597. border-width:0px;
  8598. word-wrap:break-word;
  8599. text-transform:none;
  8600. visibility:hidden;
  8601. }