styles.css 232 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2275px;
  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. #u165475 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u165477_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. }
  35. #u165477 {
  36. border-width:0px;
  37. position:absolute;
  38. left:453px;
  39. top:0px;
  40. width:433px;
  41. height:865px;
  42. display:flex;
  43. }
  44. #u165477 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u165477_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u165478_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:375px;
  63. height:40px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 1);
  66. box-sizing:border-box;
  67. border-width:1px;
  68. border-style:solid;
  69. border-color:rgba(215, 215, 215, 1);
  70. border-left:0px;
  71. border-top:0px;
  72. border-right:0px;
  73. border-radius:0px;
  74. border-bottom-right-radius:0px;
  75. border-bottom-left-radius:0px;
  76. -moz-box-shadow:none;
  77. -webkit-box-shadow:none;
  78. box-shadow:none;
  79. }
  80. #u165478 {
  81. border-width:0px;
  82. position:absolute;
  83. left:482px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. }
  89. #u165478 .text {
  90. position:absolute;
  91. align-self:center;
  92. padding:2px 2px 2px 2px;
  93. box-sizing:border-box;
  94. width:100%;
  95. }
  96. #u165478_text {
  97. border-width:0px;
  98. word-wrap:break-word;
  99. text-transform:none;
  100. visibility:hidden;
  101. }
  102. #u165479 {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:0px;
  108. height:0px;
  109. }
  110. #u165480_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:88px;
  116. height:32px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 1);
  119. box-sizing:border-box;
  120. border-width:1px;
  121. border-style:solid;
  122. border-color:rgba(242, 242, 242, 1);
  123. border-radius:33px;
  124. -moz-box-shadow:none;
  125. -webkit-box-shadow:none;
  126. box-shadow:none;
  127. }
  128. #u165480 {
  129. border-width:0px;
  130. position:absolute;
  131. left:762px;
  132. top:71px;
  133. width:88px;
  134. height:32px;
  135. display:flex;
  136. }
  137. #u165480 .text {
  138. position:absolute;
  139. align-self:center;
  140. padding:2px 2px 2px 2px;
  141. box-sizing:border-box;
  142. width:100%;
  143. }
  144. #u165480_text {
  145. border-width:0px;
  146. word-wrap:break-word;
  147. text-transform:none;
  148. visibility:hidden;
  149. }
  150. #u165481 {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:0px;
  156. height:0px;
  157. }
  158. #u165482_img {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:18px;
  164. height:18px;
  165. }
  166. #u165482 {
  167. border-width:0px;
  168. position:absolute;
  169. left:825px;
  170. top:78px;
  171. width:18px;
  172. height:18px;
  173. display:flex;
  174. }
  175. #u165482 .text {
  176. position:absolute;
  177. align-self:center;
  178. padding:2px 2px 2px 2px;
  179. box-sizing:border-box;
  180. width:100%;
  181. }
  182. #u165482_text {
  183. border-width:0px;
  184. word-wrap:break-word;
  185. text-transform:none;
  186. visibility:hidden;
  187. }
  188. #u165483_img {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:6px;
  194. height:6px;
  195. }
  196. #u165483 {
  197. border-width:0px;
  198. position:absolute;
  199. left:831px;
  200. top:84px;
  201. width:6px;
  202. height:6px;
  203. display:flex;
  204. }
  205. #u165483 .text {
  206. position:absolute;
  207. align-self:center;
  208. padding:2px 2px 2px 2px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u165483_text {
  213. border-width:0px;
  214. word-wrap:break-word;
  215. text-transform:none;
  216. visibility:hidden;
  217. }
  218. #u165484 {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:0px;
  224. height:0px;
  225. }
  226. #u165485_img {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:5px;
  232. height:5px;
  233. }
  234. #u165485 {
  235. border-width:0px;
  236. position:absolute;
  237. left:776px;
  238. top:85px;
  239. width:5px;
  240. height:5px;
  241. display:flex;
  242. }
  243. #u165485 .text {
  244. position:absolute;
  245. align-self:center;
  246. padding:2px 2px 2px 2px;
  247. box-sizing:border-box;
  248. width:100%;
  249. }
  250. #u165485_text {
  251. border-width:0px;
  252. word-wrap:break-word;
  253. text-transform:none;
  254. visibility:hidden;
  255. }
  256. #u165486_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:5px;
  262. height:5px;
  263. }
  264. #u165486 {
  265. border-width:0px;
  266. position:absolute;
  267. left:792px;
  268. top:85px;
  269. width:5px;
  270. height:5px;
  271. display:flex;
  272. }
  273. #u165486 .text {
  274. position:absolute;
  275. align-self:center;
  276. padding:2px 2px 2px 2px;
  277. box-sizing:border-box;
  278. width:100%;
  279. }
  280. #u165486_text {
  281. border-width:0px;
  282. word-wrap:break-word;
  283. text-transform:none;
  284. visibility:hidden;
  285. }
  286. #u165487_img {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:7px;
  292. height:7px;
  293. }
  294. #u165487 {
  295. border-width:0px;
  296. position:absolute;
  297. left:783px;
  298. top:84px;
  299. width:7px;
  300. height:7px;
  301. display:flex;
  302. }
  303. #u165487 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u165487_text {
  311. border-width:0px;
  312. word-wrap:break-word;
  313. text-transform:none;
  314. visibility:hidden;
  315. }
  316. #u165488_img {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:19px;
  322. height:2px;
  323. }
  324. #u165488 {
  325. border-width:0px;
  326. position:absolute;
  327. left:800px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. }
  337. #u165488 .text {
  338. position:absolute;
  339. align-self:center;
  340. padding:2px 2px 2px 2px;
  341. box-sizing:border-box;
  342. width:100%;
  343. }
  344. #u165488_text {
  345. border-width:0px;
  346. word-wrap:break-word;
  347. text-transform:none;
  348. visibility:hidden;
  349. }
  350. #u165489_img {
  351. border-width:0px;
  352. position:absolute;
  353. left:0px;
  354. top:0px;
  355. width:375px;
  356. height:44px;
  357. }
  358. #u165489 {
  359. border-width:0px;
  360. position:absolute;
  361. left:482px;
  362. top:24px;
  363. width:375px;
  364. height:44px;
  365. display:flex;
  366. }
  367. #u165489 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u165489_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. visibility:hidden;
  379. }
  380. #u165490_div {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:375px;
  386. height:50px;
  387. background:inherit;
  388. background-color:rgba(255, 255, 255, 1);
  389. box-sizing:border-box;
  390. border-width:1px;
  391. border-style:solid;
  392. border-color:rgba(242, 242, 242, 1);
  393. border-radius:26px;
  394. border-top-left-radius:0px;
  395. border-top-right-radius:0px;
  396. -moz-box-shadow:none;
  397. -webkit-box-shadow:none;
  398. box-shadow:none;
  399. }
  400. #u165490 {
  401. border-width:0px;
  402. position:absolute;
  403. left:482px;
  404. top:788px;
  405. width:375px;
  406. height:50px;
  407. display:flex;
  408. }
  409. #u165490 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 2px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u165490_text {
  417. border-width:0px;
  418. word-wrap:break-word;
  419. text-transform:none;
  420. visibility:hidden;
  421. }
  422. #u165491 {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:0px;
  428. height:0px;
  429. }
  430. #u165492_img {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:24px;
  436. height:24px;
  437. }
  438. #u165492 {
  439. border-width:0px;
  440. position:absolute;
  441. left:522px;
  442. top:792px;
  443. width:24px;
  444. height:24px;
  445. display:flex;
  446. font-size:8px;
  447. }
  448. #u165492 .text {
  449. position:absolute;
  450. align-self:center;
  451. padding:2px 2px 2px 2px;
  452. box-sizing:border-box;
  453. width:100%;
  454. }
  455. #u165492_text {
  456. border-width:0px;
  457. word-wrap:break-word;
  458. text-transform:none;
  459. }
  460. #u165493_div {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:25px;
  466. height:17px;
  467. background:inherit;
  468. background-color:rgba(255, 255, 255, 0);
  469. border:none;
  470. border-radius:0px;
  471. -moz-box-shadow:none;
  472. -webkit-box-shadow:none;
  473. box-shadow:none;
  474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  475. font-weight:400;
  476. font-style:normal;
  477. font-size:12px;
  478. }
  479. #u165493 {
  480. border-width:0px;
  481. position:absolute;
  482. left:522px;
  483. top:817px;
  484. width:25px;
  485. height:17px;
  486. display:flex;
  487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  488. font-weight:400;
  489. font-style:normal;
  490. font-size:12px;
  491. }
  492. #u165493 .text {
  493. position:absolute;
  494. align-self:flex-start;
  495. padding:0px 0px 0px 0px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u165493_text {
  500. border-width:0px;
  501. white-space:nowrap;
  502. text-transform:none;
  503. }
  504. #u165494 {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:0px;
  510. height:0px;
  511. }
  512. #u165495_img {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:24px;
  518. height:24px;
  519. }
  520. #u165495 {
  521. border-width:0px;
  522. position:absolute;
  523. left:792px;
  524. top:794px;
  525. width:24px;
  526. height:24px;
  527. display:flex;
  528. font-size:8px;
  529. }
  530. #u165495 .text {
  531. position:absolute;
  532. align-self:center;
  533. padding:2px 2px 2px 2px;
  534. box-sizing:border-box;
  535. width:100%;
  536. }
  537. #u165495_text {
  538. border-width:0px;
  539. word-wrap:break-word;
  540. text-transform:none;
  541. }
  542. #u165496_div {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:25px;
  548. height:17px;
  549. background:inherit;
  550. background-color:rgba(255, 255, 255, 0);
  551. border:none;
  552. border-radius:0px;
  553. -moz-box-shadow:none;
  554. -webkit-box-shadow:none;
  555. box-shadow:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:12px;
  560. }
  561. #u165496 {
  562. border-width:0px;
  563. position:absolute;
  564. left:792px;
  565. top:819px;
  566. width:25px;
  567. height:17px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u165496 .text {
  575. position:absolute;
  576. align-self:flex-start;
  577. padding:0px 0px 0px 0px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u165496_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u165497_div {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:375px;
  592. height:681px;
  593. background:inherit;
  594. background-color:rgba(242, 242, 242, 0.462745098039216);
  595. border:none;
  596. border-radius:0px;
  597. -moz-box-shadow:none;
  598. -webkit-box-shadow:none;
  599. box-shadow:none;
  600. }
  601. #u165497 {
  602. border-width:0px;
  603. position:absolute;
  604. left:482px;
  605. top:107px;
  606. width:375px;
  607. height:681px;
  608. display:flex;
  609. }
  610. #u165497 .text {
  611. position:absolute;
  612. align-self:center;
  613. padding:2px 2px 2px 2px;
  614. box-sizing:border-box;
  615. width:100%;
  616. }
  617. #u165497_text {
  618. border-width:0px;
  619. word-wrap:break-word;
  620. text-transform:none;
  621. visibility:hidden;
  622. }
  623. #u165498 {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:0px;
  629. height:0px;
  630. }
  631. #u165499_img {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:24px;
  637. height:24px;
  638. }
  639. #u165499 {
  640. border-width:0px;
  641. position:absolute;
  642. left:704px;
  643. top:792px;
  644. width:24px;
  645. height:24px;
  646. display:flex;
  647. font-size:8px;
  648. }
  649. #u165499 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:2px 2px 2px 2px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u165499_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u165500_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:37px;
  667. height:17px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border:none;
  671. border-radius:0px;
  672. -moz-box-shadow:none;
  673. -webkit-box-shadow:none;
  674. box-shadow:none;
  675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  676. font-weight:400;
  677. font-style:normal;
  678. font-size:12px;
  679. }
  680. #u165500 {
  681. border-width:0px;
  682. position:absolute;
  683. left:698px;
  684. top:817px;
  685. width:37px;
  686. height:17px;
  687. display:flex;
  688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  689. font-weight:400;
  690. font-style:normal;
  691. font-size:12px;
  692. }
  693. #u165500 .text {
  694. position:absolute;
  695. align-self:flex-start;
  696. padding:0px 0px 0px 0px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u165500_text {
  701. border-width:0px;
  702. white-space:nowrap;
  703. text-transform:none;
  704. }
  705. #u165501 {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:0px;
  711. height:0px;
  712. }
  713. #u165502_img {
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:24px;
  719. height:24px;
  720. }
  721. #u165502 {
  722. border-width:0px;
  723. position:absolute;
  724. left:610px;
  725. top:792px;
  726. width:24px;
  727. height:24px;
  728. display:flex;
  729. font-size:8px;
  730. }
  731. #u165502 .text {
  732. position:absolute;
  733. align-self:center;
  734. padding:2px 2px 2px 2px;
  735. box-sizing:border-box;
  736. width:100%;
  737. }
  738. #u165502_text {
  739. border-width:0px;
  740. word-wrap:break-word;
  741. text-transform:none;
  742. }
  743. #u165503_div {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:37px;
  749. height:17px;
  750. background:inherit;
  751. background-color:rgba(255, 255, 255, 0);
  752. border:none;
  753. border-radius:0px;
  754. -moz-box-shadow:none;
  755. -webkit-box-shadow:none;
  756. box-shadow:none;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:12px;
  761. }
  762. #u165503 {
  763. border-width:0px;
  764. position:absolute;
  765. left:604px;
  766. top:817px;
  767. width:37px;
  768. height:17px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u165503 .text {
  776. position:absolute;
  777. align-self:flex-start;
  778. padding:0px 0px 0px 0px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u165503_text {
  783. border-width:0px;
  784. white-space:nowrap;
  785. text-transform:none;
  786. }
  787. #u165504_img {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:375px;
  793. height:769px;
  794. }
  795. #u165504 {
  796. border-width:0px;
  797. position:absolute;
  798. left:482px;
  799. top:70px;
  800. width:375px;
  801. height:769px;
  802. display:flex;
  803. }
  804. #u165504 .text {
  805. position:absolute;
  806. align-self:center;
  807. padding:2px 2px 2px 2px;
  808. box-sizing:border-box;
  809. width:100%;
  810. }
  811. #u165504_text {
  812. border-width:0px;
  813. word-wrap:break-word;
  814. text-transform:none;
  815. visibility:hidden;
  816. }
  817. #u165505_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:375px;
  823. height:769px;
  824. background:inherit;
  825. background-color:rgba(255, 255, 255, 1);
  826. border:none;
  827. border-top:0px;
  828. border-radius:24px;
  829. border-top-left-radius:0px;
  830. border-top-right-radius:0px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. }
  835. #u165505 {
  836. border-width:0px;
  837. position:absolute;
  838. left:482px;
  839. top:70px;
  840. width:375px;
  841. height:769px;
  842. display:flex;
  843. }
  844. #u165505 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u165505_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u165506 {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:0px;
  863. height:0px;
  864. }
  865. #u165507_div {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:241px;
  871. height:17px;
  872. background:inherit;
  873. background-color:rgba(255, 255, 255, 0);
  874. border:none;
  875. border-radius:0px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  880. font-weight:400;
  881. font-style:normal;
  882. font-size:12px;
  883. color:#AAAAAA;
  884. }
  885. #u165507 {
  886. border-width:0px;
  887. position:absolute;
  888. left:550px;
  889. top:815px;
  890. width:241px;
  891. height:17px;
  892. display:flex;
  893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  894. font-weight:400;
  895. font-style:normal;
  896. font-size:12px;
  897. color:#AAAAAA;
  898. }
  899. #u165507 .text {
  900. position:absolute;
  901. align-self:flex-start;
  902. padding:0px 0px 0px 0px;
  903. box-sizing:border-box;
  904. width:100%;
  905. }
  906. #u165507_text {
  907. border-width:0px;
  908. white-space:nowrap;
  909. text-transform:none;
  910. }
  911. #u165508_div {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:334px;
  917. height:40px;
  918. background:inherit;
  919. background-color:rgba(0, 137, 254, 1);
  920. border:none;
  921. border-radius:82px;
  922. -moz-box-shadow:none;
  923. -webkit-box-shadow:none;
  924. box-shadow:none;
  925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  926. font-weight:400;
  927. font-style:normal;
  928. font-size:14px;
  929. color:#FFFFFF;
  930. }
  931. #u165508 {
  932. border-width:0px;
  933. position:absolute;
  934. left:497px;
  935. top:768px;
  936. width:334px;
  937. height:40px;
  938. display:flex;
  939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  940. font-weight:400;
  941. font-style:normal;
  942. font-size:14px;
  943. color:#FFFFFF;
  944. }
  945. #u165508 .text {
  946. position:absolute;
  947. align-self:center;
  948. padding:2px 2px 2px 2px;
  949. box-sizing:border-box;
  950. width:100%;
  951. }
  952. #u165508_text {
  953. border-width:0px;
  954. word-wrap:break-word;
  955. text-transform:none;
  956. }
  957. #u165509_div {
  958. border-width:0px;
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:110px;
  963. height:33px;
  964. background:inherit;
  965. background-color:rgba(255, 255, 255, 0);
  966. border:none;
  967. border-radius:0px;
  968. -moz-box-shadow:none;
  969. -webkit-box-shadow:none;
  970. box-shadow:none;
  971. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  972. font-weight:500;
  973. font-style:normal;
  974. font-size:24px;
  975. }
  976. #u165509 {
  977. border-width:0px;
  978. position:absolute;
  979. left:610px;
  980. top:424px;
  981. width:110px;
  982. height:33px;
  983. display:flex;
  984. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  985. font-weight:500;
  986. font-style:normal;
  987. font-size:24px;
  988. }
  989. #u165509 .text {
  990. position:absolute;
  991. align-self:flex-start;
  992. padding:0px 0px 0px 0px;
  993. box-sizing:border-box;
  994. width:100%;
  995. }
  996. #u165509_text {
  997. border-width:0px;
  998. white-space:nowrap;
  999. text-transform:none;
  1000. }
  1001. #u165510 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:0px;
  1007. height:0px;
  1008. }
  1009. #u165511_img {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:220px;
  1015. height:220px;
  1016. }
  1017. #u165511 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:555px;
  1021. top:183px;
  1022. width:220px;
  1023. height:220px;
  1024. display:flex;
  1025. }
  1026. #u165511 .text {
  1027. position:absolute;
  1028. align-self:center;
  1029. padding:2px 2px 2px 2px;
  1030. box-sizing:border-box;
  1031. width:100%;
  1032. }
  1033. #u165511_text {
  1034. border-width:0px;
  1035. word-wrap:break-word;
  1036. text-transform:none;
  1037. visibility:hidden;
  1038. }
  1039. #u165512_div {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:104px;
  1045. height:67px;
  1046. background:inherit;
  1047. background-color:rgba(255, 255, 255, 0);
  1048. border:none;
  1049. border-radius:0px;
  1050. -moz-box-shadow:none;
  1051. -webkit-box-shadow:none;
  1052. box-shadow:none;
  1053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1054. font-weight:500;
  1055. font-style:normal;
  1056. font-size:48px;
  1057. color:#FFFFFF;
  1058. }
  1059. #u165512 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:623px;
  1063. top:230px;
  1064. width:104px;
  1065. height:67px;
  1066. display:flex;
  1067. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1068. font-weight:500;
  1069. font-style:normal;
  1070. font-size:48px;
  1071. color:#FFFFFF;
  1072. }
  1073. #u165512 .text {
  1074. position:absolute;
  1075. align-self:flex-start;
  1076. padding:0px 0px 0px 0px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u165512_text {
  1081. border-width:0px;
  1082. white-space:nowrap;
  1083. text-transform:none;
  1084. }
  1085. #u165513_div {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:88px;
  1091. height:60px;
  1092. background:inherit;
  1093. background-color:rgba(255, 255, 255, 0);
  1094. border:none;
  1095. border-left:0px;
  1096. border-top:0px;
  1097. border-right:0px;
  1098. border-radius:0px;
  1099. border-bottom-right-radius:0px;
  1100. border-bottom-left-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1105. font-weight:400;
  1106. font-style:normal;
  1107. color:#FFFFFF;
  1108. text-align:center;
  1109. line-height:30px;
  1110. }
  1111. #u165513 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:621px;
  1115. top:297px;
  1116. width:88px;
  1117. height:60px;
  1118. display:flex;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. color:#FFFFFF;
  1123. text-align:center;
  1124. line-height:30px;
  1125. }
  1126. #u165513 .text {
  1127. position:absolute;
  1128. align-self:flex-start;
  1129. padding:0px 0px 0px 0px;
  1130. box-sizing:border-box;
  1131. width:100%;
  1132. }
  1133. #u165513_text {
  1134. border-width:0px;
  1135. white-space:nowrap;
  1136. text-transform:none;
  1137. }
  1138. #u165514_div {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:80px;
  1144. height:30px;
  1145. background:inherit;
  1146. background-color:rgba(255, 255, 255, 0);
  1147. border:none;
  1148. border-left:0px;
  1149. border-top:0px;
  1150. border-right:0px;
  1151. border-radius:0px;
  1152. border-bottom-right-radius:0px;
  1153. border-bottom-left-radius:0px;
  1154. -moz-box-shadow:none;
  1155. -webkit-box-shadow:none;
  1156. box-shadow:none;
  1157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1158. font-weight:400;
  1159. font-style:normal;
  1160. font-size:14px;
  1161. color:#7F7F7F;
  1162. text-align:center;
  1163. line-height:30px;
  1164. }
  1165. #u165514 {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:515px;
  1169. top:518px;
  1170. width:80px;
  1171. height:30px;
  1172. display:flex;
  1173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1174. font-weight:400;
  1175. font-style:normal;
  1176. font-size:14px;
  1177. color:#7F7F7F;
  1178. text-align:center;
  1179. line-height:30px;
  1180. }
  1181. #u165514 .text {
  1182. position:absolute;
  1183. align-self:flex-start;
  1184. padding:0px 0px 0px 0px;
  1185. box-sizing:border-box;
  1186. width:100%;
  1187. }
  1188. #u165514_text {
  1189. border-width:0px;
  1190. white-space:nowrap;
  1191. text-transform:none;
  1192. }
  1193. #u165515_div {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:0px;
  1197. top:0px;
  1198. width:60px;
  1199. height:30px;
  1200. background:inherit;
  1201. background-color:rgba(255, 255, 255, 0);
  1202. border:none;
  1203. border-left:0px;
  1204. border-top:0px;
  1205. border-right:0px;
  1206. border-radius:0px;
  1207. border-bottom-right-radius:0px;
  1208. border-bottom-left-radius:0px;
  1209. -moz-box-shadow:none;
  1210. -webkit-box-shadow:none;
  1211. box-shadow:none;
  1212. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1213. font-weight:650;
  1214. font-style:normal;
  1215. font-size:18px;
  1216. color:#298FFF;
  1217. text-align:center;
  1218. line-height:30px;
  1219. }
  1220. #u165515 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:525px;
  1224. top:488px;
  1225. width:60px;
  1226. height:30px;
  1227. display:flex;
  1228. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1229. font-weight:650;
  1230. font-style:normal;
  1231. font-size:18px;
  1232. color:#298FFF;
  1233. text-align:center;
  1234. line-height:30px;
  1235. }
  1236. #u165515 .text {
  1237. position:absolute;
  1238. align-self:flex-start;
  1239. padding:0px 0px 0px 0px;
  1240. box-sizing:border-box;
  1241. width:100%;
  1242. }
  1243. #u165515_text {
  1244. border-width:0px;
  1245. white-space:nowrap;
  1246. text-transform:none;
  1247. }
  1248. #u165516_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:57px;
  1254. height:30px;
  1255. background:inherit;
  1256. background-color:rgba(255, 255, 255, 0);
  1257. border:none;
  1258. border-left:0px;
  1259. border-top:0px;
  1260. border-right:0px;
  1261. border-radius:0px;
  1262. border-bottom-right-radius:0px;
  1263. border-bottom-left-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:14px;
  1271. color:#7F7F7F;
  1272. text-align:center;
  1273. line-height:30px;
  1274. }
  1275. #u165516 {
  1276. border-width:0px;
  1277. position:absolute;
  1278. left:651px;
  1279. top:518px;
  1280. width:57px;
  1281. height:30px;
  1282. display:flex;
  1283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1284. font-weight:400;
  1285. font-style:normal;
  1286. font-size:14px;
  1287. color:#7F7F7F;
  1288. text-align:center;
  1289. line-height:30px;
  1290. }
  1291. #u165516 .text {
  1292. position:absolute;
  1293. align-self:flex-start;
  1294. padding:0px 0px 0px 0px;
  1295. box-sizing:border-box;
  1296. width:100%;
  1297. }
  1298. #u165516_text {
  1299. border-width:0px;
  1300. white-space:nowrap;
  1301. text-transform:none;
  1302. }
  1303. #u165517_div {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:80px;
  1309. height:30px;
  1310. background:inherit;
  1311. background-color:rgba(255, 255, 255, 0);
  1312. border:none;
  1313. border-left:0px;
  1314. border-top:0px;
  1315. border-right:0px;
  1316. border-radius:0px;
  1317. border-bottom-right-radius:0px;
  1318. border-bottom-left-radius:0px;
  1319. -moz-box-shadow:none;
  1320. -webkit-box-shadow:none;
  1321. box-shadow:none;
  1322. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1323. font-weight:650;
  1324. font-style:normal;
  1325. font-size:18px;
  1326. color:#298FFF;
  1327. line-height:30px;
  1328. }
  1329. #u165517 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:640px;
  1333. top:488px;
  1334. width:80px;
  1335. height:30px;
  1336. display:flex;
  1337. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1338. font-weight:650;
  1339. font-style:normal;
  1340. font-size:18px;
  1341. color:#298FFF;
  1342. line-height:30px;
  1343. }
  1344. #u165517 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u165517_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u165518_div {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:80px;
  1362. height:30px;
  1363. background:inherit;
  1364. background-color:rgba(255, 255, 255, 0);
  1365. border:none;
  1366. border-left:0px;
  1367. border-top:0px;
  1368. border-right:0px;
  1369. border-radius:0px;
  1370. border-bottom-right-radius:0px;
  1371. border-bottom-left-radius:0px;
  1372. -moz-box-shadow:none;
  1373. -webkit-box-shadow:none;
  1374. box-shadow:none;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:14px;
  1379. color:#7F7F7F;
  1380. text-align:center;
  1381. line-height:30px;
  1382. }
  1383. #u165518 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:749px;
  1387. top:518px;
  1388. width:80px;
  1389. height:30px;
  1390. display:flex;
  1391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1392. font-weight:400;
  1393. font-style:normal;
  1394. font-size:14px;
  1395. color:#7F7F7F;
  1396. text-align:center;
  1397. line-height:30px;
  1398. }
  1399. #u165518 .text {
  1400. position:absolute;
  1401. align-self:flex-start;
  1402. padding:0px 0px 0px 0px;
  1403. box-sizing:border-box;
  1404. width:100%;
  1405. }
  1406. #u165518_text {
  1407. border-width:0px;
  1408. white-space:nowrap;
  1409. text-transform:none;
  1410. }
  1411. #u165519_div {
  1412. border-width:0px;
  1413. position:absolute;
  1414. left:0px;
  1415. top:0px;
  1416. width:35px;
  1417. height:30px;
  1418. background:inherit;
  1419. background-color:rgba(255, 255, 255, 0);
  1420. border:none;
  1421. border-left:0px;
  1422. border-top:0px;
  1423. border-right:0px;
  1424. border-radius:0px;
  1425. border-bottom-right-radius:0px;
  1426. border-bottom-left-radius:0px;
  1427. -moz-box-shadow:none;
  1428. -webkit-box-shadow:none;
  1429. box-shadow:none;
  1430. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1431. font-weight:650;
  1432. font-style:normal;
  1433. font-size:18px;
  1434. color:#298FFF;
  1435. text-align:center;
  1436. line-height:30px;
  1437. }
  1438. #u165519 {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:772px;
  1442. top:488px;
  1443. width:35px;
  1444. height:30px;
  1445. display:flex;
  1446. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  1447. font-weight:650;
  1448. font-style:normal;
  1449. font-size:18px;
  1450. color:#298FFF;
  1451. text-align:center;
  1452. line-height:30px;
  1453. }
  1454. #u165519 .text {
  1455. position:absolute;
  1456. align-self:flex-start;
  1457. padding:0px 0px 0px 0px;
  1458. box-sizing:border-box;
  1459. width:100%;
  1460. }
  1461. #u165519_text {
  1462. border-width:0px;
  1463. white-space:nowrap;
  1464. text-transform:none;
  1465. }
  1466. #u165520 {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:0px;
  1472. height:0px;
  1473. }
  1474. #u165521_div {
  1475. border-width:0px;
  1476. position:absolute;
  1477. left:0px;
  1478. top:0px;
  1479. width:160px;
  1480. height:50px;
  1481. background:inherit;
  1482. background-color:rgba(242, 242, 242, 0.498039215686275);
  1483. border:none;
  1484. border-radius:4px;
  1485. -moz-box-shadow:none;
  1486. -webkit-box-shadow:none;
  1487. box-shadow:none;
  1488. }
  1489. #u165521 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:500px;
  1493. top:566px;
  1494. width:160px;
  1495. height:50px;
  1496. display:flex;
  1497. }
  1498. #u165521 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:2px 2px 2px 2px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u165521_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. visibility:hidden;
  1510. }
  1511. #u165522_div {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:75px;
  1517. height:30px;
  1518. background:inherit;
  1519. background-color:rgba(255, 255, 255, 0);
  1520. border:none;
  1521. border-left:0px;
  1522. border-top:0px;
  1523. border-right:0px;
  1524. border-radius:0px;
  1525. border-bottom-right-radius:0px;
  1526. border-bottom-left-radius:0px;
  1527. -moz-box-shadow:none;
  1528. -webkit-box-shadow:none;
  1529. box-shadow:none;
  1530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1531. font-weight:400;
  1532. font-style:normal;
  1533. font-size:14px;
  1534. color:#7F7F7F;
  1535. text-align:center;
  1536. line-height:30px;
  1537. }
  1538. #u165522 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:510px;
  1542. top:576px;
  1543. width:75px;
  1544. height:30px;
  1545. display:flex;
  1546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1547. font-weight:400;
  1548. font-style:normal;
  1549. font-size:14px;
  1550. color:#7F7F7F;
  1551. text-align:center;
  1552. line-height:30px;
  1553. }
  1554. #u165522 .text {
  1555. position:absolute;
  1556. align-self:flex-start;
  1557. padding:0px 0px 0px 0px;
  1558. box-sizing:border-box;
  1559. width:100%;
  1560. }
  1561. #u165522_text {
  1562. border-width:0px;
  1563. white-space:nowrap;
  1564. text-transform:none;
  1565. }
  1566. #u165523_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:44px;
  1572. height:30px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-left:0px;
  1577. border-top:0px;
  1578. border-right:0px;
  1579. border-radius:0px;
  1580. border-bottom-right-radius:0px;
  1581. border-bottom-left-radius:0px;
  1582. -moz-box-shadow:none;
  1583. -webkit-box-shadow:none;
  1584. box-shadow:none;
  1585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:14px;
  1589. color:#298FFF;
  1590. text-align:center;
  1591. line-height:30px;
  1592. }
  1593. #u165523 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:599px;
  1597. top:576px;
  1598. width:44px;
  1599. height:30px;
  1600. display:flex;
  1601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1602. font-weight:400;
  1603. font-style:normal;
  1604. font-size:14px;
  1605. color:#298FFF;
  1606. text-align:center;
  1607. line-height:30px;
  1608. }
  1609. #u165523 .text {
  1610. position:absolute;
  1611. align-self:flex-start;
  1612. padding:0px 0px 0px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u165523_text {
  1617. border-width:0px;
  1618. white-space:nowrap;
  1619. text-transform:none;
  1620. }
  1621. #u165524_div {
  1622. border-width:0px;
  1623. position:absolute;
  1624. left:0px;
  1625. top:0px;
  1626. width:323px;
  1627. height:30px;
  1628. background:inherit;
  1629. background-color:rgba(255, 255, 255, 0);
  1630. border:none;
  1631. border-left:0px;
  1632. border-top:0px;
  1633. border-right:0px;
  1634. border-radius:0px;
  1635. border-bottom-right-radius:0px;
  1636. border-bottom-left-radius:0px;
  1637. -moz-box-shadow:none;
  1638. -webkit-box-shadow:none;
  1639. box-shadow:none;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:14px;
  1644. line-height:30px;
  1645. }
  1646. #u165524 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:512px;
  1650. top:116px;
  1651. width:323px;
  1652. height:30px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:14px;
  1658. line-height:30px;
  1659. }
  1660. #u165524 .text {
  1661. position:absolute;
  1662. align-self:flex-start;
  1663. padding:0px 0px 0px 0px;
  1664. box-sizing:border-box;
  1665. width:100%;
  1666. }
  1667. #u165524_text {
  1668. border-width:0px;
  1669. white-space:nowrap;
  1670. text-transform:none;
  1671. }
  1672. #u165525_div {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:55px;
  1678. height:30px;
  1679. background:inherit;
  1680. background-color:rgba(255, 255, 255, 0);
  1681. border:none;
  1682. border-left:0px;
  1683. border-top:0px;
  1684. border-right:0px;
  1685. border-radius:0px;
  1686. border-bottom-right-radius:0px;
  1687. border-bottom-left-radius:0px;
  1688. -moz-box-shadow:none;
  1689. -webkit-box-shadow:none;
  1690. box-shadow:none;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:18px;
  1695. line-height:30px;
  1696. }
  1697. #u165525 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:640px;
  1701. top:77px;
  1702. width:55px;
  1703. height:30px;
  1704. display:flex;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:18px;
  1709. line-height:30px;
  1710. }
  1711. #u165525 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u165525_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u165526_img {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:15px;
  1729. height:15px;
  1730. }
  1731. #u165526 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:500px;
  1735. top:84px;
  1736. width:15px;
  1737. height:15px;
  1738. display:flex;
  1739. }
  1740. #u165526 .text {
  1741. position:absolute;
  1742. align-self:center;
  1743. padding:2px 2px 2px 2px;
  1744. box-sizing:border-box;
  1745. width:100%;
  1746. }
  1747. #u165526_text {
  1748. border-width:0px;
  1749. word-wrap:break-word;
  1750. text-transform:none;
  1751. visibility:hidden;
  1752. }
  1753. #u165527_div {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:121px;
  1759. height:30px;
  1760. background:inherit;
  1761. background-color:rgba(255, 255, 255, 0);
  1762. border:none;
  1763. border-left:0px;
  1764. border-top:0px;
  1765. border-right:0px;
  1766. border-radius:0px;
  1767. border-bottom-right-radius:0px;
  1768. border-bottom-left-radius:0px;
  1769. -moz-box-shadow:none;
  1770. -webkit-box-shadow:none;
  1771. box-shadow:none;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:12px;
  1776. color:#7F7F7F;
  1777. line-height:30px;
  1778. }
  1779. #u165527 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:503px;
  1783. top:679px;
  1784. width:121px;
  1785. height:30px;
  1786. display:flex;
  1787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1788. font-weight:400;
  1789. font-style:normal;
  1790. font-size:12px;
  1791. color:#7F7F7F;
  1792. line-height:30px;
  1793. }
  1794. #u165527 .text {
  1795. position:absolute;
  1796. align-self:flex-start;
  1797. padding:0px 0px 0px 0px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u165527_text {
  1802. border-width:0px;
  1803. white-space:nowrap;
  1804. text-transform:none;
  1805. }
  1806. #u165528_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:154px;
  1812. height:30px;
  1813. background:inherit;
  1814. background-color:rgba(255, 255, 255, 0);
  1815. border:none;
  1816. border-left:0px;
  1817. border-top:0px;
  1818. border-right:0px;
  1819. border-radius:0px;
  1820. border-bottom-right-radius:0px;
  1821. border-bottom-left-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. color:#7F7F7F;
  1830. line-height:30px;
  1831. }
  1832. #u165528 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:686px;
  1836. top:679px;
  1837. width:154px;
  1838. height:30px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:12px;
  1844. color:#7F7F7F;
  1845. line-height:30px;
  1846. }
  1847. #u165528 .text {
  1848. position:absolute;
  1849. align-self:flex-start;
  1850. padding:0px 0px 0px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u165528_text {
  1855. border-width:0px;
  1856. white-space:nowrap;
  1857. text-transform:none;
  1858. }
  1859. #u165529_img {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:70px;
  1865. height:30px;
  1866. }
  1867. #u165529 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:787px;
  1871. top:157px;
  1872. width:70px;
  1873. height:30px;
  1874. display:flex;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:12px;
  1879. color:#298FFF;
  1880. }
  1881. #u165529 .text {
  1882. position:absolute;
  1883. align-self:center;
  1884. padding:2px 2px 2px 10px;
  1885. box-sizing:border-box;
  1886. width:100%;
  1887. }
  1888. #u165529_text {
  1889. border-width:0px;
  1890. word-wrap:break-word;
  1891. text-transform:none;
  1892. }
  1893. #u165530 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:0px;
  1899. height:0px;
  1900. }
  1901. #u165531_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:160px;
  1907. height:50px;
  1908. background:inherit;
  1909. background-color:rgba(242, 242, 242, 0.498039215686275);
  1910. border:none;
  1911. border-radius:4px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. }
  1916. #u165531 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:680px;
  1920. top:566px;
  1921. width:160px;
  1922. height:50px;
  1923. display:flex;
  1924. }
  1925. #u165531 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u165531_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. visibility:hidden;
  1937. }
  1938. #u165532_div {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:76px;
  1944. height:30px;
  1945. background:inherit;
  1946. background-color:rgba(255, 255, 255, 0);
  1947. border:none;
  1948. border-left:0px;
  1949. border-top:0px;
  1950. border-right:0px;
  1951. border-radius:0px;
  1952. border-bottom-right-radius:0px;
  1953. border-bottom-left-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:14px;
  1961. color:#7F7F7F;
  1962. text-align:center;
  1963. line-height:30px;
  1964. }
  1965. #u165532 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:689px;
  1969. top:576px;
  1970. width:76px;
  1971. height:30px;
  1972. display:flex;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:14px;
  1977. color:#7F7F7F;
  1978. text-align:center;
  1979. line-height:30px;
  1980. }
  1981. #u165532 .text {
  1982. position:absolute;
  1983. align-self:flex-start;
  1984. padding:0px 0px 0px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u165532_text {
  1989. border-width:0px;
  1990. white-space:nowrap;
  1991. text-transform:none;
  1992. }
  1993. #u165533_div {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:38px;
  1999. height:30px;
  2000. background:inherit;
  2001. background-color:rgba(255, 255, 255, 0);
  2002. border:none;
  2003. border-left:0px;
  2004. border-top:0px;
  2005. border-right:0px;
  2006. border-radius:0px;
  2007. border-bottom-right-radius:0px;
  2008. border-bottom-left-radius:0px;
  2009. -moz-box-shadow:none;
  2010. -webkit-box-shadow:none;
  2011. box-shadow:none;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:14px;
  2016. color:#298FFF;
  2017. text-align:center;
  2018. line-height:30px;
  2019. }
  2020. #u165533 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:782px;
  2024. top:576px;
  2025. width:38px;
  2026. height:30px;
  2027. display:flex;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. font-size:14px;
  2032. color:#298FFF;
  2033. text-align:center;
  2034. line-height:30px;
  2035. }
  2036. #u165533 .text {
  2037. position:absolute;
  2038. align-self:flex-start;
  2039. padding:0px 0px 0px 0px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u165533_text {
  2044. border-width:0px;
  2045. white-space:nowrap;
  2046. text-transform:none;
  2047. }
  2048. #u165534 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:0px;
  2054. height:0px;
  2055. }
  2056. #u165535_div {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:160px;
  2062. height:50px;
  2063. background:inherit;
  2064. background-color:rgba(242, 242, 242, 0.498039215686275);
  2065. border:none;
  2066. border-radius:4px;
  2067. -moz-box-shadow:none;
  2068. -webkit-box-shadow:none;
  2069. box-shadow:none;
  2070. }
  2071. #u165535 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:500px;
  2075. top:621px;
  2076. width:160px;
  2077. height:50px;
  2078. display:flex;
  2079. }
  2080. #u165535 .text {
  2081. position:absolute;
  2082. align-self:center;
  2083. padding:2px 2px 2px 2px;
  2084. box-sizing:border-box;
  2085. width:100%;
  2086. }
  2087. #u165535_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. visibility:hidden;
  2092. }
  2093. #u165536_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:89px;
  2099. height:30px;
  2100. background:inherit;
  2101. background-color:rgba(255, 255, 255, 0);
  2102. border:none;
  2103. border-left:0px;
  2104. border-top:0px;
  2105. border-right:0px;
  2106. border-radius:0px;
  2107. border-bottom-right-radius:0px;
  2108. border-bottom-left-radius:0px;
  2109. -moz-box-shadow:none;
  2110. -webkit-box-shadow:none;
  2111. box-shadow:none;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:14px;
  2116. color:#7F7F7F;
  2117. text-align:center;
  2118. line-height:30px;
  2119. }
  2120. #u165536 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:503px;
  2124. top:631px;
  2125. width:89px;
  2126. height:30px;
  2127. display:flex;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. color:#7F7F7F;
  2133. text-align:center;
  2134. line-height:30px;
  2135. }
  2136. #u165536 .text {
  2137. position:absolute;
  2138. align-self:flex-start;
  2139. padding:0px 0px 0px 0px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u165536_text {
  2144. border-width:0px;
  2145. white-space:nowrap;
  2146. text-transform:none;
  2147. }
  2148. #u165537_div {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:36px;
  2154. height:30px;
  2155. background:inherit;
  2156. background-color:rgba(255, 255, 255, 0);
  2157. border:none;
  2158. border-left:0px;
  2159. border-top:0px;
  2160. border-right:0px;
  2161. border-radius:0px;
  2162. border-bottom-right-radius:0px;
  2163. border-bottom-left-radius:0px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:14px;
  2171. color:#298FFF;
  2172. text-align:center;
  2173. line-height:30px;
  2174. }
  2175. #u165537 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:603px;
  2179. top:631px;
  2180. width:36px;
  2181. height:30px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:14px;
  2187. color:#298FFF;
  2188. text-align:center;
  2189. line-height:30px;
  2190. }
  2191. #u165537 .text {
  2192. position:absolute;
  2193. align-self:flex-start;
  2194. padding:0px 0px 0px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u165537_text {
  2199. border-width:0px;
  2200. white-space:nowrap;
  2201. text-transform:none;
  2202. }
  2203. #u165538 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:0px;
  2209. height:0px;
  2210. }
  2211. #u165539_div {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:160px;
  2217. height:50px;
  2218. background:inherit;
  2219. background-color:rgba(242, 242, 242, 0.498039215686275);
  2220. border:none;
  2221. border-radius:4px;
  2222. -moz-box-shadow:none;
  2223. -webkit-box-shadow:none;
  2224. box-shadow:none;
  2225. }
  2226. #u165539 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:680px;
  2230. top:621px;
  2231. width:160px;
  2232. height:50px;
  2233. display:flex;
  2234. }
  2235. #u165539 .text {
  2236. position:absolute;
  2237. align-self:center;
  2238. padding:2px 2px 2px 2px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u165539_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. visibility:hidden;
  2247. }
  2248. #u165540_div {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:87px;
  2254. height:30px;
  2255. background:inherit;
  2256. background-color:rgba(255, 255, 255, 0);
  2257. border:none;
  2258. border-left:0px;
  2259. border-top:0px;
  2260. border-right:0px;
  2261. border-radius:0px;
  2262. border-bottom-right-radius:0px;
  2263. border-bottom-left-radius:0px;
  2264. -moz-box-shadow:none;
  2265. -webkit-box-shadow:none;
  2266. box-shadow:none;
  2267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2268. font-weight:400;
  2269. font-style:normal;
  2270. color:#7F7F7F;
  2271. text-align:center;
  2272. line-height:30px;
  2273. }
  2274. #u165540 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:693px;
  2278. top:631px;
  2279. width:87px;
  2280. height:30px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. color:#7F7F7F;
  2286. text-align:center;
  2287. line-height:30px;
  2288. }
  2289. #u165540 .text {
  2290. position:absolute;
  2291. align-self:flex-start;
  2292. padding:0px 0px 0px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u165540_text {
  2297. border-width:0px;
  2298. white-space:nowrap;
  2299. text-transform:none;
  2300. }
  2301. #u165541_div {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:38px;
  2307. height:30px;
  2308. background:inherit;
  2309. background-color:rgba(255, 255, 255, 0);
  2310. border:none;
  2311. border-left:0px;
  2312. border-top:0px;
  2313. border-right:0px;
  2314. border-radius:0px;
  2315. border-bottom-right-radius:0px;
  2316. border-bottom-left-radius:0px;
  2317. -moz-box-shadow:none;
  2318. -webkit-box-shadow:none;
  2319. box-shadow:none;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:14px;
  2324. color:#298FFF;
  2325. text-align:center;
  2326. line-height:30px;
  2327. }
  2328. #u165541 {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:782px;
  2332. top:631px;
  2333. width:38px;
  2334. height:30px;
  2335. display:flex;
  2336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2337. font-weight:400;
  2338. font-style:normal;
  2339. font-size:14px;
  2340. color:#298FFF;
  2341. text-align:center;
  2342. line-height:30px;
  2343. }
  2344. #u165541 .text {
  2345. position:absolute;
  2346. align-self:flex-start;
  2347. padding:0px 0px 0px 0px;
  2348. box-sizing:border-box;
  2349. width:100%;
  2350. }
  2351. #u165541_text {
  2352. border-width:0px;
  2353. white-space:nowrap;
  2354. text-transform:none;
  2355. }
  2356. #u165543_img {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:433px;
  2362. height:865px;
  2363. }
  2364. #u165543 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:1389px;
  2368. top:1px;
  2369. width:433px;
  2370. height:865px;
  2371. display:flex;
  2372. }
  2373. #u165543 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 2px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u165543_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u165544_div {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:375px;
  2392. height:40px;
  2393. background:inherit;
  2394. background-color:rgba(255, 255, 255, 1);
  2395. box-sizing:border-box;
  2396. border-width:1px;
  2397. border-style:solid;
  2398. border-color:rgba(215, 215, 215, 1);
  2399. border-left:0px;
  2400. border-top:0px;
  2401. border-right:0px;
  2402. border-radius:0px;
  2403. border-bottom-right-radius:0px;
  2404. border-bottom-left-radius:0px;
  2405. -moz-box-shadow:none;
  2406. -webkit-box-shadow:none;
  2407. box-shadow:none;
  2408. }
  2409. #u165544 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:1418px;
  2413. top:68px;
  2414. width:375px;
  2415. height:40px;
  2416. display:flex;
  2417. }
  2418. #u165544 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 2px 2px 2px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u165544_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. visibility:hidden;
  2430. }
  2431. #u165545 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:0px;
  2437. height:0px;
  2438. }
  2439. #u165546_div {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:88px;
  2445. height:32px;
  2446. background:inherit;
  2447. background-color:rgba(255, 255, 255, 1);
  2448. box-sizing:border-box;
  2449. border-width:1px;
  2450. border-style:solid;
  2451. border-color:rgba(242, 242, 242, 1);
  2452. border-radius:33px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. }
  2457. #u165546 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:1698px;
  2461. top:72px;
  2462. width:88px;
  2463. height:32px;
  2464. display:flex;
  2465. }
  2466. #u165546 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 2px 2px 2px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u165546_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u165547 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:0px;
  2485. height:0px;
  2486. }
  2487. #u165548_img {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:18px;
  2493. height:18px;
  2494. }
  2495. #u165548 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:1761px;
  2499. top:79px;
  2500. width:18px;
  2501. height:18px;
  2502. display:flex;
  2503. }
  2504. #u165548 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u165548_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u165549_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:6px;
  2523. height:6px;
  2524. }
  2525. #u165549 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:1767px;
  2529. top:85px;
  2530. width:6px;
  2531. height:6px;
  2532. display:flex;
  2533. }
  2534. #u165549 .text {
  2535. position:absolute;
  2536. align-self:center;
  2537. padding:2px 2px 2px 2px;
  2538. box-sizing:border-box;
  2539. width:100%;
  2540. }
  2541. #u165549_text {
  2542. border-width:0px;
  2543. word-wrap:break-word;
  2544. text-transform:none;
  2545. visibility:hidden;
  2546. }
  2547. #u165550 {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:0px;
  2553. height:0px;
  2554. }
  2555. #u165551_img {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:0px;
  2559. top:0px;
  2560. width:5px;
  2561. height:5px;
  2562. }
  2563. #u165551 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:1712px;
  2567. top:86px;
  2568. width:5px;
  2569. height:5px;
  2570. display:flex;
  2571. }
  2572. #u165551 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 2px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u165551_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. visibility:hidden;
  2584. }
  2585. #u165552_img {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:5px;
  2591. height:5px;
  2592. }
  2593. #u165552 {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:1728px;
  2597. top:86px;
  2598. width:5px;
  2599. height:5px;
  2600. display:flex;
  2601. }
  2602. #u165552 .text {
  2603. position:absolute;
  2604. align-self:center;
  2605. padding:2px 2px 2px 2px;
  2606. box-sizing:border-box;
  2607. width:100%;
  2608. }
  2609. #u165552_text {
  2610. border-width:0px;
  2611. word-wrap:break-word;
  2612. text-transform:none;
  2613. visibility:hidden;
  2614. }
  2615. #u165553_img {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:0px;
  2619. top:0px;
  2620. width:7px;
  2621. height:7px;
  2622. }
  2623. #u165553 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:1719px;
  2627. top:85px;
  2628. width:7px;
  2629. height:7px;
  2630. display:flex;
  2631. }
  2632. #u165553 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 2px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u165553_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u165554_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:19px;
  2651. height:2px;
  2652. }
  2653. #u165554 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1736px;
  2657. top:88px;
  2658. width:18px;
  2659. height:1px;
  2660. display:flex;
  2661. -webkit-transform:rotate(90deg);
  2662. -moz-transform:rotate(90deg);
  2663. -ms-transform:rotate(90deg);
  2664. transform:rotate(90deg);
  2665. }
  2666. #u165554 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 2px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u165554_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. visibility:hidden;
  2678. }
  2679. #u165555_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:375px;
  2685. height:44px;
  2686. }
  2687. #u165555 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:1418px;
  2691. top:25px;
  2692. width:375px;
  2693. height:44px;
  2694. display:flex;
  2695. }
  2696. #u165555 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 2px 2px 2px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u165555_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u165556_div {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:375px;
  2715. height:50px;
  2716. background:inherit;
  2717. background-color:rgba(255, 255, 255, 1);
  2718. box-sizing:border-box;
  2719. border-width:1px;
  2720. border-style:solid;
  2721. border-color:rgba(242, 242, 242, 1);
  2722. border-radius:26px;
  2723. border-top-left-radius:0px;
  2724. border-top-right-radius:0px;
  2725. -moz-box-shadow:none;
  2726. -webkit-box-shadow:none;
  2727. box-shadow:none;
  2728. }
  2729. #u165556 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:1418px;
  2733. top:789px;
  2734. width:375px;
  2735. height:50px;
  2736. display:flex;
  2737. }
  2738. #u165556 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u165556_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u165557 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:0px;
  2757. height:0px;
  2758. }
  2759. #u165558_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:24px;
  2765. height:24px;
  2766. }
  2767. #u165558 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:1458px;
  2771. top:793px;
  2772. width:24px;
  2773. height:24px;
  2774. display:flex;
  2775. font-size:8px;
  2776. }
  2777. #u165558 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u165558_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u165559_div {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:25px;
  2795. height:17px;
  2796. background:inherit;
  2797. background-color:rgba(255, 255, 255, 0);
  2798. border:none;
  2799. border-radius:0px;
  2800. -moz-box-shadow:none;
  2801. -webkit-box-shadow:none;
  2802. box-shadow:none;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:12px;
  2807. }
  2808. #u165559 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:1458px;
  2812. top:818px;
  2813. width:25px;
  2814. height:17px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. }
  2821. #u165559 .text {
  2822. position:absolute;
  2823. align-self:flex-start;
  2824. padding:0px 0px 0px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u165559_text {
  2829. border-width:0px;
  2830. white-space:nowrap;
  2831. text-transform:none;
  2832. }
  2833. #u165560 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:0px;
  2839. height:0px;
  2840. }
  2841. #u165561_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:24px;
  2847. height:24px;
  2848. }
  2849. #u165561 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:1728px;
  2853. top:795px;
  2854. width:24px;
  2855. height:24px;
  2856. display:flex;
  2857. font-size:8px;
  2858. }
  2859. #u165561 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 2px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u165561_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. }
  2871. #u165562_div {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:25px;
  2877. height:17px;
  2878. background:inherit;
  2879. background-color:rgba(255, 255, 255, 0);
  2880. border:none;
  2881. border-radius:0px;
  2882. -moz-box-shadow:none;
  2883. -webkit-box-shadow:none;
  2884. box-shadow:none;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:12px;
  2889. }
  2890. #u165562 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:1728px;
  2894. top:820px;
  2895. width:25px;
  2896. height:17px;
  2897. display:flex;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:12px;
  2902. }
  2903. #u165562 .text {
  2904. position:absolute;
  2905. align-self:flex-start;
  2906. padding:0px 0px 0px 0px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u165562_text {
  2911. border-width:0px;
  2912. white-space:nowrap;
  2913. text-transform:none;
  2914. }
  2915. #u165563_div {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:375px;
  2921. height:681px;
  2922. background:inherit;
  2923. background-color:rgba(242, 242, 242, 0.462745098039216);
  2924. border:none;
  2925. border-radius:0px;
  2926. -moz-box-shadow:none;
  2927. -webkit-box-shadow:none;
  2928. box-shadow:none;
  2929. }
  2930. #u165563 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:1418px;
  2934. top:108px;
  2935. width:375px;
  2936. height:681px;
  2937. display:flex;
  2938. }
  2939. #u165563 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:2px 2px 2px 2px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u165563_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. visibility:hidden;
  2951. }
  2952. #u165564 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:0px;
  2958. height:0px;
  2959. }
  2960. #u165565_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:24px;
  2966. height:24px;
  2967. }
  2968. #u165565 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:1640px;
  2972. top:793px;
  2973. width:24px;
  2974. height:24px;
  2975. display:flex;
  2976. font-size:8px;
  2977. }
  2978. #u165565 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 2px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u165565_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. }
  2990. #u165566_div {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:37px;
  2996. height:17px;
  2997. background:inherit;
  2998. background-color:rgba(255, 255, 255, 0);
  2999. border:none;
  3000. border-radius:0px;
  3001. -moz-box-shadow:none;
  3002. -webkit-box-shadow:none;
  3003. box-shadow:none;
  3004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3005. font-weight:400;
  3006. font-style:normal;
  3007. font-size:12px;
  3008. }
  3009. #u165566 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:1634px;
  3013. top:818px;
  3014. width:37px;
  3015. height:17px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. }
  3022. #u165566 .text {
  3023. position:absolute;
  3024. align-self:flex-start;
  3025. padding:0px 0px 0px 0px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u165566_text {
  3030. border-width:0px;
  3031. white-space:nowrap;
  3032. text-transform:none;
  3033. }
  3034. #u165567 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:0px;
  3040. height:0px;
  3041. }
  3042. #u165568_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:24px;
  3048. height:24px;
  3049. }
  3050. #u165568 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:1546px;
  3054. top:793px;
  3055. width:24px;
  3056. height:24px;
  3057. display:flex;
  3058. font-size:8px;
  3059. }
  3060. #u165568 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 2px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u165568_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. }
  3072. #u165569_div {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:37px;
  3078. height:17px;
  3079. background:inherit;
  3080. background-color:rgba(255, 255, 255, 0);
  3081. border:none;
  3082. border-radius:0px;
  3083. -moz-box-shadow:none;
  3084. -webkit-box-shadow:none;
  3085. box-shadow:none;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. }
  3091. #u165569 {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:1540px;
  3095. top:818px;
  3096. width:37px;
  3097. height:17px;
  3098. display:flex;
  3099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:12px;
  3103. }
  3104. #u165569 .text {
  3105. position:absolute;
  3106. align-self:flex-start;
  3107. padding:0px 0px 0px 0px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u165569_text {
  3112. border-width:0px;
  3113. white-space:nowrap;
  3114. text-transform:none;
  3115. }
  3116. #u165570_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:375px;
  3122. height:1138px;
  3123. background:inherit;
  3124. background-color:rgba(242, 242, 242, 1);
  3125. border:none;
  3126. border-top:0px;
  3127. border-radius:25px;
  3128. border-top-left-radius:0px;
  3129. border-top-right-radius:0px;
  3130. -moz-box-shadow:none;
  3131. -webkit-box-shadow:none;
  3132. box-shadow:none;
  3133. }
  3134. #u165570 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:1418px;
  3138. top:107px;
  3139. width:375px;
  3140. height:1138px;
  3141. display:flex;
  3142. }
  3143. #u165570 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u165570_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u165571_div {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:375px;
  3162. height:849px;
  3163. background:inherit;
  3164. background-color:rgba(255, 255, 255, 1);
  3165. border:none;
  3166. border-top:0px;
  3167. border-radius:0px;
  3168. border-top-left-radius:0px;
  3169. border-top-right-radius:0px;
  3170. -moz-box-shadow:none;
  3171. -webkit-box-shadow:none;
  3172. box-shadow:none;
  3173. }
  3174. #u165571 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:1418px;
  3178. top:107px;
  3179. width:375px;
  3180. height:849px;
  3181. display:flex;
  3182. }
  3183. #u165571 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 2px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u165571_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. visibility:hidden;
  3195. }
  3196. #u165572 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:0px;
  3202. height:0px;
  3203. }
  3204. #u165573_img {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:11px;
  3210. height:18px;
  3211. }
  3212. #u165573 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:1429px;
  3216. top:81px;
  3217. width:11px;
  3218. height:18px;
  3219. display:flex;
  3220. }
  3221. #u165573 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 2px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u165573_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u165574_div {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:57px;
  3240. height:30px;
  3241. background:inherit;
  3242. background-color:rgba(255, 255, 255, 0);
  3243. border:none;
  3244. border-left:0px;
  3245. border-top:0px;
  3246. border-right:0px;
  3247. border-radius:0px;
  3248. border-bottom-right-radius:0px;
  3249. border-bottom-left-radius:0px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3254. font-weight:500;
  3255. font-style:normal;
  3256. font-size:14px;
  3257. line-height:30px;
  3258. }
  3259. #u165574 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:1452px;
  3263. top:77px;
  3264. width:57px;
  3265. height:30px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3268. font-weight:500;
  3269. font-style:normal;
  3270. font-size:14px;
  3271. line-height:30px;
  3272. }
  3273. #u165574 .text {
  3274. position:absolute;
  3275. align-self:flex-start;
  3276. padding:0px 0px 0px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u165574_text {
  3281. border-width:0px;
  3282. white-space:nowrap;
  3283. text-transform:none;
  3284. }
  3285. #u165575_img {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:375px;
  3291. height:198px;
  3292. }
  3293. #u165575 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:1418px;
  3297. top:107px;
  3298. width:375px;
  3299. height:198px;
  3300. display:flex;
  3301. }
  3302. #u165575 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 2px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u165575_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u165576 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:0px;
  3321. height:0px;
  3322. }
  3323. #u165577_div {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:55px;
  3329. height:30px;
  3330. background:inherit;
  3331. background-color:rgba(255, 255, 255, 0);
  3332. border:none;
  3333. border-left:0px;
  3334. border-top:0px;
  3335. border-right:0px;
  3336. border-radius:0px;
  3337. border-bottom-right-radius:0px;
  3338. border-bottom-left-radius:0px;
  3339. -moz-box-shadow:none;
  3340. -webkit-box-shadow:none;
  3341. box-shadow:none;
  3342. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3343. font-weight:500;
  3344. font-style:normal;
  3345. font-size:18px;
  3346. color:#FFFFFF;
  3347. line-height:30px;
  3348. }
  3349. #u165577 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:1467px;
  3353. top:116px;
  3354. width:55px;
  3355. height:30px;
  3356. display:flex;
  3357. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3358. font-weight:500;
  3359. font-style:normal;
  3360. font-size:18px;
  3361. color:#FFFFFF;
  3362. line-height:30px;
  3363. }
  3364. #u165577 .text {
  3365. position:absolute;
  3366. align-self:flex-start;
  3367. padding:0px 0px 0px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u165577_text {
  3372. border-width:0px;
  3373. white-space:nowrap;
  3374. text-transform:none;
  3375. }
  3376. #u165578_img {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:0px;
  3380. top:0px;
  3381. width:19px;
  3382. height:15px;
  3383. }
  3384. #u165578 {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:1440px;
  3388. top:124px;
  3389. width:19px;
  3390. height:15px;
  3391. display:flex;
  3392. }
  3393. #u165578 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 2px 2px 2px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u165578_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. visibility:hidden;
  3405. }
  3406. #u165579_div {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:245px;
  3412. height:50px;
  3413. background:inherit;
  3414. background-color:rgba(255, 255, 255, 0);
  3415. border:none;
  3416. border-left:0px;
  3417. border-top:0px;
  3418. border-right:0px;
  3419. border-radius:0px;
  3420. border-bottom-right-radius:0px;
  3421. border-bottom-left-radius:0px;
  3422. -moz-box-shadow:none;
  3423. -webkit-box-shadow:none;
  3424. box-shadow:none;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. color:rgba(255, 255, 255, 0.619607843137255);
  3430. line-height:25px;
  3431. }
  3432. #u165579 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:1435px;
  3436. top:167px;
  3437. width:245px;
  3438. height:50px;
  3439. display:flex;
  3440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:12px;
  3444. color:rgba(255, 255, 255, 0.619607843137255);
  3445. line-height:25px;
  3446. }
  3447. #u165579 .text {
  3448. position:absolute;
  3449. align-self:flex-start;
  3450. padding:0px 0px 0px 0px;
  3451. box-sizing:border-box;
  3452. width:100%;
  3453. }
  3454. #u165579_text {
  3455. border-width:0px;
  3456. white-space:nowrap;
  3457. text-transform:none;
  3458. }
  3459. #u165580_img {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:338px;
  3465. height:2px;
  3466. }
  3467. #u165580 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:1435px;
  3471. top:156px;
  3472. width:337px;
  3473. height:1px;
  3474. display:flex;
  3475. color:rgba(255, 255, 255, 0.364705882352941);
  3476. }
  3477. #u165580 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 2px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u165580_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u165581_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:-5px;
  3494. top:-5px;
  3495. width:360px;
  3496. height:120px;
  3497. }
  3498. #u165581 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:1429px;
  3502. top:226px;
  3503. width:350px;
  3504. height:110px;
  3505. display:flex;
  3506. }
  3507. #u165581 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 2px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u165581_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. visibility:hidden;
  3519. }
  3520. #u165582_div {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:163px;
  3526. height:25px;
  3527. background:inherit;
  3528. background-color:rgba(255, 255, 255, 0);
  3529. border:none;
  3530. border-left:0px;
  3531. border-top:0px;
  3532. border-right:0px;
  3533. border-radius:0px;
  3534. border-bottom-right-radius:0px;
  3535. border-bottom-left-radius:0px;
  3536. -moz-box-shadow:none;
  3537. -webkit-box-shadow:none;
  3538. box-shadow:none;
  3539. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3540. font-weight:500;
  3541. font-style:normal;
  3542. font-size:18px;
  3543. line-height:25px;
  3544. }
  3545. #u165582 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:1447px;
  3549. top:241px;
  3550. width:163px;
  3551. height:25px;
  3552. display:flex;
  3553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3554. font-weight:500;
  3555. font-style:normal;
  3556. font-size:18px;
  3557. line-height:25px;
  3558. }
  3559. #u165582 .text {
  3560. position:absolute;
  3561. align-self:flex-start;
  3562. padding:0px 0px 0px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u165582_text {
  3567. border-width:0px;
  3568. white-space:nowrap;
  3569. text-transform:none;
  3570. }
  3571. #u165583_div {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:238px;
  3577. height:50px;
  3578. background:inherit;
  3579. background-color:rgba(255, 255, 255, 0);
  3580. border:none;
  3581. border-left:0px;
  3582. border-top:0px;
  3583. border-right:0px;
  3584. border-radius:0px;
  3585. border-bottom-right-radius:0px;
  3586. border-bottom-left-radius:0px;
  3587. -moz-box-shadow:none;
  3588. -webkit-box-shadow:none;
  3589. box-shadow:none;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:14px;
  3594. line-height:25px;
  3595. }
  3596. #u165583 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:1447px;
  3600. top:276px;
  3601. width:238px;
  3602. height:50px;
  3603. display:flex;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:14px;
  3608. line-height:25px;
  3609. }
  3610. #u165583 .text {
  3611. position:absolute;
  3612. align-self:flex-start;
  3613. padding:0px 0px 0px 0px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u165583_text {
  3618. border-width:0px;
  3619. white-space:nowrap;
  3620. text-transform:none;
  3621. }
  3622. #u165584_div {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:73px;
  3628. height:25px;
  3629. background:inherit;
  3630. background-color:rgba(255, 255, 255, 0);
  3631. border:none;
  3632. border-left:0px;
  3633. border-top:0px;
  3634. border-right:0px;
  3635. border-radius:0px;
  3636. border-bottom-right-radius:0px;
  3637. border-bottom-left-radius:0px;
  3638. -moz-box-shadow:none;
  3639. -webkit-box-shadow:none;
  3640. box-shadow:none;
  3641. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3642. font-weight:500;
  3643. font-style:normal;
  3644. font-size:18px;
  3645. line-height:25px;
  3646. }
  3647. #u165584 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:1429px;
  3651. top:356px;
  3652. width:73px;
  3653. height:25px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3656. font-weight:500;
  3657. font-style:normal;
  3658. font-size:18px;
  3659. line-height:25px;
  3660. }
  3661. #u165584 .text {
  3662. position:absolute;
  3663. align-self:flex-start;
  3664. padding:0px 0px 0px 0px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u165584_text {
  3669. border-width:0px;
  3670. white-space:nowrap;
  3671. text-transform:none;
  3672. }
  3673. #u165585_div {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:0px;
  3677. top:0px;
  3678. width:350px;
  3679. height:55px;
  3680. background:inherit;
  3681. background-color:rgba(255, 255, 255, 1);
  3682. box-sizing:border-box;
  3683. border-width:1px;
  3684. border-style:solid;
  3685. border-color:rgba(215, 215, 215, 1);
  3686. border-radius:10px;
  3687. -moz-box-shadow:none;
  3688. -webkit-box-shadow:none;
  3689. box-shadow:none;
  3690. }
  3691. #u165585 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:1429px;
  3695. top:397px;
  3696. width:350px;
  3697. height:55px;
  3698. display:flex;
  3699. }
  3700. #u165585 .text {
  3701. position:absolute;
  3702. align-self:center;
  3703. padding:2px 2px 2px 2px;
  3704. box-sizing:border-box;
  3705. width:100%;
  3706. }
  3707. #u165585_text {
  3708. border-width:0px;
  3709. word-wrap:break-word;
  3710. text-transform:none;
  3711. visibility:hidden;
  3712. }
  3713. #u165586_div {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:0px;
  3717. top:0px;
  3718. width:167px;
  3719. height:25px;
  3720. background:inherit;
  3721. background-color:rgba(255, 255, 255, 0);
  3722. border:none;
  3723. border-left:0px;
  3724. border-top:0px;
  3725. border-right:0px;
  3726. border-radius:0px;
  3727. border-bottom-right-radius:0px;
  3728. border-bottom-left-radius:0px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-style:normal;
  3734. line-height:25px;
  3735. }
  3736. #u165586 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:1447px;
  3740. top:412px;
  3741. width:167px;
  3742. height:25px;
  3743. display:flex;
  3744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3745. font-style:normal;
  3746. line-height:25px;
  3747. }
  3748. #u165586 .text {
  3749. position:absolute;
  3750. align-self:flex-start;
  3751. padding:0px 0px 0px 0px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u165586_text {
  3756. border-width:0px;
  3757. white-space:nowrap;
  3758. text-transform:none;
  3759. }
  3760. #u165587_div {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:350px;
  3766. height:90px;
  3767. background:inherit;
  3768. background-color:rgba(255, 255, 255, 1);
  3769. box-sizing:border-box;
  3770. border-width:1px;
  3771. border-style:solid;
  3772. border-color:rgba(215, 215, 215, 1);
  3773. border-radius:10px;
  3774. -moz-box-shadow:none;
  3775. -webkit-box-shadow:none;
  3776. box-shadow:none;
  3777. }
  3778. #u165587 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:1429px;
  3782. top:462px;
  3783. width:350px;
  3784. height:90px;
  3785. display:flex;
  3786. }
  3787. #u165587 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u165587_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u165588_div {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:70px;
  3806. height:50px;
  3807. background:inherit;
  3808. background-color:rgba(255, 255, 255, 0);
  3809. border:none;
  3810. border-left:0px;
  3811. border-top:0px;
  3812. border-right:0px;
  3813. border-radius:0px;
  3814. border-bottom-right-radius:0px;
  3815. border-bottom-left-radius:0px;
  3816. -moz-box-shadow:none;
  3817. -webkit-box-shadow:none;
  3818. box-shadow:none;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. line-height:25px;
  3823. }
  3824. #u165588 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:1447px;
  3828. top:477px;
  3829. width:70px;
  3830. height:50px;
  3831. display:flex;
  3832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. line-height:25px;
  3836. }
  3837. #u165588 .text {
  3838. position:absolute;
  3839. align-self:flex-start;
  3840. padding:0px 0px 0px 0px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u165588_text {
  3845. border-width:0px;
  3846. white-space:nowrap;
  3847. text-transform:none;
  3848. }
  3849. #u165589_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:64px;
  3855. height:50px;
  3856. background:inherit;
  3857. background-color:rgba(255, 255, 255, 0);
  3858. border:none;
  3859. border-left:0px;
  3860. border-top:0px;
  3861. border-right:0px;
  3862. border-radius:0px;
  3863. border-bottom-right-radius:0px;
  3864. border-bottom-left-radius:0px;
  3865. -moz-box-shadow:none;
  3866. -webkit-box-shadow:none;
  3867. box-shadow:none;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. line-height:25px;
  3872. }
  3873. #u165589 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:1682px;
  3877. top:477px;
  3878. width:64px;
  3879. height:50px;
  3880. display:flex;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. line-height:25px;
  3885. }
  3886. #u165589 .text {
  3887. position:absolute;
  3888. align-self:flex-start;
  3889. padding:0px 0px 0px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u165589_text {
  3894. border-width:0px;
  3895. white-space:nowrap;
  3896. text-transform:none;
  3897. }
  3898. #u165590_img {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:0px;
  3902. top:0px;
  3903. width:141px;
  3904. height:2px;
  3905. }
  3906. #u165590 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:1528px;
  3910. top:514px;
  3911. width:140px;
  3912. height:1px;
  3913. display:flex;
  3914. }
  3915. #u165590 .text {
  3916. position:absolute;
  3917. align-self:center;
  3918. padding:2px 2px 2px 2px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u165590_text {
  3923. border-width:0px;
  3924. word-wrap:break-word;
  3925. text-transform:none;
  3926. visibility:hidden;
  3927. }
  3928. #u165591_div {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:21px;
  3934. height:21px;
  3935. background:inherit;
  3936. background-color:rgba(255, 255, 255, 1);
  3937. box-sizing:border-box;
  3938. border-width:1px;
  3939. border-style:solid;
  3940. border-color:rgba(215, 215, 215, 1);
  3941. border-radius:15px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:10px;
  3949. color:#AAAAAA;
  3950. text-align:center;
  3951. line-height:25px;
  3952. }
  3953. #u165591 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:1526px;
  3957. top:504px;
  3958. width:21px;
  3959. height:21px;
  3960. display:flex;
  3961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:10px;
  3965. color:#AAAAAA;
  3966. text-align:center;
  3967. line-height:25px;
  3968. }
  3969. #u165591 .text {
  3970. position:absolute;
  3971. align-self:center;
  3972. padding:0px 0px 0px 0px;
  3973. box-sizing:border-box;
  3974. width:100%;
  3975. }
  3976. #u165591_text {
  3977. border-width:0px;
  3978. word-wrap:break-word;
  3979. text-transform:none;
  3980. }
  3981. #u165592_div {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:21px;
  3987. height:21px;
  3988. background:inherit;
  3989. background-color:rgba(255, 255, 255, 1);
  3990. box-sizing:border-box;
  3991. border-width:1px;
  3992. border-style:solid;
  3993. border-color:rgba(215, 215, 215, 1);
  3994. border-radius:15px;
  3995. -moz-box-shadow:none;
  3996. -webkit-box-shadow:none;
  3997. box-shadow:none;
  3998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:10px;
  4002. color:#AAAAAA;
  4003. text-align:center;
  4004. line-height:25px;
  4005. }
  4006. #u165592 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:1651px;
  4010. top:504px;
  4011. width:21px;
  4012. height:21px;
  4013. display:flex;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:10px;
  4018. color:#AAAAAA;
  4019. text-align:center;
  4020. line-height:25px;
  4021. }
  4022. #u165592 .text {
  4023. position:absolute;
  4024. align-self:center;
  4025. padding:0px 0px 0px 0px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u165592_text {
  4030. border-width:0px;
  4031. word-wrap:break-word;
  4032. text-transform:none;
  4033. }
  4034. #u165593_div {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:61px;
  4040. height:25px;
  4041. background:inherit;
  4042. background-color:rgba(255, 255, 255, 0);
  4043. border:none;
  4044. border-left:0px;
  4045. border-top:0px;
  4046. border-right:0px;
  4047. border-radius:0px;
  4048. border-bottom-right-radius:0px;
  4049. border-bottom-left-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:12px;
  4057. color:#298FFF;
  4058. line-height:25px;
  4059. }
  4060. #u165593 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:1573px;
  4064. top:490px;
  4065. width:61px;
  4066. height:25px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:12px;
  4072. color:#298FFF;
  4073. line-height:25px;
  4074. }
  4075. #u165593 .text {
  4076. position:absolute;
  4077. align-self:flex-start;
  4078. padding:0px 0px 0px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u165593_text {
  4083. border-width:0px;
  4084. white-space:nowrap;
  4085. text-transform:none;
  4086. }
  4087. #u165594_div {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:73px;
  4093. height:25px;
  4094. background:inherit;
  4095. background-color:rgba(255, 255, 255, 0);
  4096. border:none;
  4097. border-left:0px;
  4098. border-top:0px;
  4099. border-right:0px;
  4100. border-radius:0px;
  4101. border-bottom-right-radius:0px;
  4102. border-bottom-left-radius:0px;
  4103. -moz-box-shadow:none;
  4104. -webkit-box-shadow:none;
  4105. box-shadow:none;
  4106. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4107. font-weight:500;
  4108. font-style:normal;
  4109. font-size:18px;
  4110. line-height:25px;
  4111. }
  4112. #u165594 {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:1429px;
  4116. top:652px;
  4117. width:73px;
  4118. height:25px;
  4119. display:flex;
  4120. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4121. font-weight:500;
  4122. font-style:normal;
  4123. font-size:18px;
  4124. line-height:25px;
  4125. }
  4126. #u165594 .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. #u165594_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u165595_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:71px;
  4144. height:90px;
  4145. background:inherit;
  4146. background-color:rgba(255, 255, 255, 0);
  4147. border:none;
  4148. border-left:0px;
  4149. border-top:0px;
  4150. border-right:0px;
  4151. border-radius:0px;
  4152. border-bottom-right-radius:0px;
  4153. border-bottom-left-radius:0px;
  4154. -moz-box-shadow:none;
  4155. -webkit-box-shadow:none;
  4156. box-shadow:none;
  4157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:14px;
  4161. line-height:30px;
  4162. }
  4163. #u165595 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:1442px;
  4167. top:808px;
  4168. width:71px;
  4169. height:90px;
  4170. display:flex;
  4171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:14px;
  4175. line-height:30px;
  4176. }
  4177. #u165595 .text {
  4178. position:absolute;
  4179. align-self:flex-start;
  4180. padding:0px 0px 0px 0px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u165595_text {
  4185. border-width:0px;
  4186. white-space:nowrap;
  4187. text-transform:none;
  4188. }
  4189. #u165596_div {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:350px;
  4195. height:100px;
  4196. background:inherit;
  4197. background-color:rgba(255, 255, 255, 1);
  4198. box-sizing:border-box;
  4199. border-width:1px;
  4200. border-style:solid;
  4201. border-color:rgba(215, 215, 215, 1);
  4202. border-radius:10px;
  4203. -moz-box-shadow:none;
  4204. -webkit-box-shadow:none;
  4205. box-shadow:none;
  4206. }
  4207. #u165596 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:1429px;
  4211. top:687px;
  4212. width:350px;
  4213. height:100px;
  4214. display:flex;
  4215. }
  4216. #u165596 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u165596_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u165597_div {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:211px;
  4235. height:60px;
  4236. background:inherit;
  4237. background-color:rgba(255, 255, 255, 0);
  4238. border:none;
  4239. border-left:0px;
  4240. border-top:0px;
  4241. border-right:0px;
  4242. border-radius:0px;
  4243. border-bottom-right-radius:0px;
  4244. border-bottom-left-radius:0px;
  4245. -moz-box-shadow:none;
  4246. -webkit-box-shadow:none;
  4247. box-shadow:none;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. line-height:30px;
  4252. }
  4253. #u165597 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:1447px;
  4257. top:707px;
  4258. width:211px;
  4259. height:60px;
  4260. display:flex;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. line-height:30px;
  4265. }
  4266. #u165597 .text {
  4267. position:absolute;
  4268. align-self:flex-start;
  4269. padding:0px 0px 0px 0px;
  4270. box-sizing:border-box;
  4271. width:100%;
  4272. }
  4273. #u165597_text {
  4274. border-width:0px;
  4275. white-space:nowrap;
  4276. text-transform:none;
  4277. }
  4278. #u165598_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:52px;
  4284. height:90px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 0);
  4287. border:none;
  4288. border-left:0px;
  4289. border-top:0px;
  4290. border-right:0px;
  4291. border-radius:0px;
  4292. border-bottom-right-radius:0px;
  4293. border-bottom-left-radius:0px;
  4294. -moz-box-shadow:none;
  4295. -webkit-box-shadow:none;
  4296. box-shadow:none;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. font-size:14px;
  4301. text-align:right;
  4302. line-height:30px;
  4303. }
  4304. #u165598 {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:1727px;
  4308. top:808px;
  4309. width:52px;
  4310. height:90px;
  4311. display:flex;
  4312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4313. font-weight:400;
  4314. font-style:normal;
  4315. font-size:14px;
  4316. text-align:right;
  4317. line-height:30px;
  4318. }
  4319. #u165598 .text {
  4320. position:absolute;
  4321. align-self:flex-start;
  4322. padding:0px 0px 0px 0px;
  4323. box-sizing:border-box;
  4324. width:100%;
  4325. }
  4326. #u165598_text {
  4327. border-width:0px;
  4328. white-space:nowrap;
  4329. text-transform:none;
  4330. }
  4331. #u165599_div {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:375px;
  4337. height:40px;
  4338. background:inherit;
  4339. background-color:rgba(24, 144, 255, 0.0470588235294118);
  4340. border:none;
  4341. border-left:0px;
  4342. border-top:0px;
  4343. border-right:0px;
  4344. border-radius:0px;
  4345. border-bottom-right-radius:0px;
  4346. border-bottom-left-radius:0px;
  4347. -moz-box-shadow:none;
  4348. -webkit-box-shadow:none;
  4349. box-shadow:none;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. text-align:right;
  4354. line-height:30px;
  4355. }
  4356. #u165599 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:1418px;
  4360. top:906px;
  4361. width:375px;
  4362. height:40px;
  4363. display:flex;
  4364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. text-align:right;
  4368. line-height:30px;
  4369. }
  4370. #u165599 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:0px 20px 0px 20px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u165599_text {
  4378. border-width:0px;
  4379. word-wrap:break-word;
  4380. text-transform:none;
  4381. }
  4382. #u165601_img {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:433px;
  4388. height:865px;
  4389. }
  4390. #u165601 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:1842px;
  4394. top:1px;
  4395. width:433px;
  4396. height:865px;
  4397. display:flex;
  4398. }
  4399. #u165601 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 2px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u165601_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u165602_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:375px;
  4418. height:40px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 1);
  4421. box-sizing:border-box;
  4422. border-width:1px;
  4423. border-style:solid;
  4424. border-color:rgba(215, 215, 215, 1);
  4425. border-left:0px;
  4426. border-top:0px;
  4427. border-right:0px;
  4428. border-radius:0px;
  4429. border-bottom-right-radius:0px;
  4430. border-bottom-left-radius:0px;
  4431. -moz-box-shadow:none;
  4432. -webkit-box-shadow:none;
  4433. box-shadow:none;
  4434. }
  4435. #u165602 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:1871px;
  4439. top:68px;
  4440. width:375px;
  4441. height:40px;
  4442. display:flex;
  4443. }
  4444. #u165602 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 2px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u165602_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. visibility:hidden;
  4456. }
  4457. #u165603 {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:0px;
  4463. height:0px;
  4464. }
  4465. #u165604_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:88px;
  4471. height:32px;
  4472. background:inherit;
  4473. background-color:rgba(255, 255, 255, 1);
  4474. box-sizing:border-box;
  4475. border-width:1px;
  4476. border-style:solid;
  4477. border-color:rgba(242, 242, 242, 1);
  4478. border-radius:33px;
  4479. -moz-box-shadow:none;
  4480. -webkit-box-shadow:none;
  4481. box-shadow:none;
  4482. }
  4483. #u165604 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:2151px;
  4487. top:72px;
  4488. width:88px;
  4489. height:32px;
  4490. display:flex;
  4491. }
  4492. #u165604 .text {
  4493. position:absolute;
  4494. align-self:center;
  4495. padding:2px 2px 2px 2px;
  4496. box-sizing:border-box;
  4497. width:100%;
  4498. }
  4499. #u165604_text {
  4500. border-width:0px;
  4501. word-wrap:break-word;
  4502. text-transform:none;
  4503. visibility:hidden;
  4504. }
  4505. #u165605 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:0px;
  4511. height:0px;
  4512. }
  4513. #u165606_img {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:18px;
  4519. height:18px;
  4520. }
  4521. #u165606 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:2214px;
  4525. top:79px;
  4526. width:18px;
  4527. height:18px;
  4528. display:flex;
  4529. }
  4530. #u165606 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 2px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u165606_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u165607_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:6px;
  4549. height:6px;
  4550. }
  4551. #u165607 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:2220px;
  4555. top:85px;
  4556. width:6px;
  4557. height:6px;
  4558. display:flex;
  4559. }
  4560. #u165607 .text {
  4561. position:absolute;
  4562. align-self:center;
  4563. padding:2px 2px 2px 2px;
  4564. box-sizing:border-box;
  4565. width:100%;
  4566. }
  4567. #u165607_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u165608 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:0px;
  4579. height:0px;
  4580. }
  4581. #u165609_img {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:5px;
  4587. height:5px;
  4588. }
  4589. #u165609 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:2165px;
  4593. top:86px;
  4594. width:5px;
  4595. height:5px;
  4596. display:flex;
  4597. }
  4598. #u165609 .text {
  4599. position:absolute;
  4600. align-self:center;
  4601. padding:2px 2px 2px 2px;
  4602. box-sizing:border-box;
  4603. width:100%;
  4604. }
  4605. #u165609_text {
  4606. border-width:0px;
  4607. word-wrap:break-word;
  4608. text-transform:none;
  4609. visibility:hidden;
  4610. }
  4611. #u165610_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:5px;
  4617. height:5px;
  4618. }
  4619. #u165610 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:2181px;
  4623. top:86px;
  4624. width:5px;
  4625. height:5px;
  4626. display:flex;
  4627. }
  4628. #u165610 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 2px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u165610_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u165611_img {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:7px;
  4647. height:7px;
  4648. }
  4649. #u165611 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:2172px;
  4653. top:85px;
  4654. width:7px;
  4655. height:7px;
  4656. display:flex;
  4657. }
  4658. #u165611 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 2px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u165611_text {
  4666. border-width:0px;
  4667. word-wrap:break-word;
  4668. text-transform:none;
  4669. visibility:hidden;
  4670. }
  4671. #u165612_img {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:19px;
  4677. height:2px;
  4678. }
  4679. #u165612 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:2189px;
  4683. top:88px;
  4684. width:18px;
  4685. height:1px;
  4686. display:flex;
  4687. -webkit-transform:rotate(90deg);
  4688. -moz-transform:rotate(90deg);
  4689. -ms-transform:rotate(90deg);
  4690. transform:rotate(90deg);
  4691. }
  4692. #u165612 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 2px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u165612_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. visibility:hidden;
  4704. }
  4705. #u165613_img {
  4706. border-width:0px;
  4707. position:absolute;
  4708. left:0px;
  4709. top:0px;
  4710. width:375px;
  4711. height:44px;
  4712. }
  4713. #u165613 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:1871px;
  4717. top:25px;
  4718. width:375px;
  4719. height:44px;
  4720. display:flex;
  4721. }
  4722. #u165613 .text {
  4723. position:absolute;
  4724. align-self:center;
  4725. padding:2px 2px 2px 2px;
  4726. box-sizing:border-box;
  4727. width:100%;
  4728. }
  4729. #u165613_text {
  4730. border-width:0px;
  4731. word-wrap:break-word;
  4732. text-transform:none;
  4733. visibility:hidden;
  4734. }
  4735. #u165614_div {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:375px;
  4741. height:50px;
  4742. background:inherit;
  4743. background-color:rgba(255, 255, 255, 1);
  4744. box-sizing:border-box;
  4745. border-width:1px;
  4746. border-style:solid;
  4747. border-color:rgba(242, 242, 242, 1);
  4748. border-radius:26px;
  4749. border-top-left-radius:0px;
  4750. border-top-right-radius:0px;
  4751. -moz-box-shadow:none;
  4752. -webkit-box-shadow:none;
  4753. box-shadow:none;
  4754. }
  4755. #u165614 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:1871px;
  4759. top:789px;
  4760. width:375px;
  4761. height:50px;
  4762. display:flex;
  4763. }
  4764. #u165614 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u165614_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u165615 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:0px;
  4783. height:0px;
  4784. }
  4785. #u165616_img {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:24px;
  4791. height:24px;
  4792. }
  4793. #u165616 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:1911px;
  4797. top:793px;
  4798. width:24px;
  4799. height:24px;
  4800. display:flex;
  4801. font-size:8px;
  4802. }
  4803. #u165616 .text {
  4804. position:absolute;
  4805. align-self:center;
  4806. padding:2px 2px 2px 2px;
  4807. box-sizing:border-box;
  4808. width:100%;
  4809. }
  4810. #u165616_text {
  4811. border-width:0px;
  4812. word-wrap:break-word;
  4813. text-transform:none;
  4814. }
  4815. #u165617_div {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:25px;
  4821. height:17px;
  4822. background:inherit;
  4823. background-color:rgba(255, 255, 255, 0);
  4824. border:none;
  4825. border-radius:0px;
  4826. -moz-box-shadow:none;
  4827. -webkit-box-shadow:none;
  4828. box-shadow:none;
  4829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:12px;
  4833. }
  4834. #u165617 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:1911px;
  4838. top:818px;
  4839. width:25px;
  4840. height:17px;
  4841. display:flex;
  4842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:12px;
  4846. }
  4847. #u165617 .text {
  4848. position:absolute;
  4849. align-self:flex-start;
  4850. padding:0px 0px 0px 0px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u165617_text {
  4855. border-width:0px;
  4856. white-space:nowrap;
  4857. text-transform:none;
  4858. }
  4859. #u165618 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:0px;
  4865. height:0px;
  4866. }
  4867. #u165619_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:24px;
  4873. height:24px;
  4874. }
  4875. #u165619 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:2181px;
  4879. top:795px;
  4880. width:24px;
  4881. height:24px;
  4882. display:flex;
  4883. font-size:8px;
  4884. }
  4885. #u165619 .text {
  4886. position:absolute;
  4887. align-self:center;
  4888. padding:2px 2px 2px 2px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u165619_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. }
  4897. #u165620_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:25px;
  4903. height:17px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 0);
  4906. border:none;
  4907. border-radius:0px;
  4908. -moz-box-shadow:none;
  4909. -webkit-box-shadow:none;
  4910. box-shadow:none;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:12px;
  4915. }
  4916. #u165620 {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:2181px;
  4920. top:820px;
  4921. width:25px;
  4922. height:17px;
  4923. display:flex;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:12px;
  4928. }
  4929. #u165620 .text {
  4930. position:absolute;
  4931. align-self:flex-start;
  4932. padding:0px 0px 0px 0px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u165620_text {
  4937. border-width:0px;
  4938. white-space:nowrap;
  4939. text-transform:none;
  4940. }
  4941. #u165621_div {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:375px;
  4947. height:681px;
  4948. background:inherit;
  4949. background-color:rgba(242, 242, 242, 0.462745098039216);
  4950. border:none;
  4951. border-radius:0px;
  4952. -moz-box-shadow:none;
  4953. -webkit-box-shadow:none;
  4954. box-shadow:none;
  4955. }
  4956. #u165621 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:1871px;
  4960. top:108px;
  4961. width:375px;
  4962. height:681px;
  4963. display:flex;
  4964. }
  4965. #u165621 .text {
  4966. position:absolute;
  4967. align-self:center;
  4968. padding:2px 2px 2px 2px;
  4969. box-sizing:border-box;
  4970. width:100%;
  4971. }
  4972. #u165621_text {
  4973. border-width:0px;
  4974. word-wrap:break-word;
  4975. text-transform:none;
  4976. visibility:hidden;
  4977. }
  4978. #u165622 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:0px;
  4984. height:0px;
  4985. }
  4986. #u165623_img {
  4987. border-width:0px;
  4988. position:absolute;
  4989. left:0px;
  4990. top:0px;
  4991. width:24px;
  4992. height:24px;
  4993. }
  4994. #u165623 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:2093px;
  4998. top:793px;
  4999. width:24px;
  5000. height:24px;
  5001. display:flex;
  5002. font-size:8px;
  5003. }
  5004. #u165623 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 2px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u165623_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. }
  5016. #u165624_div {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:37px;
  5022. height:17px;
  5023. background:inherit;
  5024. background-color:rgba(255, 255, 255, 0);
  5025. border:none;
  5026. border-radius:0px;
  5027. -moz-box-shadow:none;
  5028. -webkit-box-shadow:none;
  5029. box-shadow:none;
  5030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:12px;
  5034. }
  5035. #u165624 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:2087px;
  5039. top:818px;
  5040. width:37px;
  5041. height:17px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:12px;
  5047. }
  5048. #u165624 .text {
  5049. position:absolute;
  5050. align-self:flex-start;
  5051. padding:0px 0px 0px 0px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u165624_text {
  5056. border-width:0px;
  5057. white-space:nowrap;
  5058. text-transform:none;
  5059. }
  5060. #u165625 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:0px;
  5066. height:0px;
  5067. }
  5068. #u165626_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:24px;
  5074. height:24px;
  5075. }
  5076. #u165626 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:1999px;
  5080. top:793px;
  5081. width:24px;
  5082. height:24px;
  5083. display:flex;
  5084. font-size:8px;
  5085. }
  5086. #u165626 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 2px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u165626_text {
  5094. border-width:0px;
  5095. word-wrap:break-word;
  5096. text-transform:none;
  5097. }
  5098. #u165627_div {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:37px;
  5104. height:17px;
  5105. background:inherit;
  5106. background-color:rgba(255, 255, 255, 0);
  5107. border:none;
  5108. border-radius:0px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:12px;
  5116. }
  5117. #u165627 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:1993px;
  5121. top:818px;
  5122. width:37px;
  5123. height:17px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. }
  5130. #u165627 .text {
  5131. position:absolute;
  5132. align-self:flex-start;
  5133. padding:0px 0px 0px 0px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u165627_text {
  5138. border-width:0px;
  5139. white-space:nowrap;
  5140. text-transform:none;
  5141. }
  5142. #u165628_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:375px;
  5148. height:1405px;
  5149. background:inherit;
  5150. background-color:rgba(242, 242, 242, 1);
  5151. border:none;
  5152. border-top:0px;
  5153. border-radius:25px;
  5154. border-top-left-radius:0px;
  5155. border-top-right-radius:0px;
  5156. -moz-box-shadow:none;
  5157. -webkit-box-shadow:none;
  5158. box-shadow:none;
  5159. }
  5160. #u165628 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:1871px;
  5164. top:107px;
  5165. width:375px;
  5166. height:1405px;
  5167. display:flex;
  5168. }
  5169. #u165628 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 2px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u165628_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u165629_div {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:375px;
  5188. height:980px;
  5189. background:inherit;
  5190. background-color:rgba(255, 255, 255, 1);
  5191. border:none;
  5192. border-top:0px;
  5193. border-radius:0px;
  5194. border-top-left-radius:0px;
  5195. border-top-right-radius:0px;
  5196. -moz-box-shadow:none;
  5197. -webkit-box-shadow:none;
  5198. box-shadow:none;
  5199. }
  5200. #u165629 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:1871px;
  5204. top:107px;
  5205. width:375px;
  5206. height:980px;
  5207. display:flex;
  5208. }
  5209. #u165629 .text {
  5210. position:absolute;
  5211. align-self:center;
  5212. padding:2px 2px 2px 2px;
  5213. box-sizing:border-box;
  5214. width:100%;
  5215. }
  5216. #u165629_text {
  5217. border-width:0px;
  5218. word-wrap:break-word;
  5219. text-transform:none;
  5220. visibility:hidden;
  5221. }
  5222. #u165630 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:0px;
  5228. height:0px;
  5229. }
  5230. #u165631_img {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:11px;
  5236. height:18px;
  5237. }
  5238. #u165631 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:1882px;
  5242. top:81px;
  5243. width:11px;
  5244. height:18px;
  5245. display:flex;
  5246. }
  5247. #u165631 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 2px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u165631_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u165632_div {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:57px;
  5266. height:30px;
  5267. background:inherit;
  5268. background-color:rgba(255, 255, 255, 0);
  5269. border:none;
  5270. border-left:0px;
  5271. border-top:0px;
  5272. border-right:0px;
  5273. border-radius:0px;
  5274. border-bottom-right-radius:0px;
  5275. border-bottom-left-radius:0px;
  5276. -moz-box-shadow:none;
  5277. -webkit-box-shadow:none;
  5278. box-shadow:none;
  5279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5280. font-weight:500;
  5281. font-style:normal;
  5282. font-size:14px;
  5283. line-height:30px;
  5284. }
  5285. #u165632 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:1905px;
  5289. top:77px;
  5290. width:57px;
  5291. height:30px;
  5292. display:flex;
  5293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5294. font-weight:500;
  5295. font-style:normal;
  5296. font-size:14px;
  5297. line-height:30px;
  5298. }
  5299. #u165632 .text {
  5300. position:absolute;
  5301. align-self:flex-start;
  5302. padding:0px 0px 0px 0px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u165632_text {
  5307. border-width:0px;
  5308. white-space:nowrap;
  5309. text-transform:none;
  5310. }
  5311. #u165633_img {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:375px;
  5317. height:198px;
  5318. }
  5319. #u165633 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:1871px;
  5323. top:107px;
  5324. width:375px;
  5325. height:198px;
  5326. display:flex;
  5327. }
  5328. #u165633 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 2px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u165633_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. visibility:hidden;
  5340. }
  5341. #u165634 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:0px;
  5347. height:0px;
  5348. }
  5349. #u165635_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:55px;
  5355. height:30px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 0);
  5358. border:none;
  5359. border-left:0px;
  5360. border-top:0px;
  5361. border-right:0px;
  5362. border-radius:0px;
  5363. border-bottom-right-radius:0px;
  5364. border-bottom-left-radius:0px;
  5365. -moz-box-shadow:none;
  5366. -webkit-box-shadow:none;
  5367. box-shadow:none;
  5368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5369. font-weight:500;
  5370. font-style:normal;
  5371. font-size:18px;
  5372. color:#FFFFFF;
  5373. line-height:30px;
  5374. }
  5375. #u165635 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:1920px;
  5379. top:116px;
  5380. width:55px;
  5381. height:30px;
  5382. display:flex;
  5383. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5384. font-weight:500;
  5385. font-style:normal;
  5386. font-size:18px;
  5387. color:#FFFFFF;
  5388. line-height:30px;
  5389. }
  5390. #u165635 .text {
  5391. position:absolute;
  5392. align-self:flex-start;
  5393. padding:0px 0px 0px 0px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u165635_text {
  5398. border-width:0px;
  5399. white-space:nowrap;
  5400. text-transform:none;
  5401. }
  5402. #u165636_img {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:19px;
  5408. height:15px;
  5409. }
  5410. #u165636 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:1893px;
  5414. top:124px;
  5415. width:19px;
  5416. height:15px;
  5417. display:flex;
  5418. }
  5419. #u165636 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:2px 2px 2px 2px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u165636_text {
  5427. border-width:0px;
  5428. word-wrap:break-word;
  5429. text-transform:none;
  5430. visibility:hidden;
  5431. }
  5432. #u165637_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:245px;
  5438. height:50px;
  5439. background:inherit;
  5440. background-color:rgba(255, 255, 255, 0);
  5441. border:none;
  5442. border-left:0px;
  5443. border-top:0px;
  5444. border-right:0px;
  5445. border-radius:0px;
  5446. border-bottom-right-radius:0px;
  5447. border-bottom-left-radius:0px;
  5448. -moz-box-shadow:none;
  5449. -webkit-box-shadow:none;
  5450. box-shadow:none;
  5451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:12px;
  5455. color:rgba(255, 255, 255, 0.619607843137255);
  5456. line-height:25px;
  5457. }
  5458. #u165637 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:1888px;
  5462. top:167px;
  5463. width:245px;
  5464. height:50px;
  5465. display:flex;
  5466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:12px;
  5470. color:rgba(255, 255, 255, 0.619607843137255);
  5471. line-height:25px;
  5472. }
  5473. #u165637 .text {
  5474. position:absolute;
  5475. align-self:flex-start;
  5476. padding:0px 0px 0px 0px;
  5477. box-sizing:border-box;
  5478. width:100%;
  5479. }
  5480. #u165637_text {
  5481. border-width:0px;
  5482. white-space:nowrap;
  5483. text-transform:none;
  5484. }
  5485. #u165638_img {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:338px;
  5491. height:2px;
  5492. }
  5493. #u165638 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:1888px;
  5497. top:156px;
  5498. width:337px;
  5499. height:1px;
  5500. display:flex;
  5501. color:rgba(255, 255, 255, 0.364705882352941);
  5502. }
  5503. #u165638 .text {
  5504. position:absolute;
  5505. align-self:center;
  5506. padding:2px 2px 2px 2px;
  5507. box-sizing:border-box;
  5508. width:100%;
  5509. }
  5510. #u165638_text {
  5511. border-width:0px;
  5512. word-wrap:break-word;
  5513. text-transform:none;
  5514. visibility:hidden;
  5515. }
  5516. #u165639_img {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:-5px;
  5520. top:-5px;
  5521. width:360px;
  5522. height:120px;
  5523. }
  5524. #u165639 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:1882px;
  5528. top:226px;
  5529. width:350px;
  5530. height:110px;
  5531. display:flex;
  5532. }
  5533. #u165639 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:2px 2px 2px 2px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u165639_text {
  5541. border-width:0px;
  5542. word-wrap:break-word;
  5543. text-transform:none;
  5544. visibility:hidden;
  5545. }
  5546. #u165640_div {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:163px;
  5552. height:25px;
  5553. background:inherit;
  5554. background-color:rgba(255, 255, 255, 0);
  5555. border:none;
  5556. border-left:0px;
  5557. border-top:0px;
  5558. border-right:0px;
  5559. border-radius:0px;
  5560. border-bottom-right-radius:0px;
  5561. border-bottom-left-radius:0px;
  5562. -moz-box-shadow:none;
  5563. -webkit-box-shadow:none;
  5564. box-shadow:none;
  5565. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5566. font-weight:500;
  5567. font-style:normal;
  5568. font-size:18px;
  5569. line-height:25px;
  5570. }
  5571. #u165640 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:1900px;
  5575. top:241px;
  5576. width:163px;
  5577. height:25px;
  5578. display:flex;
  5579. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5580. font-weight:500;
  5581. font-style:normal;
  5582. font-size:18px;
  5583. line-height:25px;
  5584. }
  5585. #u165640 .text {
  5586. position:absolute;
  5587. align-self:flex-start;
  5588. padding:0px 0px 0px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u165640_text {
  5593. border-width:0px;
  5594. white-space:nowrap;
  5595. text-transform:none;
  5596. }
  5597. #u165641_div {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:238px;
  5603. height:50px;
  5604. background:inherit;
  5605. background-color:rgba(255, 255, 255, 0);
  5606. border:none;
  5607. border-left:0px;
  5608. border-top:0px;
  5609. border-right:0px;
  5610. border-radius:0px;
  5611. border-bottom-right-radius:0px;
  5612. border-bottom-left-radius:0px;
  5613. -moz-box-shadow:none;
  5614. -webkit-box-shadow:none;
  5615. box-shadow:none;
  5616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:14px;
  5620. line-height:25px;
  5621. }
  5622. #u165641 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:1900px;
  5626. top:276px;
  5627. width:238px;
  5628. height:50px;
  5629. display:flex;
  5630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:14px;
  5634. line-height:25px;
  5635. }
  5636. #u165641 .text {
  5637. position:absolute;
  5638. align-self:flex-start;
  5639. padding:0px 0px 0px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u165641_text {
  5644. border-width:0px;
  5645. white-space:nowrap;
  5646. text-transform:none;
  5647. }
  5648. #u165642_div {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:73px;
  5654. height:25px;
  5655. background:inherit;
  5656. background-color:rgba(255, 255, 255, 0);
  5657. border:none;
  5658. border-left:0px;
  5659. border-top:0px;
  5660. border-right:0px;
  5661. border-radius:0px;
  5662. border-bottom-right-radius:0px;
  5663. border-bottom-left-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5668. font-weight:500;
  5669. font-style:normal;
  5670. font-size:18px;
  5671. line-height:25px;
  5672. }
  5673. #u165642 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:1882px;
  5677. top:356px;
  5678. width:73px;
  5679. height:25px;
  5680. display:flex;
  5681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5682. font-weight:500;
  5683. font-style:normal;
  5684. font-size:18px;
  5685. line-height:25px;
  5686. }
  5687. #u165642 .text {
  5688. position:absolute;
  5689. align-self:flex-start;
  5690. padding:0px 0px 0px 0px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u165642_text {
  5695. border-width:0px;
  5696. white-space:nowrap;
  5697. text-transform:none;
  5698. }
  5699. #u165643_div {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:350px;
  5705. height:55px;
  5706. background:inherit;
  5707. background-color:rgba(255, 255, 255, 1);
  5708. box-sizing:border-box;
  5709. border-width:1px;
  5710. border-style:solid;
  5711. border-color:rgba(215, 215, 215, 1);
  5712. border-radius:10px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. }
  5717. #u165643 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:1882px;
  5721. top:397px;
  5722. width:350px;
  5723. height:55px;
  5724. display:flex;
  5725. }
  5726. #u165643 .text {
  5727. position:absolute;
  5728. align-self:center;
  5729. padding:2px 2px 2px 2px;
  5730. box-sizing:border-box;
  5731. width:100%;
  5732. }
  5733. #u165643_text {
  5734. border-width:0px;
  5735. word-wrap:break-word;
  5736. text-transform:none;
  5737. visibility:hidden;
  5738. }
  5739. #u165644_div {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:167px;
  5745. height:25px;
  5746. background:inherit;
  5747. background-color:rgba(255, 255, 255, 0);
  5748. border:none;
  5749. border-left:0px;
  5750. border-top:0px;
  5751. border-right:0px;
  5752. border-radius:0px;
  5753. border-bottom-right-radius:0px;
  5754. border-bottom-left-radius:0px;
  5755. -moz-box-shadow:none;
  5756. -webkit-box-shadow:none;
  5757. box-shadow:none;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-style:normal;
  5760. line-height:25px;
  5761. }
  5762. #u165644 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:1900px;
  5766. top:412px;
  5767. width:167px;
  5768. height:25px;
  5769. display:flex;
  5770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5771. font-style:normal;
  5772. line-height:25px;
  5773. }
  5774. #u165644 .text {
  5775. position:absolute;
  5776. align-self:flex-start;
  5777. padding:0px 0px 0px 0px;
  5778. box-sizing:border-box;
  5779. width:100%;
  5780. }
  5781. #u165644_text {
  5782. border-width:0px;
  5783. white-space:nowrap;
  5784. text-transform:none;
  5785. }
  5786. #u165645_div {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:350px;
  5792. height:90px;
  5793. background:inherit;
  5794. background-color:rgba(255, 255, 255, 1);
  5795. box-sizing:border-box;
  5796. border-width:1px;
  5797. border-style:solid;
  5798. border-color:rgba(215, 215, 215, 1);
  5799. border-radius:10px;
  5800. -moz-box-shadow:none;
  5801. -webkit-box-shadow:none;
  5802. box-shadow:none;
  5803. }
  5804. #u165645 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:1882px;
  5808. top:462px;
  5809. width:350px;
  5810. height:90px;
  5811. display:flex;
  5812. }
  5813. #u165645 .text {
  5814. position:absolute;
  5815. align-self:center;
  5816. padding:2px 2px 2px 2px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u165645_text {
  5821. border-width:0px;
  5822. word-wrap:break-word;
  5823. text-transform:none;
  5824. visibility:hidden;
  5825. }
  5826. #u165646_div {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:70px;
  5832. height:50px;
  5833. background:inherit;
  5834. background-color:rgba(255, 255, 255, 0);
  5835. border:none;
  5836. border-left:0px;
  5837. border-top:0px;
  5838. border-right:0px;
  5839. border-radius:0px;
  5840. border-bottom-right-radius:0px;
  5841. border-bottom-left-radius:0px;
  5842. -moz-box-shadow:none;
  5843. -webkit-box-shadow:none;
  5844. box-shadow:none;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. line-height:25px;
  5849. }
  5850. #u165646 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:1900px;
  5854. top:477px;
  5855. width:70px;
  5856. height:50px;
  5857. display:flex;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. line-height:25px;
  5862. }
  5863. #u165646 .text {
  5864. position:absolute;
  5865. align-self:flex-start;
  5866. padding:0px 0px 0px 0px;
  5867. box-sizing:border-box;
  5868. width:100%;
  5869. }
  5870. #u165646_text {
  5871. border-width:0px;
  5872. white-space:nowrap;
  5873. text-transform:none;
  5874. }
  5875. #u165647_div {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:64px;
  5881. height:50px;
  5882. background:inherit;
  5883. background-color:rgba(255, 255, 255, 0);
  5884. border:none;
  5885. border-left:0px;
  5886. border-top:0px;
  5887. border-right:0px;
  5888. border-radius:0px;
  5889. border-bottom-right-radius:0px;
  5890. border-bottom-left-radius:0px;
  5891. -moz-box-shadow:none;
  5892. -webkit-box-shadow:none;
  5893. box-shadow:none;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. line-height:25px;
  5898. }
  5899. #u165647 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:2135px;
  5903. top:477px;
  5904. width:64px;
  5905. height:50px;
  5906. display:flex;
  5907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. line-height:25px;
  5911. }
  5912. #u165647 .text {
  5913. position:absolute;
  5914. align-self:flex-start;
  5915. padding:0px 0px 0px 0px;
  5916. box-sizing:border-box;
  5917. width:100%;
  5918. }
  5919. #u165647_text {
  5920. border-width:0px;
  5921. white-space:nowrap;
  5922. text-transform:none;
  5923. }
  5924. #u165648_img {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:141px;
  5930. height:2px;
  5931. }
  5932. #u165648 {
  5933. border-width:0px;
  5934. position:absolute;
  5935. left:1981px;
  5936. top:514px;
  5937. width:140px;
  5938. height:1px;
  5939. display:flex;
  5940. }
  5941. #u165648 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:2px 2px 2px 2px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u165648_text {
  5949. border-width:0px;
  5950. word-wrap:break-word;
  5951. text-transform:none;
  5952. visibility:hidden;
  5953. }
  5954. #u165649_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:21px;
  5960. height:21px;
  5961. background:inherit;
  5962. background-color:rgba(255, 255, 255, 1);
  5963. box-sizing:border-box;
  5964. border-width:1px;
  5965. border-style:solid;
  5966. border-color:rgba(215, 215, 215, 1);
  5967. border-radius:15px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:10px;
  5975. color:#AAAAAA;
  5976. text-align:center;
  5977. line-height:25px;
  5978. }
  5979. #u165649 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:1979px;
  5983. top:504px;
  5984. width:21px;
  5985. height:21px;
  5986. display:flex;
  5987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:10px;
  5991. color:#AAAAAA;
  5992. text-align:center;
  5993. line-height:25px;
  5994. }
  5995. #u165649 .text {
  5996. position:absolute;
  5997. align-self:center;
  5998. padding:0px 0px 0px 0px;
  5999. box-sizing:border-box;
  6000. width:100%;
  6001. }
  6002. #u165649_text {
  6003. border-width:0px;
  6004. word-wrap:break-word;
  6005. text-transform:none;
  6006. }
  6007. #u165650_div {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:21px;
  6013. height:21px;
  6014. background:inherit;
  6015. background-color:rgba(255, 255, 255, 1);
  6016. box-sizing:border-box;
  6017. border-width:1px;
  6018. border-style:solid;
  6019. border-color:rgba(215, 215, 215, 1);
  6020. border-radius:15px;
  6021. -moz-box-shadow:none;
  6022. -webkit-box-shadow:none;
  6023. box-shadow:none;
  6024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:10px;
  6028. color:#AAAAAA;
  6029. text-align:center;
  6030. line-height:25px;
  6031. }
  6032. #u165650 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:2104px;
  6036. top:504px;
  6037. width:21px;
  6038. height:21px;
  6039. display:flex;
  6040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6041. font-weight:400;
  6042. font-style:normal;
  6043. font-size:10px;
  6044. color:#AAAAAA;
  6045. text-align:center;
  6046. line-height:25px;
  6047. }
  6048. #u165650 .text {
  6049. position:absolute;
  6050. align-self:center;
  6051. padding:0px 0px 0px 0px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u165650_text {
  6056. border-width:0px;
  6057. word-wrap:break-word;
  6058. text-transform:none;
  6059. }
  6060. #u165651_div {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:61px;
  6066. height:25px;
  6067. background:inherit;
  6068. background-color:rgba(255, 255, 255, 0);
  6069. border:none;
  6070. border-left:0px;
  6071. border-top:0px;
  6072. border-right:0px;
  6073. border-radius:0px;
  6074. border-bottom-right-radius:0px;
  6075. border-bottom-left-radius:0px;
  6076. -moz-box-shadow:none;
  6077. -webkit-box-shadow:none;
  6078. box-shadow:none;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:12px;
  6083. color:#AAAAAA;
  6084. line-height:25px;
  6085. }
  6086. #u165651 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:2026px;
  6090. top:490px;
  6091. width:61px;
  6092. height:25px;
  6093. display:flex;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:12px;
  6098. color:#AAAAAA;
  6099. line-height:25px;
  6100. }
  6101. #u165651 .text {
  6102. position:absolute;
  6103. align-self:flex-start;
  6104. padding:0px 0px 0px 0px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u165651_text {
  6109. border-width:0px;
  6110. white-space:nowrap;
  6111. text-transform:none;
  6112. }
  6113. #u165652_div {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:73px;
  6119. height:25px;
  6120. background:inherit;
  6121. background-color:rgba(255, 255, 255, 0);
  6122. border:none;
  6123. border-left:0px;
  6124. border-top:0px;
  6125. border-right:0px;
  6126. border-radius:0px;
  6127. border-bottom-right-radius:0px;
  6128. border-bottom-left-radius:0px;
  6129. -moz-box-shadow:none;
  6130. -webkit-box-shadow:none;
  6131. box-shadow:none;
  6132. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6133. font-weight:500;
  6134. font-style:normal;
  6135. font-size:18px;
  6136. line-height:25px;
  6137. }
  6138. #u165652 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:1882px;
  6142. top:652px;
  6143. width:73px;
  6144. height:25px;
  6145. display:flex;
  6146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6147. font-weight:500;
  6148. font-style:normal;
  6149. font-size:18px;
  6150. line-height:25px;
  6151. }
  6152. #u165652 .text {
  6153. position:absolute;
  6154. align-self:flex-start;
  6155. padding:0px 0px 0px 0px;
  6156. box-sizing:border-box;
  6157. width:100%;
  6158. }
  6159. #u165652_text {
  6160. border-width:0px;
  6161. white-space:nowrap;
  6162. text-transform:none;
  6163. }
  6164. #u165653_div {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:350px;
  6170. height:245px;
  6171. background:inherit;
  6172. background-color:rgba(255, 255, 255, 1);
  6173. box-sizing:border-box;
  6174. border-width:1px;
  6175. border-style:solid;
  6176. border-color:rgba(215, 215, 215, 1);
  6177. border-radius:10px;
  6178. -moz-box-shadow:none;
  6179. -webkit-box-shadow:none;
  6180. box-shadow:none;
  6181. }
  6182. #u165653 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:1882px;
  6186. top:687px;
  6187. width:350px;
  6188. height:245px;
  6189. display:flex;
  6190. }
  6191. #u165653 .text {
  6192. position:absolute;
  6193. align-self:center;
  6194. padding:2px 2px 2px 2px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u165653_text {
  6199. border-width:0px;
  6200. word-wrap:break-word;
  6201. text-transform:none;
  6202. visibility:hidden;
  6203. }
  6204. #u165654_div {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:0px;
  6208. top:0px;
  6209. width:135px;
  6210. height:30px;
  6211. background:inherit;
  6212. background-color:rgba(255, 255, 255, 0);
  6213. border:none;
  6214. border-left:0px;
  6215. border-top:0px;
  6216. border-right:0px;
  6217. border-radius:0px;
  6218. border-bottom-right-radius:0px;
  6219. border-bottom-left-radius:0px;
  6220. -moz-box-shadow:none;
  6221. -webkit-box-shadow:none;
  6222. box-shadow:none;
  6223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:18px;
  6227. line-height:30px;
  6228. }
  6229. #u165654 {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:1900px;
  6233. top:707px;
  6234. width:135px;
  6235. height:30px;
  6236. display:flex;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:18px;
  6241. line-height:30px;
  6242. }
  6243. #u165654 .text {
  6244. position:absolute;
  6245. align-self:flex-start;
  6246. padding:0px 0px 0px 0px;
  6247. box-sizing:border-box;
  6248. width:100%;
  6249. }
  6250. #u165654_text {
  6251. border-width:0px;
  6252. white-space:nowrap;
  6253. text-transform:none;
  6254. }
  6255. #u165655 {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:1896px;
  6259. top:791px;
  6260. width:322px;
  6261. height:125px;
  6262. }
  6263. #u165656_img {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:64px;
  6269. height:25px;
  6270. }
  6271. #u165656 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:64px;
  6277. height:25px;
  6278. display:flex;
  6279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6280. font-weight:400;
  6281. font-style:normal;
  6282. font-size:10px;
  6283. color:#FFFFFF;
  6284. }
  6285. #u165656 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:2px 2px 2px 2px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u165656_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. }
  6297. #u165657_img {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:0px;
  6301. top:0px;
  6302. width:64px;
  6303. height:25px;
  6304. }
  6305. #u165657 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:64px;
  6309. top:0px;
  6310. width:64px;
  6311. height:25px;
  6312. display:flex;
  6313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:10px;
  6317. color:#FFFFFF;
  6318. }
  6319. #u165657 .text {
  6320. position:absolute;
  6321. align-self:center;
  6322. padding:2px 2px 2px 2px;
  6323. box-sizing:border-box;
  6324. width:100%;
  6325. }
  6326. #u165657_text {
  6327. border-width:0px;
  6328. word-wrap:break-word;
  6329. text-transform:none;
  6330. }
  6331. #u165658_img {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:64px;
  6337. height:25px;
  6338. }
  6339. #u165658 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:128px;
  6343. top:0px;
  6344. width:64px;
  6345. height:25px;
  6346. display:flex;
  6347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:10px;
  6351. color:#FFFFFF;
  6352. }
  6353. #u165658 .text {
  6354. position:absolute;
  6355. align-self:center;
  6356. padding:2px 2px 2px 2px;
  6357. box-sizing:border-box;
  6358. width:100%;
  6359. }
  6360. #u165658_text {
  6361. border-width:0px;
  6362. word-wrap:break-word;
  6363. text-transform:none;
  6364. }
  6365. #u165659_img {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:0px;
  6369. top:0px;
  6370. width:64px;
  6371. height:25px;
  6372. }
  6373. #u165659 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:192px;
  6377. top:0px;
  6378. width:64px;
  6379. height:25px;
  6380. display:flex;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:10px;
  6385. color:#FFFFFF;
  6386. }
  6387. #u165659 .text {
  6388. position:absolute;
  6389. align-self:center;
  6390. padding:2px 2px 2px 2px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u165659_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. }
  6399. #u165660_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:66px;
  6405. height:25px;
  6406. }
  6407. #u165660 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:256px;
  6411. top:0px;
  6412. width:66px;
  6413. height:25px;
  6414. display:flex;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:10px;
  6419. color:#FFFFFF;
  6420. }
  6421. #u165660 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:2px 2px 2px 2px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u165660_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. }
  6433. #u165661_img {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:64px;
  6439. height:25px;
  6440. }
  6441. #u165661 {
  6442. border-width:0px;
  6443. position:absolute;
  6444. left:0px;
  6445. top:25px;
  6446. width:64px;
  6447. height:25px;
  6448. display:flex;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:10px;
  6453. }
  6454. #u165661 .text {
  6455. position:absolute;
  6456. align-self:center;
  6457. padding:2px 2px 2px 2px;
  6458. box-sizing:border-box;
  6459. width:100%;
  6460. }
  6461. #u165661_text {
  6462. border-width:0px;
  6463. word-wrap:break-word;
  6464. text-transform:none;
  6465. }
  6466. #u165662_img {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:64px;
  6472. height:25px;
  6473. }
  6474. #u165662 {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:64px;
  6478. top:25px;
  6479. width:64px;
  6480. height:25px;
  6481. display:flex;
  6482. font-size:10px;
  6483. }
  6484. #u165662 .text {
  6485. position:absolute;
  6486. align-self:center;
  6487. padding:2px 2px 2px 2px;
  6488. box-sizing:border-box;
  6489. width:100%;
  6490. }
  6491. #u165662_text {
  6492. border-width:0px;
  6493. word-wrap:break-word;
  6494. text-transform:none;
  6495. }
  6496. #u165663_img {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:64px;
  6502. height:25px;
  6503. }
  6504. #u165663 {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:128px;
  6508. top:25px;
  6509. width:64px;
  6510. height:25px;
  6511. display:flex;
  6512. font-size:10px;
  6513. }
  6514. #u165663 .text {
  6515. position:absolute;
  6516. align-self:center;
  6517. padding:2px 2px 2px 2px;
  6518. box-sizing:border-box;
  6519. width:100%;
  6520. }
  6521. #u165663_text {
  6522. border-width:0px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. }
  6526. #u165664_img {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:64px;
  6532. height:25px;
  6533. }
  6534. #u165664 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:192px;
  6538. top:25px;
  6539. width:64px;
  6540. height:25px;
  6541. display:flex;
  6542. font-size:10px;
  6543. }
  6544. #u165664 .text {
  6545. position:absolute;
  6546. align-self:center;
  6547. padding:2px 2px 2px 2px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u165664_text {
  6552. border-width:0px;
  6553. word-wrap:break-word;
  6554. text-transform:none;
  6555. }
  6556. #u165665_img {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:0px;
  6560. top:0px;
  6561. width:66px;
  6562. height:25px;
  6563. }
  6564. #u165665 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:256px;
  6568. top:25px;
  6569. width:66px;
  6570. height:25px;
  6571. display:flex;
  6572. font-size:10px;
  6573. }
  6574. #u165665 .text {
  6575. position:absolute;
  6576. align-self:center;
  6577. padding:2px 2px 2px 2px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u165665_text {
  6582. border-width:0px;
  6583. word-wrap:break-word;
  6584. text-transform:none;
  6585. }
  6586. #u165666_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:64px;
  6592. height:25px;
  6593. }
  6594. #u165666 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:50px;
  6599. width:64px;
  6600. height:25px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:10px;
  6606. }
  6607. #u165666 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:2px 2px 2px 2px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u165666_text {
  6615. border-width:0px;
  6616. word-wrap:break-word;
  6617. text-transform:none;
  6618. }
  6619. #u165667_img {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:64px;
  6625. height:25px;
  6626. }
  6627. #u165667 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:64px;
  6631. top:50px;
  6632. width:64px;
  6633. height:25px;
  6634. display:flex;
  6635. font-size:10px;
  6636. }
  6637. #u165667 .text {
  6638. position:absolute;
  6639. align-self:center;
  6640. padding:2px 2px 2px 2px;
  6641. box-sizing:border-box;
  6642. width:100%;
  6643. }
  6644. #u165667_text {
  6645. border-width:0px;
  6646. word-wrap:break-word;
  6647. text-transform:none;
  6648. }
  6649. #u165668_img {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:64px;
  6655. height:25px;
  6656. }
  6657. #u165668 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:128px;
  6661. top:50px;
  6662. width:64px;
  6663. height:25px;
  6664. display:flex;
  6665. font-size:10px;
  6666. }
  6667. #u165668 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 2px 2px 2px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u165668_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. }
  6679. #u165669_img {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:64px;
  6685. height:25px;
  6686. }
  6687. #u165669 {
  6688. border-width:0px;
  6689. position:absolute;
  6690. left:192px;
  6691. top:50px;
  6692. width:64px;
  6693. height:25px;
  6694. display:flex;
  6695. font-size:10px;
  6696. }
  6697. #u165669 .text {
  6698. position:absolute;
  6699. align-self:center;
  6700. padding:2px 2px 2px 2px;
  6701. box-sizing:border-box;
  6702. width:100%;
  6703. }
  6704. #u165669_text {
  6705. border-width:0px;
  6706. word-wrap:break-word;
  6707. text-transform:none;
  6708. }
  6709. #u165670_img {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:0px;
  6713. top:0px;
  6714. width:66px;
  6715. height:25px;
  6716. }
  6717. #u165670 {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:256px;
  6721. top:50px;
  6722. width:66px;
  6723. height:25px;
  6724. display:flex;
  6725. font-size:10px;
  6726. }
  6727. #u165670 .text {
  6728. position:absolute;
  6729. align-self:center;
  6730. padding:2px 2px 2px 2px;
  6731. box-sizing:border-box;
  6732. width:100%;
  6733. }
  6734. #u165670_text {
  6735. border-width:0px;
  6736. word-wrap:break-word;
  6737. text-transform:none;
  6738. }
  6739. #u165671_img {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:64px;
  6745. height:25px;
  6746. }
  6747. #u165671 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:75px;
  6752. width:64px;
  6753. height:25px;
  6754. display:flex;
  6755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:10px;
  6759. }
  6760. #u165671 .text {
  6761. position:absolute;
  6762. align-self:center;
  6763. padding:2px 2px 2px 2px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u165671_text {
  6768. border-width:0px;
  6769. word-wrap:break-word;
  6770. text-transform:none;
  6771. }
  6772. #u165672_img {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:64px;
  6778. height:25px;
  6779. }
  6780. #u165672 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:64px;
  6784. top:75px;
  6785. width:64px;
  6786. height:25px;
  6787. display:flex;
  6788. font-size:10px;
  6789. }
  6790. #u165672 .text {
  6791. position:absolute;
  6792. align-self:center;
  6793. padding:2px 2px 2px 2px;
  6794. box-sizing:border-box;
  6795. width:100%;
  6796. }
  6797. #u165672_text {
  6798. border-width:0px;
  6799. word-wrap:break-word;
  6800. text-transform:none;
  6801. }
  6802. #u165673_img {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:0px;
  6806. top:0px;
  6807. width:64px;
  6808. height:25px;
  6809. }
  6810. #u165673 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:128px;
  6814. top:75px;
  6815. width:64px;
  6816. height:25px;
  6817. display:flex;
  6818. font-size:10px;
  6819. }
  6820. #u165673 .text {
  6821. position:absolute;
  6822. align-self:center;
  6823. padding:2px 2px 2px 2px;
  6824. box-sizing:border-box;
  6825. width:100%;
  6826. }
  6827. #u165673_text {
  6828. border-width:0px;
  6829. word-wrap:break-word;
  6830. text-transform:none;
  6831. }
  6832. #u165674_img {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:0px;
  6836. top:0px;
  6837. width:64px;
  6838. height:25px;
  6839. }
  6840. #u165674 {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:192px;
  6844. top:75px;
  6845. width:64px;
  6846. height:25px;
  6847. display:flex;
  6848. font-size:10px;
  6849. }
  6850. #u165674 .text {
  6851. position:absolute;
  6852. align-self:center;
  6853. padding:2px 2px 2px 2px;
  6854. box-sizing:border-box;
  6855. width:100%;
  6856. }
  6857. #u165674_text {
  6858. border-width:0px;
  6859. word-wrap:break-word;
  6860. text-transform:none;
  6861. }
  6862. #u165675_img {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:66px;
  6868. height:25px;
  6869. }
  6870. #u165675 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:256px;
  6874. top:75px;
  6875. width:66px;
  6876. height:25px;
  6877. display:flex;
  6878. font-size:10px;
  6879. }
  6880. #u165675 .text {
  6881. position:absolute;
  6882. align-self:center;
  6883. padding:2px 2px 2px 2px;
  6884. box-sizing:border-box;
  6885. width:100%;
  6886. }
  6887. #u165675_text {
  6888. border-width:0px;
  6889. word-wrap:break-word;
  6890. text-transform:none;
  6891. }
  6892. #u165676_img {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:64px;
  6898. height:25px;
  6899. }
  6900. #u165676 {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:100px;
  6905. width:64px;
  6906. height:25px;
  6907. display:flex;
  6908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. font-size:10px;
  6912. }
  6913. #u165676 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:2px 2px 2px 2px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u165676_text {
  6921. border-width:0px;
  6922. word-wrap:break-word;
  6923. text-transform:none;
  6924. }
  6925. #u165677_img {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:64px;
  6931. height:25px;
  6932. }
  6933. #u165677 {
  6934. border-width:0px;
  6935. position:absolute;
  6936. left:64px;
  6937. top:100px;
  6938. width:64px;
  6939. height:25px;
  6940. display:flex;
  6941. font-size:10px;
  6942. }
  6943. #u165677 .text {
  6944. position:absolute;
  6945. align-self:center;
  6946. padding:2px 2px 2px 2px;
  6947. box-sizing:border-box;
  6948. width:100%;
  6949. }
  6950. #u165677_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. }
  6955. #u165678_img {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:0px;
  6959. top:0px;
  6960. width:64px;
  6961. height:25px;
  6962. }
  6963. #u165678 {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:128px;
  6967. top:100px;
  6968. width:64px;
  6969. height:25px;
  6970. display:flex;
  6971. font-size:10px;
  6972. }
  6973. #u165678 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:2px 2px 2px 2px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u165678_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. }
  6985. #u165679_img {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:64px;
  6991. height:25px;
  6992. }
  6993. #u165679 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:192px;
  6997. top:100px;
  6998. width:64px;
  6999. height:25px;
  7000. display:flex;
  7001. font-size:10px;
  7002. }
  7003. #u165679 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:2px 2px 2px 2px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u165679_text {
  7011. border-width:0px;
  7012. word-wrap:break-word;
  7013. text-transform:none;
  7014. }
  7015. #u165680_img {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:66px;
  7021. height:25px;
  7022. }
  7023. #u165680 {
  7024. border-width:0px;
  7025. position:absolute;
  7026. left:256px;
  7027. top:100px;
  7028. width:66px;
  7029. height:25px;
  7030. display:flex;
  7031. font-size:10px;
  7032. }
  7033. #u165680 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:2px 2px 2px 2px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u165680_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. }
  7045. #u165681 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:0px;
  7051. height:0px;
  7052. }
  7053. #u165682_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:323px;
  7059. height:40px;
  7060. background:inherit;
  7061. background-color:rgba(242, 242, 242, 1);
  7062. border:none;
  7063. border-radius:4px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. }
  7068. #u165682 {
  7069. border-width:0px;
  7070. position:absolute;
  7071. left:1895px;
  7072. top:742px;
  7073. width:323px;
  7074. height:40px;
  7075. display:flex;
  7076. }
  7077. #u165682 .text {
  7078. position:absolute;
  7079. align-self:center;
  7080. padding:2px 2px 2px 2px;
  7081. box-sizing:border-box;
  7082. width:100%;
  7083. }
  7084. #u165682_text {
  7085. border-width:0px;
  7086. word-wrap:break-word;
  7087. text-transform:none;
  7088. visibility:hidden;
  7089. }
  7090. #u165683_div {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:201px;
  7096. height:30px;
  7097. background:inherit;
  7098. background-color:rgba(255, 255, 255, 0);
  7099. border:none;
  7100. border-left:0px;
  7101. border-top:0px;
  7102. border-right:0px;
  7103. border-radius:0px;
  7104. border-bottom-right-radius:0px;
  7105. border-bottom-left-radius:0px;
  7106. -moz-box-shadow:none;
  7107. -webkit-box-shadow:none;
  7108. box-shadow:none;
  7109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7110. font-weight:400;
  7111. font-style:normal;
  7112. font-size:14px;
  7113. color:#AAAAAA;
  7114. line-height:30px;
  7115. }
  7116. #u165683 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:1910px;
  7120. top:747px;
  7121. width:201px;
  7122. height:30px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:14px;
  7128. color:#AAAAAA;
  7129. line-height:30px;
  7130. }
  7131. #u165683 .text {
  7132. position:absolute;
  7133. align-self:flex-start;
  7134. padding:0px 0px 0px 0px;
  7135. box-sizing:border-box;
  7136. width:100%;
  7137. }
  7138. #u165683_text {
  7139. border-width:0px;
  7140. white-space:nowrap;
  7141. text-transform:none;
  7142. }
  7143. #u165684_div {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:71px;
  7149. height:90px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 0);
  7152. border:none;
  7153. border-left:0px;
  7154. border-top:0px;
  7155. border-right:0px;
  7156. border-radius:0px;
  7157. border-bottom-right-radius:0px;
  7158. border-bottom-left-radius:0px;
  7159. -moz-box-shadow:none;
  7160. -webkit-box-shadow:none;
  7161. box-shadow:none;
  7162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7163. font-weight:400;
  7164. font-style:normal;
  7165. font-size:14px;
  7166. line-height:30px;
  7167. }
  7168. #u165684 {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:1896px;
  7172. top:942px;
  7173. width:71px;
  7174. height:90px;
  7175. display:flex;
  7176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7177. font-weight:400;
  7178. font-style:normal;
  7179. font-size:14px;
  7180. line-height:30px;
  7181. }
  7182. #u165684 .text {
  7183. position:absolute;
  7184. align-self:flex-start;
  7185. padding:0px 0px 0px 0px;
  7186. box-sizing:border-box;
  7187. width:100%;
  7188. }
  7189. #u165684_text {
  7190. border-width:0px;
  7191. white-space:nowrap;
  7192. text-transform:none;
  7193. }
  7194. #u165685_div {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:52px;
  7200. height:90px;
  7201. background:inherit;
  7202. background-color:rgba(255, 255, 255, 0);
  7203. border:none;
  7204. border-left:0px;
  7205. border-top:0px;
  7206. border-right:0px;
  7207. border-radius:0px;
  7208. border-bottom-right-radius:0px;
  7209. border-bottom-left-radius:0px;
  7210. -moz-box-shadow:none;
  7211. -webkit-box-shadow:none;
  7212. box-shadow:none;
  7213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7214. font-weight:400;
  7215. font-style:normal;
  7216. font-size:14px;
  7217. text-align:right;
  7218. line-height:30px;
  7219. }
  7220. #u165685 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:2181px;
  7224. top:942px;
  7225. width:52px;
  7226. height:90px;
  7227. display:flex;
  7228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:14px;
  7232. text-align:right;
  7233. line-height:30px;
  7234. }
  7235. #u165685 .text {
  7236. position:absolute;
  7237. align-self:flex-start;
  7238. padding:0px 0px 0px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u165685_text {
  7243. border-width:0px;
  7244. white-space:nowrap;
  7245. text-transform:none;
  7246. }
  7247. #u165686_div {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:375px;
  7253. height:40px;
  7254. background:inherit;
  7255. background-color:rgba(24, 144, 255, 0.0470588235294118);
  7256. border:none;
  7257. border-left:0px;
  7258. border-top:0px;
  7259. border-right:0px;
  7260. border-radius:0px;
  7261. border-bottom-right-radius:0px;
  7262. border-bottom-left-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. text-align:right;
  7270. line-height:30px;
  7271. }
  7272. #u165686 {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:1872px;
  7276. top:1037px;
  7277. width:375px;
  7278. height:40px;
  7279. display:flex;
  7280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7281. font-weight:400;
  7282. font-style:normal;
  7283. text-align:right;
  7284. line-height:30px;
  7285. }
  7286. #u165686 .text {
  7287. position:absolute;
  7288. align-self:center;
  7289. padding:0px 20px 0px 20px;
  7290. box-sizing:border-box;
  7291. width:100%;
  7292. }
  7293. #u165686_text {
  7294. border-width:0px;
  7295. word-wrap:break-word;
  7296. text-transform:none;
  7297. }
  7298. #u165687 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:0px;
  7302. top:0px;
  7303. width:0px;
  7304. height:0px;
  7305. }
  7306. #u165688_div {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:62px;
  7312. height:30px;
  7313. background:inherit;
  7314. background-color:rgba(255, 255, 255, 0);
  7315. border:none;
  7316. border-radius:0px;
  7317. -moz-box-shadow:none;
  7318. -webkit-box-shadow:none;
  7319. box-shadow:none;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:14px;
  7324. line-height:30px;
  7325. }
  7326. #u165688 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:1682px;
  7330. top:707px;
  7331. width:62px;
  7332. height:30px;
  7333. display:flex;
  7334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7335. font-weight:400;
  7336. font-style:normal;
  7337. font-size:14px;
  7338. line-height:30px;
  7339. }
  7340. #u165688 .text {
  7341. position:absolute;
  7342. align-self:flex-start;
  7343. padding:0px 0px 0px 0px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u165688_text {
  7348. border-width:0px;
  7349. white-space:nowrap;
  7350. text-transform:none;
  7351. }
  7352. #u165689_img {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:12px;
  7358. height:7px;
  7359. }
  7360. #u165689 {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:1747px;
  7364. top:719px;
  7365. width:12px;
  7366. height:7px;
  7367. display:flex;
  7368. -webkit-transform:rotate(180deg);
  7369. -moz-transform:rotate(180deg);
  7370. -ms-transform:rotate(180deg);
  7371. transform:rotate(180deg);
  7372. }
  7373. #u165689 .text {
  7374. position:absolute;
  7375. align-self:center;
  7376. padding:2px 2px 2px 2px;
  7377. box-sizing:border-box;
  7378. width:100%;
  7379. }
  7380. #u165689_text {
  7381. border-width:0px;
  7382. word-wrap:break-word;
  7383. text-transform:none;
  7384. visibility:hidden;
  7385. }
  7386. #u165690 {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:0px;
  7392. height:0px;
  7393. }
  7394. #u165691_div {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:62px;
  7400. height:30px;
  7401. background:inherit;
  7402. background-color:rgba(255, 255, 255, 0);
  7403. border:none;
  7404. border-radius:0px;
  7405. -moz-box-shadow:none;
  7406. -webkit-box-shadow:none;
  7407. box-shadow:none;
  7408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. font-size:14px;
  7412. line-height:30px;
  7413. }
  7414. #u165691 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:2141px;
  7418. top:707px;
  7419. width:62px;
  7420. height:30px;
  7421. display:flex;
  7422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7423. font-weight:400;
  7424. font-style:normal;
  7425. font-size:14px;
  7426. line-height:30px;
  7427. }
  7428. #u165691 .text {
  7429. position:absolute;
  7430. align-self:flex-start;
  7431. padding:0px 0px 0px 0px;
  7432. box-sizing:border-box;
  7433. width:100%;
  7434. }
  7435. #u165691_text {
  7436. border-width:0px;
  7437. white-space:nowrap;
  7438. text-transform:none;
  7439. }
  7440. #u165692_img {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:12px;
  7446. height:7px;
  7447. }
  7448. #u165692 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:2206px;
  7452. top:719px;
  7453. width:12px;
  7454. height:7px;
  7455. display:flex;
  7456. }
  7457. #u165692 .text {
  7458. position:absolute;
  7459. align-self:center;
  7460. padding:2px 2px 2px 2px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u165692_text {
  7465. border-width:0px;
  7466. word-wrap:break-word;
  7467. text-transform:none;
  7468. visibility:hidden;
  7469. }
  7470. #u165693 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:0px;
  7476. height:0px;
  7477. }
  7478. #u165694_div {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:375px;
  7484. height:50px;
  7485. background:inherit;
  7486. background-color:rgba(255, 255, 255, 1);
  7487. border:none;
  7488. border-top:0px;
  7489. border-radius:0px;
  7490. border-top-left-radius:0px;
  7491. border-top-right-radius:0px;
  7492. -moz-box-shadow:none;
  7493. -webkit-box-shadow:none;
  7494. box-shadow:none;
  7495. }
  7496. #u165694 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:1418px;
  7500. top:1007px;
  7501. width:375px;
  7502. height:50px;
  7503. display:flex;
  7504. }
  7505. #u165694 .text {
  7506. position:absolute;
  7507. align-self:center;
  7508. padding:2px 2px 2px 2px;
  7509. box-sizing:border-box;
  7510. width:100%;
  7511. }
  7512. #u165694_text {
  7513. border-width:0px;
  7514. word-wrap:break-word;
  7515. text-transform:none;
  7516. visibility:hidden;
  7517. }
  7518. #u165695_div {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:0px;
  7522. top:0px;
  7523. width:256px;
  7524. height:25px;
  7525. background:inherit;
  7526. background-color:rgba(255, 255, 255, 0);
  7527. border:none;
  7528. border-left:0px;
  7529. border-top:0px;
  7530. border-right:0px;
  7531. border-radius:0px;
  7532. border-bottom-right-radius:0px;
  7533. border-bottom-left-radius:0px;
  7534. -moz-box-shadow:none;
  7535. -webkit-box-shadow:none;
  7536. box-shadow:none;
  7537. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7538. font-style:normal;
  7539. line-height:25px;
  7540. }
  7541. #u165695 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:1435px;
  7545. top:1019px;
  7546. width:256px;
  7547. height:25px;
  7548. display:flex;
  7549. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7550. font-style:normal;
  7551. line-height:25px;
  7552. }
  7553. #u165695 .text {
  7554. position:absolute;
  7555. align-self:flex-start;
  7556. padding:0px 0px 0px 0px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u165695_text {
  7561. border-width:0px;
  7562. white-space:nowrap;
  7563. text-transform:none;
  7564. }
  7565. #u165696 {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:0px;
  7571. height:0px;
  7572. }
  7573. #u165697_div {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:57px;
  7579. height:30px;
  7580. background:inherit;
  7581. background-color:rgba(255, 255, 255, 0);
  7582. border:none;
  7583. border-radius:0px;
  7584. -moz-box-shadow:none;
  7585. -webkit-box-shadow:none;
  7586. box-shadow:none;
  7587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:14px;
  7591. color:#298FFF;
  7592. line-height:30px;
  7593. }
  7594. #u165697 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:1695px;
  7598. top:1016px;
  7599. width:57px;
  7600. height:30px;
  7601. display:flex;
  7602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7603. font-weight:400;
  7604. font-style:normal;
  7605. font-size:14px;
  7606. color:#298FFF;
  7607. line-height:30px;
  7608. }
  7609. #u165697 .text {
  7610. position:absolute;
  7611. align-self:flex-start;
  7612. padding:0px 0px 0px 0px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u165697_text {
  7617. border-width:0px;
  7618. white-space:nowrap;
  7619. text-transform:none;
  7620. }
  7621. #u165698_img {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:12px;
  7627. height:7px;
  7628. }
  7629. #u165698 {
  7630. border-width:0px;
  7631. position:absolute;
  7632. left:1760px;
  7633. top:1028px;
  7634. width:12px;
  7635. height:7px;
  7636. display:flex;
  7637. -webkit-transform:rotate(180deg);
  7638. -moz-transform:rotate(180deg);
  7639. -ms-transform:rotate(180deg);
  7640. transform:rotate(180deg);
  7641. }
  7642. #u165698 .text {
  7643. position:absolute;
  7644. align-self:center;
  7645. padding:2px 2px 2px 2px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u165698_text {
  7650. border-width:0px;
  7651. word-wrap:break-word;
  7652. text-transform:none;
  7653. visibility:hidden;
  7654. }
  7655. #u165699 {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:0px;
  7660. width:0px;
  7661. height:0px;
  7662. }
  7663. #u165700_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:375px;
  7669. height:50px;
  7670. background:inherit;
  7671. background-color:rgba(255, 255, 255, 1);
  7672. border:none;
  7673. border-top:0px;
  7674. border-radius:0px;
  7675. border-top-left-radius:0px;
  7676. border-top-right-radius:0px;
  7677. -moz-box-shadow:none;
  7678. -webkit-box-shadow:none;
  7679. box-shadow:none;
  7680. }
  7681. #u165700 {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:1418px;
  7685. top:956px;
  7686. width:375px;
  7687. height:50px;
  7688. display:flex;
  7689. }
  7690. #u165700 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:2px 2px 2px 2px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u165700_text {
  7698. border-width:0px;
  7699. word-wrap:break-word;
  7700. text-transform:none;
  7701. visibility:hidden;
  7702. }
  7703. #u165701_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:57px;
  7709. height:25px;
  7710. background:inherit;
  7711. background-color:rgba(255, 255, 255, 0);
  7712. border:none;
  7713. border-left:0px;
  7714. border-top:0px;
  7715. border-right:0px;
  7716. border-radius:0px;
  7717. border-bottom-right-radius:0px;
  7718. border-bottom-left-radius:0px;
  7719. -moz-box-shadow:none;
  7720. -webkit-box-shadow:none;
  7721. box-shadow:none;
  7722. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7723. font-weight:500;
  7724. font-style:normal;
  7725. font-size:14px;
  7726. line-height:25px;
  7727. }
  7728. #u165701 {
  7729. border-width:0px;
  7730. position:absolute;
  7731. left:1435px;
  7732. top:968px;
  7733. width:57px;
  7734. height:25px;
  7735. display:flex;
  7736. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7737. font-weight:500;
  7738. font-style:normal;
  7739. font-size:14px;
  7740. line-height:25px;
  7741. }
  7742. #u165701 .text {
  7743. position:absolute;
  7744. align-self:flex-start;
  7745. padding:0px 0px 0px 0px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u165701_text {
  7750. border-width:0px;
  7751. white-space:nowrap;
  7752. text-transform:none;
  7753. }
  7754. #u165702 {
  7755. border-width:0px;
  7756. position:absolute;
  7757. left:0px;
  7758. top:0px;
  7759. width:0px;
  7760. height:0px;
  7761. }
  7762. #u165703_div {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:0px;
  7766. top:0px;
  7767. width:43px;
  7768. height:30px;
  7769. background:inherit;
  7770. background-color:rgba(255, 255, 255, 0);
  7771. border:none;
  7772. border-radius:0px;
  7773. -moz-box-shadow:none;
  7774. -webkit-box-shadow:none;
  7775. box-shadow:none;
  7776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7777. font-weight:400;
  7778. font-style:normal;
  7779. font-size:14px;
  7780. color:#298FFF;
  7781. text-align:right;
  7782. line-height:30px;
  7783. }
  7784. #u165703 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:1706px;
  7788. top:966px;
  7789. width:43px;
  7790. height:30px;
  7791. display:flex;
  7792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:14px;
  7796. color:#298FFF;
  7797. text-align:right;
  7798. line-height:30px;
  7799. }
  7800. #u165703 .text {
  7801. position:absolute;
  7802. align-self:flex-start;
  7803. padding:0px 0px 0px 0px;
  7804. box-sizing:border-box;
  7805. width:100%;
  7806. }
  7807. #u165703_text {
  7808. border-width:0px;
  7809. white-space:nowrap;
  7810. text-transform:none;
  7811. }
  7812. #u165704_img {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:12px;
  7818. height:7px;
  7819. }
  7820. #u165704 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:1757px;
  7824. top:978px;
  7825. width:12px;
  7826. height:7px;
  7827. display:flex;
  7828. -webkit-transform:rotate(180deg);
  7829. -moz-transform:rotate(180deg);
  7830. -ms-transform:rotate(180deg);
  7831. transform:rotate(180deg);
  7832. }
  7833. #u165704 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:2px 2px 2px 2px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u165704_text {
  7841. border-width:0px;
  7842. word-wrap:break-word;
  7843. text-transform:none;
  7844. visibility:hidden;
  7845. }
  7846. #u165705 {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:0px;
  7852. height:0px;
  7853. }
  7854. #u165706_div {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:375px;
  7860. height:120px;
  7861. background:inherit;
  7862. background-color:rgba(255, 255, 255, 1);
  7863. border:none;
  7864. border-top:0px;
  7865. border-radius:0px;
  7866. border-top-left-radius:0px;
  7867. border-top-right-radius:0px;
  7868. -moz-box-shadow:none;
  7869. -webkit-box-shadow:none;
  7870. box-shadow:none;
  7871. }
  7872. #u165706 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:1872px;
  7876. top:1208px;
  7877. width:375px;
  7878. height:120px;
  7879. display:flex;
  7880. }
  7881. #u165706 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 2px 2px 2px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u165706_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. visibility:hidden;
  7893. }
  7894. #u165707_div {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:256px;
  7900. height:25px;
  7901. background:inherit;
  7902. background-color:rgba(255, 255, 255, 0);
  7903. border:none;
  7904. border-left:0px;
  7905. border-top:0px;
  7906. border-right:0px;
  7907. border-radius:0px;
  7908. border-bottom-right-radius:0px;
  7909. border-bottom-left-radius:0px;
  7910. -moz-box-shadow:none;
  7911. -webkit-box-shadow:none;
  7912. box-shadow:none;
  7913. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7914. font-style:normal;
  7915. line-height:25px;
  7916. }
  7917. #u165707 {
  7918. border-width:0px;
  7919. position:absolute;
  7920. left:1889px;
  7921. top:1220px;
  7922. width:256px;
  7923. height:25px;
  7924. display:flex;
  7925. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7926. font-style:normal;
  7927. line-height:25px;
  7928. }
  7929. #u165707 .text {
  7930. position:absolute;
  7931. align-self:flex-start;
  7932. padding:0px 0px 0px 0px;
  7933. box-sizing:border-box;
  7934. width:100%;
  7935. }
  7936. #u165707_text {
  7937. border-width:0px;
  7938. white-space:nowrap;
  7939. text-transform:none;
  7940. }
  7941. #u165708 {
  7942. border-width:0px;
  7943. position:absolute;
  7944. left:0px;
  7945. top:0px;
  7946. width:0px;
  7947. height:0px;
  7948. }
  7949. #u165709_div {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:0px;
  7953. top:0px;
  7954. width:57px;
  7955. height:30px;
  7956. background:inherit;
  7957. background-color:rgba(255, 255, 255, 0);
  7958. border:none;
  7959. border-radius:0px;
  7960. -moz-box-shadow:none;
  7961. -webkit-box-shadow:none;
  7962. box-shadow:none;
  7963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7964. font-weight:400;
  7965. font-style:normal;
  7966. font-size:14px;
  7967. color:#298FFF;
  7968. line-height:30px;
  7969. }
  7970. #u165709 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:2149px;
  7974. top:1217px;
  7975. width:57px;
  7976. height:30px;
  7977. display:flex;
  7978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7979. font-weight:400;
  7980. font-style:normal;
  7981. font-size:14px;
  7982. color:#298FFF;
  7983. line-height:30px;
  7984. }
  7985. #u165709 .text {
  7986. position:absolute;
  7987. align-self:flex-start;
  7988. padding:0px 0px 0px 0px;
  7989. box-sizing:border-box;
  7990. width:100%;
  7991. }
  7992. #u165709_text {
  7993. border-width:0px;
  7994. white-space:nowrap;
  7995. text-transform:none;
  7996. }
  7997. #u165710_img {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:12px;
  8003. height:7px;
  8004. }
  8005. #u165710 {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:2214px;
  8009. top:1229px;
  8010. width:12px;
  8011. height:7px;
  8012. display:flex;
  8013. }
  8014. #u165710 .text {
  8015. position:absolute;
  8016. align-self:center;
  8017. padding:2px 2px 2px 2px;
  8018. box-sizing:border-box;
  8019. width:100%;
  8020. }
  8021. #u165710_text {
  8022. border-width:0px;
  8023. word-wrap:break-word;
  8024. text-transform:none;
  8025. visibility:hidden;
  8026. }
  8027. #u165711 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:1889px;
  8031. top:1250px;
  8032. width:344px;
  8033. height:57px;
  8034. }
  8035. #u165712_img {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:151px;
  8041. height:25px;
  8042. }
  8043. #u165712 {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:0px;
  8047. top:0px;
  8048. width:151px;
  8049. height:25px;
  8050. display:flex;
  8051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8052. font-weight:400;
  8053. font-style:normal;
  8054. font-size:10px;
  8055. color:#FFFFFF;
  8056. }
  8057. #u165712 .text {
  8058. position:absolute;
  8059. align-self:center;
  8060. padding:2px 2px 2px 2px;
  8061. box-sizing:border-box;
  8062. width:100%;
  8063. }
  8064. #u165712_text {
  8065. border-width:0px;
  8066. word-wrap:break-word;
  8067. text-transform:none;
  8068. }
  8069. #u165713_img {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:0px;
  8074. width:65px;
  8075. height:25px;
  8076. }
  8077. #u165713 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:151px;
  8081. top:0px;
  8082. width:65px;
  8083. height:25px;
  8084. display:flex;
  8085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8086. font-weight:400;
  8087. font-style:normal;
  8088. font-size:10px;
  8089. color:#FFFFFF;
  8090. }
  8091. #u165713 .text {
  8092. position:absolute;
  8093. align-self:center;
  8094. padding:2px 2px 2px 2px;
  8095. box-sizing:border-box;
  8096. width:100%;
  8097. }
  8098. #u165713_text {
  8099. border-width:0px;
  8100. word-wrap:break-word;
  8101. text-transform:none;
  8102. }
  8103. #u165714_img {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:65px;
  8109. height:25px;
  8110. }
  8111. #u165714 {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:216px;
  8115. top:0px;
  8116. width:65px;
  8117. height:25px;
  8118. display:flex;
  8119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8120. font-weight:400;
  8121. font-style:normal;
  8122. font-size:10px;
  8123. color:#FFFFFF;
  8124. }
  8125. #u165714 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:2px 2px 2px 2px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u165714_text {
  8133. border-width:0px;
  8134. word-wrap:break-word;
  8135. text-transform:none;
  8136. }
  8137. #u165715_img {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:63px;
  8143. height:25px;
  8144. }
  8145. #u165715 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:281px;
  8149. top:0px;
  8150. width:63px;
  8151. height:25px;
  8152. display:flex;
  8153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:10px;
  8157. color:#FFFFFF;
  8158. }
  8159. #u165715 .text {
  8160. position:absolute;
  8161. align-self:center;
  8162. padding:2px 2px 2px 2px;
  8163. box-sizing:border-box;
  8164. width:100%;
  8165. }
  8166. #u165715_text {
  8167. border-width:0px;
  8168. word-wrap:break-word;
  8169. text-transform:none;
  8170. }
  8171. #u165716_img {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:151px;
  8177. height:32px;
  8178. }
  8179. #u165716 {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:0px;
  8183. top:25px;
  8184. width:151px;
  8185. height:32px;
  8186. display:flex;
  8187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8188. font-weight:400;
  8189. font-style:normal;
  8190. font-size:10px;
  8191. }
  8192. #u165716 .text {
  8193. position:absolute;
  8194. align-self:center;
  8195. padding:2px 2px 2px 2px;
  8196. box-sizing:border-box;
  8197. width:100%;
  8198. }
  8199. #u165716_text {
  8200. border-width:0px;
  8201. word-wrap:break-word;
  8202. text-transform:none;
  8203. }
  8204. #u165717_img {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:65px;
  8210. height:32px;
  8211. }
  8212. #u165717 {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:151px;
  8216. top:25px;
  8217. width:65px;
  8218. height:32px;
  8219. display:flex;
  8220. font-size:10px;
  8221. }
  8222. #u165717 .text {
  8223. position:absolute;
  8224. align-self:center;
  8225. padding:2px 2px 2px 2px;
  8226. box-sizing:border-box;
  8227. width:100%;
  8228. }
  8229. #u165717_text {
  8230. border-width:0px;
  8231. word-wrap:break-word;
  8232. text-transform:none;
  8233. }
  8234. #u165718_img {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:0px;
  8238. top:0px;
  8239. width:65px;
  8240. height:32px;
  8241. }
  8242. #u165718 {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:216px;
  8246. top:25px;
  8247. width:65px;
  8248. height:32px;
  8249. display:flex;
  8250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8251. font-weight:400;
  8252. font-style:normal;
  8253. font-size:10px;
  8254. }
  8255. #u165718 .text {
  8256. position:absolute;
  8257. align-self:center;
  8258. padding:2px 2px 2px 2px;
  8259. box-sizing:border-box;
  8260. width:100%;
  8261. }
  8262. #u165718_text {
  8263. border-width:0px;
  8264. word-wrap:break-word;
  8265. text-transform:none;
  8266. }
  8267. #u165719_img {
  8268. border-width:0px;
  8269. position:absolute;
  8270. left:0px;
  8271. top:0px;
  8272. width:63px;
  8273. height:32px;
  8274. }
  8275. #u165719 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:281px;
  8279. top:25px;
  8280. width:63px;
  8281. height:32px;
  8282. display:flex;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:10px;
  8287. color:#298FFF;
  8288. }
  8289. #u165719 .text {
  8290. position:absolute;
  8291. align-self:center;
  8292. padding:2px 2px 2px 2px;
  8293. box-sizing:border-box;
  8294. width:100%;
  8295. }
  8296. #u165719_text {
  8297. border-width:0px;
  8298. word-wrap:break-word;
  8299. text-transform:none;
  8300. }
  8301. #u165720 {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:0px;
  8307. height:0px;
  8308. }
  8309. #u165721_div {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:375px;
  8315. height:120px;
  8316. background:inherit;
  8317. background-color:rgba(255, 255, 255, 1);
  8318. border:none;
  8319. border-top:0px;
  8320. border-radius:0px;
  8321. border-top-left-radius:0px;
  8322. border-top-right-radius:0px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. }
  8327. #u165721 {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:1872px;
  8331. top:1087px;
  8332. width:375px;
  8333. height:120px;
  8334. display:flex;
  8335. }
  8336. #u165721 .text {
  8337. position:absolute;
  8338. align-self:center;
  8339. padding:2px 2px 2px 2px;
  8340. box-sizing:border-box;
  8341. width:100%;
  8342. }
  8343. #u165721_text {
  8344. border-width:0px;
  8345. word-wrap:break-word;
  8346. text-transform:none;
  8347. visibility:hidden;
  8348. }
  8349. #u165722_div {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:57px;
  8355. height:25px;
  8356. background:inherit;
  8357. background-color:rgba(255, 255, 255, 0);
  8358. border:none;
  8359. border-left:0px;
  8360. border-top:0px;
  8361. border-right:0px;
  8362. border-radius:0px;
  8363. border-bottom-right-radius:0px;
  8364. border-bottom-left-radius:0px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8369. font-weight:500;
  8370. font-style:normal;
  8371. font-size:14px;
  8372. line-height:25px;
  8373. }
  8374. #u165722 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:1889px;
  8378. top:1099px;
  8379. width:57px;
  8380. height:25px;
  8381. display:flex;
  8382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8383. font-weight:500;
  8384. font-style:normal;
  8385. font-size:14px;
  8386. line-height:25px;
  8387. }
  8388. #u165722 .text {
  8389. position:absolute;
  8390. align-self:flex-start;
  8391. padding:0px 0px 0px 0px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u165722_text {
  8396. border-width:0px;
  8397. white-space:nowrap;
  8398. text-transform:none;
  8399. }
  8400. #u165723 {
  8401. border-width:0px;
  8402. position:absolute;
  8403. left:0px;
  8404. top:0px;
  8405. width:0px;
  8406. height:0px;
  8407. }
  8408. #u165724_div {
  8409. border-width:0px;
  8410. position:absolute;
  8411. left:0px;
  8412. top:0px;
  8413. width:43px;
  8414. height:30px;
  8415. background:inherit;
  8416. background-color:rgba(255, 255, 255, 0);
  8417. border:none;
  8418. border-radius:0px;
  8419. -moz-box-shadow:none;
  8420. -webkit-box-shadow:none;
  8421. box-shadow:none;
  8422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:14px;
  8426. color:#298FFF;
  8427. text-align:right;
  8428. line-height:30px;
  8429. }
  8430. #u165724 {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:2160px;
  8434. top:1097px;
  8435. width:43px;
  8436. height:30px;
  8437. display:flex;
  8438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8439. font-weight:400;
  8440. font-style:normal;
  8441. font-size:14px;
  8442. color:#298FFF;
  8443. text-align:right;
  8444. line-height:30px;
  8445. }
  8446. #u165724 .text {
  8447. position:absolute;
  8448. align-self:flex-start;
  8449. padding:0px 0px 0px 0px;
  8450. box-sizing:border-box;
  8451. width:100%;
  8452. }
  8453. #u165724_text {
  8454. border-width:0px;
  8455. white-space:nowrap;
  8456. text-transform:none;
  8457. }
  8458. #u165725_img {
  8459. border-width:0px;
  8460. position:absolute;
  8461. left:0px;
  8462. top:0px;
  8463. width:12px;
  8464. height:7px;
  8465. }
  8466. #u165725 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:2211px;
  8470. top:1109px;
  8471. width:12px;
  8472. height:7px;
  8473. display:flex;
  8474. }
  8475. #u165725 .text {
  8476. position:absolute;
  8477. align-self:center;
  8478. padding:2px 2px 2px 2px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u165725_text {
  8483. border-width:0px;
  8484. word-wrap:break-word;
  8485. text-transform:none;
  8486. visibility:hidden;
  8487. }
  8488. #u165726 {
  8489. border-width:0px;
  8490. position:absolute;
  8491. left:1889px;
  8492. top:1129px;
  8493. width:344px;
  8494. height:57px;
  8495. }
  8496. #u165727_img {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:0px;
  8501. width:151px;
  8502. height:25px;
  8503. }
  8504. #u165727 {
  8505. border-width:0px;
  8506. position:absolute;
  8507. left:0px;
  8508. top:0px;
  8509. width:151px;
  8510. height:25px;
  8511. display:flex;
  8512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8513. font-weight:400;
  8514. font-style:normal;
  8515. font-size:10px;
  8516. color:#FFFFFF;
  8517. }
  8518. #u165727 .text {
  8519. position:absolute;
  8520. align-self:center;
  8521. padding:2px 2px 2px 2px;
  8522. box-sizing:border-box;
  8523. width:100%;
  8524. }
  8525. #u165727_text {
  8526. border-width:0px;
  8527. word-wrap:break-word;
  8528. text-transform:none;
  8529. }
  8530. #u165728_img {
  8531. border-width:0px;
  8532. position:absolute;
  8533. left:0px;
  8534. top:0px;
  8535. width:65px;
  8536. height:25px;
  8537. }
  8538. #u165728 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:151px;
  8542. top:0px;
  8543. width:65px;
  8544. height:25px;
  8545. display:flex;
  8546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8547. font-weight:400;
  8548. font-style:normal;
  8549. font-size:10px;
  8550. color:#FFFFFF;
  8551. }
  8552. #u165728 .text {
  8553. position:absolute;
  8554. align-self:center;
  8555. padding:2px 2px 2px 2px;
  8556. box-sizing:border-box;
  8557. width:100%;
  8558. }
  8559. #u165728_text {
  8560. border-width:0px;
  8561. word-wrap:break-word;
  8562. text-transform:none;
  8563. }
  8564. #u165729_img {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:0px;
  8568. top:0px;
  8569. width:65px;
  8570. height:25px;
  8571. }
  8572. #u165729 {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:216px;
  8576. top:0px;
  8577. width:65px;
  8578. height:25px;
  8579. display:flex;
  8580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8581. font-weight:400;
  8582. font-style:normal;
  8583. font-size:10px;
  8584. color:#FFFFFF;
  8585. }
  8586. #u165729 .text {
  8587. position:absolute;
  8588. align-self:center;
  8589. padding:2px 2px 2px 2px;
  8590. box-sizing:border-box;
  8591. width:100%;
  8592. }
  8593. #u165729_text {
  8594. border-width:0px;
  8595. word-wrap:break-word;
  8596. text-transform:none;
  8597. }
  8598. #u165730_img {
  8599. border-width:0px;
  8600. position:absolute;
  8601. left:0px;
  8602. top:0px;
  8603. width:63px;
  8604. height:25px;
  8605. }
  8606. #u165730 {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:281px;
  8610. top:0px;
  8611. width:63px;
  8612. height:25px;
  8613. display:flex;
  8614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8615. font-weight:400;
  8616. font-style:normal;
  8617. font-size:10px;
  8618. color:#FFFFFF;
  8619. }
  8620. #u165730 .text {
  8621. position:absolute;
  8622. align-self:center;
  8623. padding:2px 2px 2px 2px;
  8624. box-sizing:border-box;
  8625. width:100%;
  8626. }
  8627. #u165730_text {
  8628. border-width:0px;
  8629. word-wrap:break-word;
  8630. text-transform:none;
  8631. }
  8632. #u165731_img {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:0px;
  8636. top:0px;
  8637. width:151px;
  8638. height:32px;
  8639. }
  8640. #u165731 {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:0px;
  8644. top:25px;
  8645. width:151px;
  8646. height:32px;
  8647. display:flex;
  8648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8649. font-weight:400;
  8650. font-style:normal;
  8651. font-size:10px;
  8652. }
  8653. #u165731 .text {
  8654. position:absolute;
  8655. align-self:center;
  8656. padding:2px 2px 2px 2px;
  8657. box-sizing:border-box;
  8658. width:100%;
  8659. }
  8660. #u165731_text {
  8661. border-width:0px;
  8662. word-wrap:break-word;
  8663. text-transform:none;
  8664. }
  8665. #u165732_img {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:0px;
  8669. top:0px;
  8670. width:65px;
  8671. height:32px;
  8672. }
  8673. #u165732 {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:151px;
  8677. top:25px;
  8678. width:65px;
  8679. height:32px;
  8680. display:flex;
  8681. font-size:10px;
  8682. }
  8683. #u165732 .text {
  8684. position:absolute;
  8685. align-self:center;
  8686. padding:2px 2px 2px 2px;
  8687. box-sizing:border-box;
  8688. width:100%;
  8689. }
  8690. #u165732_text {
  8691. border-width:0px;
  8692. word-wrap:break-word;
  8693. text-transform:none;
  8694. }
  8695. #u165733_img {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:0px;
  8699. top:0px;
  8700. width:65px;
  8701. height:32px;
  8702. }
  8703. #u165733 {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:216px;
  8707. top:25px;
  8708. width:65px;
  8709. height:32px;
  8710. display:flex;
  8711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8712. font-weight:400;
  8713. font-style:normal;
  8714. font-size:10px;
  8715. }
  8716. #u165733 .text {
  8717. position:absolute;
  8718. align-self:center;
  8719. padding:2px 2px 2px 2px;
  8720. box-sizing:border-box;
  8721. width:100%;
  8722. }
  8723. #u165733_text {
  8724. border-width:0px;
  8725. word-wrap:break-word;
  8726. text-transform:none;
  8727. }
  8728. #u165734_img {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:0px;
  8732. top:0px;
  8733. width:63px;
  8734. height:32px;
  8735. }
  8736. #u165734 {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:281px;
  8740. top:25px;
  8741. width:63px;
  8742. height:32px;
  8743. display:flex;
  8744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8745. font-weight:400;
  8746. font-style:normal;
  8747. font-size:10px;
  8748. color:#298FFF;
  8749. }
  8750. #u165734 .text {
  8751. position:absolute;
  8752. align-self:center;
  8753. padding:2px 2px 2px 2px;
  8754. box-sizing:border-box;
  8755. width:100%;
  8756. }
  8757. #u165734_text {
  8758. border-width:0px;
  8759. word-wrap:break-word;
  8760. text-transform:none;
  8761. }
  8762. #u165735 {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:0px;
  8768. height:0px;
  8769. }
  8770. #u165736_div {
  8771. border-width:0px;
  8772. position:absolute;
  8773. left:0px;
  8774. top:0px;
  8775. width:350px;
  8776. height:70px;
  8777. background:inherit;
  8778. background-color:rgba(255, 255, 255, 1);
  8779. box-sizing:border-box;
  8780. border-width:1px;
  8781. border-style:solid;
  8782. border-color:rgba(215, 215, 215, 1);
  8783. border-radius:10px;
  8784. -moz-box-shadow:none;
  8785. -webkit-box-shadow:none;
  8786. box-shadow:none;
  8787. }
  8788. #u165736 {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:1429px;
  8792. top:562px;
  8793. width:350px;
  8794. height:70px;
  8795. display:flex;
  8796. }
  8797. #u165736 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:2px 2px 2px 2px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u165736_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. visibility:hidden;
  8809. }
  8810. #u165737_div {
  8811. border-width:0px;
  8812. position:absolute;
  8813. left:0px;
  8814. top:0px;
  8815. width:186px;
  8816. height:50px;
  8817. background:inherit;
  8818. background-color:rgba(255, 255, 255, 0);
  8819. border:none;
  8820. border-left:0px;
  8821. border-top:0px;
  8822. border-right:0px;
  8823. border-radius:0px;
  8824. border-bottom-right-radius:0px;
  8825. border-bottom-left-radius:0px;
  8826. -moz-box-shadow:none;
  8827. -webkit-box-shadow:none;
  8828. box-shadow:none;
  8829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8830. font-weight:400;
  8831. font-style:normal;
  8832. font-size:14px;
  8833. line-height:25px;
  8834. }
  8835. #u165737 {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:1447px;
  8839. top:572px;
  8840. width:186px;
  8841. height:50px;
  8842. display:flex;
  8843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8844. font-weight:400;
  8845. font-style:normal;
  8846. font-size:14px;
  8847. line-height:25px;
  8848. }
  8849. #u165737 .text {
  8850. position:absolute;
  8851. align-self:flex-start;
  8852. padding:0px 0px 0px 0px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u165737_text {
  8857. border-width:0px;
  8858. white-space:nowrap;
  8859. text-transform:none;
  8860. }
  8861. #u165738_div {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:192px;
  8867. height:25px;
  8868. background:inherit;
  8869. background-color:rgba(255, 255, 255, 0);
  8870. border:none;
  8871. border-radius:0px;
  8872. -moz-box-shadow:none;
  8873. -webkit-box-shadow:none;
  8874. box-shadow:none;
  8875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8876. font-weight:400;
  8877. font-style:normal;
  8878. font-size:12px;
  8879. color:#7F7F7F;
  8880. line-height:25px;
  8881. }
  8882. #u165738 {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:1574px;
  8886. top:597px;
  8887. width:192px;
  8888. height:25px;
  8889. display:flex;
  8890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8891. font-weight:400;
  8892. font-style:normal;
  8893. font-size:12px;
  8894. color:#7F7F7F;
  8895. line-height:25px;
  8896. }
  8897. #u165738 .text {
  8898. position:absolute;
  8899. align-self:flex-start;
  8900. padding:0px 0px 0px 0px;
  8901. box-sizing:border-box;
  8902. width:100%;
  8903. }
  8904. #u165738_text {
  8905. border-width:0px;
  8906. white-space:nowrap;
  8907. text-transform:none;
  8908. }
  8909. #u165739 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:0px;
  8913. top:0px;
  8914. width:0px;
  8915. height:0px;
  8916. }
  8917. #u165740_div {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:0px;
  8921. top:0px;
  8922. width:350px;
  8923. height:70px;
  8924. background:inherit;
  8925. background-color:rgba(255, 255, 255, 1);
  8926. box-sizing:border-box;
  8927. border-width:1px;
  8928. border-style:solid;
  8929. border-color:rgba(215, 215, 215, 1);
  8930. border-radius:10px;
  8931. -moz-box-shadow:none;
  8932. -webkit-box-shadow:none;
  8933. box-shadow:none;
  8934. }
  8935. #u165740 {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:1882px;
  8939. top:562px;
  8940. width:350px;
  8941. height:70px;
  8942. display:flex;
  8943. }
  8944. #u165740 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:2px 2px 2px 2px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u165740_text {
  8952. border-width:0px;
  8953. word-wrap:break-word;
  8954. text-transform:none;
  8955. visibility:hidden;
  8956. }
  8957. #u165741_div {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:0px;
  8961. top:0px;
  8962. width:186px;
  8963. height:50px;
  8964. background:inherit;
  8965. background-color:rgba(255, 255, 255, 0);
  8966. border:none;
  8967. border-left:0px;
  8968. border-top:0px;
  8969. border-right:0px;
  8970. border-radius:0px;
  8971. border-bottom-right-radius:0px;
  8972. border-bottom-left-radius:0px;
  8973. -moz-box-shadow:none;
  8974. -webkit-box-shadow:none;
  8975. box-shadow:none;
  8976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8977. font-weight:400;
  8978. font-style:normal;
  8979. font-size:14px;
  8980. line-height:25px;
  8981. }
  8982. #u165741 {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:1900px;
  8986. top:572px;
  8987. width:186px;
  8988. height:50px;
  8989. display:flex;
  8990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8991. font-weight:400;
  8992. font-style:normal;
  8993. font-size:14px;
  8994. line-height:25px;
  8995. }
  8996. #u165741 .text {
  8997. position:absolute;
  8998. align-self:flex-start;
  8999. padding:0px 0px 0px 0px;
  9000. box-sizing:border-box;
  9001. width:100%;
  9002. }
  9003. #u165741_text {
  9004. border-width:0px;
  9005. white-space:nowrap;
  9006. text-transform:none;
  9007. }
  9008. #u165742_div {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:0px;
  9012. top:0px;
  9013. width:192px;
  9014. height:25px;
  9015. background:inherit;
  9016. background-color:rgba(255, 255, 255, 0);
  9017. border:none;
  9018. border-radius:0px;
  9019. -moz-box-shadow:none;
  9020. -webkit-box-shadow:none;
  9021. box-shadow:none;
  9022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:12px;
  9026. color:#7F7F7F;
  9027. line-height:25px;
  9028. }
  9029. #u165742 {
  9030. border-width:0px;
  9031. position:absolute;
  9032. left:2027px;
  9033. top:597px;
  9034. width:192px;
  9035. height:25px;
  9036. display:flex;
  9037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9038. font-weight:400;
  9039. font-style:normal;
  9040. font-size:12px;
  9041. color:#7F7F7F;
  9042. line-height:25px;
  9043. }
  9044. #u165742 .text {
  9045. position:absolute;
  9046. align-self:flex-start;
  9047. padding:0px 0px 0px 0px;
  9048. box-sizing:border-box;
  9049. width:100%;
  9050. }
  9051. #u165742_text {
  9052. border-width:0px;
  9053. white-space:nowrap;
  9054. text-transform:none;
  9055. }
  9056. #u165743_div {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:0px;
  9060. top:0px;
  9061. width:72px;
  9062. height:14px;
  9063. background:inherit;
  9064. background-color:rgba(51, 51, 51, 1);
  9065. border:none;
  9066. border-radius:16px;
  9067. -moz-box-shadow:none;
  9068. -webkit-box-shadow:none;
  9069. box-shadow:none;
  9070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9071. font-weight:400;
  9072. font-style:normal;
  9073. font-size:10px;
  9074. color:#FFFFFF;
  9075. text-align:center;
  9076. }
  9077. #u165743 {
  9078. border-width:0px;
  9079. position:absolute;
  9080. left:571px;
  9081. top:477px;
  9082. width:72px;
  9083. height:14px;
  9084. display:flex;
  9085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9086. font-weight:400;
  9087. font-style:normal;
  9088. font-size:10px;
  9089. color:#FFFFFF;
  9090. text-align:center;
  9091. }
  9092. #u165743 .text {
  9093. position:absolute;
  9094. align-self:flex-start;
  9095. padding:0px 0px 0px 0px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u165743_text {
  9100. border-width:0px;
  9101. word-wrap:break-word;
  9102. text-transform:none;
  9103. }
  9104. #u165745_img {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:433px;
  9110. height:865px;
  9111. }
  9112. #u165745 {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:433px;
  9118. height:865px;
  9119. display:flex;
  9120. }
  9121. #u165745 .text {
  9122. position:absolute;
  9123. align-self:center;
  9124. padding:2px 2px 2px 2px;
  9125. box-sizing:border-box;
  9126. width:100%;
  9127. }
  9128. #u165745_text {
  9129. border-width:0px;
  9130. word-wrap:break-word;
  9131. text-transform:none;
  9132. visibility:hidden;
  9133. }
  9134. #u165746_div {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:375px;
  9140. height:40px;
  9141. background:inherit;
  9142. background-color:rgba(255, 255, 255, 1);
  9143. box-sizing:border-box;
  9144. border-width:1px;
  9145. border-style:solid;
  9146. border-color:rgba(215, 215, 215, 1);
  9147. border-left:0px;
  9148. border-top:0px;
  9149. border-right:0px;
  9150. border-radius:0px;
  9151. border-bottom-right-radius:0px;
  9152. border-bottom-left-radius:0px;
  9153. -moz-box-shadow:none;
  9154. -webkit-box-shadow:none;
  9155. box-shadow:none;
  9156. }
  9157. #u165746 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:29px;
  9161. top:67px;
  9162. width:375px;
  9163. height:40px;
  9164. display:flex;
  9165. }
  9166. #u165746 .text {
  9167. position:absolute;
  9168. align-self:center;
  9169. padding:2px 2px 2px 2px;
  9170. box-sizing:border-box;
  9171. width:100%;
  9172. }
  9173. #u165746_text {
  9174. border-width:0px;
  9175. word-wrap:break-word;
  9176. text-transform:none;
  9177. visibility:hidden;
  9178. }
  9179. #u165747 {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:0px;
  9183. top:0px;
  9184. width:0px;
  9185. height:0px;
  9186. }
  9187. #u165748_div {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:88px;
  9193. height:32px;
  9194. background:inherit;
  9195. background-color:rgba(255, 255, 255, 1);
  9196. box-sizing:border-box;
  9197. border-width:1px;
  9198. border-style:solid;
  9199. border-color:rgba(242, 242, 242, 1);
  9200. border-radius:33px;
  9201. -moz-box-shadow:none;
  9202. -webkit-box-shadow:none;
  9203. box-shadow:none;
  9204. }
  9205. #u165748 {
  9206. border-width:0px;
  9207. position:absolute;
  9208. left:309px;
  9209. top:71px;
  9210. width:88px;
  9211. height:32px;
  9212. display:flex;
  9213. }
  9214. #u165748 .text {
  9215. position:absolute;
  9216. align-self:center;
  9217. padding:2px 2px 2px 2px;
  9218. box-sizing:border-box;
  9219. width:100%;
  9220. }
  9221. #u165748_text {
  9222. border-width:0px;
  9223. word-wrap:break-word;
  9224. text-transform:none;
  9225. visibility:hidden;
  9226. }
  9227. #u165749 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:0px;
  9231. top:0px;
  9232. width:0px;
  9233. height:0px;
  9234. }
  9235. #u165750_img {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:18px;
  9241. height:18px;
  9242. }
  9243. #u165750 {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:372px;
  9247. top:78px;
  9248. width:18px;
  9249. height:18px;
  9250. display:flex;
  9251. }
  9252. #u165750 .text {
  9253. position:absolute;
  9254. align-self:center;
  9255. padding:2px 2px 2px 2px;
  9256. box-sizing:border-box;
  9257. width:100%;
  9258. }
  9259. #u165750_text {
  9260. border-width:0px;
  9261. word-wrap:break-word;
  9262. text-transform:none;
  9263. visibility:hidden;
  9264. }
  9265. #u165751_img {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:0px;
  9269. top:0px;
  9270. width:6px;
  9271. height:6px;
  9272. }
  9273. #u165751 {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:378px;
  9277. top:84px;
  9278. width:6px;
  9279. height:6px;
  9280. display:flex;
  9281. }
  9282. #u165751 .text {
  9283. position:absolute;
  9284. align-self:center;
  9285. padding:2px 2px 2px 2px;
  9286. box-sizing:border-box;
  9287. width:100%;
  9288. }
  9289. #u165751_text {
  9290. border-width:0px;
  9291. word-wrap:break-word;
  9292. text-transform:none;
  9293. visibility:hidden;
  9294. }
  9295. #u165752 {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:0px;
  9299. top:0px;
  9300. width:0px;
  9301. height:0px;
  9302. }
  9303. #u165753_img {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:0px;
  9307. top:0px;
  9308. width:5px;
  9309. height:5px;
  9310. }
  9311. #u165753 {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:323px;
  9315. top:85px;
  9316. width:5px;
  9317. height:5px;
  9318. display:flex;
  9319. }
  9320. #u165753 .text {
  9321. position:absolute;
  9322. align-self:center;
  9323. padding:2px 2px 2px 2px;
  9324. box-sizing:border-box;
  9325. width:100%;
  9326. }
  9327. #u165753_text {
  9328. border-width:0px;
  9329. word-wrap:break-word;
  9330. text-transform:none;
  9331. visibility:hidden;
  9332. }
  9333. #u165754_img {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:0px;
  9337. top:0px;
  9338. width:5px;
  9339. height:5px;
  9340. }
  9341. #u165754 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:339px;
  9345. top:85px;
  9346. width:5px;
  9347. height:5px;
  9348. display:flex;
  9349. }
  9350. #u165754 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:2px 2px 2px 2px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u165754_text {
  9358. border-width:0px;
  9359. word-wrap:break-word;
  9360. text-transform:none;
  9361. visibility:hidden;
  9362. }
  9363. #u165755_img {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:7px;
  9369. height:7px;
  9370. }
  9371. #u165755 {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:330px;
  9375. top:84px;
  9376. width:7px;
  9377. height:7px;
  9378. display:flex;
  9379. }
  9380. #u165755 .text {
  9381. position:absolute;
  9382. align-self:center;
  9383. padding:2px 2px 2px 2px;
  9384. box-sizing:border-box;
  9385. width:100%;
  9386. }
  9387. #u165755_text {
  9388. border-width:0px;
  9389. word-wrap:break-word;
  9390. text-transform:none;
  9391. visibility:hidden;
  9392. }
  9393. #u165756_img {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:19px;
  9399. height:2px;
  9400. }
  9401. #u165756 {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:347px;
  9405. top:87px;
  9406. width:18px;
  9407. height:1px;
  9408. display:flex;
  9409. -webkit-transform:rotate(90deg);
  9410. -moz-transform:rotate(90deg);
  9411. -ms-transform:rotate(90deg);
  9412. transform:rotate(90deg);
  9413. }
  9414. #u165756 .text {
  9415. position:absolute;
  9416. align-self:center;
  9417. padding:2px 2px 2px 2px;
  9418. box-sizing:border-box;
  9419. width:100%;
  9420. }
  9421. #u165756_text {
  9422. border-width:0px;
  9423. word-wrap:break-word;
  9424. text-transform:none;
  9425. visibility:hidden;
  9426. }
  9427. #u165757_img {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:375px;
  9433. height:44px;
  9434. }
  9435. #u165757 {
  9436. border-width:0px;
  9437. position:absolute;
  9438. left:29px;
  9439. top:24px;
  9440. width:375px;
  9441. height:44px;
  9442. display:flex;
  9443. }
  9444. #u165757 .text {
  9445. position:absolute;
  9446. align-self:center;
  9447. padding:2px 2px 2px 2px;
  9448. box-sizing:border-box;
  9449. width:100%;
  9450. }
  9451. #u165757_text {
  9452. border-width:0px;
  9453. word-wrap:break-word;
  9454. text-transform:none;
  9455. visibility:hidden;
  9456. }
  9457. #u165758_div {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:0px;
  9461. top:0px;
  9462. width:375px;
  9463. height:50px;
  9464. background:inherit;
  9465. background-color:rgba(255, 255, 255, 1);
  9466. box-sizing:border-box;
  9467. border-width:1px;
  9468. border-style:solid;
  9469. border-color:rgba(242, 242, 242, 1);
  9470. border-radius:26px;
  9471. border-top-left-radius:0px;
  9472. border-top-right-radius:0px;
  9473. -moz-box-shadow:none;
  9474. -webkit-box-shadow:none;
  9475. box-shadow:none;
  9476. }
  9477. #u165758 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:29px;
  9481. top:788px;
  9482. width:375px;
  9483. height:50px;
  9484. display:flex;
  9485. }
  9486. #u165758 .text {
  9487. position:absolute;
  9488. align-self:center;
  9489. padding:2px 2px 2px 2px;
  9490. box-sizing:border-box;
  9491. width:100%;
  9492. }
  9493. #u165758_text {
  9494. border-width:0px;
  9495. word-wrap:break-word;
  9496. text-transform:none;
  9497. visibility:hidden;
  9498. }
  9499. #u165759 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:0px;
  9503. top:0px;
  9504. width:0px;
  9505. height:0px;
  9506. }
  9507. #u165760_img {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:24px;
  9513. height:24px;
  9514. }
  9515. #u165760 {
  9516. border-width:0px;
  9517. position:absolute;
  9518. left:69px;
  9519. top:792px;
  9520. width:24px;
  9521. height:24px;
  9522. display:flex;
  9523. font-size:8px;
  9524. }
  9525. #u165760 .text {
  9526. position:absolute;
  9527. align-self:center;
  9528. padding:2px 2px 2px 2px;
  9529. box-sizing:border-box;
  9530. width:100%;
  9531. }
  9532. #u165760_text {
  9533. border-width:0px;
  9534. word-wrap:break-word;
  9535. text-transform:none;
  9536. }
  9537. #u165761_div {
  9538. border-width:0px;
  9539. position:absolute;
  9540. left:0px;
  9541. top:0px;
  9542. width:25px;
  9543. height:17px;
  9544. background:inherit;
  9545. background-color:rgba(255, 255, 255, 0);
  9546. border:none;
  9547. border-radius:0px;
  9548. -moz-box-shadow:none;
  9549. -webkit-box-shadow:none;
  9550. box-shadow:none;
  9551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9552. font-weight:400;
  9553. font-style:normal;
  9554. font-size:12px;
  9555. }
  9556. #u165761 {
  9557. border-width:0px;
  9558. position:absolute;
  9559. left:69px;
  9560. top:817px;
  9561. width:25px;
  9562. height:17px;
  9563. display:flex;
  9564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9565. font-weight:400;
  9566. font-style:normal;
  9567. font-size:12px;
  9568. }
  9569. #u165761 .text {
  9570. position:absolute;
  9571. align-self:flex-start;
  9572. padding:0px 0px 0px 0px;
  9573. box-sizing:border-box;
  9574. width:100%;
  9575. }
  9576. #u165761_text {
  9577. border-width:0px;
  9578. white-space:nowrap;
  9579. text-transform:none;
  9580. }
  9581. #u165762 {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:0px;
  9585. top:0px;
  9586. width:0px;
  9587. height:0px;
  9588. }
  9589. #u165763_img {
  9590. border-width:0px;
  9591. position:absolute;
  9592. left:0px;
  9593. top:0px;
  9594. width:24px;
  9595. height:24px;
  9596. }
  9597. #u165763 {
  9598. border-width:0px;
  9599. position:absolute;
  9600. left:339px;
  9601. top:794px;
  9602. width:24px;
  9603. height:24px;
  9604. display:flex;
  9605. font-size:8px;
  9606. }
  9607. #u165763 .text {
  9608. position:absolute;
  9609. align-self:center;
  9610. padding:2px 2px 2px 2px;
  9611. box-sizing:border-box;
  9612. width:100%;
  9613. }
  9614. #u165763_text {
  9615. border-width:0px;
  9616. word-wrap:break-word;
  9617. text-transform:none;
  9618. }
  9619. #u165764_div {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:0px;
  9623. top:0px;
  9624. width:25px;
  9625. height:17px;
  9626. background:inherit;
  9627. background-color:rgba(255, 255, 255, 0);
  9628. border:none;
  9629. border-radius:0px;
  9630. -moz-box-shadow:none;
  9631. -webkit-box-shadow:none;
  9632. box-shadow:none;
  9633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9634. font-weight:400;
  9635. font-style:normal;
  9636. font-size:12px;
  9637. }
  9638. #u165764 {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:339px;
  9642. top:819px;
  9643. width:25px;
  9644. height:17px;
  9645. display:flex;
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:12px;
  9650. }
  9651. #u165764 .text {
  9652. position:absolute;
  9653. align-self:flex-start;
  9654. padding:0px 0px 0px 0px;
  9655. box-sizing:border-box;
  9656. width:100%;
  9657. }
  9658. #u165764_text {
  9659. border-width:0px;
  9660. white-space:nowrap;
  9661. text-transform:none;
  9662. }
  9663. #u165765_div {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:0px;
  9667. top:0px;
  9668. width:375px;
  9669. height:681px;
  9670. background:inherit;
  9671. background-color:rgba(242, 242, 242, 0.462745098039216);
  9672. border:none;
  9673. border-radius:0px;
  9674. -moz-box-shadow:none;
  9675. -webkit-box-shadow:none;
  9676. box-shadow:none;
  9677. }
  9678. #u165765 {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:29px;
  9682. top:107px;
  9683. width:375px;
  9684. height:681px;
  9685. display:flex;
  9686. }
  9687. #u165765 .text {
  9688. position:absolute;
  9689. align-self:center;
  9690. padding:2px 2px 2px 2px;
  9691. box-sizing:border-box;
  9692. width:100%;
  9693. }
  9694. #u165765_text {
  9695. border-width:0px;
  9696. word-wrap:break-word;
  9697. text-transform:none;
  9698. visibility:hidden;
  9699. }
  9700. #u165766 {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:0px;
  9706. height:0px;
  9707. }
  9708. #u165767_img {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:0px;
  9712. top:0px;
  9713. width:24px;
  9714. height:24px;
  9715. }
  9716. #u165767 {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:251px;
  9720. top:792px;
  9721. width:24px;
  9722. height:24px;
  9723. display:flex;
  9724. font-size:8px;
  9725. }
  9726. #u165767 .text {
  9727. position:absolute;
  9728. align-self:center;
  9729. padding:2px 2px 2px 2px;
  9730. box-sizing:border-box;
  9731. width:100%;
  9732. }
  9733. #u165767_text {
  9734. border-width:0px;
  9735. word-wrap:break-word;
  9736. text-transform:none;
  9737. }
  9738. #u165768_div {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:37px;
  9744. height:17px;
  9745. background:inherit;
  9746. background-color:rgba(255, 255, 255, 0);
  9747. border:none;
  9748. border-radius:0px;
  9749. -moz-box-shadow:none;
  9750. -webkit-box-shadow:none;
  9751. box-shadow:none;
  9752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. font-size:12px;
  9756. }
  9757. #u165768 {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:245px;
  9761. top:817px;
  9762. width:37px;
  9763. height:17px;
  9764. display:flex;
  9765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9766. font-weight:400;
  9767. font-style:normal;
  9768. font-size:12px;
  9769. }
  9770. #u165768 .text {
  9771. position:absolute;
  9772. align-self:flex-start;
  9773. padding:0px 0px 0px 0px;
  9774. box-sizing:border-box;
  9775. width:100%;
  9776. }
  9777. #u165768_text {
  9778. border-width:0px;
  9779. white-space:nowrap;
  9780. text-transform:none;
  9781. }
  9782. #u165769 {
  9783. border-width:0px;
  9784. position:absolute;
  9785. left:0px;
  9786. top:0px;
  9787. width:0px;
  9788. height:0px;
  9789. }
  9790. #u165770_img {
  9791. border-width:0px;
  9792. position:absolute;
  9793. left:0px;
  9794. top:0px;
  9795. width:24px;
  9796. height:24px;
  9797. }
  9798. #u165770 {
  9799. border-width:0px;
  9800. position:absolute;
  9801. left:157px;
  9802. top:792px;
  9803. width:24px;
  9804. height:24px;
  9805. display:flex;
  9806. font-size:8px;
  9807. }
  9808. #u165770 .text {
  9809. position:absolute;
  9810. align-self:center;
  9811. padding:2px 2px 2px 2px;
  9812. box-sizing:border-box;
  9813. width:100%;
  9814. }
  9815. #u165770_text {
  9816. border-width:0px;
  9817. word-wrap:break-word;
  9818. text-transform:none;
  9819. }
  9820. #u165771_div {
  9821. border-width:0px;
  9822. position:absolute;
  9823. left:0px;
  9824. top:0px;
  9825. width:37px;
  9826. height:17px;
  9827. background:inherit;
  9828. background-color:rgba(255, 255, 255, 0);
  9829. border:none;
  9830. border-radius:0px;
  9831. -moz-box-shadow:none;
  9832. -webkit-box-shadow:none;
  9833. box-shadow:none;
  9834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9835. font-weight:400;
  9836. font-style:normal;
  9837. font-size:12px;
  9838. }
  9839. #u165771 {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:151px;
  9843. top:817px;
  9844. width:37px;
  9845. height:17px;
  9846. display:flex;
  9847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9848. font-weight:400;
  9849. font-style:normal;
  9850. font-size:12px;
  9851. }
  9852. #u165771 .text {
  9853. position:absolute;
  9854. align-self:flex-start;
  9855. padding:0px 0px 0px 0px;
  9856. box-sizing:border-box;
  9857. width:100%;
  9858. }
  9859. #u165771_text {
  9860. border-width:0px;
  9861. white-space:nowrap;
  9862. text-transform:none;
  9863. }
  9864. #u165772_div {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:0px;
  9868. top:0px;
  9869. width:375px;
  9870. height:732px;
  9871. background:inherit;
  9872. background-color:rgba(242, 242, 242, 1);
  9873. border:none;
  9874. border-top:0px;
  9875. border-radius:25px;
  9876. border-top-left-radius:0px;
  9877. border-top-right-radius:0px;
  9878. -moz-box-shadow:none;
  9879. -webkit-box-shadow:none;
  9880. box-shadow:none;
  9881. }
  9882. #u165772 {
  9883. border-width:0px;
  9884. position:absolute;
  9885. left:29px;
  9886. top:105px;
  9887. width:375px;
  9888. height:732px;
  9889. display:flex;
  9890. }
  9891. #u165772 .text {
  9892. position:absolute;
  9893. align-self:center;
  9894. padding:2px 2px 2px 2px;
  9895. box-sizing:border-box;
  9896. width:100%;
  9897. }
  9898. #u165772_text {
  9899. border-width:0px;
  9900. word-wrap:break-word;
  9901. text-transform:none;
  9902. visibility:hidden;
  9903. }
  9904. #u165773 {
  9905. border-width:0px;
  9906. position:absolute;
  9907. left:0px;
  9908. top:0px;
  9909. width:0px;
  9910. height:0px;
  9911. }
  9912. #u165774_img {
  9913. border-width:0px;
  9914. position:absolute;
  9915. left:0px;
  9916. top:0px;
  9917. width:11px;
  9918. height:18px;
  9919. }
  9920. #u165774 {
  9921. border-width:0px;
  9922. position:absolute;
  9923. left:40px;
  9924. top:79px;
  9925. width:11px;
  9926. height:18px;
  9927. display:flex;
  9928. }
  9929. #u165774 .text {
  9930. position:absolute;
  9931. align-self:center;
  9932. padding:2px 2px 2px 2px;
  9933. box-sizing:border-box;
  9934. width:100%;
  9935. }
  9936. #u165774_text {
  9937. border-width:0px;
  9938. word-wrap:break-word;
  9939. text-transform:none;
  9940. visibility:hidden;
  9941. }
  9942. #u165775_div {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:57px;
  9948. height:30px;
  9949. background:inherit;
  9950. background-color:rgba(255, 255, 255, 0);
  9951. border:none;
  9952. border-left:0px;
  9953. border-top:0px;
  9954. border-right:0px;
  9955. border-radius:0px;
  9956. border-bottom-right-radius:0px;
  9957. border-bottom-left-radius:0px;
  9958. -moz-box-shadow:none;
  9959. -webkit-box-shadow:none;
  9960. box-shadow:none;
  9961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9962. font-weight:500;
  9963. font-style:normal;
  9964. font-size:14px;
  9965. line-height:30px;
  9966. }
  9967. #u165775 {
  9968. border-width:0px;
  9969. position:absolute;
  9970. left:182px;
  9971. top:73px;
  9972. width:57px;
  9973. height:30px;
  9974. display:flex;
  9975. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9976. font-weight:500;
  9977. font-style:normal;
  9978. font-size:14px;
  9979. line-height:30px;
  9980. }
  9981. #u165775 .text {
  9982. position:absolute;
  9983. align-self:flex-start;
  9984. padding:0px 0px 0px 0px;
  9985. box-sizing:border-box;
  9986. width:100%;
  9987. }
  9988. #u165775_text {
  9989. border-width:0px;
  9990. white-space:nowrap;
  9991. text-transform:none;
  9992. }
  9993. #u165776 {
  9994. border-width:0px;
  9995. position:absolute;
  9996. left:0px;
  9997. top:0px;
  9998. width:0px;
  9999. height:0px;
  10000. }
  10001. #u165777_img {
  10002. border-width:0px;
  10003. position:absolute;
  10004. left:0px;
  10005. top:0px;
  10006. width:375px;
  10007. height:69px;
  10008. }
  10009. #u165777 {
  10010. border-width:0px;
  10011. position:absolute;
  10012. left:29px;
  10013. top:105px;
  10014. width:375px;
  10015. height:69px;
  10016. display:flex;
  10017. }
  10018. #u165777 .text {
  10019. position:absolute;
  10020. align-self:center;
  10021. padding:2px 2px 2px 2px;
  10022. box-sizing:border-box;
  10023. width:100%;
  10024. }
  10025. #u165777_text {
  10026. border-width:0px;
  10027. word-wrap:break-word;
  10028. text-transform:none;
  10029. visibility:hidden;
  10030. }
  10031. #u165778_div {
  10032. border-width:0px;
  10033. position:absolute;
  10034. left:0px;
  10035. top:0px;
  10036. width:97px;
  10037. height:30px;
  10038. background:inherit;
  10039. background-color:rgba(255, 255, 255, 0);
  10040. border:none;
  10041. border-left:0px;
  10042. border-top:0px;
  10043. border-right:0px;
  10044. border-radius:0px;
  10045. border-bottom-right-radius:0px;
  10046. border-bottom-left-radius:0px;
  10047. -moz-box-shadow:none;
  10048. -webkit-box-shadow:none;
  10049. box-shadow:none;
  10050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10051. font-weight:500;
  10052. font-style:normal;
  10053. line-height:30px;
  10054. }
  10055. #u165778 {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:49px;
  10059. top:125px;
  10060. width:97px;
  10061. height:30px;
  10062. display:flex;
  10063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10064. font-weight:500;
  10065. font-style:normal;
  10066. line-height:30px;
  10067. }
  10068. #u165778 .text {
  10069. position:absolute;
  10070. align-self:flex-start;
  10071. padding:0px 0px 0px 0px;
  10072. box-sizing:border-box;
  10073. width:100%;
  10074. }
  10075. #u165778_text {
  10076. border-width:0px;
  10077. white-space:nowrap;
  10078. text-transform:none;
  10079. }
  10080. #u165779_div {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:0px;
  10084. top:0px;
  10085. width:73px;
  10086. height:30px;
  10087. background:inherit;
  10088. background-color:rgba(255, 255, 255, 0);
  10089. border:none;
  10090. border-left:0px;
  10091. border-top:0px;
  10092. border-right:0px;
  10093. border-radius:0px;
  10094. border-bottom-right-radius:0px;
  10095. border-bottom-left-radius:0px;
  10096. -moz-box-shadow:none;
  10097. -webkit-box-shadow:none;
  10098. box-shadow:none;
  10099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10100. font-weight:400;
  10101. font-style:normal;
  10102. font-size:18px;
  10103. line-height:30px;
  10104. }
  10105. #u165779 {
  10106. border-width:0px;
  10107. position:absolute;
  10108. left:166px;
  10109. top:125px;
  10110. width:73px;
  10111. height:30px;
  10112. display:flex;
  10113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10114. font-weight:400;
  10115. font-style:normal;
  10116. font-size:18px;
  10117. line-height:30px;
  10118. }
  10119. #u165779 .text {
  10120. position:absolute;
  10121. align-self:flex-start;
  10122. padding:0px 0px 0px 0px;
  10123. box-sizing:border-box;
  10124. width:100%;
  10125. }
  10126. #u165779_text {
  10127. border-width:0px;
  10128. white-space:nowrap;
  10129. text-transform:none;
  10130. }
  10131. #u165780_div {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:73px;
  10137. height:30px;
  10138. background:inherit;
  10139. background-color:rgba(255, 255, 255, 0);
  10140. border:none;
  10141. border-left:0px;
  10142. border-top:0px;
  10143. border-right:0px;
  10144. border-radius:0px;
  10145. border-bottom-right-radius:0px;
  10146. border-bottom-left-radius:0px;
  10147. -moz-box-shadow:none;
  10148. -webkit-box-shadow:none;
  10149. box-shadow:none;
  10150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10151. font-weight:400;
  10152. font-style:normal;
  10153. font-size:18px;
  10154. line-height:30px;
  10155. }
  10156. #u165780 {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:259px;
  10160. top:125px;
  10161. width:73px;
  10162. height:30px;
  10163. display:flex;
  10164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10165. font-weight:400;
  10166. font-style:normal;
  10167. font-size:18px;
  10168. line-height:30px;
  10169. }
  10170. #u165780 .text {
  10171. position:absolute;
  10172. align-self:flex-start;
  10173. padding:0px 0px 0px 0px;
  10174. box-sizing:border-box;
  10175. width:100%;
  10176. }
  10177. #u165780_text {
  10178. border-width:0px;
  10179. white-space:nowrap;
  10180. text-transform:none;
  10181. }
  10182. #u165781 {
  10183. border-width:0px;
  10184. position:absolute;
  10185. left:0px;
  10186. top:0px;
  10187. width:0px;
  10188. height:0px;
  10189. }
  10190. #u165782_img {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:0px;
  10194. top:0px;
  10195. width:375px;
  10196. height:40px;
  10197. }
  10198. #u165782 {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:29px;
  10202. top:174px;
  10203. width:375px;
  10204. height:40px;
  10205. display:flex;
  10206. }
  10207. #u165782 .text {
  10208. position:absolute;
  10209. align-self:center;
  10210. padding:2px 2px 2px 2px;
  10211. box-sizing:border-box;
  10212. width:100%;
  10213. }
  10214. #u165782_text {
  10215. border-width:0px;
  10216. word-wrap:break-word;
  10217. text-transform:none;
  10218. visibility:hidden;
  10219. }
  10220. #u165783_div {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:0px;
  10224. top:0px;
  10225. width:47px;
  10226. height:40px;
  10227. background:inherit;
  10228. background-color:rgba(255, 255, 255, 1);
  10229. box-sizing:border-box;
  10230. border-width:2px;
  10231. border-style:solid;
  10232. border-color:rgba(0, 137, 254, 1);
  10233. border-left:0px;
  10234. border-top:0px;
  10235. border-right:0px;
  10236. border-radius:0px;
  10237. border-bottom-right-radius:0px;
  10238. border-bottom-left-radius:0px;
  10239. -moz-box-shadow:none;
  10240. -webkit-box-shadow:none;
  10241. box-shadow:none;
  10242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10243. font-weight:400;
  10244. font-style:normal;
  10245. font-size:14px;
  10246. color:#0089FE;
  10247. }
  10248. #u165783 {
  10249. border-width:0px;
  10250. position:absolute;
  10251. left:122px;
  10252. top:174px;
  10253. width:47px;
  10254. height:40px;
  10255. display:flex;
  10256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10257. font-weight:400;
  10258. font-style:normal;
  10259. font-size:14px;
  10260. color:#0089FE;
  10261. }
  10262. #u165783 .text {
  10263. position:absolute;
  10264. align-self:center;
  10265. padding:2px 2px 2px 2px;
  10266. box-sizing:border-box;
  10267. width:100%;
  10268. }
  10269. #u165783_text {
  10270. border-width:0px;
  10271. white-space:nowrap;
  10272. text-transform:none;
  10273. }
  10274. #u165784_div {
  10275. border-width:0px;
  10276. position:absolute;
  10277. left:0px;
  10278. top:0px;
  10279. width:47px;
  10280. height:40px;
  10281. background:inherit;
  10282. background-color:rgba(255, 255, 255, 1);
  10283. border:none;
  10284. border-left:0px;
  10285. border-top:0px;
  10286. border-right:0px;
  10287. border-radius:0px;
  10288. border-bottom-right-radius:0px;
  10289. border-bottom-left-radius:0px;
  10290. -moz-box-shadow:none;
  10291. -webkit-box-shadow:none;
  10292. box-shadow:none;
  10293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10294. font-weight:400;
  10295. font-style:normal;
  10296. font-size:14px;
  10297. }
  10298. #u165784 {
  10299. border-width:0px;
  10300. position:absolute;
  10301. left:210px;
  10302. top:174px;
  10303. width:47px;
  10304. height:40px;
  10305. display:flex;
  10306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10307. font-weight:400;
  10308. font-style:normal;
  10309. font-size:14px;
  10310. }
  10311. #u165784 .text {
  10312. position:absolute;
  10313. align-self:center;
  10314. padding:2px 2px 2px 2px;
  10315. box-sizing:border-box;
  10316. width:100%;
  10317. }
  10318. #u165784_text {
  10319. border-width:0px;
  10320. white-space:nowrap;
  10321. text-transform:none;
  10322. }
  10323. #u165785_div {
  10324. border-width:0px;
  10325. position:absolute;
  10326. left:0px;
  10327. top:0px;
  10328. width:47px;
  10329. height:40px;
  10330. background:inherit;
  10331. background-color:rgba(255, 255, 255, 1);
  10332. border:none;
  10333. border-left:0px;
  10334. border-top:0px;
  10335. border-right:0px;
  10336. border-radius:0px;
  10337. border-bottom-right-radius:0px;
  10338. border-bottom-left-radius:0px;
  10339. -moz-box-shadow:none;
  10340. -webkit-box-shadow:none;
  10341. box-shadow:none;
  10342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10343. font-weight:400;
  10344. font-style:normal;
  10345. font-size:14px;
  10346. }
  10347. #u165785 {
  10348. border-width:0px;
  10349. position:absolute;
  10350. left:297px;
  10351. top:174px;
  10352. width:47px;
  10353. height:40px;
  10354. display:flex;
  10355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10356. font-weight:400;
  10357. font-style:normal;
  10358. font-size:14px;
  10359. }
  10360. #u165785 .text {
  10361. position:absolute;
  10362. align-self:center;
  10363. padding:2px 2px 2px 2px;
  10364. box-sizing:border-box;
  10365. width:100%;
  10366. }
  10367. #u165785_text {
  10368. border-width:0px;
  10369. white-space:nowrap;
  10370. text-transform:none;
  10371. }
  10372. #u165786_div {
  10373. border-width:0px;
  10374. position:absolute;
  10375. left:0px;
  10376. top:0px;
  10377. width:33px;
  10378. height:40px;
  10379. background:inherit;
  10380. background-color:rgba(255, 255, 255, 1);
  10381. border:none;
  10382. border-left:0px;
  10383. border-top:0px;
  10384. border-right:0px;
  10385. border-radius:0px;
  10386. border-bottom-right-radius:0px;
  10387. border-bottom-left-radius:0px;
  10388. -moz-box-shadow:none;
  10389. -webkit-box-shadow:none;
  10390. box-shadow:none;
  10391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10392. font-weight:400;
  10393. font-style:normal;
  10394. font-size:14px;
  10395. }
  10396. #u165786 {
  10397. border-width:0px;
  10398. position:absolute;
  10399. left:49px;
  10400. top:174px;
  10401. width:33px;
  10402. height:40px;
  10403. display:flex;
  10404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10405. font-weight:400;
  10406. font-style:normal;
  10407. font-size:14px;
  10408. }
  10409. #u165786 .text {
  10410. position:absolute;
  10411. align-self:center;
  10412. padding:2px 2px 2px 2px;
  10413. box-sizing:border-box;
  10414. width:100%;
  10415. }
  10416. #u165786_text {
  10417. border-width:0px;
  10418. white-space:nowrap;
  10419. text-transform:none;
  10420. }
  10421. #u165787 {
  10422. border-width:0px;
  10423. position:absolute;
  10424. left:0px;
  10425. top:0px;
  10426. width:0px;
  10427. height:0px;
  10428. }
  10429. #u165788_div {
  10430. border-width:0px;
  10431. position:absolute;
  10432. left:0px;
  10433. top:0px;
  10434. width:40px;
  10435. height:40px;
  10436. background:inherit;
  10437. background-color:rgba(215, 215, 215, 1);
  10438. border:none;
  10439. border-radius:0px;
  10440. -moz-box-shadow:none;
  10441. -webkit-box-shadow:none;
  10442. box-shadow:none;
  10443. }
  10444. #u165788 {
  10445. border-width:0px;
  10446. position:absolute;
  10447. left:364px;
  10448. top:174px;
  10449. width:40px;
  10450. height:40px;
  10451. display:flex;
  10452. }
  10453. #u165788 .text {
  10454. position:absolute;
  10455. align-self:center;
  10456. padding:2px 2px 2px 2px;
  10457. box-sizing:border-box;
  10458. width:100%;
  10459. }
  10460. #u165788_text {
  10461. border-width:0px;
  10462. word-wrap:break-word;
  10463. text-transform:none;
  10464. visibility:hidden;
  10465. }
  10466. #u165789_img {
  10467. border-width:0px;
  10468. position:absolute;
  10469. left:0px;
  10470. top:0px;
  10471. width:16px;
  10472. height:16px;
  10473. }
  10474. #u165789 {
  10475. border-width:0px;
  10476. position:absolute;
  10477. left:378px;
  10478. top:186px;
  10479. width:16px;
  10480. height:16px;
  10481. display:flex;
  10482. }
  10483. #u165789 .text {
  10484. position:absolute;
  10485. align-self:center;
  10486. padding:2px 2px 2px 2px;
  10487. box-sizing:border-box;
  10488. width:100%;
  10489. }
  10490. #u165789_text {
  10491. border-width:0px;
  10492. word-wrap:break-word;
  10493. text-transform:none;
  10494. visibility:hidden;
  10495. }
  10496. #u165790 {
  10497. border-width:0px;
  10498. position:absolute;
  10499. left:0px;
  10500. top:0px;
  10501. width:0px;
  10502. height:0px;
  10503. }
  10504. #u165791_img {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:355px;
  10510. height:140px;
  10511. }
  10512. #u165791 {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:39px;
  10516. top:224px;
  10517. width:355px;
  10518. height:140px;
  10519. display:flex;
  10520. }
  10521. #u165791 .text {
  10522. position:absolute;
  10523. align-self:center;
  10524. padding:2px 2px 2px 2px;
  10525. box-sizing:border-box;
  10526. width:100%;
  10527. }
  10528. #u165791_text {
  10529. border-width:0px;
  10530. word-wrap:break-word;
  10531. text-transform:none;
  10532. visibility:hidden;
  10533. }
  10534. #u165792_div {
  10535. border-width:0px;
  10536. position:absolute;
  10537. left:0px;
  10538. top:0px;
  10539. width:225px;
  10540. height:30px;
  10541. background:inherit;
  10542. background-color:rgba(255, 255, 255, 0);
  10543. border:none;
  10544. border-left:0px;
  10545. border-top:0px;
  10546. border-right:0px;
  10547. border-radius:0px;
  10548. border-bottom-right-radius:0px;
  10549. border-bottom-left-radius:0px;
  10550. -moz-box-shadow:none;
  10551. -webkit-box-shadow:none;
  10552. box-shadow:none;
  10553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10554. font-weight:500;
  10555. font-style:normal;
  10556. font-size:14px;
  10557. line-height:30px;
  10558. }
  10559. #u165792 {
  10560. border-width:0px;
  10561. position:absolute;
  10562. left:44px;
  10563. top:234px;
  10564. width:225px;
  10565. height:30px;
  10566. display:flex;
  10567. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10568. font-weight:500;
  10569. font-style:normal;
  10570. font-size:14px;
  10571. line-height:30px;
  10572. }
  10573. #u165792 .text {
  10574. position:absolute;
  10575. align-self:flex-start;
  10576. padding:0px 0px 0px 0px;
  10577. box-sizing:border-box;
  10578. width:100%;
  10579. }
  10580. #u165792_text {
  10581. border-width:0px;
  10582. white-space:nowrap;
  10583. text-transform:none;
  10584. }
  10585. #u165793_div {
  10586. border-width:0px;
  10587. position:absolute;
  10588. left:0px;
  10589. top:0px;
  10590. width:199px;
  10591. height:85px;
  10592. background:inherit;
  10593. background-color:rgba(255, 255, 255, 0);
  10594. border:none;
  10595. border-left:0px;
  10596. border-top:0px;
  10597. border-right:0px;
  10598. border-radius:0px;
  10599. border-bottom-right-radius:0px;
  10600. border-bottom-left-radius:0px;
  10601. -moz-box-shadow:none;
  10602. -webkit-box-shadow:none;
  10603. box-shadow:none;
  10604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10605. font-weight:400;
  10606. font-style:normal;
  10607. font-size:12px;
  10608. }
  10609. #u165793 {
  10610. border-width:0px;
  10611. position:absolute;
  10612. left:54px;
  10613. top:264px;
  10614. width:199px;
  10615. height:85px;
  10616. display:flex;
  10617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10618. font-weight:400;
  10619. font-style:normal;
  10620. font-size:12px;
  10621. }
  10622. #u165793 .text {
  10623. position:absolute;
  10624. align-self:flex-start;
  10625. padding:0px 0px 0px 0px;
  10626. box-sizing:border-box;
  10627. width:100%;
  10628. }
  10629. #u165793_text {
  10630. border-width:0px;
  10631. white-space:nowrap;
  10632. text-transform:none;
  10633. }
  10634. #u165794_div {
  10635. border-width:0px;
  10636. position:absolute;
  10637. left:0px;
  10638. top:0px;
  10639. width:61px;
  10640. height:25px;
  10641. background:inherit;
  10642. background-color:rgba(255, 255, 255, 0);
  10643. border:none;
  10644. border-left:0px;
  10645. border-top:0px;
  10646. border-right:0px;
  10647. border-radius:0px;
  10648. border-bottom-right-radius:0px;
  10649. border-bottom-left-radius:0px;
  10650. -moz-box-shadow:none;
  10651. -webkit-box-shadow:none;
  10652. box-shadow:none;
  10653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10654. font-weight:400;
  10655. font-style:normal;
  10656. text-align:right;
  10657. }
  10658. #u165794 {
  10659. border-width:0px;
  10660. position:absolute;
  10661. left:318px;
  10662. top:282px;
  10663. width:61px;
  10664. height:25px;
  10665. display:flex;
  10666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10667. font-weight:400;
  10668. font-style:normal;
  10669. text-align:right;
  10670. }
  10671. #u165794 .text {
  10672. position:absolute;
  10673. align-self:flex-start;
  10674. padding:0px 0px 0px 0px;
  10675. box-sizing:border-box;
  10676. width:100%;
  10677. }
  10678. #u165794_text {
  10679. border-width:0px;
  10680. white-space:nowrap;
  10681. text-transform:none;
  10682. }
  10683. #u165795_div {
  10684. border-width:0px;
  10685. position:absolute;
  10686. left:0px;
  10687. top:0px;
  10688. width:41px;
  10689. height:24px;
  10690. background:inherit;
  10691. background-color:rgba(255, 255, 255, 0);
  10692. border:none;
  10693. border-left:0px;
  10694. border-top:0px;
  10695. border-right:0px;
  10696. border-radius:0px;
  10697. border-bottom-right-radius:0px;
  10698. border-bottom-left-radius:0px;
  10699. -moz-box-shadow:none;
  10700. -webkit-box-shadow:none;
  10701. box-shadow:none;
  10702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10703. font-weight:400;
  10704. font-style:normal;
  10705. font-size:10px;
  10706. text-align:right;
  10707. line-height:24px;
  10708. }
  10709. #u165795 {
  10710. border-width:0px;
  10711. position:absolute;
  10712. left:338px;
  10713. top:307px;
  10714. width:41px;
  10715. height:24px;
  10716. display:flex;
  10717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10718. font-weight:400;
  10719. font-style:normal;
  10720. font-size:10px;
  10721. text-align:right;
  10722. line-height:24px;
  10723. }
  10724. #u165795 .text {
  10725. position:absolute;
  10726. align-self:flex-start;
  10727. padding:0px 0px 0px 0px;
  10728. box-sizing:border-box;
  10729. width:100%;
  10730. }
  10731. #u165795_text {
  10732. border-width:0px;
  10733. white-space:nowrap;
  10734. text-transform:none;
  10735. }
  10736. #u165796 {
  10737. border-width:0px;
  10738. position:absolute;
  10739. left:0px;
  10740. top:0px;
  10741. width:0px;
  10742. height:0px;
  10743. }
  10744. #u165797_img {
  10745. border-width:0px;
  10746. position:absolute;
  10747. left:0px;
  10748. top:0px;
  10749. width:355px;
  10750. height:120px;
  10751. }
  10752. #u165797 {
  10753. border-width:0px;
  10754. position:absolute;
  10755. left:39px;
  10756. top:374px;
  10757. width:355px;
  10758. height:120px;
  10759. display:flex;
  10760. }
  10761. #u165797 .text {
  10762. position:absolute;
  10763. align-self:center;
  10764. padding:2px 2px 2px 2px;
  10765. box-sizing:border-box;
  10766. width:100%;
  10767. }
  10768. #u165797_text {
  10769. border-width:0px;
  10770. word-wrap:break-word;
  10771. text-transform:none;
  10772. visibility:hidden;
  10773. }
  10774. #u165798_div {
  10775. border-width:0px;
  10776. position:absolute;
  10777. left:0px;
  10778. top:0px;
  10779. width:225px;
  10780. height:30px;
  10781. background:inherit;
  10782. background-color:rgba(255, 255, 255, 0);
  10783. border:none;
  10784. border-left:0px;
  10785. border-top:0px;
  10786. border-right:0px;
  10787. border-radius:0px;
  10788. border-bottom-right-radius:0px;
  10789. border-bottom-left-radius:0px;
  10790. -moz-box-shadow:none;
  10791. -webkit-box-shadow:none;
  10792. box-shadow:none;
  10793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10794. font-weight:500;
  10795. font-style:normal;
  10796. font-size:14px;
  10797. line-height:30px;
  10798. }
  10799. #u165798 {
  10800. border-width:0px;
  10801. position:absolute;
  10802. left:44px;
  10803. top:384px;
  10804. width:225px;
  10805. height:30px;
  10806. display:flex;
  10807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10808. font-weight:500;
  10809. font-style:normal;
  10810. font-size:14px;
  10811. line-height:30px;
  10812. }
  10813. #u165798 .text {
  10814. position:absolute;
  10815. align-self:flex-start;
  10816. padding:0px 0px 0px 0px;
  10817. box-sizing:border-box;
  10818. width:100%;
  10819. }
  10820. #u165798_text {
  10821. border-width:0px;
  10822. white-space:nowrap;
  10823. text-transform:none;
  10824. }
  10825. #u165799_div {
  10826. border-width:0px;
  10827. position:absolute;
  10828. left:0px;
  10829. top:0px;
  10830. width:165px;
  10831. height:68px;
  10832. background:inherit;
  10833. background-color:rgba(255, 255, 255, 0);
  10834. border:none;
  10835. border-left:0px;
  10836. border-top:0px;
  10837. border-right:0px;
  10838. border-radius:0px;
  10839. border-bottom-right-radius:0px;
  10840. border-bottom-left-radius:0px;
  10841. -moz-box-shadow:none;
  10842. -webkit-box-shadow:none;
  10843. box-shadow:none;
  10844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10845. font-weight:400;
  10846. font-style:normal;
  10847. font-size:12px;
  10848. }
  10849. #u165799 {
  10850. border-width:0px;
  10851. position:absolute;
  10852. left:54px;
  10853. top:414px;
  10854. width:165px;
  10855. height:68px;
  10856. display:flex;
  10857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10858. font-weight:400;
  10859. font-style:normal;
  10860. font-size:12px;
  10861. }
  10862. #u165799 .text {
  10863. position:absolute;
  10864. align-self:flex-start;
  10865. padding:0px 0px 0px 0px;
  10866. box-sizing:border-box;
  10867. width:100%;
  10868. }
  10869. #u165799_text {
  10870. border-width:0px;
  10871. white-space:nowrap;
  10872. text-transform:none;
  10873. }
  10874. #u165800_div {
  10875. border-width:0px;
  10876. position:absolute;
  10877. left:0px;
  10878. top:0px;
  10879. width:47px;
  10880. height:25px;
  10881. background:inherit;
  10882. background-color:rgba(255, 255, 255, 0);
  10883. border:none;
  10884. border-left:0px;
  10885. border-top:0px;
  10886. border-right:0px;
  10887. border-radius:0px;
  10888. border-bottom-right-radius:0px;
  10889. border-bottom-left-radius:0px;
  10890. -moz-box-shadow:none;
  10891. -webkit-box-shadow:none;
  10892. box-shadow:none;
  10893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10894. font-weight:400;
  10895. font-style:normal;
  10896. text-align:right;
  10897. }
  10898. #u165800 {
  10899. border-width:0px;
  10900. position:absolute;
  10901. left:332px;
  10902. top:422px;
  10903. width:47px;
  10904. height:25px;
  10905. display:flex;
  10906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10907. font-weight:400;
  10908. font-style:normal;
  10909. text-align:right;
  10910. }
  10911. #u165800 .text {
  10912. position:absolute;
  10913. align-self:flex-start;
  10914. padding:0px 0px 0px 0px;
  10915. box-sizing:border-box;
  10916. width:100%;
  10917. }
  10918. #u165800_text {
  10919. border-width:0px;
  10920. white-space:nowrap;
  10921. text-transform:none;
  10922. }
  10923. #u165801_div {
  10924. border-width:0px;
  10925. position:absolute;
  10926. left:0px;
  10927. top:0px;
  10928. width:41px;
  10929. height:24px;
  10930. background:inherit;
  10931. background-color:rgba(255, 255, 255, 0);
  10932. border:none;
  10933. border-left:0px;
  10934. border-top:0px;
  10935. border-right:0px;
  10936. border-radius:0px;
  10937. border-bottom-right-radius:0px;
  10938. border-bottom-left-radius:0px;
  10939. -moz-box-shadow:none;
  10940. -webkit-box-shadow:none;
  10941. box-shadow:none;
  10942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10943. font-weight:400;
  10944. font-style:normal;
  10945. font-size:10px;
  10946. text-align:right;
  10947. line-height:24px;
  10948. }
  10949. #u165801 {
  10950. border-width:0px;
  10951. position:absolute;
  10952. left:338px;
  10953. top:447px;
  10954. width:41px;
  10955. height:24px;
  10956. display:flex;
  10957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10958. font-weight:400;
  10959. font-style:normal;
  10960. font-size:10px;
  10961. text-align:right;
  10962. line-height:24px;
  10963. }
  10964. #u165801 .text {
  10965. position:absolute;
  10966. align-self:flex-start;
  10967. padding:0px 0px 0px 0px;
  10968. box-sizing:border-box;
  10969. width:100%;
  10970. }
  10971. #u165801_text {
  10972. border-width:0px;
  10973. white-space:nowrap;
  10974. text-transform:none;
  10975. }
  10976. #u165803_img {
  10977. border-width:0px;
  10978. position:absolute;
  10979. left:0px;
  10980. top:0px;
  10981. width:433px;
  10982. height:865px;
  10983. }
  10984. #u165803 {
  10985. border-width:0px;
  10986. position:absolute;
  10987. left:919px;
  10988. top:0px;
  10989. width:433px;
  10990. height:865px;
  10991. display:flex;
  10992. }
  10993. #u165803 .text {
  10994. position:absolute;
  10995. align-self:center;
  10996. padding:2px 2px 2px 2px;
  10997. box-sizing:border-box;
  10998. width:100%;
  10999. }
  11000. #u165803_text {
  11001. border-width:0px;
  11002. word-wrap:break-word;
  11003. text-transform:none;
  11004. visibility:hidden;
  11005. }
  11006. #u165804_div {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:0px;
  11010. top:0px;
  11011. width:375px;
  11012. height:40px;
  11013. background:inherit;
  11014. background-color:rgba(255, 255, 255, 1);
  11015. box-sizing:border-box;
  11016. border-width:1px;
  11017. border-style:solid;
  11018. border-color:rgba(215, 215, 215, 1);
  11019. border-left:0px;
  11020. border-top:0px;
  11021. border-right:0px;
  11022. border-radius:0px;
  11023. border-bottom-right-radius:0px;
  11024. border-bottom-left-radius:0px;
  11025. -moz-box-shadow:none;
  11026. -webkit-box-shadow:none;
  11027. box-shadow:none;
  11028. }
  11029. #u165804 {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:948px;
  11033. top:67px;
  11034. width:375px;
  11035. height:40px;
  11036. display:flex;
  11037. }
  11038. #u165804 .text {
  11039. position:absolute;
  11040. align-self:center;
  11041. padding:2px 2px 2px 2px;
  11042. box-sizing:border-box;
  11043. width:100%;
  11044. }
  11045. #u165804_text {
  11046. border-width:0px;
  11047. word-wrap:break-word;
  11048. text-transform:none;
  11049. visibility:hidden;
  11050. }
  11051. #u165805 {
  11052. border-width:0px;
  11053. position:absolute;
  11054. left:0px;
  11055. top:0px;
  11056. width:0px;
  11057. height:0px;
  11058. }
  11059. #u165806_div {
  11060. border-width:0px;
  11061. position:absolute;
  11062. left:0px;
  11063. top:0px;
  11064. width:88px;
  11065. height:32px;
  11066. background:inherit;
  11067. background-color:rgba(255, 255, 255, 1);
  11068. box-sizing:border-box;
  11069. border-width:1px;
  11070. border-style:solid;
  11071. border-color:rgba(242, 242, 242, 1);
  11072. border-radius:33px;
  11073. -moz-box-shadow:none;
  11074. -webkit-box-shadow:none;
  11075. box-shadow:none;
  11076. }
  11077. #u165806 {
  11078. border-width:0px;
  11079. position:absolute;
  11080. left:1228px;
  11081. top:71px;
  11082. width:88px;
  11083. height:32px;
  11084. display:flex;
  11085. }
  11086. #u165806 .text {
  11087. position:absolute;
  11088. align-self:center;
  11089. padding:2px 2px 2px 2px;
  11090. box-sizing:border-box;
  11091. width:100%;
  11092. }
  11093. #u165806_text {
  11094. border-width:0px;
  11095. word-wrap:break-word;
  11096. text-transform:none;
  11097. visibility:hidden;
  11098. }
  11099. #u165807 {
  11100. border-width:0px;
  11101. position:absolute;
  11102. left:0px;
  11103. top:0px;
  11104. width:0px;
  11105. height:0px;
  11106. }
  11107. #u165808_img {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:0px;
  11111. top:0px;
  11112. width:18px;
  11113. height:18px;
  11114. }
  11115. #u165808 {
  11116. border-width:0px;
  11117. position:absolute;
  11118. left:1291px;
  11119. top:78px;
  11120. width:18px;
  11121. height:18px;
  11122. display:flex;
  11123. }
  11124. #u165808 .text {
  11125. position:absolute;
  11126. align-self:center;
  11127. padding:2px 2px 2px 2px;
  11128. box-sizing:border-box;
  11129. width:100%;
  11130. }
  11131. #u165808_text {
  11132. border-width:0px;
  11133. word-wrap:break-word;
  11134. text-transform:none;
  11135. visibility:hidden;
  11136. }
  11137. #u165809_img {
  11138. border-width:0px;
  11139. position:absolute;
  11140. left:0px;
  11141. top:0px;
  11142. width:6px;
  11143. height:6px;
  11144. }
  11145. #u165809 {
  11146. border-width:0px;
  11147. position:absolute;
  11148. left:1297px;
  11149. top:84px;
  11150. width:6px;
  11151. height:6px;
  11152. display:flex;
  11153. }
  11154. #u165809 .text {
  11155. position:absolute;
  11156. align-self:center;
  11157. padding:2px 2px 2px 2px;
  11158. box-sizing:border-box;
  11159. width:100%;
  11160. }
  11161. #u165809_text {
  11162. border-width:0px;
  11163. word-wrap:break-word;
  11164. text-transform:none;
  11165. visibility:hidden;
  11166. }
  11167. #u165810 {
  11168. border-width:0px;
  11169. position:absolute;
  11170. left:0px;
  11171. top:0px;
  11172. width:0px;
  11173. height:0px;
  11174. }
  11175. #u165811_img {
  11176. border-width:0px;
  11177. position:absolute;
  11178. left:0px;
  11179. top:0px;
  11180. width:5px;
  11181. height:5px;
  11182. }
  11183. #u165811 {
  11184. border-width:0px;
  11185. position:absolute;
  11186. left:1242px;
  11187. top:85px;
  11188. width:5px;
  11189. height:5px;
  11190. display:flex;
  11191. }
  11192. #u165811 .text {
  11193. position:absolute;
  11194. align-self:center;
  11195. padding:2px 2px 2px 2px;
  11196. box-sizing:border-box;
  11197. width:100%;
  11198. }
  11199. #u165811_text {
  11200. border-width:0px;
  11201. word-wrap:break-word;
  11202. text-transform:none;
  11203. visibility:hidden;
  11204. }
  11205. #u165812_img {
  11206. border-width:0px;
  11207. position:absolute;
  11208. left:0px;
  11209. top:0px;
  11210. width:5px;
  11211. height:5px;
  11212. }
  11213. #u165812 {
  11214. border-width:0px;
  11215. position:absolute;
  11216. left:1258px;
  11217. top:85px;
  11218. width:5px;
  11219. height:5px;
  11220. display:flex;
  11221. }
  11222. #u165812 .text {
  11223. position:absolute;
  11224. align-self:center;
  11225. padding:2px 2px 2px 2px;
  11226. box-sizing:border-box;
  11227. width:100%;
  11228. }
  11229. #u165812_text {
  11230. border-width:0px;
  11231. word-wrap:break-word;
  11232. text-transform:none;
  11233. visibility:hidden;
  11234. }
  11235. #u165813_img {
  11236. border-width:0px;
  11237. position:absolute;
  11238. left:0px;
  11239. top:0px;
  11240. width:7px;
  11241. height:7px;
  11242. }
  11243. #u165813 {
  11244. border-width:0px;
  11245. position:absolute;
  11246. left:1249px;
  11247. top:84px;
  11248. width:7px;
  11249. height:7px;
  11250. display:flex;
  11251. }
  11252. #u165813 .text {
  11253. position:absolute;
  11254. align-self:center;
  11255. padding:2px 2px 2px 2px;
  11256. box-sizing:border-box;
  11257. width:100%;
  11258. }
  11259. #u165813_text {
  11260. border-width:0px;
  11261. word-wrap:break-word;
  11262. text-transform:none;
  11263. visibility:hidden;
  11264. }
  11265. #u165814_img {
  11266. border-width:0px;
  11267. position:absolute;
  11268. left:0px;
  11269. top:0px;
  11270. width:19px;
  11271. height:2px;
  11272. }
  11273. #u165814 {
  11274. border-width:0px;
  11275. position:absolute;
  11276. left:1266px;
  11277. top:87px;
  11278. width:18px;
  11279. height:1px;
  11280. display:flex;
  11281. -webkit-transform:rotate(90deg);
  11282. -moz-transform:rotate(90deg);
  11283. -ms-transform:rotate(90deg);
  11284. transform:rotate(90deg);
  11285. }
  11286. #u165814 .text {
  11287. position:absolute;
  11288. align-self:center;
  11289. padding:2px 2px 2px 2px;
  11290. box-sizing:border-box;
  11291. width:100%;
  11292. }
  11293. #u165814_text {
  11294. border-width:0px;
  11295. word-wrap:break-word;
  11296. text-transform:none;
  11297. visibility:hidden;
  11298. }
  11299. #u165815_img {
  11300. border-width:0px;
  11301. position:absolute;
  11302. left:0px;
  11303. top:0px;
  11304. width:375px;
  11305. height:44px;
  11306. }
  11307. #u165815 {
  11308. border-width:0px;
  11309. position:absolute;
  11310. left:948px;
  11311. top:24px;
  11312. width:375px;
  11313. height:44px;
  11314. display:flex;
  11315. }
  11316. #u165815 .text {
  11317. position:absolute;
  11318. align-self:center;
  11319. padding:2px 2px 2px 2px;
  11320. box-sizing:border-box;
  11321. width:100%;
  11322. }
  11323. #u165815_text {
  11324. border-width:0px;
  11325. word-wrap:break-word;
  11326. text-transform:none;
  11327. visibility:hidden;
  11328. }
  11329. #u165816_div {
  11330. border-width:0px;
  11331. position:absolute;
  11332. left:0px;
  11333. top:0px;
  11334. width:375px;
  11335. height:50px;
  11336. background:inherit;
  11337. background-color:rgba(255, 255, 255, 1);
  11338. box-sizing:border-box;
  11339. border-width:1px;
  11340. border-style:solid;
  11341. border-color:rgba(242, 242, 242, 1);
  11342. border-radius:26px;
  11343. border-top-left-radius:0px;
  11344. border-top-right-radius:0px;
  11345. -moz-box-shadow:none;
  11346. -webkit-box-shadow:none;
  11347. box-shadow:none;
  11348. }
  11349. #u165816 {
  11350. border-width:0px;
  11351. position:absolute;
  11352. left:948px;
  11353. top:788px;
  11354. width:375px;
  11355. height:50px;
  11356. display:flex;
  11357. }
  11358. #u165816 .text {
  11359. position:absolute;
  11360. align-self:center;
  11361. padding:2px 2px 2px 2px;
  11362. box-sizing:border-box;
  11363. width:100%;
  11364. }
  11365. #u165816_text {
  11366. border-width:0px;
  11367. word-wrap:break-word;
  11368. text-transform:none;
  11369. visibility:hidden;
  11370. }
  11371. #u165817 {
  11372. border-width:0px;
  11373. position:absolute;
  11374. left:0px;
  11375. top:0px;
  11376. width:0px;
  11377. height:0px;
  11378. }
  11379. #u165818_img {
  11380. border-width:0px;
  11381. position:absolute;
  11382. left:0px;
  11383. top:0px;
  11384. width:24px;
  11385. height:24px;
  11386. }
  11387. #u165818 {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:988px;
  11391. top:792px;
  11392. width:24px;
  11393. height:24px;
  11394. display:flex;
  11395. font-size:8px;
  11396. }
  11397. #u165818 .text {
  11398. position:absolute;
  11399. align-self:center;
  11400. padding:2px 2px 2px 2px;
  11401. box-sizing:border-box;
  11402. width:100%;
  11403. }
  11404. #u165818_text {
  11405. border-width:0px;
  11406. word-wrap:break-word;
  11407. text-transform:none;
  11408. }
  11409. #u165819_div {
  11410. border-width:0px;
  11411. position:absolute;
  11412. left:0px;
  11413. top:0px;
  11414. width:25px;
  11415. height:17px;
  11416. background:inherit;
  11417. background-color:rgba(255, 255, 255, 0);
  11418. border:none;
  11419. border-radius:0px;
  11420. -moz-box-shadow:none;
  11421. -webkit-box-shadow:none;
  11422. box-shadow:none;
  11423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11424. font-weight:400;
  11425. font-style:normal;
  11426. font-size:12px;
  11427. }
  11428. #u165819 {
  11429. border-width:0px;
  11430. position:absolute;
  11431. left:988px;
  11432. top:817px;
  11433. width:25px;
  11434. height:17px;
  11435. display:flex;
  11436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11437. font-weight:400;
  11438. font-style:normal;
  11439. font-size:12px;
  11440. }
  11441. #u165819 .text {
  11442. position:absolute;
  11443. align-self:flex-start;
  11444. padding:0px 0px 0px 0px;
  11445. box-sizing:border-box;
  11446. width:100%;
  11447. }
  11448. #u165819_text {
  11449. border-width:0px;
  11450. white-space:nowrap;
  11451. text-transform:none;
  11452. }
  11453. #u165820 {
  11454. border-width:0px;
  11455. position:absolute;
  11456. left:0px;
  11457. top:0px;
  11458. width:0px;
  11459. height:0px;
  11460. }
  11461. #u165821_img {
  11462. border-width:0px;
  11463. position:absolute;
  11464. left:0px;
  11465. top:0px;
  11466. width:24px;
  11467. height:24px;
  11468. }
  11469. #u165821 {
  11470. border-width:0px;
  11471. position:absolute;
  11472. left:1258px;
  11473. top:794px;
  11474. width:24px;
  11475. height:24px;
  11476. display:flex;
  11477. font-size:8px;
  11478. }
  11479. #u165821 .text {
  11480. position:absolute;
  11481. align-self:center;
  11482. padding:2px 2px 2px 2px;
  11483. box-sizing:border-box;
  11484. width:100%;
  11485. }
  11486. #u165821_text {
  11487. border-width:0px;
  11488. word-wrap:break-word;
  11489. text-transform:none;
  11490. }
  11491. #u165822_div {
  11492. border-width:0px;
  11493. position:absolute;
  11494. left:0px;
  11495. top:0px;
  11496. width:25px;
  11497. height:17px;
  11498. background:inherit;
  11499. background-color:rgba(255, 255, 255, 0);
  11500. border:none;
  11501. border-radius:0px;
  11502. -moz-box-shadow:none;
  11503. -webkit-box-shadow:none;
  11504. box-shadow:none;
  11505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11506. font-weight:400;
  11507. font-style:normal;
  11508. font-size:12px;
  11509. }
  11510. #u165822 {
  11511. border-width:0px;
  11512. position:absolute;
  11513. left:1258px;
  11514. top:819px;
  11515. width:25px;
  11516. height:17px;
  11517. display:flex;
  11518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11519. font-weight:400;
  11520. font-style:normal;
  11521. font-size:12px;
  11522. }
  11523. #u165822 .text {
  11524. position:absolute;
  11525. align-self:flex-start;
  11526. padding:0px 0px 0px 0px;
  11527. box-sizing:border-box;
  11528. width:100%;
  11529. }
  11530. #u165822_text {
  11531. border-width:0px;
  11532. white-space:nowrap;
  11533. text-transform:none;
  11534. }
  11535. #u165823_div {
  11536. border-width:0px;
  11537. position:absolute;
  11538. left:0px;
  11539. top:0px;
  11540. width:375px;
  11541. height:681px;
  11542. background:inherit;
  11543. background-color:rgba(242, 242, 242, 0.462745098039216);
  11544. border:none;
  11545. border-radius:0px;
  11546. -moz-box-shadow:none;
  11547. -webkit-box-shadow:none;
  11548. box-shadow:none;
  11549. }
  11550. #u165823 {
  11551. border-width:0px;
  11552. position:absolute;
  11553. left:948px;
  11554. top:107px;
  11555. width:375px;
  11556. height:681px;
  11557. display:flex;
  11558. }
  11559. #u165823 .text {
  11560. position:absolute;
  11561. align-self:center;
  11562. padding:2px 2px 2px 2px;
  11563. box-sizing:border-box;
  11564. width:100%;
  11565. }
  11566. #u165823_text {
  11567. border-width:0px;
  11568. word-wrap:break-word;
  11569. text-transform:none;
  11570. visibility:hidden;
  11571. }
  11572. #u165824 {
  11573. border-width:0px;
  11574. position:absolute;
  11575. left:0px;
  11576. top:0px;
  11577. width:0px;
  11578. height:0px;
  11579. }
  11580. #u165825_img {
  11581. border-width:0px;
  11582. position:absolute;
  11583. left:0px;
  11584. top:0px;
  11585. width:24px;
  11586. height:24px;
  11587. }
  11588. #u165825 {
  11589. border-width:0px;
  11590. position:absolute;
  11591. left:1170px;
  11592. top:792px;
  11593. width:24px;
  11594. height:24px;
  11595. display:flex;
  11596. font-size:8px;
  11597. }
  11598. #u165825 .text {
  11599. position:absolute;
  11600. align-self:center;
  11601. padding:2px 2px 2px 2px;
  11602. box-sizing:border-box;
  11603. width:100%;
  11604. }
  11605. #u165825_text {
  11606. border-width:0px;
  11607. word-wrap:break-word;
  11608. text-transform:none;
  11609. }
  11610. #u165826_div {
  11611. border-width:0px;
  11612. position:absolute;
  11613. left:0px;
  11614. top:0px;
  11615. width:37px;
  11616. height:17px;
  11617. background:inherit;
  11618. background-color:rgba(255, 255, 255, 0);
  11619. border:none;
  11620. border-radius:0px;
  11621. -moz-box-shadow:none;
  11622. -webkit-box-shadow:none;
  11623. box-shadow:none;
  11624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11625. font-weight:400;
  11626. font-style:normal;
  11627. font-size:12px;
  11628. }
  11629. #u165826 {
  11630. border-width:0px;
  11631. position:absolute;
  11632. left:1164px;
  11633. top:817px;
  11634. width:37px;
  11635. height:17px;
  11636. display:flex;
  11637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11638. font-weight:400;
  11639. font-style:normal;
  11640. font-size:12px;
  11641. }
  11642. #u165826 .text {
  11643. position:absolute;
  11644. align-self:flex-start;
  11645. padding:0px 0px 0px 0px;
  11646. box-sizing:border-box;
  11647. width:100%;
  11648. }
  11649. #u165826_text {
  11650. border-width:0px;
  11651. white-space:nowrap;
  11652. text-transform:none;
  11653. }
  11654. #u165827 {
  11655. border-width:0px;
  11656. position:absolute;
  11657. left:0px;
  11658. top:0px;
  11659. width:0px;
  11660. height:0px;
  11661. }
  11662. #u165828_img {
  11663. border-width:0px;
  11664. position:absolute;
  11665. left:0px;
  11666. top:0px;
  11667. width:24px;
  11668. height:24px;
  11669. }
  11670. #u165828 {
  11671. border-width:0px;
  11672. position:absolute;
  11673. left:1076px;
  11674. top:792px;
  11675. width:24px;
  11676. height:24px;
  11677. display:flex;
  11678. font-size:8px;
  11679. }
  11680. #u165828 .text {
  11681. position:absolute;
  11682. align-self:center;
  11683. padding:2px 2px 2px 2px;
  11684. box-sizing:border-box;
  11685. width:100%;
  11686. }
  11687. #u165828_text {
  11688. border-width:0px;
  11689. word-wrap:break-word;
  11690. text-transform:none;
  11691. }
  11692. #u165829_div {
  11693. border-width:0px;
  11694. position:absolute;
  11695. left:0px;
  11696. top:0px;
  11697. width:37px;
  11698. height:17px;
  11699. background:inherit;
  11700. background-color:rgba(255, 255, 255, 0);
  11701. border:none;
  11702. border-radius:0px;
  11703. -moz-box-shadow:none;
  11704. -webkit-box-shadow:none;
  11705. box-shadow:none;
  11706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11707. font-weight:400;
  11708. font-style:normal;
  11709. font-size:12px;
  11710. }
  11711. #u165829 {
  11712. border-width:0px;
  11713. position:absolute;
  11714. left:1070px;
  11715. top:817px;
  11716. width:37px;
  11717. height:17px;
  11718. display:flex;
  11719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11720. font-weight:400;
  11721. font-style:normal;
  11722. font-size:12px;
  11723. }
  11724. #u165829 .text {
  11725. position:absolute;
  11726. align-self:flex-start;
  11727. padding:0px 0px 0px 0px;
  11728. box-sizing:border-box;
  11729. width:100%;
  11730. }
  11731. #u165829_text {
  11732. border-width:0px;
  11733. white-space:nowrap;
  11734. text-transform:none;
  11735. }
  11736. #u165830_div {
  11737. border-width:0px;
  11738. position:absolute;
  11739. left:0px;
  11740. top:0px;
  11741. width:375px;
  11742. height:734px;
  11743. background:inherit;
  11744. background-color:rgba(242, 242, 242, 1);
  11745. border:none;
  11746. border-top:0px;
  11747. border-radius:25px;
  11748. border-top-left-radius:0px;
  11749. border-top-right-radius:0px;
  11750. -moz-box-shadow:none;
  11751. -webkit-box-shadow:none;
  11752. box-shadow:none;
  11753. }
  11754. #u165830 {
  11755. border-width:0px;
  11756. position:absolute;
  11757. left:948px;
  11758. top:105px;
  11759. width:375px;
  11760. height:734px;
  11761. display:flex;
  11762. }
  11763. #u165830 .text {
  11764. position:absolute;
  11765. align-self:center;
  11766. padding:2px 2px 2px 2px;
  11767. box-sizing:border-box;
  11768. width:100%;
  11769. }
  11770. #u165830_text {
  11771. border-width:0px;
  11772. word-wrap:break-word;
  11773. text-transform:none;
  11774. visibility:hidden;
  11775. }
  11776. #u165831 {
  11777. border-width:0px;
  11778. position:absolute;
  11779. left:0px;
  11780. top:0px;
  11781. width:0px;
  11782. height:0px;
  11783. }
  11784. #u165832_img {
  11785. border-width:0px;
  11786. position:absolute;
  11787. left:0px;
  11788. top:0px;
  11789. width:11px;
  11790. height:18px;
  11791. }
  11792. #u165832 {
  11793. border-width:0px;
  11794. position:absolute;
  11795. left:959px;
  11796. top:79px;
  11797. width:11px;
  11798. height:18px;
  11799. display:flex;
  11800. }
  11801. #u165832 .text {
  11802. position:absolute;
  11803. align-self:center;
  11804. padding:2px 2px 2px 2px;
  11805. box-sizing:border-box;
  11806. width:100%;
  11807. }
  11808. #u165832_text {
  11809. border-width:0px;
  11810. word-wrap:break-word;
  11811. text-transform:none;
  11812. visibility:hidden;
  11813. }
  11814. #u165833_div {
  11815. border-width:0px;
  11816. position:absolute;
  11817. left:0px;
  11818. top:0px;
  11819. width:57px;
  11820. height:30px;
  11821. background:inherit;
  11822. background-color:rgba(255, 255, 255, 0);
  11823. border:none;
  11824. border-left:0px;
  11825. border-top:0px;
  11826. border-right:0px;
  11827. border-radius:0px;
  11828. border-bottom-right-radius:0px;
  11829. border-bottom-left-radius:0px;
  11830. -moz-box-shadow:none;
  11831. -webkit-box-shadow:none;
  11832. box-shadow:none;
  11833. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11834. font-weight:500;
  11835. font-style:normal;
  11836. font-size:14px;
  11837. line-height:30px;
  11838. }
  11839. #u165833 {
  11840. border-width:0px;
  11841. position:absolute;
  11842. left:1101px;
  11843. top:75px;
  11844. width:57px;
  11845. height:30px;
  11846. display:flex;
  11847. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11848. font-weight:500;
  11849. font-style:normal;
  11850. font-size:14px;
  11851. line-height:30px;
  11852. }
  11853. #u165833 .text {
  11854. position:absolute;
  11855. align-self:flex-start;
  11856. padding:0px 0px 0px 0px;
  11857. box-sizing:border-box;
  11858. width:100%;
  11859. }
  11860. #u165833_text {
  11861. border-width:0px;
  11862. white-space:nowrap;
  11863. text-transform:none;
  11864. }
  11865. #u165834 {
  11866. border-width:0px;
  11867. position:absolute;
  11868. left:0px;
  11869. top:0px;
  11870. width:0px;
  11871. height:0px;
  11872. }
  11873. #u165835_img {
  11874. border-width:0px;
  11875. position:absolute;
  11876. left:0px;
  11877. top:0px;
  11878. width:375px;
  11879. height:69px;
  11880. }
  11881. #u165835 {
  11882. border-width:0px;
  11883. position:absolute;
  11884. left:948px;
  11885. top:105px;
  11886. width:375px;
  11887. height:69px;
  11888. display:flex;
  11889. }
  11890. #u165835 .text {
  11891. position:absolute;
  11892. align-self:center;
  11893. padding:2px 2px 2px 2px;
  11894. box-sizing:border-box;
  11895. width:100%;
  11896. }
  11897. #u165835_text {
  11898. border-width:0px;
  11899. word-wrap:break-word;
  11900. text-transform:none;
  11901. visibility:hidden;
  11902. }
  11903. #u165836_div {
  11904. border-width:0px;
  11905. position:absolute;
  11906. left:0px;
  11907. top:0px;
  11908. width:97px;
  11909. height:30px;
  11910. background:inherit;
  11911. background-color:rgba(255, 255, 255, 0);
  11912. border:none;
  11913. border-left:0px;
  11914. border-top:0px;
  11915. border-right:0px;
  11916. border-radius:0px;
  11917. border-bottom-right-radius:0px;
  11918. border-bottom-left-radius:0px;
  11919. -moz-box-shadow:none;
  11920. -webkit-box-shadow:none;
  11921. box-shadow:none;
  11922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11923. font-weight:500;
  11924. font-style:normal;
  11925. line-height:30px;
  11926. }
  11927. #u165836 {
  11928. border-width:0px;
  11929. position:absolute;
  11930. left:968px;
  11931. top:125px;
  11932. width:97px;
  11933. height:30px;
  11934. display:flex;
  11935. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11936. font-weight:500;
  11937. font-style:normal;
  11938. line-height:30px;
  11939. }
  11940. #u165836 .text {
  11941. position:absolute;
  11942. align-self:flex-start;
  11943. padding:0px 0px 0px 0px;
  11944. box-sizing:border-box;
  11945. width:100%;
  11946. }
  11947. #u165836_text {
  11948. border-width:0px;
  11949. white-space:nowrap;
  11950. text-transform:none;
  11951. }
  11952. #u165837_div {
  11953. border-width:0px;
  11954. position:absolute;
  11955. left:0px;
  11956. top:0px;
  11957. width:73px;
  11958. height:30px;
  11959. background:inherit;
  11960. background-color:rgba(255, 255, 255, 0);
  11961. border:none;
  11962. border-left:0px;
  11963. border-top:0px;
  11964. border-right:0px;
  11965. border-radius:0px;
  11966. border-bottom-right-radius:0px;
  11967. border-bottom-left-radius:0px;
  11968. -moz-box-shadow:none;
  11969. -webkit-box-shadow:none;
  11970. box-shadow:none;
  11971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11972. font-weight:400;
  11973. font-style:normal;
  11974. font-size:18px;
  11975. line-height:30px;
  11976. }
  11977. #u165837 {
  11978. border-width:0px;
  11979. position:absolute;
  11980. left:1085px;
  11981. top:125px;
  11982. width:73px;
  11983. height:30px;
  11984. display:flex;
  11985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11986. font-weight:400;
  11987. font-style:normal;
  11988. font-size:18px;
  11989. line-height:30px;
  11990. }
  11991. #u165837 .text {
  11992. position:absolute;
  11993. align-self:flex-start;
  11994. padding:0px 0px 0px 0px;
  11995. box-sizing:border-box;
  11996. width:100%;
  11997. }
  11998. #u165837_text {
  11999. border-width:0px;
  12000. white-space:nowrap;
  12001. text-transform:none;
  12002. }
  12003. #u165838_div {
  12004. border-width:0px;
  12005. position:absolute;
  12006. left:0px;
  12007. top:0px;
  12008. width:73px;
  12009. height:30px;
  12010. background:inherit;
  12011. background-color:rgba(255, 255, 255, 0);
  12012. border:none;
  12013. border-left:0px;
  12014. border-top:0px;
  12015. border-right:0px;
  12016. border-radius:0px;
  12017. border-bottom-right-radius:0px;
  12018. border-bottom-left-radius:0px;
  12019. -moz-box-shadow:none;
  12020. -webkit-box-shadow:none;
  12021. box-shadow:none;
  12022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12023. font-weight:400;
  12024. font-style:normal;
  12025. font-size:18px;
  12026. line-height:30px;
  12027. }
  12028. #u165838 {
  12029. border-width:0px;
  12030. position:absolute;
  12031. left:1178px;
  12032. top:125px;
  12033. width:73px;
  12034. height:30px;
  12035. display:flex;
  12036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12037. font-weight:400;
  12038. font-style:normal;
  12039. font-size:18px;
  12040. line-height:30px;
  12041. }
  12042. #u165838 .text {
  12043. position:absolute;
  12044. align-self:flex-start;
  12045. padding:0px 0px 0px 0px;
  12046. box-sizing:border-box;
  12047. width:100%;
  12048. }
  12049. #u165838_text {
  12050. border-width:0px;
  12051. white-space:nowrap;
  12052. text-transform:none;
  12053. }
  12054. #u165839 {
  12055. border-width:0px;
  12056. position:absolute;
  12057. left:0px;
  12058. top:0px;
  12059. width:0px;
  12060. height:0px;
  12061. }
  12062. #u165840_img {
  12063. border-width:0px;
  12064. position:absolute;
  12065. left:0px;
  12066. top:0px;
  12067. width:375px;
  12068. height:40px;
  12069. }
  12070. #u165840 {
  12071. border-width:0px;
  12072. position:absolute;
  12073. left:948px;
  12074. top:174px;
  12075. width:375px;
  12076. height:40px;
  12077. display:flex;
  12078. }
  12079. #u165840 .text {
  12080. position:absolute;
  12081. align-self:center;
  12082. padding:2px 2px 2px 2px;
  12083. box-sizing:border-box;
  12084. width:100%;
  12085. }
  12086. #u165840_text {
  12087. border-width:0px;
  12088. word-wrap:break-word;
  12089. text-transform:none;
  12090. visibility:hidden;
  12091. }
  12092. #u165841_div {
  12093. border-width:0px;
  12094. position:absolute;
  12095. left:0px;
  12096. top:0px;
  12097. width:47px;
  12098. height:40px;
  12099. background:inherit;
  12100. background-color:rgba(255, 255, 255, 1);
  12101. border:none;
  12102. border-left:0px;
  12103. border-top:0px;
  12104. border-right:0px;
  12105. border-radius:0px;
  12106. border-bottom-right-radius:0px;
  12107. border-bottom-left-radius:0px;
  12108. -moz-box-shadow:none;
  12109. -webkit-box-shadow:none;
  12110. box-shadow:none;
  12111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12112. font-weight:400;
  12113. font-style:normal;
  12114. font-size:14px;
  12115. }
  12116. #u165841 {
  12117. border-width:0px;
  12118. position:absolute;
  12119. left:1041px;
  12120. top:174px;
  12121. width:47px;
  12122. height:40px;
  12123. display:flex;
  12124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12125. font-weight:400;
  12126. font-style:normal;
  12127. font-size:14px;
  12128. }
  12129. #u165841 .text {
  12130. position:absolute;
  12131. align-self:center;
  12132. padding:2px 2px 2px 2px;
  12133. box-sizing:border-box;
  12134. width:100%;
  12135. }
  12136. #u165841_text {
  12137. border-width:0px;
  12138. white-space:nowrap;
  12139. text-transform:none;
  12140. }
  12141. #u165842_div {
  12142. border-width:0px;
  12143. position:absolute;
  12144. left:0px;
  12145. top:0px;
  12146. width:47px;
  12147. height:40px;
  12148. background:inherit;
  12149. background-color:rgba(255, 255, 255, 1);
  12150. border:none;
  12151. border-left:0px;
  12152. border-top:0px;
  12153. border-right:0px;
  12154. border-radius:0px;
  12155. border-bottom-right-radius:0px;
  12156. border-bottom-left-radius:0px;
  12157. -moz-box-shadow:none;
  12158. -webkit-box-shadow:none;
  12159. box-shadow:none;
  12160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12161. font-weight:400;
  12162. font-style:normal;
  12163. font-size:14px;
  12164. }
  12165. #u165842 {
  12166. border-width:0px;
  12167. position:absolute;
  12168. left:1129px;
  12169. top:174px;
  12170. width:47px;
  12171. height:40px;
  12172. display:flex;
  12173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12174. font-weight:400;
  12175. font-style:normal;
  12176. font-size:14px;
  12177. }
  12178. #u165842 .text {
  12179. position:absolute;
  12180. align-self:center;
  12181. padding:2px 2px 2px 2px;
  12182. box-sizing:border-box;
  12183. width:100%;
  12184. }
  12185. #u165842_text {
  12186. border-width:0px;
  12187. white-space:nowrap;
  12188. text-transform:none;
  12189. }
  12190. #u165843_div {
  12191. border-width:0px;
  12192. position:absolute;
  12193. left:0px;
  12194. top:0px;
  12195. width:47px;
  12196. height:40px;
  12197. background:inherit;
  12198. background-color:rgba(255, 255, 255, 1);
  12199. box-sizing:border-box;
  12200. border-width:2px;
  12201. border-style:solid;
  12202. border-color:rgba(0, 137, 254, 1);
  12203. border-left:0px;
  12204. border-top:0px;
  12205. border-right:0px;
  12206. border-radius:0px;
  12207. border-bottom-right-radius:0px;
  12208. border-bottom-left-radius:0px;
  12209. -moz-box-shadow:none;
  12210. -webkit-box-shadow:none;
  12211. box-shadow:none;
  12212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12213. font-weight:400;
  12214. font-style:normal;
  12215. font-size:14px;
  12216. color:#0089FE;
  12217. }
  12218. #u165843 {
  12219. border-width:0px;
  12220. position:absolute;
  12221. left:1216px;
  12222. top:174px;
  12223. width:47px;
  12224. height:40px;
  12225. display:flex;
  12226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12227. font-weight:400;
  12228. font-style:normal;
  12229. font-size:14px;
  12230. color:#0089FE;
  12231. }
  12232. #u165843 .text {
  12233. position:absolute;
  12234. align-self:center;
  12235. padding:2px 2px 2px 2px;
  12236. box-sizing:border-box;
  12237. width:100%;
  12238. }
  12239. #u165843_text {
  12240. border-width:0px;
  12241. white-space:nowrap;
  12242. text-transform:none;
  12243. }
  12244. #u165844_div {
  12245. border-width:0px;
  12246. position:absolute;
  12247. left:0px;
  12248. top:0px;
  12249. width:33px;
  12250. height:40px;
  12251. background:inherit;
  12252. background-color:rgba(255, 255, 255, 1);
  12253. border:none;
  12254. border-left:0px;
  12255. border-top:0px;
  12256. border-right:0px;
  12257. border-radius:0px;
  12258. border-bottom-right-radius:0px;
  12259. border-bottom-left-radius:0px;
  12260. -moz-box-shadow:none;
  12261. -webkit-box-shadow:none;
  12262. box-shadow:none;
  12263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12264. font-weight:400;
  12265. font-style:normal;
  12266. font-size:14px;
  12267. }
  12268. #u165844 {
  12269. border-width:0px;
  12270. position:absolute;
  12271. left:968px;
  12272. top:174px;
  12273. width:33px;
  12274. height:40px;
  12275. display:flex;
  12276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12277. font-weight:400;
  12278. font-style:normal;
  12279. font-size:14px;
  12280. }
  12281. #u165844 .text {
  12282. position:absolute;
  12283. align-self:center;
  12284. padding:2px 2px 2px 2px;
  12285. box-sizing:border-box;
  12286. width:100%;
  12287. }
  12288. #u165844_text {
  12289. border-width:0px;
  12290. white-space:nowrap;
  12291. text-transform:none;
  12292. }
  12293. #u165845 {
  12294. border-width:0px;
  12295. position:absolute;
  12296. left:0px;
  12297. top:0px;
  12298. width:0px;
  12299. height:0px;
  12300. }
  12301. #u165846_div {
  12302. border-width:0px;
  12303. position:absolute;
  12304. left:0px;
  12305. top:0px;
  12306. width:40px;
  12307. height:40px;
  12308. background:inherit;
  12309. background-color:rgba(215, 215, 215, 1);
  12310. border:none;
  12311. border-radius:0px;
  12312. -moz-box-shadow:none;
  12313. -webkit-box-shadow:none;
  12314. box-shadow:none;
  12315. }
  12316. #u165846 {
  12317. border-width:0px;
  12318. position:absolute;
  12319. left:1283px;
  12320. top:174px;
  12321. width:40px;
  12322. height:40px;
  12323. display:flex;
  12324. }
  12325. #u165846 .text {
  12326. position:absolute;
  12327. align-self:center;
  12328. padding:2px 2px 2px 2px;
  12329. box-sizing:border-box;
  12330. width:100%;
  12331. }
  12332. #u165846_text {
  12333. border-width:0px;
  12334. word-wrap:break-word;
  12335. text-transform:none;
  12336. visibility:hidden;
  12337. }
  12338. #u165847_img {
  12339. border-width:0px;
  12340. position:absolute;
  12341. left:0px;
  12342. top:0px;
  12343. width:16px;
  12344. height:16px;
  12345. }
  12346. #u165847 {
  12347. border-width:0px;
  12348. position:absolute;
  12349. left:1297px;
  12350. top:186px;
  12351. width:16px;
  12352. height:16px;
  12353. display:flex;
  12354. }
  12355. #u165847 .text {
  12356. position:absolute;
  12357. align-self:center;
  12358. padding:2px 2px 2px 2px;
  12359. box-sizing:border-box;
  12360. width:100%;
  12361. }
  12362. #u165847_text {
  12363. border-width:0px;
  12364. word-wrap:break-word;
  12365. text-transform:none;
  12366. visibility:hidden;
  12367. }
  12368. #u165848 {
  12369. border-width:0px;
  12370. position:absolute;
  12371. left:0px;
  12372. top:0px;
  12373. width:0px;
  12374. height:0px;
  12375. }
  12376. #u165849_img {
  12377. border-width:0px;
  12378. position:absolute;
  12379. left:0px;
  12380. top:0px;
  12381. width:355px;
  12382. height:120px;
  12383. }
  12384. #u165849 {
  12385. border-width:0px;
  12386. position:absolute;
  12387. left:958px;
  12388. top:224px;
  12389. width:355px;
  12390. height:120px;
  12391. display:flex;
  12392. }
  12393. #u165849 .text {
  12394. position:absolute;
  12395. align-self:center;
  12396. padding:2px 2px 2px 2px;
  12397. box-sizing:border-box;
  12398. width:100%;
  12399. }
  12400. #u165849_text {
  12401. border-width:0px;
  12402. word-wrap:break-word;
  12403. text-transform:none;
  12404. visibility:hidden;
  12405. }
  12406. #u165850_div {
  12407. border-width:0px;
  12408. position:absolute;
  12409. left:0px;
  12410. top:0px;
  12411. width:225px;
  12412. height:30px;
  12413. background:inherit;
  12414. background-color:rgba(255, 255, 255, 0);
  12415. border:none;
  12416. border-left:0px;
  12417. border-top:0px;
  12418. border-right:0px;
  12419. border-radius:0px;
  12420. border-bottom-right-radius:0px;
  12421. border-bottom-left-radius:0px;
  12422. -moz-box-shadow:none;
  12423. -webkit-box-shadow:none;
  12424. box-shadow:none;
  12425. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12426. font-weight:500;
  12427. font-style:normal;
  12428. font-size:14px;
  12429. line-height:30px;
  12430. }
  12431. #u165850 {
  12432. border-width:0px;
  12433. position:absolute;
  12434. left:963px;
  12435. top:234px;
  12436. width:225px;
  12437. height:30px;
  12438. display:flex;
  12439. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12440. font-weight:500;
  12441. font-style:normal;
  12442. font-size:14px;
  12443. line-height:30px;
  12444. }
  12445. #u165850 .text {
  12446. position:absolute;
  12447. align-self:flex-start;
  12448. padding:0px 0px 0px 0px;
  12449. box-sizing:border-box;
  12450. width:100%;
  12451. }
  12452. #u165850_text {
  12453. border-width:0px;
  12454. white-space:nowrap;
  12455. text-transform:none;
  12456. }
  12457. #u165851_div {
  12458. border-width:0px;
  12459. position:absolute;
  12460. left:0px;
  12461. top:0px;
  12462. width:165px;
  12463. height:68px;
  12464. background:inherit;
  12465. background-color:rgba(255, 255, 255, 0);
  12466. border:none;
  12467. border-left:0px;
  12468. border-top:0px;
  12469. border-right:0px;
  12470. border-radius:0px;
  12471. border-bottom-right-radius:0px;
  12472. border-bottom-left-radius:0px;
  12473. -moz-box-shadow:none;
  12474. -webkit-box-shadow:none;
  12475. box-shadow:none;
  12476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12477. font-weight:400;
  12478. font-style:normal;
  12479. font-size:12px;
  12480. color:#7F7F7F;
  12481. }
  12482. #u165851 {
  12483. border-width:0px;
  12484. position:absolute;
  12485. left:973px;
  12486. top:264px;
  12487. width:165px;
  12488. height:68px;
  12489. display:flex;
  12490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12491. font-weight:400;
  12492. font-style:normal;
  12493. font-size:12px;
  12494. color:#7F7F7F;
  12495. }
  12496. #u165851 .text {
  12497. position:absolute;
  12498. align-self:flex-start;
  12499. padding:0px 0px 0px 0px;
  12500. box-sizing:border-box;
  12501. width:100%;
  12502. }
  12503. #u165851_text {
  12504. border-width:0px;
  12505. white-space:nowrap;
  12506. text-transform:none;
  12507. }
  12508. #u165852_div {
  12509. border-width:0px;
  12510. position:absolute;
  12511. left:0px;
  12512. top:0px;
  12513. width:56px;
  12514. height:25px;
  12515. background:inherit;
  12516. background-color:rgba(255, 255, 255, 0);
  12517. border:none;
  12518. border-left:0px;
  12519. border-top:0px;
  12520. border-right:0px;
  12521. border-radius:0px;
  12522. border-bottom-right-radius:0px;
  12523. border-bottom-left-radius:0px;
  12524. -moz-box-shadow:none;
  12525. -webkit-box-shadow:none;
  12526. box-shadow:none;
  12527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12528. font-weight:400;
  12529. font-style:normal;
  12530. text-align:right;
  12531. }
  12532. #u165852 {
  12533. border-width:0px;
  12534. position:absolute;
  12535. left:1242px;
  12536. top:282px;
  12537. width:56px;
  12538. height:25px;
  12539. display:flex;
  12540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12541. font-weight:400;
  12542. font-style:normal;
  12543. text-align:right;
  12544. }
  12545. #u165852 .text {
  12546. position:absolute;
  12547. align-self:flex-start;
  12548. padding:0px 0px 0px 0px;
  12549. box-sizing:border-box;
  12550. width:100%;
  12551. }
  12552. #u165852_text {
  12553. border-width:0px;
  12554. white-space:nowrap;
  12555. text-transform:none;
  12556. }
  12557. #u165853_div {
  12558. border-width:0px;
  12559. position:absolute;
  12560. left:0px;
  12561. top:0px;
  12562. width:132px;
  12563. height:24px;
  12564. background:inherit;
  12565. background-color:rgba(255, 255, 255, 0);
  12566. border:none;
  12567. border-left:0px;
  12568. border-top:0px;
  12569. border-right:0px;
  12570. border-radius:0px;
  12571. border-bottom-right-radius:0px;
  12572. border-bottom-left-radius:0px;
  12573. -moz-box-shadow:none;
  12574. -webkit-box-shadow:none;
  12575. box-shadow:none;
  12576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12577. font-weight:400;
  12578. font-style:normal;
  12579. font-size:10px;
  12580. color:#AAAAAA;
  12581. text-align:right;
  12582. line-height:24px;
  12583. }
  12584. #u165853 {
  12585. border-width:0px;
  12586. position:absolute;
  12587. left:1166px;
  12588. top:307px;
  12589. width:132px;
  12590. height:24px;
  12591. display:flex;
  12592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12593. font-weight:400;
  12594. font-style:normal;
  12595. font-size:10px;
  12596. color:#AAAAAA;
  12597. text-align:right;
  12598. line-height:24px;
  12599. }
  12600. #u165853 .text {
  12601. position:absolute;
  12602. align-self:flex-start;
  12603. padding:0px 0px 0px 0px;
  12604. box-sizing:border-box;
  12605. width:100%;
  12606. }
  12607. #u165853_text {
  12608. border-width:0px;
  12609. white-space:nowrap;
  12610. text-transform:none;
  12611. }
  12612. #u165854 {
  12613. border-width:0px;
  12614. position:absolute;
  12615. left:0px;
  12616. top:0px;
  12617. width:0px;
  12618. height:0px;
  12619. }
  12620. #u165855_div {
  12621. border-width:0px;
  12622. position:absolute;
  12623. left:0px;
  12624. top:0px;
  12625. width:375px;
  12626. height:110px;
  12627. background:inherit;
  12628. background-color:rgba(255, 255, 255, 1);
  12629. border:none;
  12630. border-top:0px;
  12631. border-radius:0px;
  12632. border-top-left-radius:0px;
  12633. border-top-right-radius:0px;
  12634. -moz-box-shadow:none;
  12635. -webkit-box-shadow:none;
  12636. box-shadow:none;
  12637. }
  12638. #u165855 {
  12639. border-width:0px;
  12640. position:absolute;
  12641. left:1418px;
  12642. top:1067px;
  12643. width:375px;
  12644. height:110px;
  12645. display:flex;
  12646. }
  12647. #u165855 .text {
  12648. position:absolute;
  12649. align-self:center;
  12650. padding:2px 2px 2px 2px;
  12651. box-sizing:border-box;
  12652. width:100%;
  12653. }
  12654. #u165855_text {
  12655. border-width:0px;
  12656. word-wrap:break-word;
  12657. text-transform:none;
  12658. visibility:hidden;
  12659. }
  12660. #u165856_div {
  12661. border-width:0px;
  12662. position:absolute;
  12663. left:0px;
  12664. top:0px;
  12665. width:124px;
  12666. height:90px;
  12667. background:inherit;
  12668. background-color:rgba(255, 255, 255, 0);
  12669. border:none;
  12670. border-left:0px;
  12671. border-top:0px;
  12672. border-right:0px;
  12673. border-radius:0px;
  12674. border-bottom-right-radius:0px;
  12675. border-bottom-left-radius:0px;
  12676. -moz-box-shadow:none;
  12677. -webkit-box-shadow:none;
  12678. box-shadow:none;
  12679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12680. font-weight:400;
  12681. font-style:normal;
  12682. font-size:12px;
  12683. text-align:right;
  12684. line-height:30px;
  12685. }
  12686. #u165856 {
  12687. border-width:0px;
  12688. position:absolute;
  12689. left:1645px;
  12690. top:1077px;
  12691. width:124px;
  12692. height:90px;
  12693. display:flex;
  12694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12695. font-weight:400;
  12696. font-style:normal;
  12697. font-size:12px;
  12698. text-align:right;
  12699. line-height:30px;
  12700. }
  12701. #u165856 .text {
  12702. position:absolute;
  12703. align-self:flex-start;
  12704. padding:0px 0px 0px 0px;
  12705. box-sizing:border-box;
  12706. width:100%;
  12707. }
  12708. #u165856_text {
  12709. border-width:0px;
  12710. white-space:nowrap;
  12711. text-transform:none;
  12712. }
  12713. #u165857_div {
  12714. border-width:0px;
  12715. position:absolute;
  12716. left:0px;
  12717. top:0px;
  12718. width:49px;
  12719. height:90px;
  12720. background:inherit;
  12721. background-color:rgba(255, 255, 255, 0);
  12722. border:none;
  12723. border-left:0px;
  12724. border-top:0px;
  12725. border-right:0px;
  12726. border-radius:0px;
  12727. border-bottom-right-radius:0px;
  12728. border-bottom-left-radius:0px;
  12729. -moz-box-shadow:none;
  12730. -webkit-box-shadow:none;
  12731. box-shadow:none;
  12732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12733. font-weight:400;
  12734. font-style:normal;
  12735. font-size:12px;
  12736. color:#7F7F7F;
  12737. line-height:30px;
  12738. }
  12739. #u165857 {
  12740. border-width:0px;
  12741. position:absolute;
  12742. left:1435px;
  12743. top:1077px;
  12744. width:49px;
  12745. height:90px;
  12746. display:flex;
  12747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12748. font-weight:400;
  12749. font-style:normal;
  12750. font-size:12px;
  12751. color:#7F7F7F;
  12752. line-height:30px;
  12753. }
  12754. #u165857 .text {
  12755. position:absolute;
  12756. align-self:flex-start;
  12757. padding:0px 0px 0px 0px;
  12758. box-sizing:border-box;
  12759. width:100%;
  12760. }
  12761. #u165857_text {
  12762. border-width:0px;
  12763. white-space:nowrap;
  12764. text-transform:none;
  12765. }
  12766. #u165858_div {
  12767. border-width:0px;
  12768. position:absolute;
  12769. left:0px;
  12770. top:0px;
  12771. width:334px;
  12772. height:40px;
  12773. background:inherit;
  12774. background-color:rgba(0, 137, 254, 0);
  12775. box-sizing:border-box;
  12776. border-width:1px;
  12777. border-style:solid;
  12778. border-color:rgba(215, 215, 215, 1);
  12779. border-radius:82px;
  12780. -moz-box-shadow:none;
  12781. -webkit-box-shadow:none;
  12782. box-shadow:none;
  12783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12784. font-weight:400;
  12785. font-style:normal;
  12786. font-size:14px;
  12787. color:#7F7F7F;
  12788. }
  12789. #u165858 {
  12790. border-width:0px;
  12791. position:absolute;
  12792. left:1438px;
  12793. top:1187px;
  12794. width:334px;
  12795. height:40px;
  12796. display:flex;
  12797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12798. font-weight:400;
  12799. font-style:normal;
  12800. font-size:14px;
  12801. color:#7F7F7F;
  12802. }
  12803. #u165858 .text {
  12804. position:absolute;
  12805. align-self:center;
  12806. padding:2px 2px 2px 2px;
  12807. box-sizing:border-box;
  12808. width:100%;
  12809. }
  12810. #u165858_text {
  12811. border-width:0px;
  12812. word-wrap:break-word;
  12813. text-transform:none;
  12814. }
  12815. #u165859 {
  12816. border-width:0px;
  12817. position:absolute;
  12818. left:0px;
  12819. top:0px;
  12820. width:0px;
  12821. height:0px;
  12822. }
  12823. #u165860_div {
  12824. border-width:0px;
  12825. position:absolute;
  12826. left:0px;
  12827. top:0px;
  12828. width:375px;
  12829. height:110px;
  12830. background:inherit;
  12831. background-color:rgba(255, 255, 255, 1);
  12832. border:none;
  12833. border-top:0px;
  12834. border-radius:0px;
  12835. border-top-left-radius:0px;
  12836. border-top-right-radius:0px;
  12837. -moz-box-shadow:none;
  12838. -webkit-box-shadow:none;
  12839. box-shadow:none;
  12840. }
  12841. #u165860 {
  12842. border-width:0px;
  12843. position:absolute;
  12844. left:1872px;
  12845. top:1338px;
  12846. width:375px;
  12847. height:110px;
  12848. display:flex;
  12849. }
  12850. #u165860 .text {
  12851. position:absolute;
  12852. align-self:center;
  12853. padding:2px 2px 2px 2px;
  12854. box-sizing:border-box;
  12855. width:100%;
  12856. }
  12857. #u165860_text {
  12858. border-width:0px;
  12859. word-wrap:break-word;
  12860. text-transform:none;
  12861. visibility:hidden;
  12862. }
  12863. #u165861_div {
  12864. border-width:0px;
  12865. position:absolute;
  12866. left:0px;
  12867. top:0px;
  12868. width:124px;
  12869. height:90px;
  12870. background:inherit;
  12871. background-color:rgba(255, 255, 255, 0);
  12872. border:none;
  12873. border-left:0px;
  12874. border-top:0px;
  12875. border-right:0px;
  12876. border-radius:0px;
  12877. border-bottom-right-radius:0px;
  12878. border-bottom-left-radius:0px;
  12879. -moz-box-shadow:none;
  12880. -webkit-box-shadow:none;
  12881. box-shadow:none;
  12882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12883. font-weight:400;
  12884. font-style:normal;
  12885. font-size:12px;
  12886. text-align:right;
  12887. line-height:30px;
  12888. }
  12889. #u165861 {
  12890. border-width:0px;
  12891. position:absolute;
  12892. left:2099px;
  12893. top:1348px;
  12894. width:124px;
  12895. height:90px;
  12896. display:flex;
  12897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12898. font-weight:400;
  12899. font-style:normal;
  12900. font-size:12px;
  12901. text-align:right;
  12902. line-height:30px;
  12903. }
  12904. #u165861 .text {
  12905. position:absolute;
  12906. align-self:flex-start;
  12907. padding:0px 0px 0px 0px;
  12908. box-sizing:border-box;
  12909. width:100%;
  12910. }
  12911. #u165861_text {
  12912. border-width:0px;
  12913. white-space:nowrap;
  12914. text-transform:none;
  12915. }
  12916. #u165862_div {
  12917. border-width:0px;
  12918. position:absolute;
  12919. left:0px;
  12920. top:0px;
  12921. width:49px;
  12922. height:90px;
  12923. background:inherit;
  12924. background-color:rgba(255, 255, 255, 0);
  12925. border:none;
  12926. border-left:0px;
  12927. border-top:0px;
  12928. border-right:0px;
  12929. border-radius:0px;
  12930. border-bottom-right-radius:0px;
  12931. border-bottom-left-radius:0px;
  12932. -moz-box-shadow:none;
  12933. -webkit-box-shadow:none;
  12934. box-shadow:none;
  12935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12936. font-weight:400;
  12937. font-style:normal;
  12938. font-size:12px;
  12939. color:#7F7F7F;
  12940. line-height:30px;
  12941. }
  12942. #u165862 {
  12943. border-width:0px;
  12944. position:absolute;
  12945. left:1889px;
  12946. top:1348px;
  12947. width:49px;
  12948. height:90px;
  12949. display:flex;
  12950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12951. font-weight:400;
  12952. font-style:normal;
  12953. font-size:12px;
  12954. color:#7F7F7F;
  12955. line-height:30px;
  12956. }
  12957. #u165862 .text {
  12958. position:absolute;
  12959. align-self:flex-start;
  12960. padding:0px 0px 0px 0px;
  12961. box-sizing:border-box;
  12962. width:100%;
  12963. }
  12964. #u165862_text {
  12965. border-width:0px;
  12966. white-space:nowrap;
  12967. text-transform:none;
  12968. }
  12969. #u165863_div {
  12970. border-width:0px;
  12971. position:absolute;
  12972. left:0px;
  12973. top:0px;
  12974. width:334px;
  12975. height:40px;
  12976. background:inherit;
  12977. background-color:rgba(0, 137, 254, 0);
  12978. box-sizing:border-box;
  12979. border-width:1px;
  12980. border-style:solid;
  12981. border-color:rgba(215, 215, 215, 1);
  12982. border-radius:82px;
  12983. -moz-box-shadow:none;
  12984. -webkit-box-shadow:none;
  12985. box-shadow:none;
  12986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12987. font-weight:400;
  12988. font-style:normal;
  12989. font-size:14px;
  12990. color:#7F7F7F;
  12991. }
  12992. #u165863 {
  12993. border-width:0px;
  12994. position:absolute;
  12995. left:1892px;
  12996. top:1458px;
  12997. width:334px;
  12998. height:40px;
  12999. display:flex;
  13000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13001. font-weight:400;
  13002. font-style:normal;
  13003. font-size:14px;
  13004. color:#7F7F7F;
  13005. }
  13006. #u165863 .text {
  13007. position:absolute;
  13008. align-self:center;
  13009. padding:2px 2px 2px 2px;
  13010. box-sizing:border-box;
  13011. width:100%;
  13012. }
  13013. #u165863_text {
  13014. border-width:0px;
  13015. word-wrap:break-word;
  13016. text-transform:none;
  13017. }