styles.css 160 KB

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