styles.css 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598
  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. #u131672_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u131672 {
  28. border-width:0px;
  29. position:absolute;
  30. left:1364px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u131672 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u131672_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u131673_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. #u131673 {
  73. border-width:0px;
  74. position:absolute;
  75. left:1393px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u131673 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u131673_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u131674 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u131675_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. #u131675 {
  121. border-width:0px;
  122. position:absolute;
  123. left:1673px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u131675 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u131675_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u131676 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u131677_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u131677 {
  159. border-width:0px;
  160. position:absolute;
  161. left:1736px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u131677 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u131677_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u131678_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u131678 {
  189. border-width:0px;
  190. position:absolute;
  191. left:1742px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u131678 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u131678_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u131679 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u131680_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u131680 {
  227. border-width:0px;
  228. position:absolute;
  229. left:1687px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u131680 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u131680_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u131681_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u131681 {
  257. border-width:0px;
  258. position:absolute;
  259. left:1703px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u131681 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u131681_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u131682_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u131682 {
  287. border-width:0px;
  288. position:absolute;
  289. left:1694px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u131682 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u131682_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u131683_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u131683 {
  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. #u131683 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u131683_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u131684_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u131684 {
  351. border-width:0px;
  352. position:absolute;
  353. left:1393px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u131684 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u131684_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u131685_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. #u131685 {
  393. border-width:0px;
  394. position:absolute;
  395. left:1393px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u131685 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u131685_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u131686 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u131687_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u131687 {
  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. #u131687 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u131687_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u131688_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. #u131688 {
  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. #u131688 .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. #u131688_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u131689 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u131690_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u131690 {
  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. #u131690 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u131690_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u131691_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. #u131691 {
  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. #u131691 .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. #u131691_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u131692_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. #u131692 {
  594. border-width:0px;
  595. position:absolute;
  596. left:1393px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u131692 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u131692_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u131693 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u131694_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u131694 {
  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. #u131694 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u131694_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u131695_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. #u131695 {
  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. #u131695 .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. #u131695_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u131696 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u131697_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u131697 {
  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. #u131697 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u131697_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u131698_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. #u131698 {
  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. #u131698 .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. #u131698_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u131699_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. #u131699 {
  798. border-width:0px;
  799. position:absolute;
  800. left:1393px;
  801. top:105px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u131699 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u131699_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u131700_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. #u131700 {
  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. #u131700 .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. #u131700_text {
  866. border-width:0px;
  867. white-space:nowrap;
  868. text-transform:none;
  869. }
  870. #u131701 {
  871. border-width:0px;
  872. position:absolute;
  873. left:0px;
  874. top:0px;
  875. width:0px;
  876. height:0px;
  877. }
  878. #u131702_img {
  879. border-width:0px;
  880. position:absolute;
  881. left:0px;
  882. top:0px;
  883. width:11px;
  884. height:18px;
  885. }
  886. #u131702 {
  887. border-width:0px;
  888. position:absolute;
  889. left:1406px;
  890. top:79px;
  891. width:11px;
  892. height:18px;
  893. display:flex;
  894. }
  895. #u131702 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:2px 2px 2px 2px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u131702_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. visibility:hidden;
  907. }
  908. #u131703_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. #u131703 {
  929. border-width:0px;
  930. position:absolute;
  931. left:1393px;
  932. top:115px;
  933. width:375px;
  934. height:115px;
  935. display:flex;
  936. }
  937. #u131703 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u131703_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u131704_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:40px;
  956. height:40px;
  957. }
  958. #u131704 {
  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. #u131704 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u131704_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. }
  982. #u131705_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. #u131705 {
  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. #u131705 .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. #u131705_text {
  1029. border-width:0px;
  1030. white-space:nowrap;
  1031. text-transform:none;
  1032. }
  1033. #u131706_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. #u131706 {
  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. #u131706 .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. #u131706_text {
  1082. border-width:0px;
  1083. white-space:nowrap;
  1084. text-transform:none;
  1085. }
  1086. #u131707_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. #u131707 {
  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. #u131707 .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. #u131707_text {
  1135. border-width:0px;
  1136. white-space:nowrap;
  1137. text-transform:none;
  1138. }
  1139. #u131708_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. #u131708 {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:1393px;
  1163. top:231px;
  1164. width:375px;
  1165. height:90px;
  1166. display:flex;
  1167. }
  1168. #u131708 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:2px 2px 2px 2px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u131708_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. visibility:hidden;
  1180. }
  1181. #u131709_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. #u131709 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:1470px;
  1210. top:275px;
  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. #u131709 .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. #u131709_text {
  1228. border-width:0px;
  1229. white-space:nowrap;
  1230. text-transform:none;
  1231. }
  1232. #u131710_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. #u131710 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1470px;
  1262. top:250px;
  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. #u131710 .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. #u131710_text {
  1281. border-width:0px;
  1282. white-space:nowrap;
  1283. text-transform:none;
  1284. }
  1285. #u131711_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. #u131711 {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:1393px;
  1309. top:322px;
  1310. width:375px;
  1311. height:90px;
  1312. display:flex;
  1313. }
  1314. #u131711 .text {
  1315. position:absolute;
  1316. align-self:center;
  1317. padding:2px 2px 2px 2px;
  1318. box-sizing:border-box;
  1319. width:100%;
  1320. }
  1321. #u131711_text {
  1322. border-width:0px;
  1323. word-wrap:break-word;
  1324. text-transform:none;
  1325. visibility:hidden;
  1326. }
  1327. #u131712_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. #u131712 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:1470px;
  1356. top:366px;
  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. #u131712 .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. #u131712_text {
  1374. border-width:0px;
  1375. white-space:nowrap;
  1376. text-transform:none;
  1377. }
  1378. #u131713_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. #u131713 {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:1470px;
  1408. top:341px;
  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. #u131713 .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. #u131713_text {
  1427. border-width:0px;
  1428. white-space:nowrap;
  1429. text-transform:none;
  1430. }
  1431. #u131714_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. #u131714 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:1393px;
  1455. top:413px;
  1456. width:375px;
  1457. height:90px;
  1458. display:flex;
  1459. }
  1460. #u131714 .text {
  1461. position:absolute;
  1462. align-self:center;
  1463. padding:2px 2px 2px 2px;
  1464. box-sizing:border-box;
  1465. width:100%;
  1466. }
  1467. #u131714_text {
  1468. border-width:0px;
  1469. word-wrap:break-word;
  1470. text-transform:none;
  1471. visibility:hidden;
  1472. }
  1473. #u131715_div {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:177px;
  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. #u131715 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:1470px;
  1502. top:457px;
  1503. width:177px;
  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. #u131715 .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. #u131715_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u131716_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. #u131716 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:1470px;
  1554. top:432px;
  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. #u131716 .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. #u131716_text {
  1573. border-width:0px;
  1574. white-space:nowrap;
  1575. text-transform:none;
  1576. }
  1577. #u131717_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. #u131717 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:1393px;
  1601. top:504px;
  1602. width:375px;
  1603. height:90px;
  1604. display:flex;
  1605. }
  1606. #u131717 .text {
  1607. position:absolute;
  1608. align-self:center;
  1609. padding:2px 2px 2px 2px;
  1610. box-sizing:border-box;
  1611. width:100%;
  1612. }
  1613. #u131717_text {
  1614. border-width:0px;
  1615. word-wrap:break-word;
  1616. text-transform:none;
  1617. visibility:hidden;
  1618. }
  1619. #u131718_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. #u131718 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:1470px;
  1648. top:519px;
  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. #u131718 .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. #u131718_text {
  1666. border-width:0px;
  1667. white-space:nowrap;
  1668. text-transform:none;
  1669. }
  1670. #u131719_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. #u131719 {
  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. #u131719 .text {
  1705. position:absolute;
  1706. align-self:center;
  1707. padding:2px 2px 2px 2px;
  1708. box-sizing:border-box;
  1709. width:100%;
  1710. }
  1711. #u131719_text {
  1712. border-width:0px;
  1713. word-wrap:break-word;
  1714. text-transform:none;
  1715. }
  1716. #u131721_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:433px;
  1722. height:865px;
  1723. }
  1724. #u131721 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:1822px;
  1728. top:0px;
  1729. width:433px;
  1730. height:865px;
  1731. display:flex;
  1732. }
  1733. #u131721 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u131721_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u131722_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. #u131722 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:1851px;
  1773. top:67px;
  1774. width:375px;
  1775. height:40px;
  1776. display:flex;
  1777. }
  1778. #u131722 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u131722_text {
  1786. border-width:0px;
  1787. word-wrap:break-word;
  1788. text-transform:none;
  1789. visibility:hidden;
  1790. }
  1791. #u131723 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:0px;
  1797. height:0px;
  1798. }
  1799. #u131724_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. #u131724 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:2131px;
  1821. top:71px;
  1822. width:88px;
  1823. height:32px;
  1824. display:flex;
  1825. }
  1826. #u131724 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:2px 2px 2px 2px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u131724_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. visibility:hidden;
  1838. }
  1839. #u131725 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:0px;
  1845. height:0px;
  1846. }
  1847. #u131726_img {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:18px;
  1853. height:18px;
  1854. }
  1855. #u131726 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:2194px;
  1859. top:78px;
  1860. width:18px;
  1861. height:18px;
  1862. display:flex;
  1863. }
  1864. #u131726 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:2px 2px 2px 2px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u131726_text {
  1872. border-width:0px;
  1873. word-wrap:break-word;
  1874. text-transform:none;
  1875. visibility:hidden;
  1876. }
  1877. #u131727_img {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:6px;
  1883. height:6px;
  1884. }
  1885. #u131727 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:2200px;
  1889. top:84px;
  1890. width:6px;
  1891. height:6px;
  1892. display:flex;
  1893. }
  1894. #u131727 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 2px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u131727_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. visibility:hidden;
  1906. }
  1907. #u131728 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:0px;
  1912. width:0px;
  1913. height:0px;
  1914. }
  1915. #u131729_img {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:5px;
  1921. height:5px;
  1922. }
  1923. #u131729 {
  1924. border-width:0px;
  1925. position:absolute;
  1926. left:2145px;
  1927. top:85px;
  1928. width:5px;
  1929. height:5px;
  1930. display:flex;
  1931. }
  1932. #u131729 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 2px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u131729_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. visibility:hidden;
  1944. }
  1945. #u131730_img {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:5px;
  1951. height:5px;
  1952. }
  1953. #u131730 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:2161px;
  1957. top:85px;
  1958. width:5px;
  1959. height:5px;
  1960. display:flex;
  1961. }
  1962. #u131730 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u131730_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. visibility:hidden;
  1974. }
  1975. #u131731_img {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:7px;
  1981. height:7px;
  1982. }
  1983. #u131731 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:2152px;
  1987. top:84px;
  1988. width:7px;
  1989. height:7px;
  1990. display:flex;
  1991. }
  1992. #u131731 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u131731_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u131732_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:19px;
  2011. height:2px;
  2012. }
  2013. #u131732 {
  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. #u131732 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 2px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u131732_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. visibility:hidden;
  2038. }
  2039. #u131733_img {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:375px;
  2045. height:44px;
  2046. }
  2047. #u131733 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:1851px;
  2051. top:24px;
  2052. width:375px;
  2053. height:44px;
  2054. display:flex;
  2055. }
  2056. #u131733 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 2px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u131733_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u131734_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. #u131734 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:1851px;
  2093. top:788px;
  2094. width:375px;
  2095. height:50px;
  2096. display:flex;
  2097. }
  2098. #u131734 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u131734_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u131735 {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:0px;
  2117. height:0px;
  2118. }
  2119. #u131736_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:24px;
  2125. height:24px;
  2126. }
  2127. #u131736 {
  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. #u131736 .text {
  2138. position:absolute;
  2139. align-self:center;
  2140. padding:2px 2px 2px 2px;
  2141. box-sizing:border-box;
  2142. width:100%;
  2143. }
  2144. #u131736_text {
  2145. border-width:0px;
  2146. word-wrap:break-word;
  2147. text-transform:none;
  2148. }
  2149. #u131737_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. #u131737 {
  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. #u131737 .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. #u131737_text {
  2189. border-width:0px;
  2190. white-space:nowrap;
  2191. text-transform:none;
  2192. }
  2193. #u131738 {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:0px;
  2199. height:0px;
  2200. }
  2201. #u131739_img {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:24px;
  2207. height:24px;
  2208. }
  2209. #u131739 {
  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. #u131739 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u131739_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u131740_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. #u131740 {
  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. #u131740 .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. #u131740_text {
  2271. border-width:0px;
  2272. white-space:nowrap;
  2273. text-transform:none;
  2274. }
  2275. #u131741_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. #u131741 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:1851px;
  2294. top:107px;
  2295. width:375px;
  2296. height:681px;
  2297. display:flex;
  2298. }
  2299. #u131741 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 2px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u131741_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. visibility:hidden;
  2311. }
  2312. #u131742 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:0px;
  2318. height:0px;
  2319. }
  2320. #u131743_img {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:0px;
  2324. top:0px;
  2325. width:24px;
  2326. height:24px;
  2327. }
  2328. #u131743 {
  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. #u131743 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 2px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u131743_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. }
  2350. #u131744_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. #u131744 {
  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. #u131744 .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. #u131744_text {
  2390. border-width:0px;
  2391. white-space:nowrap;
  2392. text-transform:none;
  2393. }
  2394. #u131745 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:0px;
  2400. height:0px;
  2401. }
  2402. #u131746_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:24px;
  2408. height:24px;
  2409. }
  2410. #u131746 {
  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. #u131746 .text {
  2421. position:absolute;
  2422. align-self:center;
  2423. padding:2px 2px 2px 2px;
  2424. box-sizing:border-box;
  2425. width:100%;
  2426. }
  2427. #u131746_text {
  2428. border-width:0px;
  2429. word-wrap:break-word;
  2430. text-transform:none;
  2431. }
  2432. #u131747_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. #u131747 {
  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. #u131747 .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. #u131747_text {
  2472. border-width:0px;
  2473. white-space:nowrap;
  2474. text-transform:none;
  2475. }
  2476. #u131748_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. #u131748 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:1851px;
  2498. top:105px;
  2499. width:375px;
  2500. height:735px;
  2501. display:flex;
  2502. }
  2503. #u131748 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 2px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u131748_text {
  2511. border-width:0px;
  2512. word-wrap:break-word;
  2513. text-transform:none;
  2514. visibility:hidden;
  2515. }
  2516. #u131749_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. #u131749 {
  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. #u131749 .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. #u131749_text {
  2563. border-width:0px;
  2564. white-space:nowrap;
  2565. text-transform:none;
  2566. }
  2567. #u131750 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:0px;
  2573. height:0px;
  2574. }
  2575. #u131751_img {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:0px;
  2579. top:0px;
  2580. width:11px;
  2581. height:18px;
  2582. }
  2583. #u131751 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:1864px;
  2587. top:79px;
  2588. width:11px;
  2589. height:18px;
  2590. display:flex;
  2591. }
  2592. #u131751 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:2px 2px 2px 2px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u131751_text {
  2600. border-width:0px;
  2601. word-wrap:break-word;
  2602. text-transform:none;
  2603. visibility:hidden;
  2604. }
  2605. #u131752_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. #u131752 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:1851px;
  2629. top:115px;
  2630. width:375px;
  2631. height:115px;
  2632. display:flex;
  2633. }
  2634. #u131752 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 2px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u131752_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u131753_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:40px;
  2653. height:40px;
  2654. }
  2655. #u131753 {
  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. #u131753 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u131753_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. }
  2679. #u131754_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. #u131754 {
  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. #u131754 .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. #u131754_text {
  2726. border-width:0px;
  2727. white-space:nowrap;
  2728. text-transform:none;
  2729. }
  2730. #u131755_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. #u131755 {
  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. #u131755 .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. #u131755_text {
  2779. border-width:0px;
  2780. white-space:nowrap;
  2781. text-transform:none;
  2782. }
  2783. #u131756_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. #u131756 {
  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. #u131756 .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. #u131756_text {
  2832. border-width:0px;
  2833. white-space:nowrap;
  2834. text-transform:none;
  2835. }
  2836. #u131757_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. #u131757 {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:1851px;
  2860. top:231px;
  2861. width:375px;
  2862. height:90px;
  2863. display:flex;
  2864. }
  2865. #u131757 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 2px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u131757_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u131758_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. #u131758 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:1928px;
  2907. top:275px;
  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. #u131758 .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. #u131758_text {
  2925. border-width:0px;
  2926. white-space:nowrap;
  2927. text-transform:none;
  2928. }
  2929. #u131759_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. #u131759 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:1928px;
  2959. top:250px;
  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. #u131759 .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. #u131759_text {
  2978. border-width:0px;
  2979. white-space:nowrap;
  2980. text-transform:none;
  2981. }
  2982. #u131760_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. #u131760 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:1851px;
  3006. top:322px;
  3007. width:375px;
  3008. height:90px;
  3009. display:flex;
  3010. }
  3011. #u131760 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 2px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u131760_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u131761_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. #u131761 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:1928px;
  3053. top:366px;
  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. #u131761 .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. #u131761_text {
  3071. border-width:0px;
  3072. white-space:nowrap;
  3073. text-transform:none;
  3074. }
  3075. #u131762_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. #u131762 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:1928px;
  3105. top:341px;
  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. #u131762 .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. #u131762_text {
  3124. border-width:0px;
  3125. white-space:nowrap;
  3126. text-transform:none;
  3127. }
  3128. #u131763_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. #u131763 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:1851px;
  3152. top:413px;
  3153. width:375px;
  3154. height:90px;
  3155. display:flex;
  3156. }
  3157. #u131763 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u131763_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u131764_div {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:177px;
  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. #u131764 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:1928px;
  3199. top:457px;
  3200. width:177px;
  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. #u131764 .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. #u131764_text {
  3217. border-width:0px;
  3218. white-space:nowrap;
  3219. text-transform:none;
  3220. }
  3221. #u131765_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. #u131765 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:1928px;
  3251. top:432px;
  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. #u131765 .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. #u131765_text {
  3270. border-width:0px;
  3271. white-space:nowrap;
  3272. text-transform:none;
  3273. }
  3274. #u131766_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. #u131766 {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:1851px;
  3298. top:504px;
  3299. width:375px;
  3300. height:60px;
  3301. display:flex;
  3302. }
  3303. #u131766 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 2px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u131766_text {
  3311. border-width:0px;
  3312. word-wrap:break-word;
  3313. text-transform:none;
  3314. visibility:hidden;
  3315. }
  3316. #u131767_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. #u131767 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:1928px;
  3345. top:519px;
  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. #u131767 .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. #u131767_text {
  3363. border-width:0px;
  3364. white-space:nowrap;
  3365. text-transform:none;
  3366. }
  3367. #u131768_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. #u131768 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:2052px;
  3391. top:584px;
  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. #u131768 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 2px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u131768_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. }
  3413. #u131769_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. #u131769 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:1888px;
  3439. top:584px;
  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. #u131769 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:2px 2px 2px 2px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u131769_text {
  3456. border-width:0px;
  3457. word-wrap:break-word;
  3458. text-transform:none;
  3459. }
  3460. #u131771_img {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:433px;
  3466. height:865px;
  3467. }
  3468. #u131771 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:0px;
  3472. top:0px;
  3473. width:433px;
  3474. height:865px;
  3475. display:flex;
  3476. }
  3477. #u131771 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 2px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u131771_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u131772_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. #u131772 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:29px;
  3517. top:67px;
  3518. width:375px;
  3519. height:40px;
  3520. display:flex;
  3521. }
  3522. #u131772 .text {
  3523. position:absolute;
  3524. align-self:center;
  3525. padding:2px 2px 2px 2px;
  3526. box-sizing:border-box;
  3527. width:100%;
  3528. }
  3529. #u131772_text {
  3530. border-width:0px;
  3531. word-wrap:break-word;
  3532. text-transform:none;
  3533. visibility:hidden;
  3534. }
  3535. #u131773 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:0px;
  3541. height:0px;
  3542. }
  3543. #u131774_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. #u131774 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:309px;
  3565. top:71px;
  3566. width:88px;
  3567. height:32px;
  3568. display:flex;
  3569. }
  3570. #u131774 .text {
  3571. position:absolute;
  3572. align-self:center;
  3573. padding:2px 2px 2px 2px;
  3574. box-sizing:border-box;
  3575. width:100%;
  3576. }
  3577. #u131774_text {
  3578. border-width:0px;
  3579. word-wrap:break-word;
  3580. text-transform:none;
  3581. visibility:hidden;
  3582. }
  3583. #u131775 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:0px;
  3589. height:0px;
  3590. }
  3591. #u131776_img {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:0px;
  3595. top:0px;
  3596. width:18px;
  3597. height:18px;
  3598. }
  3599. #u131776 {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:372px;
  3603. top:78px;
  3604. width:18px;
  3605. height:18px;
  3606. display:flex;
  3607. }
  3608. #u131776 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:2px 2px 2px 2px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u131776_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. visibility:hidden;
  3620. }
  3621. #u131777_img {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:6px;
  3627. height:6px;
  3628. }
  3629. #u131777 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:378px;
  3633. top:84px;
  3634. width:6px;
  3635. height:6px;
  3636. display:flex;
  3637. }
  3638. #u131777 .text {
  3639. position:absolute;
  3640. align-self:center;
  3641. padding:2px 2px 2px 2px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u131777_text {
  3646. border-width:0px;
  3647. word-wrap:break-word;
  3648. text-transform:none;
  3649. visibility:hidden;
  3650. }
  3651. #u131778 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:0px;
  3657. height:0px;
  3658. }
  3659. #u131779_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:5px;
  3665. height:5px;
  3666. }
  3667. #u131779 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:323px;
  3671. top:85px;
  3672. width:5px;
  3673. height:5px;
  3674. display:flex;
  3675. }
  3676. #u131779 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 2px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u131779_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. visibility:hidden;
  3688. }
  3689. #u131780_img {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:5px;
  3695. height:5px;
  3696. }
  3697. #u131780 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:339px;
  3701. top:85px;
  3702. width:5px;
  3703. height:5px;
  3704. display:flex;
  3705. }
  3706. #u131780 .text {
  3707. position:absolute;
  3708. align-self:center;
  3709. padding:2px 2px 2px 2px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u131780_text {
  3714. border-width:0px;
  3715. word-wrap:break-word;
  3716. text-transform:none;
  3717. visibility:hidden;
  3718. }
  3719. #u131781_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:7px;
  3725. height:7px;
  3726. }
  3727. #u131781 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:330px;
  3731. top:84px;
  3732. width:7px;
  3733. height:7px;
  3734. display:flex;
  3735. }
  3736. #u131781 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 2px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u131781_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u131782_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:19px;
  3755. height:2px;
  3756. }
  3757. #u131782 {
  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. #u131782 .text {
  3771. position:absolute;
  3772. align-self:center;
  3773. padding:2px 2px 2px 2px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u131782_text {
  3778. border-width:0px;
  3779. word-wrap:break-word;
  3780. text-transform:none;
  3781. visibility:hidden;
  3782. }
  3783. #u131783_img {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:0px;
  3787. top:0px;
  3788. width:375px;
  3789. height:44px;
  3790. }
  3791. #u131783 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:29px;
  3795. top:24px;
  3796. width:375px;
  3797. height:44px;
  3798. display:flex;
  3799. }
  3800. #u131783 .text {
  3801. position:absolute;
  3802. align-self:center;
  3803. padding:2px 2px 2px 2px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u131783_text {
  3808. border-width:0px;
  3809. word-wrap:break-word;
  3810. text-transform:none;
  3811. visibility:hidden;
  3812. }
  3813. #u131784_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. #u131784 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:29px;
  3837. top:788px;
  3838. width:375px;
  3839. height:50px;
  3840. display:flex;
  3841. }
  3842. #u131784 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 2px 2px 2px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u131784_text {
  3850. border-width:0px;
  3851. word-wrap:break-word;
  3852. text-transform:none;
  3853. visibility:hidden;
  3854. }
  3855. #u131785 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:0px;
  3861. height:0px;
  3862. }
  3863. #u131786_img {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:24px;
  3869. height:24px;
  3870. }
  3871. #u131786 {
  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. #u131786 .text {
  3882. position:absolute;
  3883. align-self:center;
  3884. padding:2px 2px 2px 2px;
  3885. box-sizing:border-box;
  3886. width:100%;
  3887. }
  3888. #u131786_text {
  3889. border-width:0px;
  3890. word-wrap:break-word;
  3891. text-transform:none;
  3892. }
  3893. #u131787_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. #u131787 {
  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. #u131787 .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. #u131787_text {
  3933. border-width:0px;
  3934. white-space:nowrap;
  3935. text-transform:none;
  3936. }
  3937. #u131788 {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:0px;
  3941. top:0px;
  3942. width:0px;
  3943. height:0px;
  3944. }
  3945. #u131789_img {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:24px;
  3951. height:24px;
  3952. }
  3953. #u131789 {
  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. #u131789 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 2px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u131789_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. }
  3975. #u131790_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. #u131790 {
  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. #u131790 .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. #u131790_text {
  4015. border-width:0px;
  4016. white-space:nowrap;
  4017. text-transform:none;
  4018. }
  4019. #u131791_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. #u131791 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:29px;
  4038. top:107px;
  4039. width:375px;
  4040. height:681px;
  4041. display:flex;
  4042. }
  4043. #u131791 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 2px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u131791_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u131792 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:0px;
  4062. height:0px;
  4063. }
  4064. #u131793_img {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:24px;
  4070. height:24px;
  4071. }
  4072. #u131793 {
  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. #u131793 .text {
  4083. position:absolute;
  4084. align-self:center;
  4085. padding:2px 2px 2px 2px;
  4086. box-sizing:border-box;
  4087. width:100%;
  4088. }
  4089. #u131793_text {
  4090. border-width:0px;
  4091. word-wrap:break-word;
  4092. text-transform:none;
  4093. }
  4094. #u131794_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. #u131794 {
  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. #u131794 .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. #u131794_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u131795 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:0px;
  4144. height:0px;
  4145. }
  4146. #u131796_img {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:24px;
  4152. height:24px;
  4153. }
  4154. #u131796 {
  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. #u131796 .text {
  4165. position:absolute;
  4166. align-self:center;
  4167. padding:2px 2px 2px 2px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u131796_text {
  4172. border-width:0px;
  4173. word-wrap:break-word;
  4174. text-transform:none;
  4175. }
  4176. #u131797_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. #u131797 {
  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. #u131797 .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. #u131797_text {
  4216. border-width:0px;
  4217. white-space:nowrap;
  4218. text-transform:none;
  4219. }
  4220. #u131798_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. #u131798 {
  4239. border-width:0px;
  4240. position:absolute;
  4241. left:29px;
  4242. top:105px;
  4243. width:375px;
  4244. height:735px;
  4245. display:flex;
  4246. }
  4247. #u131798 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 2px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u131798_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u131799_div {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:71px;
  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. #u131799 {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:181px;
  4289. top:73px;
  4290. width:71px;
  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. #u131799 .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. #u131799_text {
  4307. border-width:0px;
  4308. white-space:nowrap;
  4309. text-transform:none;
  4310. }
  4311. #u131800 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:0px;
  4317. height:0px;
  4318. }
  4319. #u131801_img {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:11px;
  4325. height:18px;
  4326. }
  4327. #u131801 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:42px;
  4331. top:79px;
  4332. width:11px;
  4333. height:18px;
  4334. display:flex;
  4335. }
  4336. #u131801 .text {
  4337. position:absolute;
  4338. align-self:center;
  4339. padding:2px 2px 2px 2px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u131801_text {
  4344. border-width:0px;
  4345. word-wrap:break-word;
  4346. text-transform:none;
  4347. visibility:hidden;
  4348. }
  4349. #u131802_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. #u131802 {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:29px;
  4373. top:305px;
  4374. width:375px;
  4375. height:140px;
  4376. display:flex;
  4377. }
  4378. #u131802 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u131802_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u131803_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:181px;
  4397. height:25px;
  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. #u131803 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:46px;
  4421. top:369px;
  4422. width:181px;
  4423. height:25px;
  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. #u131803 .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. #u131803_text {
  4440. border-width:0px;
  4441. white-space:nowrap;
  4442. text-transform:none;
  4443. }
  4444. #u131804_img {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:40px;
  4450. height:40px;
  4451. }
  4452. #u131804 {
  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. #u131804 .text {
  4465. position:absolute;
  4466. align-self:center;
  4467. padding:2px 2px 2px 2px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u131804_text {
  4472. border-width:0px;
  4473. word-wrap:break-word;
  4474. text-transform:none;
  4475. }
  4476. #u131805_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. #u131805 {
  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. #u131805 .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. #u131805_text {
  4523. border-width:0px;
  4524. white-space:nowrap;
  4525. text-transform:none;
  4526. }
  4527. #u131806_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. #u131806 {
  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. #u131806 .text {
  4562. position:absolute;
  4563. align-self:center;
  4564. padding:2px 2px 2px 2px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u131806_text {
  4569. border-width:0px;
  4570. word-wrap:break-word;
  4571. text-transform:none;
  4572. }
  4573. #u131807_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. #u131807 {
  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. #u131807 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:2px 2px 2px 2px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u131807_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. }
  4620. #u131808 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:0px;
  4626. height:0px;
  4627. }
  4628. #u131809_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. #u131809 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:29px;
  4647. top:105px;
  4648. width:375px;
  4649. height:40px;
  4650. display:flex;
  4651. }
  4652. #u131809 .text {
  4653. position:absolute;
  4654. align-self:center;
  4655. padding:2px 2px 2px 2px;
  4656. box-sizing:border-box;
  4657. width:100%;
  4658. }
  4659. #u131809_text {
  4660. border-width:0px;
  4661. word-wrap:break-word;
  4662. text-transform:none;
  4663. visibility:hidden;
  4664. }
  4665. #u131810_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. #u131810 {
  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. #u131810 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:0px 0px 0px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u131810_text {
  4712. border-width:0px;
  4713. white-space:nowrap;
  4714. text-transform:none;
  4715. }
  4716. #u131811_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. #u131811 {
  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. #u131811 .text {
  4756. position:absolute;
  4757. align-self:center;
  4758. padding:0px 0px 0px 0px;
  4759. box-sizing:border-box;
  4760. width:100%;
  4761. }
  4762. #u131811_text {
  4763. border-width:0px;
  4764. white-space:nowrap;
  4765. text-transform:none;
  4766. }
  4767. #u131812_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. #u131812 {
  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. #u131812 .text {
  4810. position:absolute;
  4811. align-self:center;
  4812. padding:0px 0px 0px 0px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u131812_text {
  4817. border-width:0px;
  4818. white-space:nowrap;
  4819. text-transform:none;
  4820. }
  4821. #u131814_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:433px;
  4827. height:865px;
  4828. }
  4829. #u131814 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:453px;
  4833. top:0px;
  4834. width:433px;
  4835. height:865px;
  4836. display:flex;
  4837. }
  4838. #u131814 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 2px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u131814_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u131815_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. #u131815 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:482px;
  4878. top:67px;
  4879. width:375px;
  4880. height:40px;
  4881. display:flex;
  4882. }
  4883. #u131815 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 2px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u131815_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u131816 {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:0px;
  4902. height:0px;
  4903. }
  4904. #u131817_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. #u131817 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:762px;
  4926. top:71px;
  4927. width:88px;
  4928. height:32px;
  4929. display:flex;
  4930. }
  4931. #u131817 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 2px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u131817_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. visibility:hidden;
  4943. }
  4944. #u131818 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:0px;
  4950. height:0px;
  4951. }
  4952. #u131819_img {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:18px;
  4958. height:18px;
  4959. }
  4960. #u131819 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:825px;
  4964. top:78px;
  4965. width:18px;
  4966. height:18px;
  4967. display:flex;
  4968. }
  4969. #u131819 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:2px 2px 2px 2px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u131819_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. visibility:hidden;
  4981. }
  4982. #u131820_img {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:6px;
  4988. height:6px;
  4989. }
  4990. #u131820 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:831px;
  4994. top:84px;
  4995. width:6px;
  4996. height:6px;
  4997. display:flex;
  4998. }
  4999. #u131820 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:2px 2px 2px 2px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u131820_text {
  5007. border-width:0px;
  5008. word-wrap:break-word;
  5009. text-transform:none;
  5010. visibility:hidden;
  5011. }
  5012. #u131821 {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:0px;
  5018. height:0px;
  5019. }
  5020. #u131822_img {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:5px;
  5026. height:5px;
  5027. }
  5028. #u131822 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:776px;
  5032. top:85px;
  5033. width:5px;
  5034. height:5px;
  5035. display:flex;
  5036. }
  5037. #u131822 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 2px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u131822_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u131823_img {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:5px;
  5056. height:5px;
  5057. }
  5058. #u131823 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:792px;
  5062. top:85px;
  5063. width:5px;
  5064. height:5px;
  5065. display:flex;
  5066. }
  5067. #u131823 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 2px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u131823_text {
  5075. border-width:0px;
  5076. word-wrap:break-word;
  5077. text-transform:none;
  5078. visibility:hidden;
  5079. }
  5080. #u131824_img {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:7px;
  5086. height:7px;
  5087. }
  5088. #u131824 {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:783px;
  5092. top:84px;
  5093. width:7px;
  5094. height:7px;
  5095. display:flex;
  5096. }
  5097. #u131824 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 2px 2px 2px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u131824_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u131825_img {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:19px;
  5116. height:2px;
  5117. }
  5118. #u131825 {
  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. #u131825 .text {
  5132. position:absolute;
  5133. align-self:center;
  5134. padding:2px 2px 2px 2px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u131825_text {
  5139. border-width:0px;
  5140. word-wrap:break-word;
  5141. text-transform:none;
  5142. visibility:hidden;
  5143. }
  5144. #u131826_img {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:375px;
  5150. height:44px;
  5151. }
  5152. #u131826 {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:482px;
  5156. top:24px;
  5157. width:375px;
  5158. height:44px;
  5159. display:flex;
  5160. }
  5161. #u131826 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 2px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u131826_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u131827_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. #u131827 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:482px;
  5198. top:788px;
  5199. width:375px;
  5200. height:50px;
  5201. display:flex;
  5202. }
  5203. #u131827 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 2px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u131827_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. visibility:hidden;
  5215. }
  5216. #u131828 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:0px;
  5222. height:0px;
  5223. }
  5224. #u131829_img {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:0px;
  5229. width:24px;
  5230. height:24px;
  5231. }
  5232. #u131829 {
  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. #u131829 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:2px 2px 2px 2px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u131829_text {
  5250. border-width:0px;
  5251. word-wrap:break-word;
  5252. text-transform:none;
  5253. }
  5254. #u131830_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. #u131830 {
  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. #u131830 .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. #u131830_text {
  5294. border-width:0px;
  5295. white-space:nowrap;
  5296. text-transform:none;
  5297. }
  5298. #u131831 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:0px;
  5304. height:0px;
  5305. }
  5306. #u131832_img {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:24px;
  5312. height:24px;
  5313. }
  5314. #u131832 {
  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. #u131832 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:2px 2px 2px 2px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u131832_text {
  5332. border-width:0px;
  5333. word-wrap:break-word;
  5334. text-transform:none;
  5335. }
  5336. #u131833_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. #u131833 {
  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. #u131833 .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. #u131833_text {
  5376. border-width:0px;
  5377. white-space:nowrap;
  5378. text-transform:none;
  5379. }
  5380. #u131834_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. #u131834 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:482px;
  5399. top:107px;
  5400. width:375px;
  5401. height:681px;
  5402. display:flex;
  5403. }
  5404. #u131834 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:2px 2px 2px 2px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u131834_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u131835 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:0px;
  5423. height:0px;
  5424. }
  5425. #u131836_img {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:24px;
  5431. height:24px;
  5432. }
  5433. #u131836 {
  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. #u131836 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:2px 2px 2px 2px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u131836_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. }
  5455. #u131837_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. #u131837 {
  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. #u131837 .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. #u131837_text {
  5495. border-width:0px;
  5496. white-space:nowrap;
  5497. text-transform:none;
  5498. }
  5499. #u131838 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:0px;
  5505. height:0px;
  5506. }
  5507. #u131839_img {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:24px;
  5513. height:24px;
  5514. }
  5515. #u131839 {
  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. #u131839 .text {
  5526. position:absolute;
  5527. align-self:center;
  5528. padding:2px 2px 2px 2px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u131839_text {
  5533. border-width:0px;
  5534. word-wrap:break-word;
  5535. text-transform:none;
  5536. }
  5537. #u131840_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. #u131840 {
  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. #u131840 .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. #u131840_text {
  5577. border-width:0px;
  5578. white-space:nowrap;
  5579. text-transform:none;
  5580. }
  5581. #u131841_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. #u131841 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:482px;
  5603. top:105px;
  5604. width:375px;
  5605. height:735px;
  5606. display:flex;
  5607. }
  5608. #u131841 .text {
  5609. position:absolute;
  5610. align-self:center;
  5611. padding:2px 2px 2px 2px;
  5612. box-sizing:border-box;
  5613. width:100%;
  5614. }
  5615. #u131841_text {
  5616. border-width:0px;
  5617. word-wrap:break-word;
  5618. text-transform:none;
  5619. visibility:hidden;
  5620. }
  5621. #u131842_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:71px;
  5627. height:30px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 0);
  5630. border:none;
  5631. border-left:0px;
  5632. border-top:0px;
  5633. border-right:0px;
  5634. border-radius:0px;
  5635. border-bottom-right-radius:0px;
  5636. border-bottom-left-radius:0px;
  5637. -moz-box-shadow:none;
  5638. -webkit-box-shadow:none;
  5639. box-shadow:none;
  5640. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5641. font-weight:500;
  5642. font-style:normal;
  5643. font-size:14px;
  5644. line-height:30px;
  5645. }
  5646. #u131842 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:634px;
  5650. top:73px;
  5651. width:71px;
  5652. height:30px;
  5653. display:flex;
  5654. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5655. font-weight:500;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. line-height:30px;
  5659. }
  5660. #u131842 .text {
  5661. position:absolute;
  5662. align-self:flex-start;
  5663. padding:0px 0px 0px 0px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u131842_text {
  5668. border-width:0px;
  5669. white-space:nowrap;
  5670. text-transform:none;
  5671. }
  5672. #u131843 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:0px;
  5678. height:0px;
  5679. }
  5680. #u131844_img {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:11px;
  5686. height:18px;
  5687. }
  5688. #u131844 {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:495px;
  5692. top:79px;
  5693. width:11px;
  5694. height:18px;
  5695. display:flex;
  5696. }
  5697. #u131844 .text {
  5698. position:absolute;
  5699. align-self:center;
  5700. padding:2px 2px 2px 2px;
  5701. box-sizing:border-box;
  5702. width:100%;
  5703. }
  5704. #u131844_text {
  5705. border-width:0px;
  5706. word-wrap:break-word;
  5707. text-transform:none;
  5708. visibility:hidden;
  5709. }
  5710. #u131845 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:0px;
  5716. height:0px;
  5717. }
  5718. #u131846_div {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:375px;
  5724. height:140px;
  5725. background:inherit;
  5726. background-color:rgba(255, 255, 255, 1);
  5727. border:none;
  5728. border-left:0px;
  5729. border-top:0px;
  5730. border-right:0px;
  5731. border-radius:0px;
  5732. border-bottom-right-radius:0px;
  5733. border-bottom-left-radius:0px;
  5734. -moz-box-shadow:none;
  5735. -webkit-box-shadow:none;
  5736. box-shadow:none;
  5737. }
  5738. #u131846 {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:482px;
  5742. top:155px;
  5743. width:375px;
  5744. height:140px;
  5745. display:flex;
  5746. }
  5747. #u131846 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 2px 2px 2px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u131846_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u131847_div {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:181px;
  5766. height:25px;
  5767. background:inherit;
  5768. background-color:rgba(255, 255, 255, 0);
  5769. border:none;
  5770. border-left:0px;
  5771. border-top:0px;
  5772. border-right:0px;
  5773. border-radius:0px;
  5774. border-bottom-right-radius:0px;
  5775. border-bottom-left-radius:0px;
  5776. -moz-box-shadow:none;
  5777. -webkit-box-shadow:none;
  5778. box-shadow:none;
  5779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5780. font-weight:400;
  5781. font-style:normal;
  5782. font-size:12px;
  5783. color:#7F7F7F;
  5784. line-height:25px;
  5785. }
  5786. #u131847 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:499px;
  5790. top:219px;
  5791. width:181px;
  5792. height:25px;
  5793. display:flex;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:12px;
  5798. color:#7F7F7F;
  5799. line-height:25px;
  5800. }
  5801. #u131847 .text {
  5802. position:absolute;
  5803. align-self:flex-start;
  5804. padding:0px 0px 0px 0px;
  5805. box-sizing:border-box;
  5806. width:100%;
  5807. }
  5808. #u131847_text {
  5809. border-width:0px;
  5810. white-space:nowrap;
  5811. text-transform:none;
  5812. }
  5813. #u131848_img {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:40px;
  5819. height:40px;
  5820. }
  5821. #u131848 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:499px;
  5825. top:171px;
  5826. width:40px;
  5827. height:40px;
  5828. display:flex;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. }
  5833. #u131848 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 2px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u131848_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. }
  5845. #u131849_div {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:33px;
  5851. height:30px;
  5852. background:inherit;
  5853. background-color:rgba(255, 255, 255, 0);
  5854. border:none;
  5855. border-left:0px;
  5856. border-top:0px;
  5857. border-right:0px;
  5858. border-radius:0px;
  5859. border-bottom-right-radius:0px;
  5860. border-bottom-left-radius:0px;
  5861. -moz-box-shadow:none;
  5862. -webkit-box-shadow:none;
  5863. box-shadow:none;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:16px;
  5868. line-height:30px;
  5869. }
  5870. #u131849 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:559px;
  5874. top:176px;
  5875. width:33px;
  5876. height:30px;
  5877. display:flex;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:16px;
  5882. line-height:30px;
  5883. }
  5884. #u131849 .text {
  5885. position:absolute;
  5886. align-self:flex-start;
  5887. padding:0px 0px 0px 0px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u131849_text {
  5892. border-width:0px;
  5893. white-space:nowrap;
  5894. text-transform:none;
  5895. }
  5896. #u131850_div {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:85px;
  5902. height:30px;
  5903. background:inherit;
  5904. background-color:rgba(242, 242, 242, 1);
  5905. border:none;
  5906. border-radius:40px;
  5907. -moz-box-shadow:none;
  5908. -webkit-box-shadow:none;
  5909. box-shadow:none;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:12px;
  5914. color:#7F7F7F;
  5915. }
  5916. #u131850 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:752px;
  5920. top:255px;
  5921. width:85px;
  5922. height:30px;
  5923. display:flex;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:12px;
  5928. color:#7F7F7F;
  5929. }
  5930. #u131850 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:2px 2px 2px 2px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u131850_text {
  5938. border-width:0px;
  5939. word-wrap:break-word;
  5940. text-transform:none;
  5941. }
  5942. #u131851 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:0px;
  5948. height:0px;
  5949. }
  5950. #u131852_div {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:375px;
  5956. height:40px;
  5957. background:inherit;
  5958. background-color:rgba(255, 255, 255, 1);
  5959. border:none;
  5960. border-radius:0px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. }
  5965. #u131852 {
  5966. border-width:0px;
  5967. position:absolute;
  5968. left:482px;
  5969. top:105px;
  5970. width:375px;
  5971. height:40px;
  5972. display:flex;
  5973. }
  5974. #u131852 .text {
  5975. position:absolute;
  5976. align-self:center;
  5977. padding:2px 2px 2px 2px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u131852_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. visibility:hidden;
  5986. }
  5987. #u131853_div {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:43px;
  5993. height:40px;
  5994. background:inherit;
  5995. background-color:rgba(255, 255, 255, 0);
  5996. box-sizing:border-box;
  5997. border-width:2px;
  5998. border-style:solid;
  5999. border-color:rgba(51, 51, 51, 1);
  6000. border-left:0px;
  6001. border-top:0px;
  6002. border-right:0px;
  6003. border-radius:0px;
  6004. border-bottom-right-radius:0px;
  6005. border-bottom-left-radius:0px;
  6006. -moz-box-shadow:none;
  6007. -webkit-box-shadow:none;
  6008. box-shadow:none;
  6009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6010. font-weight:400;
  6011. font-style:normal;
  6012. font-size:14px;
  6013. line-height:30px;
  6014. }
  6015. #u131853 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:758px;
  6019. top:105px;
  6020. width:43px;
  6021. height:40px;
  6022. display:flex;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:14px;
  6027. line-height:30px;
  6028. }
  6029. #u131853 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:0px 0px 0px 0px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u131853_text {
  6037. border-width:0px;
  6038. white-space:nowrap;
  6039. text-transform:none;
  6040. }
  6041. #u131854_div {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:43px;
  6047. height:40px;
  6048. background:inherit;
  6049. background-color:rgba(255, 255, 255, 0);
  6050. box-sizing:border-box;
  6051. border-width:2px;
  6052. border-style:solid;
  6053. border-color:rgba(51, 51, 51, 1);
  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. #u131854 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:653px;
  6073. top:105px;
  6074. width:43px;
  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. #u131854 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:0px 0px 0px 0px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u131854_text {
  6091. border-width:0px;
  6092. white-space:nowrap;
  6093. text-transform:none;
  6094. }
  6095. #u131855_div {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:52px;
  6101. height:40px;
  6102. background:inherit;
  6103. background-color:rgba(255, 255, 255, 0);
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:14px;
  6118. line-height:30px;
  6119. }
  6120. #u131855 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:538px;
  6124. top:105px;
  6125. width:52px;
  6126. height:40px;
  6127. display:flex;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. font-size:14px;
  6132. line-height:30px;
  6133. }
  6134. #u131855 .text {
  6135. position:absolute;
  6136. align-self:center;
  6137. padding:0px 0px 0px 0px;
  6138. box-sizing:border-box;
  6139. width:100%;
  6140. }
  6141. #u131855_text {
  6142. border-width:0px;
  6143. word-wrap:break-word;
  6144. text-transform:none;
  6145. }
  6146. #u131857_img {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:433px;
  6152. height:865px;
  6153. }
  6154. #u131857 {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:911px;
  6158. top:0px;
  6159. width:433px;
  6160. height:865px;
  6161. display:flex;
  6162. }
  6163. #u131857 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 2px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u131857_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u131858_div {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:375px;
  6182. height:40px;
  6183. background:inherit;
  6184. background-color:rgba(255, 255, 255, 1);
  6185. box-sizing:border-box;
  6186. border-width:1px;
  6187. border-style:solid;
  6188. border-color:rgba(215, 215, 215, 1);
  6189. border-left:0px;
  6190. border-top:0px;
  6191. border-right:0px;
  6192. border-radius:0px;
  6193. border-bottom-right-radius:0px;
  6194. border-bottom-left-radius:0px;
  6195. -moz-box-shadow:none;
  6196. -webkit-box-shadow:none;
  6197. box-shadow:none;
  6198. }
  6199. #u131858 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:940px;
  6203. top:67px;
  6204. width:375px;
  6205. height:40px;
  6206. display:flex;
  6207. }
  6208. #u131858 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:2px 2px 2px 2px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u131858_text {
  6216. border-width:0px;
  6217. word-wrap:break-word;
  6218. text-transform:none;
  6219. visibility:hidden;
  6220. }
  6221. #u131859 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:0px;
  6225. top:0px;
  6226. width:0px;
  6227. height:0px;
  6228. }
  6229. #u131860_div {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:88px;
  6235. height:32px;
  6236. background:inherit;
  6237. background-color:rgba(255, 255, 255, 1);
  6238. box-sizing:border-box;
  6239. border-width:1px;
  6240. border-style:solid;
  6241. border-color:rgba(242, 242, 242, 1);
  6242. border-radius:33px;
  6243. -moz-box-shadow:none;
  6244. -webkit-box-shadow:none;
  6245. box-shadow:none;
  6246. }
  6247. #u131860 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:1220px;
  6251. top:71px;
  6252. width:88px;
  6253. height:32px;
  6254. display:flex;
  6255. }
  6256. #u131860 .text {
  6257. position:absolute;
  6258. align-self:center;
  6259. padding:2px 2px 2px 2px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u131860_text {
  6264. border-width:0px;
  6265. word-wrap:break-word;
  6266. text-transform:none;
  6267. visibility:hidden;
  6268. }
  6269. #u131861 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:0px;
  6275. height:0px;
  6276. }
  6277. #u131862_img {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:0px;
  6281. top:0px;
  6282. width:18px;
  6283. height:18px;
  6284. }
  6285. #u131862 {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:1283px;
  6289. top:78px;
  6290. width:18px;
  6291. height:18px;
  6292. display:flex;
  6293. }
  6294. #u131862 .text {
  6295. position:absolute;
  6296. align-self:center;
  6297. padding:2px 2px 2px 2px;
  6298. box-sizing:border-box;
  6299. width:100%;
  6300. }
  6301. #u131862_text {
  6302. border-width:0px;
  6303. word-wrap:break-word;
  6304. text-transform:none;
  6305. visibility:hidden;
  6306. }
  6307. #u131863_img {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:6px;
  6313. height:6px;
  6314. }
  6315. #u131863 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:1289px;
  6319. top:84px;
  6320. width:6px;
  6321. height:6px;
  6322. display:flex;
  6323. }
  6324. #u131863 .text {
  6325. position:absolute;
  6326. align-self:center;
  6327. padding:2px 2px 2px 2px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u131863_text {
  6332. border-width:0px;
  6333. word-wrap:break-word;
  6334. text-transform:none;
  6335. visibility:hidden;
  6336. }
  6337. #u131864 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:0px;
  6341. top:0px;
  6342. width:0px;
  6343. height:0px;
  6344. }
  6345. #u131865_img {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:5px;
  6351. height:5px;
  6352. }
  6353. #u131865 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:1234px;
  6357. top:85px;
  6358. width:5px;
  6359. height:5px;
  6360. display:flex;
  6361. }
  6362. #u131865 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:2px 2px 2px 2px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u131865_text {
  6370. border-width:0px;
  6371. word-wrap:break-word;
  6372. text-transform:none;
  6373. visibility:hidden;
  6374. }
  6375. #u131866_img {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:5px;
  6381. height:5px;
  6382. }
  6383. #u131866 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:1250px;
  6387. top:85px;
  6388. width:5px;
  6389. height:5px;
  6390. display:flex;
  6391. }
  6392. #u131866 .text {
  6393. position:absolute;
  6394. align-self:center;
  6395. padding:2px 2px 2px 2px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u131866_text {
  6400. border-width:0px;
  6401. word-wrap:break-word;
  6402. text-transform:none;
  6403. visibility:hidden;
  6404. }
  6405. #u131867_img {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:7px;
  6411. height:7px;
  6412. }
  6413. #u131867 {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:1241px;
  6417. top:84px;
  6418. width:7px;
  6419. height:7px;
  6420. display:flex;
  6421. }
  6422. #u131867 .text {
  6423. position:absolute;
  6424. align-self:center;
  6425. padding:2px 2px 2px 2px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u131867_text {
  6430. border-width:0px;
  6431. word-wrap:break-word;
  6432. text-transform:none;
  6433. visibility:hidden;
  6434. }
  6435. #u131868_img {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:19px;
  6441. height:2px;
  6442. }
  6443. #u131868 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:1258px;
  6447. top:87px;
  6448. width:18px;
  6449. height:1px;
  6450. display:flex;
  6451. -webkit-transform:rotate(90deg);
  6452. -moz-transform:rotate(90deg);
  6453. -ms-transform:rotate(90deg);
  6454. transform:rotate(90deg);
  6455. }
  6456. #u131868 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 2px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u131868_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u131869_img {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:375px;
  6475. height:44px;
  6476. }
  6477. #u131869 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:940px;
  6481. top:24px;
  6482. width:375px;
  6483. height:44px;
  6484. display:flex;
  6485. }
  6486. #u131869 .text {
  6487. position:absolute;
  6488. align-self:center;
  6489. padding:2px 2px 2px 2px;
  6490. box-sizing:border-box;
  6491. width:100%;
  6492. }
  6493. #u131869_text {
  6494. border-width:0px;
  6495. word-wrap:break-word;
  6496. text-transform:none;
  6497. visibility:hidden;
  6498. }
  6499. #u131870_div {
  6500. border-width:0px;
  6501. position:absolute;
  6502. left:0px;
  6503. top:0px;
  6504. width:375px;
  6505. height:50px;
  6506. background:inherit;
  6507. background-color:rgba(255, 255, 255, 1);
  6508. box-sizing:border-box;
  6509. border-width:1px;
  6510. border-style:solid;
  6511. border-color:rgba(242, 242, 242, 1);
  6512. border-radius:26px;
  6513. border-top-left-radius:0px;
  6514. border-top-right-radius:0px;
  6515. -moz-box-shadow:none;
  6516. -webkit-box-shadow:none;
  6517. box-shadow:none;
  6518. }
  6519. #u131870 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:940px;
  6523. top:788px;
  6524. width:375px;
  6525. height:50px;
  6526. display:flex;
  6527. }
  6528. #u131870 .text {
  6529. position:absolute;
  6530. align-self:center;
  6531. padding:2px 2px 2px 2px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u131870_text {
  6536. border-width:0px;
  6537. word-wrap:break-word;
  6538. text-transform:none;
  6539. visibility:hidden;
  6540. }
  6541. #u131871 {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:0px;
  6547. height:0px;
  6548. }
  6549. #u131872_img {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:24px;
  6555. height:24px;
  6556. }
  6557. #u131872 {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:980px;
  6561. top:792px;
  6562. width:24px;
  6563. height:24px;
  6564. display:flex;
  6565. font-size:8px;
  6566. }
  6567. #u131872 .text {
  6568. position:absolute;
  6569. align-self:center;
  6570. padding:2px 2px 2px 2px;
  6571. box-sizing:border-box;
  6572. width:100%;
  6573. }
  6574. #u131872_text {
  6575. border-width:0px;
  6576. word-wrap:break-word;
  6577. text-transform:none;
  6578. }
  6579. #u131873_div {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:25px;
  6585. height:17px;
  6586. background:inherit;
  6587. background-color:rgba(255, 255, 255, 0);
  6588. border:none;
  6589. border-radius:0px;
  6590. -moz-box-shadow:none;
  6591. -webkit-box-shadow:none;
  6592. box-shadow:none;
  6593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6594. font-weight:400;
  6595. font-style:normal;
  6596. font-size:12px;
  6597. }
  6598. #u131873 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:980px;
  6602. top:817px;
  6603. width:25px;
  6604. height:17px;
  6605. display:flex;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:12px;
  6610. }
  6611. #u131873 .text {
  6612. position:absolute;
  6613. align-self:flex-start;
  6614. padding:0px 0px 0px 0px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u131873_text {
  6619. border-width:0px;
  6620. white-space:nowrap;
  6621. text-transform:none;
  6622. }
  6623. #u131874 {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:0px;
  6627. top:0px;
  6628. width:0px;
  6629. height:0px;
  6630. }
  6631. #u131875_img {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:24px;
  6637. height:24px;
  6638. }
  6639. #u131875 {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:1250px;
  6643. top:794px;
  6644. width:24px;
  6645. height:24px;
  6646. display:flex;
  6647. font-size:8px;
  6648. }
  6649. #u131875 .text {
  6650. position:absolute;
  6651. align-self:center;
  6652. padding:2px 2px 2px 2px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u131875_text {
  6657. border-width:0px;
  6658. word-wrap:break-word;
  6659. text-transform:none;
  6660. }
  6661. #u131876_div {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:25px;
  6667. height:17px;
  6668. background:inherit;
  6669. background-color:rgba(255, 255, 255, 0);
  6670. border:none;
  6671. border-radius:0px;
  6672. -moz-box-shadow:none;
  6673. -webkit-box-shadow:none;
  6674. box-shadow:none;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:12px;
  6679. }
  6680. #u131876 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:1250px;
  6684. top:819px;
  6685. width:25px;
  6686. height:17px;
  6687. display:flex;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:12px;
  6692. }
  6693. #u131876 .text {
  6694. position:absolute;
  6695. align-self:flex-start;
  6696. padding:0px 0px 0px 0px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u131876_text {
  6701. border-width:0px;
  6702. white-space:nowrap;
  6703. text-transform:none;
  6704. }
  6705. #u131877_div {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:375px;
  6711. height:681px;
  6712. background:inherit;
  6713. background-color:rgba(242, 242, 242, 0.462745098039216);
  6714. border:none;
  6715. border-radius:0px;
  6716. -moz-box-shadow:none;
  6717. -webkit-box-shadow:none;
  6718. box-shadow:none;
  6719. }
  6720. #u131877 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:940px;
  6724. top:107px;
  6725. width:375px;
  6726. height:681px;
  6727. display:flex;
  6728. }
  6729. #u131877 .text {
  6730. position:absolute;
  6731. align-self:center;
  6732. padding:2px 2px 2px 2px;
  6733. box-sizing:border-box;
  6734. width:100%;
  6735. }
  6736. #u131877_text {
  6737. border-width:0px;
  6738. word-wrap:break-word;
  6739. text-transform:none;
  6740. visibility:hidden;
  6741. }
  6742. #u131878 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:0px;
  6748. height:0px;
  6749. }
  6750. #u131879_img {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:0px;
  6754. top:0px;
  6755. width:24px;
  6756. height:24px;
  6757. }
  6758. #u131879 {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:1162px;
  6762. top:792px;
  6763. width:24px;
  6764. height:24px;
  6765. display:flex;
  6766. font-size:8px;
  6767. }
  6768. #u131879 .text {
  6769. position:absolute;
  6770. align-self:center;
  6771. padding:2px 2px 2px 2px;
  6772. box-sizing:border-box;
  6773. width:100%;
  6774. }
  6775. #u131879_text {
  6776. border-width:0px;
  6777. word-wrap:break-word;
  6778. text-transform:none;
  6779. }
  6780. #u131880_div {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:0px;
  6784. top:0px;
  6785. width:37px;
  6786. height:17px;
  6787. background:inherit;
  6788. background-color:rgba(255, 255, 255, 0);
  6789. border:none;
  6790. border-radius:0px;
  6791. -moz-box-shadow:none;
  6792. -webkit-box-shadow:none;
  6793. box-shadow:none;
  6794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6795. font-weight:400;
  6796. font-style:normal;
  6797. font-size:12px;
  6798. }
  6799. #u131880 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:1156px;
  6803. top:817px;
  6804. width:37px;
  6805. height:17px;
  6806. display:flex;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:12px;
  6811. }
  6812. #u131880 .text {
  6813. position:absolute;
  6814. align-self:flex-start;
  6815. padding:0px 0px 0px 0px;
  6816. box-sizing:border-box;
  6817. width:100%;
  6818. }
  6819. #u131880_text {
  6820. border-width:0px;
  6821. white-space:nowrap;
  6822. text-transform:none;
  6823. }
  6824. #u131881 {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:0px;
  6828. top:0px;
  6829. width:0px;
  6830. height:0px;
  6831. }
  6832. #u131882_img {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:24px;
  6838. height:24px;
  6839. }
  6840. #u131882 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:1068px;
  6844. top:792px;
  6845. width:24px;
  6846. height:24px;
  6847. display:flex;
  6848. font-size:8px;
  6849. }
  6850. #u131882 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 2px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u131882_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. }
  6862. #u131883_div {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:37px;
  6868. height:17px;
  6869. background:inherit;
  6870. background-color:rgba(255, 255, 255, 0);
  6871. border:none;
  6872. border-radius:0px;
  6873. -moz-box-shadow:none;
  6874. -webkit-box-shadow:none;
  6875. box-shadow:none;
  6876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6877. font-weight:400;
  6878. font-style:normal;
  6879. font-size:12px;
  6880. }
  6881. #u131883 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:1062px;
  6885. top:817px;
  6886. width:37px;
  6887. height:17px;
  6888. display:flex;
  6889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:12px;
  6893. }
  6894. #u131883 .text {
  6895. position:absolute;
  6896. align-self:flex-start;
  6897. padding:0px 0px 0px 0px;
  6898. box-sizing:border-box;
  6899. width:100%;
  6900. }
  6901. #u131883_text {
  6902. border-width:0px;
  6903. white-space:nowrap;
  6904. text-transform:none;
  6905. }
  6906. #u131884_div {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:375px;
  6912. height:735px;
  6913. background:inherit;
  6914. background-color:rgba(242, 242, 242, 1);
  6915. border:none;
  6916. border-top:0px;
  6917. border-radius:25px;
  6918. border-top-left-radius:0px;
  6919. border-top-right-radius:0px;
  6920. -moz-box-shadow:none;
  6921. -webkit-box-shadow:none;
  6922. box-shadow:none;
  6923. }
  6924. #u131884 {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:940px;
  6928. top:105px;
  6929. width:375px;
  6930. height:735px;
  6931. display:flex;
  6932. }
  6933. #u131884 .text {
  6934. position:absolute;
  6935. align-self:center;
  6936. padding:2px 2px 2px 2px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u131884_text {
  6941. border-width:0px;
  6942. word-wrap:break-word;
  6943. text-transform:none;
  6944. visibility:hidden;
  6945. }
  6946. #u131885_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:71px;
  6952. height:30px;
  6953. background:inherit;
  6954. background-color:rgba(255, 255, 255, 0);
  6955. border:none;
  6956. border-left:0px;
  6957. border-top:0px;
  6958. border-right:0px;
  6959. border-radius:0px;
  6960. border-bottom-right-radius:0px;
  6961. border-bottom-left-radius:0px;
  6962. -moz-box-shadow:none;
  6963. -webkit-box-shadow:none;
  6964. box-shadow:none;
  6965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6966. font-weight:500;
  6967. font-style:normal;
  6968. font-size:14px;
  6969. line-height:30px;
  6970. }
  6971. #u131885 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:1092px;
  6975. top:73px;
  6976. width:71px;
  6977. height:30px;
  6978. display:flex;
  6979. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6980. font-weight:500;
  6981. font-style:normal;
  6982. font-size:14px;
  6983. line-height:30px;
  6984. }
  6985. #u131885 .text {
  6986. position:absolute;
  6987. align-self:flex-start;
  6988. padding:0px 0px 0px 0px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u131885_text {
  6993. border-width:0px;
  6994. white-space:nowrap;
  6995. text-transform:none;
  6996. }
  6997. #u131886 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:0px;
  7003. height:0px;
  7004. }
  7005. #u131887_img {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:11px;
  7011. height:18px;
  7012. }
  7013. #u131887 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:953px;
  7017. top:79px;
  7018. width:11px;
  7019. height:18px;
  7020. display:flex;
  7021. }
  7022. #u131887 .text {
  7023. position:absolute;
  7024. align-self:center;
  7025. padding:2px 2px 2px 2px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u131887_text {
  7030. border-width:0px;
  7031. word-wrap:break-word;
  7032. text-transform:none;
  7033. visibility:hidden;
  7034. }
  7035. #u131888 {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:0px;
  7041. height:0px;
  7042. }
  7043. #u131889_div {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:375px;
  7049. height:140px;
  7050. background:inherit;
  7051. background-color:rgba(255, 255, 255, 1);
  7052. border:none;
  7053. border-left:0px;
  7054. border-top:0px;
  7055. border-right:0px;
  7056. border-radius:0px;
  7057. border-bottom-right-radius:0px;
  7058. border-bottom-left-radius:0px;
  7059. -moz-box-shadow:none;
  7060. -webkit-box-shadow:none;
  7061. box-shadow:none;
  7062. }
  7063. #u131889 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:940px;
  7067. top:155px;
  7068. width:375px;
  7069. height:140px;
  7070. display:flex;
  7071. }
  7072. #u131889 .text {
  7073. position:absolute;
  7074. align-self:center;
  7075. padding:2px 2px 2px 2px;
  7076. box-sizing:border-box;
  7077. width:100%;
  7078. }
  7079. #u131889_text {
  7080. border-width:0px;
  7081. word-wrap:break-word;
  7082. text-transform:none;
  7083. visibility:hidden;
  7084. }
  7085. #u131890_div {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:181px;
  7091. height:25px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 0);
  7094. border:none;
  7095. border-left:0px;
  7096. border-top:0px;
  7097. border-right:0px;
  7098. border-radius:0px;
  7099. border-bottom-right-radius:0px;
  7100. border-bottom-left-radius:0px;
  7101. -moz-box-shadow:none;
  7102. -webkit-box-shadow:none;
  7103. box-shadow:none;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:12px;
  7108. color:#7F7F7F;
  7109. line-height:25px;
  7110. }
  7111. #u131890 {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:957px;
  7115. top:219px;
  7116. width:181px;
  7117. height:25px;
  7118. display:flex;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:12px;
  7123. color:#7F7F7F;
  7124. line-height:25px;
  7125. }
  7126. #u131890 .text {
  7127. position:absolute;
  7128. align-self:flex-start;
  7129. padding:0px 0px 0px 0px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u131890_text {
  7134. border-width:0px;
  7135. white-space:nowrap;
  7136. text-transform:none;
  7137. }
  7138. #u131891_img {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:40px;
  7144. height:40px;
  7145. }
  7146. #u131891 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:957px;
  7150. top:171px;
  7151. width:40px;
  7152. height:40px;
  7153. display:flex;
  7154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7155. font-weight:400;
  7156. font-style:normal;
  7157. }
  7158. #u131891 .text {
  7159. position:absolute;
  7160. align-self:center;
  7161. padding:2px 2px 2px 2px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u131891_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. }
  7170. #u131892_div {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:33px;
  7176. height:30px;
  7177. background:inherit;
  7178. background-color:rgba(255, 255, 255, 0);
  7179. border:none;
  7180. border-left:0px;
  7181. border-top:0px;
  7182. border-right:0px;
  7183. border-radius:0px;
  7184. border-bottom-right-radius:0px;
  7185. border-bottom-left-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:16px;
  7193. line-height:30px;
  7194. }
  7195. #u131892 {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:1017px;
  7199. top:176px;
  7200. width:33px;
  7201. height:30px;
  7202. display:flex;
  7203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. font-size:16px;
  7207. line-height:30px;
  7208. }
  7209. #u131892 .text {
  7210. position:absolute;
  7211. align-self:flex-start;
  7212. padding:0px 0px 0px 0px;
  7213. box-sizing:border-box;
  7214. width:100%;
  7215. }
  7216. #u131892_text {
  7217. border-width:0px;
  7218. white-space:nowrap;
  7219. text-transform:none;
  7220. }
  7221. #u131893_div {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:85px;
  7227. height:30px;
  7228. background:inherit;
  7229. background-color:rgba(242, 242, 242, 1);
  7230. border:none;
  7231. border-radius:40px;
  7232. -moz-box-shadow:none;
  7233. -webkit-box-shadow:none;
  7234. box-shadow:none;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:12px;
  7239. color:#7F7F7F;
  7240. }
  7241. #u131893 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:1210px;
  7245. top:255px;
  7246. width:85px;
  7247. height:30px;
  7248. display:flex;
  7249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:12px;
  7253. color:#7F7F7F;
  7254. }
  7255. #u131893 .text {
  7256. position:absolute;
  7257. align-self:center;
  7258. padding:2px 2px 2px 2px;
  7259. box-sizing:border-box;
  7260. width:100%;
  7261. }
  7262. #u131893_text {
  7263. border-width:0px;
  7264. word-wrap:break-word;
  7265. text-transform:none;
  7266. }
  7267. #u131894 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:0px;
  7273. height:0px;
  7274. }
  7275. #u131895_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:375px;
  7281. height:40px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 1);
  7284. border:none;
  7285. border-radius:0px;
  7286. -moz-box-shadow:none;
  7287. -webkit-box-shadow:none;
  7288. box-shadow:none;
  7289. }
  7290. #u131895 {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:940px;
  7294. top:105px;
  7295. width:375px;
  7296. height:40px;
  7297. display:flex;
  7298. }
  7299. #u131895 .text {
  7300. position:absolute;
  7301. align-self:center;
  7302. padding:2px 2px 2px 2px;
  7303. box-sizing:border-box;
  7304. width:100%;
  7305. }
  7306. #u131895_text {
  7307. border-width:0px;
  7308. word-wrap:break-word;
  7309. text-transform:none;
  7310. visibility:hidden;
  7311. }
  7312. #u131896_div {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:43px;
  7318. height:40px;
  7319. background:inherit;
  7320. background-color:rgba(255, 255, 255, 0);
  7321. box-sizing:border-box;
  7322. border-width:2px;
  7323. border-style:solid;
  7324. border-color:rgba(51, 51, 51, 1);
  7325. border-left:0px;
  7326. border-top:0px;
  7327. border-right:0px;
  7328. border-radius:0px;
  7329. border-bottom-right-radius:0px;
  7330. border-bottom-left-radius:0px;
  7331. -moz-box-shadow:none;
  7332. -webkit-box-shadow:none;
  7333. box-shadow:none;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:14px;
  7338. line-height:30px;
  7339. }
  7340. #u131896 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:1216px;
  7344. top:105px;
  7345. width:43px;
  7346. height:40px;
  7347. display:flex;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. line-height:30px;
  7353. }
  7354. #u131896 .text {
  7355. position:absolute;
  7356. align-self:center;
  7357. padding:0px 0px 0px 0px;
  7358. box-sizing:border-box;
  7359. width:100%;
  7360. }
  7361. #u131896_text {
  7362. border-width:0px;
  7363. white-space:nowrap;
  7364. text-transform:none;
  7365. }
  7366. #u131897_div {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:43px;
  7372. height:40px;
  7373. background:inherit;
  7374. background-color:rgba(255, 255, 255, 0);
  7375. border:none;
  7376. border-left:0px;
  7377. border-top:0px;
  7378. border-right:0px;
  7379. border-radius:0px;
  7380. border-bottom-right-radius:0px;
  7381. border-bottom-left-radius:0px;
  7382. -moz-box-shadow:none;
  7383. -webkit-box-shadow:none;
  7384. box-shadow:none;
  7385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:14px;
  7389. line-height:30px;
  7390. }
  7391. #u131897 {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:1111px;
  7395. top:105px;
  7396. width:43px;
  7397. height:40px;
  7398. display:flex;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:14px;
  7403. line-height:30px;
  7404. }
  7405. #u131897 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:0px 0px 0px 0px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u131897_text {
  7413. border-width:0px;
  7414. white-space:nowrap;
  7415. text-transform:none;
  7416. }
  7417. #u131898_div {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:52px;
  7423. height:40px;
  7424. background:inherit;
  7425. background-color:rgba(255, 255, 255, 0);
  7426. border:none;
  7427. border-left:0px;
  7428. border-top:0px;
  7429. border-right:0px;
  7430. border-radius:0px;
  7431. border-bottom-right-radius:0px;
  7432. border-bottom-left-radius:0px;
  7433. -moz-box-shadow:none;
  7434. -webkit-box-shadow:none;
  7435. box-shadow:none;
  7436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7437. font-weight:400;
  7438. font-style:normal;
  7439. font-size:14px;
  7440. line-height:30px;
  7441. }
  7442. #u131898 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:996px;
  7446. top:105px;
  7447. width:52px;
  7448. height:40px;
  7449. display:flex;
  7450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. font-size:14px;
  7454. line-height:30px;
  7455. }
  7456. #u131898 .text {
  7457. position:absolute;
  7458. align-self:center;
  7459. padding:0px 0px 0px 0px;
  7460. box-sizing:border-box;
  7461. width:100%;
  7462. }
  7463. #u131898_text {
  7464. border-width:0px;
  7465. word-wrap:break-word;
  7466. text-transform:none;
  7467. }
  7468. #u131899_div {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:375px;
  7474. height:140px;
  7475. background:inherit;
  7476. background-color:rgba(255, 255, 255, 1);
  7477. border:none;
  7478. border-left:0px;
  7479. border-top:0px;
  7480. border-right:0px;
  7481. border-radius:0px;
  7482. border-bottom-right-radius:0px;
  7483. border-bottom-left-radius:0px;
  7484. -moz-box-shadow:none;
  7485. -webkit-box-shadow:none;
  7486. box-shadow:none;
  7487. }
  7488. #u131899 {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:29px;
  7492. top:155px;
  7493. width:375px;
  7494. height:140px;
  7495. display:flex;
  7496. }
  7497. #u131899 .text {
  7498. position:absolute;
  7499. align-self:center;
  7500. padding:2px 2px 2px 2px;
  7501. box-sizing:border-box;
  7502. width:100%;
  7503. }
  7504. #u131899_text {
  7505. border-width:0px;
  7506. word-wrap:break-word;
  7507. text-transform:none;
  7508. visibility:hidden;
  7509. }
  7510. #u131900_div {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:181px;
  7516. height:25px;
  7517. background:inherit;
  7518. background-color:rgba(255, 255, 255, 0);
  7519. border:none;
  7520. border-left:0px;
  7521. border-top:0px;
  7522. border-right:0px;
  7523. border-radius:0px;
  7524. border-bottom-right-radius:0px;
  7525. border-bottom-left-radius:0px;
  7526. -moz-box-shadow:none;
  7527. -webkit-box-shadow:none;
  7528. box-shadow:none;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:12px;
  7533. color:#7F7F7F;
  7534. line-height:25px;
  7535. }
  7536. #u131900 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:46px;
  7540. top:219px;
  7541. width:181px;
  7542. height:25px;
  7543. display:flex;
  7544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7545. font-weight:400;
  7546. font-style:normal;
  7547. font-size:12px;
  7548. color:#7F7F7F;
  7549. line-height:25px;
  7550. }
  7551. #u131900 .text {
  7552. position:absolute;
  7553. align-self:flex-start;
  7554. padding:0px 0px 0px 0px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u131900_text {
  7559. border-width:0px;
  7560. white-space:nowrap;
  7561. text-transform:none;
  7562. }
  7563. #u131901_img {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:0px;
  7567. top:0px;
  7568. width:40px;
  7569. height:40px;
  7570. }
  7571. #u131901 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:46px;
  7575. top:171px;
  7576. width:40px;
  7577. height:40px;
  7578. display:flex;
  7579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. }
  7583. #u131901 .text {
  7584. position:absolute;
  7585. align-self:center;
  7586. padding:2px 2px 2px 2px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u131901_text {
  7591. border-width:0px;
  7592. word-wrap:break-word;
  7593. text-transform:none;
  7594. }
  7595. #u131902_div {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:0px;
  7599. top:0px;
  7600. width:33px;
  7601. height:30px;
  7602. background:inherit;
  7603. background-color:rgba(255, 255, 255, 0);
  7604. border:none;
  7605. border-left:0px;
  7606. border-top:0px;
  7607. border-right:0px;
  7608. border-radius:0px;
  7609. border-bottom-right-radius:0px;
  7610. border-bottom-left-radius:0px;
  7611. -moz-box-shadow:none;
  7612. -webkit-box-shadow:none;
  7613. box-shadow:none;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:16px;
  7618. line-height:30px;
  7619. }
  7620. #u131902 {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:106px;
  7624. top:170px;
  7625. width:33px;
  7626. height:30px;
  7627. display:flex;
  7628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:16px;
  7632. line-height:30px;
  7633. }
  7634. #u131902 .text {
  7635. position:absolute;
  7636. align-self:flex-start;
  7637. padding:0px 0px 0px 0px;
  7638. box-sizing:border-box;
  7639. width:100%;
  7640. }
  7641. #u131902_text {
  7642. border-width:0px;
  7643. white-space:nowrap;
  7644. text-transform:none;
  7645. }
  7646. #u131903_div {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:58px;
  7652. height:30px;
  7653. background:inherit;
  7654. background-color:rgba(24, 144, 255, 1);
  7655. border:none;
  7656. border-radius:40px;
  7657. -moz-box-shadow:none;
  7658. -webkit-box-shadow:none;
  7659. box-shadow:none;
  7660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:12px;
  7664. color:#FFFFFF;
  7665. }
  7666. #u131903 {
  7667. border-width:0px;
  7668. position:absolute;
  7669. left:326px;
  7670. top:255px;
  7671. width:58px;
  7672. height:30px;
  7673. display:flex;
  7674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. font-size:12px;
  7678. color:#FFFFFF;
  7679. }
  7680. #u131903 .text {
  7681. position:absolute;
  7682. align-self:center;
  7683. padding:2px 2px 2px 2px;
  7684. box-sizing:border-box;
  7685. width:100%;
  7686. }
  7687. #u131903_text {
  7688. border-width:0px;
  7689. word-wrap:break-word;
  7690. text-transform:none;
  7691. }
  7692. #u131904_div {
  7693. border-width:0px;
  7694. position:absolute;
  7695. left:0px;
  7696. top:0px;
  7697. width:58px;
  7698. height:30px;
  7699. background:inherit;
  7700. background-color:rgba(255, 255, 255, 1);
  7701. box-sizing:border-box;
  7702. border-width:1px;
  7703. border-style:solid;
  7704. border-color:rgba(127, 127, 127, 1);
  7705. border-radius:40px;
  7706. -moz-box-shadow:none;
  7707. -webkit-box-shadow:none;
  7708. box-shadow:none;
  7709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7710. font-weight:400;
  7711. font-style:normal;
  7712. font-size:12px;
  7713. }
  7714. #u131904 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:258px;
  7718. top:255px;
  7719. width:58px;
  7720. height:30px;
  7721. display:flex;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:12px;
  7726. }
  7727. #u131904 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:2px 2px 2px 2px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u131904_text {
  7735. border-width:0px;
  7736. word-wrap:break-word;
  7737. text-transform:none;
  7738. }
  7739. #u131905_div {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:0px;
  7743. top:0px;
  7744. width:161px;
  7745. height:25px;
  7746. background:inherit;
  7747. background-color:rgba(255, 255, 255, 0);
  7748. border:none;
  7749. border-left:0px;
  7750. border-top:0px;
  7751. border-right:0px;
  7752. border-radius:0px;
  7753. border-bottom-right-radius:0px;
  7754. border-bottom-left-radius:0px;
  7755. -moz-box-shadow:none;
  7756. -webkit-box-shadow:none;
  7757. box-shadow:none;
  7758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. font-size:10px;
  7762. color:#F59A23;
  7763. line-height:25px;
  7764. }
  7765. #u131905 {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:106px;
  7769. top:196px;
  7770. width:161px;
  7771. height:25px;
  7772. display:flex;
  7773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. font-size:10px;
  7777. color:#F59A23;
  7778. line-height:25px;
  7779. }
  7780. #u131905 .text {
  7781. position:absolute;
  7782. align-self:flex-start;
  7783. padding:0px 0px 0px 0px;
  7784. box-sizing:border-box;
  7785. width:100%;
  7786. }
  7787. #u131905_text {
  7788. border-width:0px;
  7789. white-space:nowrap;
  7790. text-transform:none;
  7791. }
  7792. #u131906 {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:0px;
  7796. top:0px;
  7797. width:0px;
  7798. height:0px;
  7799. }
  7800. #u131907_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:300px;
  7806. height:149px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 1);
  7809. border:none;
  7810. border-radius:10px;
  7811. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7812. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7813. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7814. }
  7815. #u131907 {
  7816. border-width:0px;
  7817. position:absolute;
  7818. left:520px;
  7819. top:392px;
  7820. width:300px;
  7821. height:149px;
  7822. display:flex;
  7823. }
  7824. #u131907 .text {
  7825. position:absolute;
  7826. align-self:center;
  7827. padding:2px 2px 2px 2px;
  7828. box-sizing:border-box;
  7829. width:100%;
  7830. }
  7831. #u131907_text {
  7832. border-width:0px;
  7833. word-wrap:break-word;
  7834. text-transform:none;
  7835. visibility:hidden;
  7836. }
  7837. #u131908_div {
  7838. border-width:0px;
  7839. position:absolute;
  7840. left:0px;
  7841. top:0px;
  7842. width:253px;
  7843. height:30px;
  7844. background:inherit;
  7845. background-color:rgba(255, 255, 255, 0);
  7846. border:none;
  7847. border-left:0px;
  7848. border-top:0px;
  7849. border-right:0px;
  7850. border-radius:0px;
  7851. border-bottom-right-radius:0px;
  7852. border-bottom-left-radius:0px;
  7853. -moz-box-shadow:none;
  7854. -webkit-box-shadow:none;
  7855. box-shadow:none;
  7856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7857. font-weight:400;
  7858. font-style:normal;
  7859. font-size:18px;
  7860. text-align:center;
  7861. line-height:30px;
  7862. }
  7863. #u131908 {
  7864. border-width:0px;
  7865. position:absolute;
  7866. left:543px;
  7867. top:426px;
  7868. width:253px;
  7869. height:30px;
  7870. display:flex;
  7871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7872. font-weight:400;
  7873. font-style:normal;
  7874. font-size:18px;
  7875. text-align:center;
  7876. line-height:30px;
  7877. }
  7878. #u131908 .text {
  7879. position:absolute;
  7880. align-self:flex-start;
  7881. padding:0px 0px 0px 0px;
  7882. box-sizing:border-box;
  7883. width:100%;
  7884. }
  7885. #u131908_text {
  7886. border-width:0px;
  7887. white-space:nowrap;
  7888. text-transform:none;
  7889. }
  7890. #u131909_img {
  7891. border-width:0px;
  7892. position:absolute;
  7893. left:0px;
  7894. top:0px;
  7895. width:301px;
  7896. height:2px;
  7897. }
  7898. #u131909 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:520px;
  7902. top:492px;
  7903. width:300px;
  7904. height:1px;
  7905. display:flex;
  7906. }
  7907. #u131909 .text {
  7908. position:absolute;
  7909. align-self:center;
  7910. padding:2px 2px 2px 2px;
  7911. box-sizing:border-box;
  7912. width:100%;
  7913. }
  7914. #u131909_text {
  7915. border-width:0px;
  7916. word-wrap:break-word;
  7917. text-transform:none;
  7918. visibility:hidden;
  7919. }
  7920. #u131910_div {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:0px;
  7924. top:0px;
  7925. width:41px;
  7926. height:30px;
  7927. background:inherit;
  7928. background-color:rgba(255, 255, 255, 0);
  7929. border:none;
  7930. border-left:0px;
  7931. border-top:0px;
  7932. border-right:0px;
  7933. border-radius:0px;
  7934. border-bottom-right-radius:0px;
  7935. border-bottom-left-radius:0px;
  7936. -moz-box-shadow:none;
  7937. -webkit-box-shadow:none;
  7938. box-shadow:none;
  7939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:18px;
  7943. color:#1890FF;
  7944. text-align:center;
  7945. line-height:30px;
  7946. }
  7947. #u131910 {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:736px;
  7951. top:502px;
  7952. width:41px;
  7953. height:30px;
  7954. display:flex;
  7955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:18px;
  7959. color:#1890FF;
  7960. text-align:center;
  7961. line-height:30px;
  7962. }
  7963. #u131910 .text {
  7964. position:absolute;
  7965. align-self:flex-start;
  7966. padding:0px 0px 0px 0px;
  7967. box-sizing:border-box;
  7968. width:100%;
  7969. }
  7970. #u131910_text {
  7971. border-width:0px;
  7972. word-wrap:break-word;
  7973. text-transform:none;
  7974. }
  7975. #u131911_div {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:41px;
  7981. height:30px;
  7982. background:inherit;
  7983. background-color:rgba(255, 255, 255, 0);
  7984. border:none;
  7985. border-left:0px;
  7986. border-top:0px;
  7987. border-right:0px;
  7988. border-radius:0px;
  7989. border-bottom-right-radius:0px;
  7990. border-bottom-left-radius:0px;
  7991. -moz-box-shadow:none;
  7992. -webkit-box-shadow:none;
  7993. box-shadow:none;
  7994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7995. font-weight:400;
  7996. font-style:normal;
  7997. font-size:18px;
  7998. color:#1890FF;
  7999. text-align:center;
  8000. line-height:30px;
  8001. }
  8002. #u131911 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:566px;
  8006. top:502px;
  8007. width:41px;
  8008. height:30px;
  8009. display:flex;
  8010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:18px;
  8014. color:#1890FF;
  8015. text-align:center;
  8016. line-height:30px;
  8017. }
  8018. #u131911 .text {
  8019. position:absolute;
  8020. align-self:flex-start;
  8021. padding:0px 0px 0px 0px;
  8022. box-sizing:border-box;
  8023. width:100%;
  8024. }
  8025. #u131911_text {
  8026. border-width:0px;
  8027. word-wrap:break-word;
  8028. text-transform:none;
  8029. }
  8030. #u131912_img {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:0px;
  8034. top:0px;
  8035. width:2px;
  8036. height:49px;
  8037. }
  8038. #u131912 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:669px;
  8042. top:493px;
  8043. width:1px;
  8044. height:48px;
  8045. display:flex;
  8046. }
  8047. #u131912 .text {
  8048. position:absolute;
  8049. align-self:center;
  8050. padding:2px 2px 2px 2px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u131912_text {
  8055. border-width:0px;
  8056. word-wrap:break-word;
  8057. text-transform:none;
  8058. visibility:hidden;
  8059. }
  8060. #u131913 {
  8061. border-width:0px;
  8062. position:absolute;
  8063. left:0px;
  8064. top:0px;
  8065. width:0px;
  8066. height:0px;
  8067. }
  8068. #u131914_div {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:0px;
  8072. top:0px;
  8073. width:300px;
  8074. height:149px;
  8075. background:inherit;
  8076. background-color:rgba(255, 255, 255, 1);
  8077. border:none;
  8078. border-radius:10px;
  8079. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8080. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8081. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8082. }
  8083. #u131914 {
  8084. border-width:0px;
  8085. position:absolute;
  8086. left:520px;
  8087. top:600px;
  8088. width:300px;
  8089. height:149px;
  8090. display:flex;
  8091. }
  8092. #u131914 .text {
  8093. position:absolute;
  8094. align-self:center;
  8095. padding:2px 2px 2px 2px;
  8096. box-sizing:border-box;
  8097. width:100%;
  8098. }
  8099. #u131914_text {
  8100. border-width:0px;
  8101. word-wrap:break-word;
  8102. text-transform:none;
  8103. visibility:hidden;
  8104. }
  8105. #u131915_div {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:253px;
  8111. height:30px;
  8112. background:inherit;
  8113. background-color:rgba(255, 255, 255, 0);
  8114. border:none;
  8115. border-left:0px;
  8116. border-top:0px;
  8117. border-right:0px;
  8118. border-radius:0px;
  8119. border-bottom-right-radius:0px;
  8120. border-bottom-left-radius:0px;
  8121. -moz-box-shadow:none;
  8122. -webkit-box-shadow:none;
  8123. box-shadow:none;
  8124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8125. font-weight:400;
  8126. font-style:normal;
  8127. font-size:18px;
  8128. text-align:center;
  8129. line-height:30px;
  8130. }
  8131. #u131915 {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:543px;
  8135. top:634px;
  8136. width:253px;
  8137. height:30px;
  8138. display:flex;
  8139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8140. font-weight:400;
  8141. font-style:normal;
  8142. font-size:18px;
  8143. text-align:center;
  8144. line-height:30px;
  8145. }
  8146. #u131915 .text {
  8147. position:absolute;
  8148. align-self:flex-start;
  8149. padding:0px 0px 0px 0px;
  8150. box-sizing:border-box;
  8151. width:100%;
  8152. }
  8153. #u131915_text {
  8154. border-width:0px;
  8155. white-space:nowrap;
  8156. text-transform:none;
  8157. }
  8158. #u131916_img {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:301px;
  8164. height:2px;
  8165. }
  8166. #u131916 {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:520px;
  8170. top:700px;
  8171. width:300px;
  8172. height:1px;
  8173. display:flex;
  8174. }
  8175. #u131916 .text {
  8176. position:absolute;
  8177. align-self:center;
  8178. padding:2px 2px 2px 2px;
  8179. box-sizing:border-box;
  8180. width:100%;
  8181. }
  8182. #u131916_text {
  8183. border-width:0px;
  8184. word-wrap:break-word;
  8185. text-transform:none;
  8186. visibility:hidden;
  8187. }
  8188. #u131917_div {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:0px;
  8192. top:0px;
  8193. width:41px;
  8194. height:30px;
  8195. background:inherit;
  8196. background-color:rgba(255, 255, 255, 0);
  8197. border:none;
  8198. border-left:0px;
  8199. border-top:0px;
  8200. border-right:0px;
  8201. border-radius:0px;
  8202. border-bottom-right-radius:0px;
  8203. border-bottom-left-radius:0px;
  8204. -moz-box-shadow:none;
  8205. -webkit-box-shadow:none;
  8206. box-shadow:none;
  8207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8208. font-weight:400;
  8209. font-style:normal;
  8210. font-size:18px;
  8211. color:#1890FF;
  8212. text-align:center;
  8213. line-height:30px;
  8214. }
  8215. #u131917 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:736px;
  8219. top:710px;
  8220. width:41px;
  8221. height:30px;
  8222. display:flex;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:18px;
  8227. color:#1890FF;
  8228. text-align:center;
  8229. line-height:30px;
  8230. }
  8231. #u131917 .text {
  8232. position:absolute;
  8233. align-self:flex-start;
  8234. padding:0px 0px 0px 0px;
  8235. box-sizing:border-box;
  8236. width:100%;
  8237. }
  8238. #u131917_text {
  8239. border-width:0px;
  8240. word-wrap:break-word;
  8241. text-transform:none;
  8242. }
  8243. #u131918_div {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:41px;
  8249. height:30px;
  8250. background:inherit;
  8251. background-color:rgba(255, 255, 255, 0);
  8252. border:none;
  8253. border-left:0px;
  8254. border-top:0px;
  8255. border-right:0px;
  8256. border-radius:0px;
  8257. border-bottom-right-radius:0px;
  8258. border-bottom-left-radius:0px;
  8259. -moz-box-shadow:none;
  8260. -webkit-box-shadow:none;
  8261. box-shadow:none;
  8262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8263. font-weight:400;
  8264. font-style:normal;
  8265. font-size:18px;
  8266. color:#1890FF;
  8267. text-align:center;
  8268. line-height:30px;
  8269. }
  8270. #u131918 {
  8271. border-width:0px;
  8272. position:absolute;
  8273. left:566px;
  8274. top:710px;
  8275. width:41px;
  8276. height:30px;
  8277. display:flex;
  8278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8279. font-weight:400;
  8280. font-style:normal;
  8281. font-size:18px;
  8282. color:#1890FF;
  8283. text-align:center;
  8284. line-height:30px;
  8285. }
  8286. #u131918 .text {
  8287. position:absolute;
  8288. align-self:flex-start;
  8289. padding:0px 0px 0px 0px;
  8290. box-sizing:border-box;
  8291. width:100%;
  8292. }
  8293. #u131918_text {
  8294. border-width:0px;
  8295. word-wrap:break-word;
  8296. text-transform:none;
  8297. }
  8298. #u131919_img {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:2px;
  8304. height:49px;
  8305. }
  8306. #u131919 {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:669px;
  8310. top:701px;
  8311. width:1px;
  8312. height:48px;
  8313. display:flex;
  8314. }
  8315. #u131919 .text {
  8316. position:absolute;
  8317. align-self:center;
  8318. padding:2px 2px 2px 2px;
  8319. box-sizing:border-box;
  8320. width:100%;
  8321. }
  8322. #u131919_text {
  8323. border-width:0px;
  8324. word-wrap:break-word;
  8325. text-transform:none;
  8326. visibility:hidden;
  8327. }
  8328. #u131920_div {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:0px;
  8332. top:0px;
  8333. width:333px;
  8334. height:100px;
  8335. background:inherit;
  8336. background-color:rgba(255, 255, 255, 0);
  8337. border:none;
  8338. border-left:0px;
  8339. border-top:0px;
  8340. border-right:0px;
  8341. border-radius:0px;
  8342. border-bottom-right-radius:0px;
  8343. border-bottom-left-radius:0px;
  8344. -moz-box-shadow:none;
  8345. -webkit-box-shadow:none;
  8346. box-shadow:none;
  8347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8348. font-weight:400;
  8349. font-style:normal;
  8350. font-size:12px;
  8351. color:#D9001B;
  8352. line-height:25px;
  8353. }
  8354. #u131920 {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:46px;
  8358. top:584px;
  8359. width:333px;
  8360. height:100px;
  8361. display:flex;
  8362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8363. font-weight:400;
  8364. font-style:normal;
  8365. font-size:12px;
  8366. color:#D9001B;
  8367. line-height:25px;
  8368. }
  8369. #u131920 .text {
  8370. position:absolute;
  8371. align-self:flex-start;
  8372. padding:0px 0px 0px 0px;
  8373. box-sizing:border-box;
  8374. width:100%;
  8375. }
  8376. #u131920_text {
  8377. border-width:0px;
  8378. word-wrap:break-word;
  8379. text-transform:none;
  8380. }
  8381. #u131921_div {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:375px;
  8387. height:100px;
  8388. background:inherit;
  8389. background-color:rgba(255, 255, 255, 1);
  8390. border:none;
  8391. border-radius:0px;
  8392. -moz-box-shadow:none;
  8393. -webkit-box-shadow:none;
  8394. box-shadow:none;
  8395. }
  8396. #u131921 {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:29px;
  8400. top:455px;
  8401. width:375px;
  8402. height:100px;
  8403. display:flex;
  8404. }
  8405. #u131921 .text {
  8406. position:absolute;
  8407. align-self:center;
  8408. padding:2px 2px 2px 2px;
  8409. box-sizing:border-box;
  8410. width:100%;
  8411. }
  8412. #u131921_text {
  8413. border-width:0px;
  8414. word-wrap:break-word;
  8415. text-transform:none;
  8416. visibility:hidden;
  8417. }
  8418. #u131922_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:33px;
  8424. height:22px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 0);
  8427. border:none;
  8428. border-left:0px;
  8429. border-top:0px;
  8430. border-right:0px;
  8431. border-radius:0px;
  8432. border-bottom-right-radius:0px;
  8433. border-bottom-left-radius:0px;
  8434. -moz-box-shadow:none;
  8435. -webkit-box-shadow:none;
  8436. box-shadow:none;
  8437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8438. font-weight:400;
  8439. font-style:normal;
  8440. font-size:16px;
  8441. }
  8442. #u131922 {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:105px;
  8446. top:485px;
  8447. width:33px;
  8448. height:22px;
  8449. display:flex;
  8450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8451. font-weight:400;
  8452. font-style:normal;
  8453. font-size:16px;
  8454. }
  8455. #u131922 .text {
  8456. position:absolute;
  8457. align-self:flex-start;
  8458. padding:0px 0px 0px 0px;
  8459. box-sizing:border-box;
  8460. width:100%;
  8461. }
  8462. #u131922_text {
  8463. border-width:0px;
  8464. white-space:nowrap;
  8465. text-transform:none;
  8466. }
  8467. #u131923_img {
  8468. border-width:0px;
  8469. position:absolute;
  8470. left:0px;
  8471. top:0px;
  8472. width:40px;
  8473. height:40px;
  8474. }
  8475. #u131923 {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:49px;
  8479. top:476px;
  8480. width:40px;
  8481. height:40px;
  8482. display:flex;
  8483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8484. font-weight:400;
  8485. font-style:normal;
  8486. }
  8487. #u131923 .text {
  8488. position:absolute;
  8489. align-self:center;
  8490. padding:2px 2px 2px 2px;
  8491. box-sizing:border-box;
  8492. width:100%;
  8493. }
  8494. #u131923_text {
  8495. border-width:0px;
  8496. word-wrap:break-word;
  8497. text-transform:none;
  8498. }
  8499. #u131924_div {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:0px;
  8503. top:0px;
  8504. width:181px;
  8505. height:25px;
  8506. background:inherit;
  8507. background-color:rgba(255, 255, 255, 0);
  8508. border:none;
  8509. border-left:0px;
  8510. border-top:0px;
  8511. border-right:0px;
  8512. border-radius:0px;
  8513. border-bottom-right-radius:0px;
  8514. border-bottom-left-radius:0px;
  8515. -moz-box-shadow:none;
  8516. -webkit-box-shadow:none;
  8517. box-shadow:none;
  8518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. font-size:12px;
  8522. color:#7F7F7F;
  8523. line-height:25px;
  8524. }
  8525. #u131924 {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:49px;
  8529. top:526px;
  8530. width:181px;
  8531. height:25px;
  8532. display:flex;
  8533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. font-size:12px;
  8537. color:#7F7F7F;
  8538. line-height:25px;
  8539. }
  8540. #u131924 .text {
  8541. position:absolute;
  8542. align-self:flex-start;
  8543. padding:0px 0px 0px 0px;
  8544. box-sizing:border-box;
  8545. width:100%;
  8546. }
  8547. #u131924_text {
  8548. border-width:0px;
  8549. white-space:nowrap;
  8550. text-transform:none;
  8551. }
  8552. #u131925_div {
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:0px;
  8556. top:0px;
  8557. width:79px;
  8558. height:30px;
  8559. background:inherit;
  8560. background-color:rgba(255, 255, 255, 1);
  8561. box-sizing:border-box;
  8562. border-width:1px;
  8563. border-style:solid;
  8564. border-color:rgba(127, 127, 127, 1);
  8565. border-radius:40px;
  8566. -moz-box-shadow:none;
  8567. -webkit-box-shadow:none;
  8568. box-shadow:none;
  8569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8570. font-weight:400;
  8571. font-style:normal;
  8572. font-size:12px;
  8573. }
  8574. #u131925 {
  8575. border-width:0px;
  8576. position:absolute;
  8577. left:305px;
  8578. top:507px;
  8579. width:79px;
  8580. height:30px;
  8581. display:flex;
  8582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8583. font-weight:400;
  8584. font-style:normal;
  8585. font-size:12px;
  8586. }
  8587. #u131925 .text {
  8588. position:absolute;
  8589. align-self:center;
  8590. padding:2px 2px 2px 2px;
  8591. box-sizing:border-box;
  8592. width:100%;
  8593. }
  8594. #u131925_text {
  8595. border-width:0px;
  8596. word-wrap:break-word;
  8597. text-transform:none;
  8598. }