styles.css 169 KB

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