styles.css 136 KB

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