styles.css 131 KB

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