styles.css 171 KB

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