styles.css 241 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1510px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u1679 {
  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. #u1679 .text {
  30. position:absolute;
  31. align-self:center;
  32. padding:2px 2px 2px 2px;
  33. box-sizing:border-box;
  34. width:100%;
  35. }
  36. #u1679_img {
  37. border-width:0px;
  38. position:absolute;
  39. left:0px;
  40. top:0px;
  41. width:1510px;
  42. height:858px;
  43. }
  44. #u1679_text {
  45. border-width:0px;
  46. word-wrap:break-word;
  47. text-transform:none;
  48. visibility:hidden;
  49. }
  50. #u1680_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. #u1680 {
  79. border-width:0px;
  80. position:absolute;
  81. left:27px;
  82. top:107px;
  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. #u1680 .text {
  96. position:absolute;
  97. align-self:center;
  98. padding:2px 2px 2px 10px;
  99. box-sizing:border-box;
  100. width:100%;
  101. }
  102. #u1680_text {
  103. border-width:0px;
  104. word-wrap:break-word;
  105. text-transform:none;
  106. }
  107. #u1681_div {
  108. border-width:0px;
  109. position:absolute;
  110. left:0px;
  111. top:0px;
  112. width:240px;
  113. height:40px;
  114. background:inherit;
  115. background-color:rgba(245, 154, 35, 0.2);
  116. box-sizing:border-box;
  117. border-width:2px;
  118. border-style:solid;
  119. border-color:rgba(245, 154, 35, 1);
  120. border-left:0px;
  121. border-top:0px;
  122. border-right:0px;
  123. border-radius:0px;
  124. border-bottom-right-radius:0px;
  125. border-bottom-left-radius:0px;
  126. filter:drop-shadow(none);
  127. transition:none;
  128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  129. font-weight:400;
  130. font-style:normal;
  131. font-size:18px;
  132. color:#FFFFFF;
  133. text-align:left;
  134. }
  135. #u1681 {
  136. border-width:0px;
  137. position:absolute;
  138. left:1236px;
  139. top:107px;
  140. width:240px;
  141. height:40px;
  142. display:flex;
  143. transition:none;
  144. transform-origin:50% 50%;
  145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  146. font-weight:400;
  147. font-style:normal;
  148. font-size:18px;
  149. color:#FFFFFF;
  150. text-align:left;
  151. }
  152. #u1681 .text {
  153. position:absolute;
  154. align-self:center;
  155. padding:2px 2px 2px 10px;
  156. box-sizing:border-box;
  157. width:100%;
  158. }
  159. #u1681_text {
  160. border-width:0px;
  161. word-wrap:break-word;
  162. text-transform:none;
  163. }
  164. #u1682 {
  165. border-width:0px;
  166. position:absolute;
  167. left:41px;
  168. top:157px;
  169. width:96px;
  170. height:96px;
  171. display:flex;
  172. transition:none;
  173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  174. font-style:normal;
  175. color:#FFFFFF;
  176. }
  177. #u1682 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:2px 2px 2px 2px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u1682_img {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:96px;
  190. height:96px;
  191. }
  192. #u1682_text {
  193. border-width:0px;
  194. word-wrap:break-word;
  195. text-transform:none;
  196. }
  197. #u1683_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:70px;
  203. height:94px;
  204. background:inherit;
  205. background-color:rgba(255, 255, 255, 0);
  206. border-radius:0px;
  207. filter:drop-shadow(none);
  208. transition:none;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:12px;
  213. color:rgba(255, 255, 255, 0.6980392156862745);
  214. text-align:left;
  215. line-height:30px;
  216. }
  217. #u1683 {
  218. border-width:0px;
  219. position:absolute;
  220. left:157px;
  221. top:157px;
  222. width:70px;
  223. height:94px;
  224. display:flex;
  225. transition:none;
  226. transform-origin:50% 50%;
  227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  228. font-weight:400;
  229. font-style:normal;
  230. font-size:12px;
  231. color:rgba(255, 255, 255, 0.6980392156862745);
  232. text-align:left;
  233. line-height:30px;
  234. }
  235. #u1683 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u1683_text {
  243. border-width:0px;
  244. white-space:nowrap;
  245. text-transform:none;
  246. }
  247. #u1684_div {
  248. border-width:0px;
  249. position:absolute;
  250. left:0px;
  251. top:0px;
  252. width:98px;
  253. height:34px;
  254. background:inherit;
  255. background-color:rgba(255, 255, 255, 0);
  256. border-radius:0px;
  257. filter:drop-shadow(none);
  258. transition:none;
  259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  260. font-weight:400;
  261. font-style:normal;
  262. font-size:12px;
  263. color:rgba(255, 255, 255, 0.6980392156862745);
  264. text-align:left;
  265. line-height:30px;
  266. }
  267. #u1684 {
  268. border-width:0px;
  269. position:absolute;
  270. left:9px;
  271. top:262px;
  272. width:98px;
  273. height:34px;
  274. display:flex;
  275. transition:none;
  276. transform-origin:50% 50%;
  277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  278. font-weight:400;
  279. font-style:normal;
  280. font-size:12px;
  281. color:rgba(255, 255, 255, 0.6980392156862745);
  282. text-align:left;
  283. line-height:30px;
  284. }
  285. #u1684 .text {
  286. position:absolute;
  287. align-self:center;
  288. padding:2px 2px 2px 2px;
  289. box-sizing:border-box;
  290. width:100%;
  291. }
  292. #u1684_text {
  293. border-width:0px;
  294. white-space:nowrap;
  295. text-transform:none;
  296. }
  297. #u1685_div {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:98px;
  303. height:34px;
  304. background:inherit;
  305. background-color:rgba(255, 255, 255, 0);
  306. border-radius:0px;
  307. filter:drop-shadow(none);
  308. transition:none;
  309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  310. font-weight:400;
  311. font-style:normal;
  312. font-size:12px;
  313. color:rgba(255, 255, 255, 0.6980392156862745);
  314. text-align:left;
  315. line-height:30px;
  316. }
  317. #u1685 {
  318. border-width:0px;
  319. position:absolute;
  320. left:124px;
  321. top:262px;
  322. width:98px;
  323. height:34px;
  324. display:flex;
  325. opacity:0.9;
  326. transition:none;
  327. transform-origin:50% 50%;
  328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  329. font-weight:400;
  330. font-style:normal;
  331. font-size:12px;
  332. color:rgba(255, 255, 255, 0.6980392156862745);
  333. text-align:left;
  334. line-height:30px;
  335. }
  336. #u1685 .text {
  337. position:absolute;
  338. align-self:center;
  339. padding:2px 2px 2px 2px;
  340. box-sizing:border-box;
  341. width:100%;
  342. }
  343. #u1685_text {
  344. border-width:0px;
  345. white-space:nowrap;
  346. text-transform:none;
  347. }
  348. #u1686_div {
  349. border-width:0px;
  350. position:absolute;
  351. left:0px;
  352. top:0px;
  353. width:240px;
  354. height:40px;
  355. background:inherit;
  356. background-color:rgba(245, 154, 35, 0.2);
  357. box-sizing:border-box;
  358. border-width:2px;
  359. border-style:solid;
  360. border-color:rgba(245, 154, 35, 1);
  361. border-left:0px;
  362. border-top:0px;
  363. border-right:0px;
  364. border-radius:0px;
  365. border-bottom-right-radius:0px;
  366. border-bottom-left-radius:0px;
  367. filter:drop-shadow(none);
  368. transition:none;
  369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  370. font-weight:400;
  371. font-style:normal;
  372. font-size:18px;
  373. color:#FFFFFF;
  374. text-align:left;
  375. }
  376. #u1686 {
  377. border-width:0px;
  378. position:absolute;
  379. left:27px;
  380. top:311px;
  381. width:240px;
  382. height:40px;
  383. display:flex;
  384. transition:none;
  385. transform-origin:50% 50%;
  386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  387. font-weight:400;
  388. font-style:normal;
  389. font-size:18px;
  390. color:#FFFFFF;
  391. text-align:left;
  392. }
  393. #u1686 .text {
  394. position:absolute;
  395. align-self:center;
  396. padding:2px 2px 2px 10px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u1686_text {
  401. border-width:0px;
  402. word-wrap:break-word;
  403. text-transform:none;
  404. }
  405. #u1687_div {
  406. border-width:0px;
  407. position:absolute;
  408. left:0px;
  409. top:0px;
  410. width:29px;
  411. height:124px;
  412. background:inherit;
  413. background-color:rgba(255, 255, 255, 0);
  414. border-radius:0px;
  415. filter:drop-shadow(none);
  416. transition:none;
  417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  418. font-weight:400;
  419. font-style:normal;
  420. font-size:12px;
  421. color:rgba(255, 255, 255, 0.6980392156862745);
  422. text-align:left;
  423. line-height:30px;
  424. }
  425. #u1687 {
  426. border-width:0px;
  427. position:absolute;
  428. left:37px;
  429. top:429px;
  430. width:29px;
  431. height:124px;
  432. display:flex;
  433. transition:none;
  434. transform-origin:50% 50%;
  435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  436. font-weight:400;
  437. font-style:normal;
  438. font-size:12px;
  439. color:rgba(255, 255, 255, 0.6980392156862745);
  440. text-align:left;
  441. line-height:30px;
  442. }
  443. #u1687 .text {
  444. position:absolute;
  445. align-self:center;
  446. padding:2px 2px 2px 2px;
  447. box-sizing:border-box;
  448. width:100%;
  449. }
  450. #u1687_text {
  451. border-width:0px;
  452. white-space:nowrap;
  453. text-transform:none;
  454. }
  455. #u1688 {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:0px;
  461. height:0px;
  462. }
  463. #u1689 {
  464. border-width:0px;
  465. position:absolute;
  466. left:1207px;
  467. top:-325px;
  468. width:114px;
  469. height:80px;
  470. display:flex;
  471. transition:none;
  472. }
  473. #u1689 .text {
  474. position:absolute;
  475. align-self:center;
  476. padding:2px 2px 2px 2px;
  477. box-sizing:border-box;
  478. width:100%;
  479. }
  480. #u1689_img {
  481. border-width:0px;
  482. position:absolute;
  483. left:0px;
  484. top:0px;
  485. width:114px;
  486. height:80px;
  487. }
  488. #u1689_text {
  489. border-width:0px;
  490. word-wrap:break-word;
  491. text-transform:none;
  492. visibility:hidden;
  493. }
  494. #u1690 {
  495. border-width:0px;
  496. position:absolute;
  497. left:1327px;
  498. top:-325px;
  499. width:114px;
  500. height:80px;
  501. display:flex;
  502. transition:none;
  503. }
  504. #u1690 .text {
  505. position:absolute;
  506. align-self:center;
  507. padding:2px 2px 2px 2px;
  508. box-sizing:border-box;
  509. width:100%;
  510. }
  511. #u1690_img {
  512. border-width:0px;
  513. position:absolute;
  514. left:0px;
  515. top:0px;
  516. width:114px;
  517. height:80px;
  518. }
  519. #u1690_text {
  520. border-width:0px;
  521. word-wrap:break-word;
  522. text-transform:none;
  523. visibility:hidden;
  524. }
  525. #u1691 {
  526. border-width:0px;
  527. position:absolute;
  528. left:1207px;
  529. top:-240px;
  530. width:114px;
  531. height:80px;
  532. display:flex;
  533. transition:none;
  534. }
  535. #u1691 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u1691_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:114px;
  548. height:80px;
  549. }
  550. #u1691_text {
  551. border-width:0px;
  552. word-wrap:break-word;
  553. text-transform:none;
  554. visibility:hidden;
  555. }
  556. #u1692 {
  557. border-width:0px;
  558. position:absolute;
  559. left:1327px;
  560. top:-240px;
  561. width:114px;
  562. height:80px;
  563. display:flex;
  564. transition:none;
  565. }
  566. #u1692 .text {
  567. position:absolute;
  568. align-self:center;
  569. padding:2px 2px 2px 2px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u1692_img {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:114px;
  579. height:80px;
  580. }
  581. #u1692_text {
  582. border-width:0px;
  583. word-wrap:break-word;
  584. text-transform:none;
  585. visibility:hidden;
  586. }
  587. #u1693_div {
  588. border-width:0px;
  589. position:absolute;
  590. left:0px;
  591. top:0px;
  592. width:19px;
  593. height:13px;
  594. background:inherit;
  595. background-color:rgba(217, 0, 27, 1);
  596. border-radius:4px;
  597. filter:drop-shadow(none);
  598. transition:none;
  599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  600. font-weight:400;
  601. font-style:normal;
  602. font-size:7px;
  603. color:#FFFFFF;
  604. }
  605. #u1693 {
  606. border-width:0px;
  607. position:absolute;
  608. left:1302px;
  609. top:-325px;
  610. width:19px;
  611. height:13px;
  612. display:flex;
  613. transition:none;
  614. transform-origin:50% 50%;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:7px;
  619. color:#FFFFFF;
  620. }
  621. #u1693 .text {
  622. position:absolute;
  623. align-self:center;
  624. padding:2px 2px 2px 2px;
  625. box-sizing:border-box;
  626. width:100%;
  627. }
  628. #u1693_text {
  629. border-width:0px;
  630. white-space:nowrap;
  631. text-transform:none;
  632. }
  633. #u1694_div {
  634. border-width:0px;
  635. position:absolute;
  636. left:0px;
  637. top:0px;
  638. width:240px;
  639. height:40px;
  640. background:inherit;
  641. background-color:rgba(245, 154, 35, 0.2);
  642. box-sizing:border-box;
  643. border-width:2px;
  644. border-style:solid;
  645. border-color:rgba(245, 154, 35, 1);
  646. border-left:0px;
  647. border-top:0px;
  648. border-right:0px;
  649. border-radius:0px;
  650. border-bottom-right-radius:0px;
  651. border-bottom-left-radius:0px;
  652. filter:drop-shadow(none);
  653. transition:none;
  654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  655. font-weight:400;
  656. font-style:normal;
  657. font-size:18px;
  658. color:#FFFFFF;
  659. text-align:left;
  660. }
  661. #u1694 {
  662. border-width:0px;
  663. position:absolute;
  664. left:1236px;
  665. top:492px;
  666. width:240px;
  667. height:40px;
  668. display:flex;
  669. transition:none;
  670. transform-origin:50% 50%;
  671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  672. font-weight:400;
  673. font-style:normal;
  674. font-size:18px;
  675. color:#FFFFFF;
  676. text-align:left;
  677. }
  678. #u1694 .text {
  679. position:absolute;
  680. align-self:center;
  681. padding:2px 2px 2px 10px;
  682. box-sizing:border-box;
  683. width:100%;
  684. }
  685. #u1694_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. }
  690. #u1695_div {
  691. border-width:0px;
  692. position:absolute;
  693. left:0px;
  694. top:0px;
  695. width:29px;
  696. height:34px;
  697. background:inherit;
  698. background-color:rgba(255, 255, 255, 0);
  699. border-radius:0px;
  700. filter:drop-shadow(none);
  701. transition:none;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:12px;
  706. color:rgba(255, 255, 255, 0.6980392156862745);
  707. text-align:left;
  708. line-height:30px;
  709. }
  710. #u1695 {
  711. border-width:0px;
  712. position:absolute;
  713. left:1437px;
  714. top:495px;
  715. width:29px;
  716. height:34px;
  717. display:flex;
  718. transition:none;
  719. transform-origin:50% 50%;
  720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  721. font-weight:400;
  722. font-style:normal;
  723. font-size:12px;
  724. color:rgba(255, 255, 255, 0.6980392156862745);
  725. text-align:left;
  726. line-height:30px;
  727. }
  728. #u1695 .text {
  729. position:absolute;
  730. align-self:center;
  731. padding:2px 2px 2px 2px;
  732. box-sizing:border-box;
  733. width:100%;
  734. }
  735. #u1695_text {
  736. border-width:0px;
  737. white-space:nowrap;
  738. text-transform:none;
  739. }
  740. #u1696_div {
  741. border-width:0px;
  742. position:absolute;
  743. left:0px;
  744. top:0px;
  745. width:83px;
  746. height:24px;
  747. background:inherit;
  748. background-color:rgba(245, 154, 35, 0);
  749. border-left:0px;
  750. border-top:0px;
  751. border-right:0px;
  752. border-radius:0px;
  753. border-bottom-right-radius:0px;
  754. border-bottom-left-radius:0px;
  755. filter:drop-shadow(none);
  756. transition:none;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:14px;
  761. color:#FFFFFF;
  762. text-align:left;
  763. }
  764. #u1696 {
  765. border-width:0px;
  766. position:absolute;
  767. left:64px;
  768. top:367px;
  769. width:83px;
  770. height:24px;
  771. display:flex;
  772. transition:none;
  773. transform-origin:50% 50%;
  774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  775. font-weight:400;
  776. font-style:normal;
  777. font-size:14px;
  778. color:#FFFFFF;
  779. text-align:left;
  780. }
  781. #u1696 .text {
  782. position:absolute;
  783. align-self:center;
  784. padding:2px 2px 2px 10px;
  785. box-sizing:border-box;
  786. width:100%;
  787. }
  788. #u1696_text {
  789. border-width:0px;
  790. white-space:nowrap;
  791. text-transform:none;
  792. }
  793. #u1697_div {
  794. border-width:0px;
  795. position:absolute;
  796. left:0px;
  797. top:0px;
  798. width:67px;
  799. height:29px;
  800. background:inherit;
  801. background-color:rgba(245, 154, 35, 0);
  802. border-left:0px;
  803. border-top:0px;
  804. border-right:0px;
  805. border-radius:0px;
  806. border-bottom-right-radius:0px;
  807. border-bottom-left-radius:0px;
  808. filter:drop-shadow(none);
  809. transition:none;
  810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  811. font-weight:500;
  812. font-style:normal;
  813. font-size:18px;
  814. color:#FFFFFF;
  815. text-align:left;
  816. }
  817. #u1697 {
  818. border-width:0px;
  819. position:absolute;
  820. left:147px;
  821. top:364px;
  822. width:67px;
  823. height:29px;
  824. display:flex;
  825. transition:none;
  826. transform-origin:50% 50%;
  827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  828. font-weight:500;
  829. font-style:normal;
  830. font-size:18px;
  831. color:#FFFFFF;
  832. text-align:left;
  833. }
  834. #u1697 .text {
  835. position:absolute;
  836. align-self:center;
  837. padding:2px 2px 2px 10px;
  838. box-sizing:border-box;
  839. width:100%;
  840. }
  841. #u1697_text {
  842. border-width:0px;
  843. white-space:nowrap;
  844. text-transform:none;
  845. }
  846. #u1698_div {
  847. border-width:0px;
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:27px;
  852. height:124px;
  853. background:inherit;
  854. background-color:rgba(255, 255, 255, 0);
  855. border-radius:0px;
  856. filter:drop-shadow(none);
  857. transition:none;
  858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  859. font-weight:400;
  860. font-style:normal;
  861. font-size:12px;
  862. color:rgba(255, 255, 255, 0.6980392156862745);
  863. text-align:left;
  864. line-height:30px;
  865. }
  866. #u1698 {
  867. border-width:0px;
  868. position:absolute;
  869. left:192px;
  870. top:429px;
  871. width:27px;
  872. height:124px;
  873. display:flex;
  874. transition:none;
  875. transform-origin:50% 50%;
  876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  877. font-weight:400;
  878. font-style:normal;
  879. font-size:12px;
  880. color:rgba(255, 255, 255, 0.6980392156862745);
  881. text-align:left;
  882. line-height:30px;
  883. }
  884. #u1698 .text {
  885. position:absolute;
  886. align-self:center;
  887. padding:2px 2px 2px 2px;
  888. box-sizing:border-box;
  889. width:100%;
  890. }
  891. #u1698_text {
  892. border-width:0px;
  893. white-space:nowrap;
  894. text-transform:none;
  895. }
  896. #u1699_div {
  897. border-width:0px;
  898. position:absolute;
  899. left:0px;
  900. top:0px;
  901. width:31px;
  902. height:124px;
  903. background:inherit;
  904. background-color:rgba(255, 255, 255, 0);
  905. border-radius:0px;
  906. filter:drop-shadow(none);
  907. transition:none;
  908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  909. font-weight:400;
  910. font-style:normal;
  911. font-size:12px;
  912. color:rgba(255, 255, 255, 0.6980392156862745);
  913. text-align:left;
  914. line-height:30px;
  915. }
  916. #u1699 {
  917. border-width:0px;
  918. position:absolute;
  919. left:238px;
  920. top:429px;
  921. width:31px;
  922. height:124px;
  923. display:flex;
  924. transition:none;
  925. transform-origin:50% 50%;
  926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  927. font-weight:400;
  928. font-style:normal;
  929. font-size:12px;
  930. color:rgba(255, 255, 255, 0.6980392156862745);
  931. text-align:left;
  932. line-height:30px;
  933. }
  934. #u1699 .text {
  935. position:absolute;
  936. align-self:center;
  937. padding:2px 2px 2px 2px;
  938. box-sizing:border-box;
  939. width:100%;
  940. }
  941. #u1699_text {
  942. border-width:0px;
  943. white-space:nowrap;
  944. text-transform:none;
  945. }
  946. #u1700_div {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:65px;
  952. height:30px;
  953. background:inherit;
  954. background-color:rgba(245, 154, 35, 0);
  955. box-sizing:border-box;
  956. border-width:2px;
  957. border-style:solid;
  958. border-color:rgba(245, 154, 35, 1);
  959. border-left:0px;
  960. border-top:0px;
  961. border-right:0px;
  962. border-radius:0px;
  963. border-bottom-right-radius:0px;
  964. border-bottom-left-radius:0px;
  965. filter:drop-shadow(none);
  966. transition:none;
  967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. font-size:12px;
  971. color:#FFFFFF;
  972. text-align:left;
  973. }
  974. #u1700 {
  975. border-width:0px;
  976. position:absolute;
  977. left:37px;
  978. top:399px;
  979. width:65px;
  980. height:30px;
  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:#FFFFFF;
  989. text-align:left;
  990. }
  991. #u1700 .text {
  992. position:absolute;
  993. align-self:center;
  994. padding:2px 2px 2px 2px;
  995. box-sizing:border-box;
  996. width:100%;
  997. }
  998. #u1700_text {
  999. border-width:0px;
  1000. white-space:nowrap;
  1001. text-transform:none;
  1002. }
  1003. #u1701_div {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:53px;
  1009. height:30px;
  1010. background:inherit;
  1011. background-color:rgba(245, 154, 35, 0);
  1012. border-left:0px;
  1013. border-top:0px;
  1014. border-right:0px;
  1015. border-radius:0px;
  1016. border-bottom-right-radius:0px;
  1017. border-bottom-left-radius:0px;
  1018. filter:drop-shadow(none);
  1019. transition:none;
  1020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1021. font-weight:400;
  1022. font-style:normal;
  1023. font-size:12px;
  1024. color:#FFFFFF;
  1025. text-align:left;
  1026. }
  1027. #u1701 {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:122px;
  1031. top:399px;
  1032. width:53px;
  1033. height:30px;
  1034. display:flex;
  1035. transition:none;
  1036. transform-origin:50% 50%;
  1037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1038. font-weight:400;
  1039. font-style:normal;
  1040. font-size:12px;
  1041. color:#FFFFFF;
  1042. text-align:left;
  1043. }
  1044. #u1701 .text {
  1045. position:absolute;
  1046. align-self:center;
  1047. padding:2px 2px 2px 2px;
  1048. box-sizing:border-box;
  1049. width:100%;
  1050. }
  1051. #u1701_text {
  1052. border-width:0px;
  1053. white-space:nowrap;
  1054. text-transform:none;
  1055. }
  1056. #u1702_div {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:240px;
  1062. height:40px;
  1063. background:inherit;
  1064. background-color:rgba(245, 154, 35, 0.2);
  1065. box-sizing:border-box;
  1066. border-width:2px;
  1067. border-style:solid;
  1068. border-color:rgba(245, 154, 35, 1);
  1069. border-left:0px;
  1070. border-top:0px;
  1071. border-right:0px;
  1072. border-radius:0px;
  1073. border-bottom-right-radius:0px;
  1074. border-bottom-left-radius:0px;
  1075. filter:drop-shadow(none);
  1076. transition:none;
  1077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:18px;
  1081. color:#FFFFFF;
  1082. text-align:left;
  1083. }
  1084. #u1702 {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:27px;
  1088. top:565px;
  1089. width:240px;
  1090. height:40px;
  1091. display:flex;
  1092. transition:none;
  1093. transform-origin:50% 50%;
  1094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1095. font-weight:400;
  1096. font-style:normal;
  1097. font-size:18px;
  1098. color:#FFFFFF;
  1099. text-align:left;
  1100. }
  1101. #u1702 .text {
  1102. position:absolute;
  1103. align-self:center;
  1104. padding:2px 2px 2px 10px;
  1105. box-sizing:border-box;
  1106. width:100%;
  1107. }
  1108. #u1702_text {
  1109. border-width:0px;
  1110. word-wrap:break-word;
  1111. text-transform:none;
  1112. }
  1113. #u1703 {
  1114. border-width:0px;
  1115. position:absolute;
  1116. left:0px;
  1117. top:0px;
  1118. width:0px;
  1119. height:0px;
  1120. }
  1121. #u1704_div {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:0px;
  1126. width:14px;
  1127. height:11px;
  1128. background:inherit;
  1129. background-color:rgba(255, 255, 255, 0);
  1130. border-radius:0px;
  1131. filter:drop-shadow(none);
  1132. transition:none;
  1133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1134. font-weight:400;
  1135. font-style:normal;
  1136. font-size:8px;
  1137. color:rgba(255, 255, 255, 0.43529411764705883);
  1138. }
  1139. #u1704 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:27px;
  1143. top:753px;
  1144. width:14px;
  1145. height:11px;
  1146. display:flex;
  1147. transition:none;
  1148. transform-origin:50% 50%;
  1149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1150. font-weight:400;
  1151. font-style:normal;
  1152. font-size:8px;
  1153. color:rgba(255, 255, 255, 0.43529411764705883);
  1154. }
  1155. #u1704 .text {
  1156. position:absolute;
  1157. align-self:flex-start;
  1158. padding:0px 0px 0px 0px;
  1159. box-sizing:border-box;
  1160. width:100%;
  1161. }
  1162. #u1704_text {
  1163. border-width:0px;
  1164. white-space:nowrap;
  1165. text-transform:none;
  1166. }
  1167. #u1705_div {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:14px;
  1173. height:11px;
  1174. background:inherit;
  1175. background-color:rgba(255, 255, 255, 0);
  1176. border-radius:0px;
  1177. filter:drop-shadow(none);
  1178. transition:none;
  1179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1180. font-weight:400;
  1181. font-style:normal;
  1182. font-size:8px;
  1183. color:rgba(255, 255, 255, 0.43529411764705883);
  1184. }
  1185. #u1705 {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:45px;
  1189. top:753px;
  1190. width:14px;
  1191. height:11px;
  1192. display:flex;
  1193. transition:none;
  1194. transform-origin:50% 50%;
  1195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1196. font-weight:400;
  1197. font-style:normal;
  1198. font-size:8px;
  1199. color:rgba(255, 255, 255, 0.43529411764705883);
  1200. }
  1201. #u1705 .text {
  1202. position:absolute;
  1203. align-self:flex-start;
  1204. padding:0px 0px 0px 0px;
  1205. box-sizing:border-box;
  1206. width:100%;
  1207. }
  1208. #u1705_text {
  1209. border-width:0px;
  1210. white-space:nowrap;
  1211. text-transform:none;
  1212. }
  1213. #u1706_div {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:14px;
  1219. height:11px;
  1220. background:inherit;
  1221. background-color:rgba(255, 255, 255, 0);
  1222. border-radius:0px;
  1223. filter:drop-shadow(none);
  1224. transition:none;
  1225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1226. font-weight:400;
  1227. font-style:normal;
  1228. font-size:8px;
  1229. color:rgba(255, 255, 255, 0.43529411764705883);
  1230. }
  1231. #u1706 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:64px;
  1235. top:753px;
  1236. width:14px;
  1237. height:11px;
  1238. display:flex;
  1239. transition:none;
  1240. transform-origin:50% 50%;
  1241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1242. font-weight:400;
  1243. font-style:normal;
  1244. font-size:8px;
  1245. color:rgba(255, 255, 255, 0.43529411764705883);
  1246. }
  1247. #u1706 .text {
  1248. position:absolute;
  1249. align-self:flex-start;
  1250. padding:0px 0px 0px 0px;
  1251. box-sizing:border-box;
  1252. width:100%;
  1253. }
  1254. #u1706_text {
  1255. border-width:0px;
  1256. white-space:nowrap;
  1257. text-transform:none;
  1258. }
  1259. #u1707_div {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:14px;
  1265. height:11px;
  1266. background:inherit;
  1267. background-color:rgba(255, 255, 255, 0);
  1268. border-radius:0px;
  1269. filter:drop-shadow(none);
  1270. transition:none;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. font-size:8px;
  1275. color:rgba(255, 255, 255, 0.43529411764705883);
  1276. }
  1277. #u1707 {
  1278. border-width:0px;
  1279. position:absolute;
  1280. left:82px;
  1281. top:753px;
  1282. width:14px;
  1283. height:11px;
  1284. display:flex;
  1285. transition:none;
  1286. transform-origin:50% 50%;
  1287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1288. font-weight:400;
  1289. font-style:normal;
  1290. font-size:8px;
  1291. color:rgba(255, 255, 255, 0.43529411764705883);
  1292. }
  1293. #u1707 .text {
  1294. position:absolute;
  1295. align-self:flex-start;
  1296. padding:0px 0px 0px 0px;
  1297. box-sizing:border-box;
  1298. width:100%;
  1299. }
  1300. #u1707_text {
  1301. border-width:0px;
  1302. white-space:nowrap;
  1303. text-transform:none;
  1304. }
  1305. #u1708_div {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:14px;
  1311. height:11px;
  1312. background:inherit;
  1313. background-color:rgba(255, 255, 255, 0);
  1314. border-radius:0px;
  1315. filter:drop-shadow(none);
  1316. transition:none;
  1317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1318. font-weight:400;
  1319. font-style:normal;
  1320. font-size:8px;
  1321. color:rgba(255, 255, 255, 0.43529411764705883);
  1322. }
  1323. #u1708 {
  1324. border-width:0px;
  1325. position:absolute;
  1326. left:100px;
  1327. top:753px;
  1328. width:14px;
  1329. height:11px;
  1330. display:flex;
  1331. transition:none;
  1332. transform-origin:50% 50%;
  1333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1334. font-weight:400;
  1335. font-style:normal;
  1336. font-size:8px;
  1337. color:rgba(255, 255, 255, 0.43529411764705883);
  1338. }
  1339. #u1708 .text {
  1340. position:absolute;
  1341. align-self:flex-start;
  1342. padding:0px 0px 0px 0px;
  1343. box-sizing:border-box;
  1344. width:100%;
  1345. }
  1346. #u1708_text {
  1347. border-width:0px;
  1348. white-space:nowrap;
  1349. text-transform:none;
  1350. }
  1351. #u1709_div {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:17px;
  1357. height:11px;
  1358. background:inherit;
  1359. background-color:rgba(255, 255, 255, 0);
  1360. border-radius:0px;
  1361. filter:drop-shadow(none);
  1362. transition:none;
  1363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:8px;
  1367. color:rgba(255, 255, 255, 0.43529411764705883);
  1368. }
  1369. #u1709 {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:119px;
  1373. top:753px;
  1374. width:17px;
  1375. height:11px;
  1376. display:flex;
  1377. transition:none;
  1378. transform-origin:50% 50%;
  1379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1380. font-weight:400;
  1381. font-style:normal;
  1382. font-size:8px;
  1383. color:rgba(255, 255, 255, 0.43529411764705883);
  1384. }
  1385. #u1709 .text {
  1386. position:absolute;
  1387. align-self:flex-start;
  1388. padding:0px 0px 0px 0px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u1709_text {
  1393. border-width:0px;
  1394. white-space:nowrap;
  1395. text-transform:none;
  1396. }
  1397. #u1710_div {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:17px;
  1403. height:11px;
  1404. background:inherit;
  1405. background-color:rgba(255, 255, 255, 0);
  1406. border-radius:0px;
  1407. filter:drop-shadow(none);
  1408. transition:none;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:8px;
  1413. color:rgba(255, 255, 255, 0.43529411764705883);
  1414. }
  1415. #u1710 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:140px;
  1419. top:753px;
  1420. width:17px;
  1421. height:11px;
  1422. display:flex;
  1423. transition:none;
  1424. transform-origin:50% 50%;
  1425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1426. font-weight:400;
  1427. font-style:normal;
  1428. font-size:8px;
  1429. color:rgba(255, 255, 255, 0.43529411764705883);
  1430. }
  1431. #u1710 .text {
  1432. position:absolute;
  1433. align-self:flex-start;
  1434. padding:0px 0px 0px 0px;
  1435. box-sizing:border-box;
  1436. width:100%;
  1437. }
  1438. #u1710_text {
  1439. border-width:0px;
  1440. white-space:nowrap;
  1441. text-transform:none;
  1442. }
  1443. #u1711_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:17px;
  1449. height:11px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border-radius:0px;
  1453. filter:drop-shadow(none);
  1454. transition:none;
  1455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1456. font-weight:400;
  1457. font-style:normal;
  1458. font-size:8px;
  1459. color:rgba(255, 255, 255, 0.43529411764705883);
  1460. }
  1461. #u1711 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:162px;
  1465. top:753px;
  1466. width:17px;
  1467. height:11px;
  1468. display:flex;
  1469. transition:none;
  1470. transform-origin:50% 50%;
  1471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1472. font-weight:400;
  1473. font-style:normal;
  1474. font-size:8px;
  1475. color:rgba(255, 255, 255, 0.43529411764705883);
  1476. }
  1477. #u1711 .text {
  1478. position:absolute;
  1479. align-self:flex-start;
  1480. padding:0px 0px 0px 0px;
  1481. box-sizing:border-box;
  1482. width:100%;
  1483. }
  1484. #u1711_text {
  1485. border-width:0px;
  1486. white-space:nowrap;
  1487. text-transform:none;
  1488. }
  1489. #u1712_div {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:0px;
  1493. top:0px;
  1494. width:17px;
  1495. height:11px;
  1496. background:inherit;
  1497. background-color:rgba(255, 255, 255, 0);
  1498. border-radius:0px;
  1499. filter:drop-shadow(none);
  1500. transition:none;
  1501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1502. font-weight:400;
  1503. font-style:normal;
  1504. font-size:8px;
  1505. color:rgba(255, 255, 255, 0.43529411764705883);
  1506. }
  1507. #u1712 {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:183px;
  1511. top:753px;
  1512. width:17px;
  1513. height:11px;
  1514. display:flex;
  1515. transition:none;
  1516. transform-origin:50% 50%;
  1517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1518. font-weight:400;
  1519. font-style:normal;
  1520. font-size:8px;
  1521. color:rgba(255, 255, 255, 0.43529411764705883);
  1522. }
  1523. #u1712 .text {
  1524. position:absolute;
  1525. align-self:flex-start;
  1526. padding:0px 0px 0px 0px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u1712_text {
  1531. border-width:0px;
  1532. white-space:nowrap;
  1533. text-transform:none;
  1534. }
  1535. #u1713_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:17px;
  1541. height:11px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 255, 0);
  1544. border-radius:0px;
  1545. filter:drop-shadow(none);
  1546. transition:none;
  1547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1548. font-weight:400;
  1549. font-style:normal;
  1550. font-size:8px;
  1551. color:rgba(255, 255, 255, 0.43529411764705883);
  1552. }
  1553. #u1713 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:204px;
  1557. top:753px;
  1558. width:17px;
  1559. height:11px;
  1560. display:flex;
  1561. transition:none;
  1562. transform-origin:50% 50%;
  1563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1564. font-weight:400;
  1565. font-style:normal;
  1566. font-size:8px;
  1567. color:rgba(255, 255, 255, 0.43529411764705883);
  1568. }
  1569. #u1713 .text {
  1570. position:absolute;
  1571. align-self:flex-start;
  1572. padding:0px 0px 0px 0px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u1713_text {
  1577. border-width:0px;
  1578. white-space:nowrap;
  1579. text-transform:none;
  1580. }
  1581. #u1714_div {
  1582. border-width:0px;
  1583. position:absolute;
  1584. left:0px;
  1585. top:0px;
  1586. width:19px;
  1587. height:11px;
  1588. background:inherit;
  1589. background-color:rgba(255, 255, 255, 0);
  1590. border-radius:0px;
  1591. filter:drop-shadow(none);
  1592. transition:none;
  1593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1594. font-weight:400;
  1595. font-style:normal;
  1596. font-size:8px;
  1597. color:rgba(255, 255, 255, 0.43529411764705883);
  1598. }
  1599. #u1714 {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:226px;
  1603. top:753px;
  1604. width:19px;
  1605. height:11px;
  1606. display:flex;
  1607. transition:none;
  1608. transform-origin:50% 50%;
  1609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1610. font-weight:400;
  1611. font-style:normal;
  1612. font-size:8px;
  1613. color:rgba(255, 255, 255, 0.43529411764705883);
  1614. }
  1615. #u1714 .text {
  1616. position:absolute;
  1617. align-self:flex-start;
  1618. padding:0px 0px 0px 0px;
  1619. box-sizing:border-box;
  1620. width:100%;
  1621. }
  1622. #u1714_text {
  1623. border-width:0px;
  1624. white-space:nowrap;
  1625. text-transform:none;
  1626. }
  1627. #u1715_div {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:19px;
  1633. height:11px;
  1634. background:inherit;
  1635. background-color:rgba(255, 255, 255, 0);
  1636. border-radius:0px;
  1637. filter:drop-shadow(none);
  1638. transition:none;
  1639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1640. font-weight:400;
  1641. font-style:normal;
  1642. font-size:8px;
  1643. color:rgba(255, 255, 255, 0.43529411764705883);
  1644. }
  1645. #u1715 {
  1646. border-width:0px;
  1647. position:absolute;
  1648. left:249px;
  1649. top:753px;
  1650. width:19px;
  1651. height:11px;
  1652. display:flex;
  1653. transition:none;
  1654. transform-origin:50% 50%;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:8px;
  1659. color:rgba(255, 255, 255, 0.43529411764705883);
  1660. }
  1661. #u1715 .text {
  1662. position:absolute;
  1663. align-self:flex-start;
  1664. padding:0px 0px 0px 0px;
  1665. box-sizing:border-box;
  1666. width:100%;
  1667. }
  1668. #u1715_text {
  1669. border-width:0px;
  1670. white-space:nowrap;
  1671. text-transform:none;
  1672. }
  1673. #u1716 {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:0px;
  1679. height:0px;
  1680. }
  1681. #u1717 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:28px;
  1685. top:642px;
  1686. width:239px;
  1687. height:84px;
  1688. display:flex;
  1689. transition:none;
  1690. color:rgba(255, 255, 255, 0.43529411764705883);
  1691. }
  1692. #u1717 .text {
  1693. position:absolute;
  1694. align-self:center;
  1695. padding:2px 2px 2px 2px;
  1696. box-sizing:border-box;
  1697. width:100%;
  1698. }
  1699. #u1717_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:240px;
  1705. height:85px;
  1706. }
  1707. #u1717_text {
  1708. border-width:0px;
  1709. word-wrap:break-word;
  1710. text-transform:none;
  1711. visibility:hidden;
  1712. }
  1713. #u1718 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:27px;
  1717. top:657px;
  1718. width:238px;
  1719. height:91px;
  1720. display:flex;
  1721. transition:none;
  1722. color:rgba(255, 255, 255, 0.43529411764705883);
  1723. }
  1724. #u1718 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:2px 2px 2px 2px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u1718_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:239px;
  1737. height:92px;
  1738. }
  1739. #u1718_text {
  1740. border-width:0px;
  1741. word-wrap:break-word;
  1742. text-transform:none;
  1743. visibility:hidden;
  1744. }
  1745. #u1719 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:27px;
  1749. top:747px;
  1750. width:239px;
  1751. height:3px;
  1752. display:flex;
  1753. transition:none;
  1754. }
  1755. #u1719 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:2px 2px 2px 2px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u1719_img {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:240px;
  1768. height:4px;
  1769. }
  1770. #u1719_text {
  1771. border-width:0px;
  1772. word-wrap:break-word;
  1773. text-transform:none;
  1774. visibility:hidden;
  1775. }
  1776. #u1720 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:0px;
  1782. height:0px;
  1783. }
  1784. #u1721 {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:0px;
  1790. height:0px;
  1791. }
  1792. #u1722 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:181px;
  1796. top:624px;
  1797. width:10px;
  1798. height:1px;
  1799. display:flex;
  1800. transition:none;
  1801. }
  1802. #u1722 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 2px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u1722_img {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:11px;
  1815. height:2px;
  1816. }
  1817. #u1722_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. visibility:hidden;
  1822. }
  1823. #u1723_div {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:15px;
  1829. height:18px;
  1830. background:inherit;
  1831. background-color:rgba(255, 255, 255, 0);
  1832. border-radius:0px;
  1833. filter:drop-shadow(none);
  1834. transition:none;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:10px;
  1839. color:#FFFFFF;
  1840. text-align:left;
  1841. }
  1842. #u1723 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:194px;
  1846. top:615px;
  1847. width:15px;
  1848. height:18px;
  1849. display:flex;
  1850. transition:none;
  1851. transform-origin:50% 50%;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:10px;
  1856. color:#FFFFFF;
  1857. text-align:left;
  1858. }
  1859. #u1723 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u1723_text {
  1867. border-width:0px;
  1868. white-space:nowrap;
  1869. text-transform:none;
  1870. }
  1871. #u1724 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:0px;
  1877. height:0px;
  1878. }
  1879. #u1725 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:239px;
  1883. top:624px;
  1884. width:10px;
  1885. height:1px;
  1886. display:flex;
  1887. transition:none;
  1888. }
  1889. #u1725 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:2px 2px 2px 2px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u1725_img {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:11px;
  1902. height:2px;
  1903. }
  1904. #u1725_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. visibility:hidden;
  1909. }
  1910. #u1726_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:15px;
  1916. height:18px;
  1917. background:inherit;
  1918. background-color:rgba(255, 255, 255, 0);
  1919. border-radius:0px;
  1920. filter:drop-shadow(none);
  1921. transition:none;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:10px;
  1926. color:#FFFFFF;
  1927. text-align:left;
  1928. }
  1929. #u1726 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:252px;
  1933. top:615px;
  1934. width:15px;
  1935. height:18px;
  1936. display:flex;
  1937. transition:none;
  1938. transform-origin:50% 50%;
  1939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. font-size:10px;
  1943. color:#FFFFFF;
  1944. text-align:left;
  1945. }
  1946. #u1726 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 2px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u1726_text {
  1954. border-width:0px;
  1955. white-space:nowrap;
  1956. text-transform:none;
  1957. }
  1958. #u1727 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:0px;
  1964. height:0px;
  1965. }
  1966. #u1728_div {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:41px;
  1972. height:21px;
  1973. background:inherit;
  1974. background-color:rgba(245, 154, 35, 0);
  1975. border-left:0px;
  1976. border-top:0px;
  1977. border-right:0px;
  1978. border-radius:0px;
  1979. border-bottom-right-radius:0px;
  1980. border-bottom-left-radius:0px;
  1981. filter:drop-shadow(none);
  1982. transition:none;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:12px;
  1987. color:#FFFFFF;
  1988. }
  1989. #u1728 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:1249px;
  1993. top:186px;
  1994. width:41px;
  1995. height:21px;
  1996. display:flex;
  1997. transition:none;
  1998. transform-origin:50% 50%;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:12px;
  2003. color:#FFFFFF;
  2004. }
  2005. #u1728 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u1728_text {
  2013. border-width:0px;
  2014. white-space:nowrap;
  2015. text-transform:none;
  2016. }
  2017. #u1729_div {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:0px;
  2021. top:0px;
  2022. width:34px;
  2023. height:29px;
  2024. background:inherit;
  2025. background-color:rgba(245, 154, 35, 0);
  2026. border-left:0px;
  2027. border-top:0px;
  2028. border-right:0px;
  2029. border-radius:0px;
  2030. border-bottom-right-radius:0px;
  2031. border-bottom-left-radius:0px;
  2032. filter:drop-shadow(none);
  2033. transition:none;
  2034. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2035. font-weight:500;
  2036. font-style:normal;
  2037. font-size:18px;
  2038. color:#FFFFFF;
  2039. }
  2040. #u1729 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:1252px;
  2044. top:157px;
  2045. width:34px;
  2046. height:29px;
  2047. display:flex;
  2048. transition:none;
  2049. transform-origin:50% 50%;
  2050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2051. font-weight:500;
  2052. font-style:normal;
  2053. font-size:18px;
  2054. color:#FFFFFF;
  2055. }
  2056. #u1729 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 2px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u1729_text {
  2064. border-width:0px;
  2065. white-space:nowrap;
  2066. text-transform:none;
  2067. }
  2068. #u1730 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:0px;
  2074. height:0px;
  2075. }
  2076. #u1731_div {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:41px;
  2082. height:21px;
  2083. background:inherit;
  2084. background-color:rgba(245, 154, 35, 0);
  2085. border-left:0px;
  2086. border-top:0px;
  2087. border-right:0px;
  2088. border-radius:0px;
  2089. border-bottom-right-radius:0px;
  2090. border-bottom-left-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. }
  2099. #u1731 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:1312px;
  2103. top:186px;
  2104. width:41px;
  2105. height:21px;
  2106. display:flex;
  2107. transition:none;
  2108. transform-origin:50% 50%;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:12px;
  2113. color:#FFFFFF;
  2114. }
  2115. #u1731 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u1731_text {
  2123. border-width:0px;
  2124. white-space:nowrap;
  2125. text-transform:none;
  2126. }
  2127. #u1732_div {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:34px;
  2133. height:29px;
  2134. background:inherit;
  2135. background-color:rgba(245, 154, 35, 0);
  2136. border-left:0px;
  2137. border-top:0px;
  2138. border-right:0px;
  2139. border-radius:0px;
  2140. border-bottom-right-radius:0px;
  2141. border-bottom-left-radius:0px;
  2142. filter:drop-shadow(none);
  2143. transition:none;
  2144. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2145. font-weight:500;
  2146. font-style:normal;
  2147. font-size:18px;
  2148. color:#FFFFFF;
  2149. }
  2150. #u1732 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:1315px;
  2154. top:157px;
  2155. width:34px;
  2156. height:29px;
  2157. display:flex;
  2158. transition:none;
  2159. transform-origin:50% 50%;
  2160. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2161. font-weight:500;
  2162. font-style:normal;
  2163. font-size:18px;
  2164. color:#FFFFFF;
  2165. }
  2166. #u1732 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:2px 2px 2px 2px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u1732_text {
  2174. border-width:0px;
  2175. white-space:nowrap;
  2176. text-transform:none;
  2177. }
  2178. #u1733 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:0px;
  2184. height:0px;
  2185. }
  2186. #u1734_div {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:0px;
  2190. top:0px;
  2191. width:29px;
  2192. height:21px;
  2193. background:inherit;
  2194. background-color:rgba(245, 154, 35, 0);
  2195. border-left:0px;
  2196. border-top:0px;
  2197. border-right:0px;
  2198. border-radius:0px;
  2199. border-bottom-right-radius:0px;
  2200. border-bottom-left-radius:0px;
  2201. filter:drop-shadow(none);
  2202. transition:none;
  2203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. font-size:12px;
  2207. color:#FFFFFF;
  2208. }
  2209. #u1734 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:1438px;
  2213. top:186px;
  2214. width:29px;
  2215. height:21px;
  2216. display:flex;
  2217. transition:none;
  2218. transform-origin:50% 50%;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. color:#FFFFFF;
  2224. }
  2225. #u1734 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 2px 2px 2px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u1734_text {
  2233. border-width:0px;
  2234. white-space:nowrap;
  2235. text-transform:none;
  2236. }
  2237. #u1735_div {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:0px;
  2242. width:27px;
  2243. height:29px;
  2244. background:inherit;
  2245. background-color:rgba(245, 154, 35, 0);
  2246. border-left:0px;
  2247. border-top:0px;
  2248. border-right:0px;
  2249. border-radius:0px;
  2250. border-bottom-right-radius:0px;
  2251. border-bottom-left-radius:0px;
  2252. filter:drop-shadow(none);
  2253. transition:none;
  2254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2255. font-weight:500;
  2256. font-style:normal;
  2257. font-size:18px;
  2258. color:#FFFFFF;
  2259. }
  2260. #u1735 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:1439px;
  2264. top:157px;
  2265. width:27px;
  2266. height:29px;
  2267. display:flex;
  2268. transition:none;
  2269. transform-origin:50% 50%;
  2270. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2271. font-weight:500;
  2272. font-style:normal;
  2273. font-size:18px;
  2274. color:#FFFFFF;
  2275. }
  2276. #u1735 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 2px 2px 2px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u1735_text {
  2284. border-width:0px;
  2285. white-space:nowrap;
  2286. text-transform:none;
  2287. }
  2288. #u1736 {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:0px;
  2294. height:0px;
  2295. }
  2296. #u1737_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:240px;
  2302. height:30px;
  2303. background:inherit;
  2304. background-color:rgba(245, 154, 35, 0.2);
  2305. box-sizing:border-box;
  2306. border-width:1px;
  2307. border-style:solid;
  2308. border-color:rgba(245, 154, 35, 0.4);
  2309. border-radius:0px;
  2310. filter:drop-shadow(none);
  2311. transition:none;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. color:#FFFFFF;
  2317. text-align:left;
  2318. }
  2319. #u1737 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:1242px;
  2323. top:232px;
  2324. width:240px;
  2325. height:30px;
  2326. display:flex;
  2327. transition:none;
  2328. transform-origin:50% 50%;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. color:#FFFFFF;
  2334. text-align:left;
  2335. }
  2336. #u1737 .text {
  2337. position:absolute;
  2338. align-self:center;
  2339. padding:2px 2px 2px 10px;
  2340. box-sizing:border-box;
  2341. width:100%;
  2342. }
  2343. #u1737_text {
  2344. border-width:0px;
  2345. word-wrap:break-word;
  2346. text-transform:none;
  2347. visibility:hidden;
  2348. }
  2349. #u1738_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:73px;
  2355. height:17px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 0);
  2358. border-radius:0px;
  2359. filter:drop-shadow(none);
  2360. transition:none;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:12px;
  2365. color:#FFFFFF;
  2366. }
  2367. #u1738 {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:1252px;
  2371. top:237px;
  2372. width:73px;
  2373. height:17px;
  2374. display:flex;
  2375. transition:none;
  2376. transform-origin:50% 50%;
  2377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:12px;
  2381. color:#FFFFFF;
  2382. }
  2383. #u1738 .text {
  2384. position:absolute;
  2385. align-self:flex-start;
  2386. padding:0px 0px 0px 0px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u1738_text {
  2391. border-width:0px;
  2392. white-space:nowrap;
  2393. text-transform:none;
  2394. }
  2395. #u1739_div {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:0px;
  2399. top:0px;
  2400. width:29px;
  2401. height:34px;
  2402. background:inherit;
  2403. background-color:rgba(255, 255, 255, 0);
  2404. border-radius:0px;
  2405. filter:drop-shadow(none);
  2406. transition:none;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:12px;
  2411. color:rgba(255, 255, 255, 0.6980392156862745);
  2412. text-align:left;
  2413. line-height:30px;
  2414. }
  2415. #u1739 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:1453px;
  2419. top:232px;
  2420. width:29px;
  2421. height:34px;
  2422. display:flex;
  2423. transition:none;
  2424. transform-origin:50% 50%;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. color:rgba(255, 255, 255, 0.6980392156862745);
  2430. text-align:left;
  2431. line-height:30px;
  2432. }
  2433. #u1739 .text {
  2434. position:absolute;
  2435. align-self:center;
  2436. padding:2px 2px 2px 2px;
  2437. box-sizing:border-box;
  2438. width:100%;
  2439. }
  2440. #u1739_text {
  2441. border-width:0px;
  2442. white-space:nowrap;
  2443. text-transform:none;
  2444. }
  2445. #u1740 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:0px;
  2451. height:0px;
  2452. }
  2453. #u1741_div {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:240px;
  2459. height:60px;
  2460. background:inherit;
  2461. background-color:rgba(255, 255, 255, 0.2);
  2462. box-sizing:border-box;
  2463. border-width:1px;
  2464. border-style:solid;
  2465. border-color:rgba(255, 255, 255, 0.4);
  2466. border-radius:0px;
  2467. filter:drop-shadow(none);
  2468. transition:none;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:12px;
  2473. color:#FFFFFF;
  2474. text-align:left;
  2475. }
  2476. #u1741 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:1236px;
  2480. top:542px;
  2481. width:240px;
  2482. height:60px;
  2483. display:flex;
  2484. transition:none;
  2485. transform-origin:50% 50%;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. color:#FFFFFF;
  2491. text-align:left;
  2492. }
  2493. #u1741 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 10px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u1741_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. visibility:hidden;
  2505. }
  2506. #u1742 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:1236px;
  2510. top:542px;
  2511. width:62px;
  2512. height:60px;
  2513. display:flex;
  2514. transition:none;
  2515. }
  2516. #u1742 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 2px 2px 2px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u1742_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:62px;
  2529. height:60px;
  2530. }
  2531. #u1742_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u1743_div {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:41px;
  2543. height:21px;
  2544. background:inherit;
  2545. background-color:rgba(245, 154, 35, 0);
  2546. border-left:0px;
  2547. border-top:0px;
  2548. border-right:0px;
  2549. border-radius:0px;
  2550. border-bottom-right-radius:0px;
  2551. border-bottom-left-radius:0px;
  2552. filter:drop-shadow(none);
  2553. transition:none;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:12px;
  2558. color:#FFFFFF;
  2559. text-align:left;
  2560. }
  2561. #u1743 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:1303px;
  2565. top:546px;
  2566. width:41px;
  2567. height:21px;
  2568. display:flex;
  2569. transition:none;
  2570. transform-origin:50% 50%;
  2571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2572. font-weight:400;
  2573. font-style:normal;
  2574. font-size:12px;
  2575. color:#FFFFFF;
  2576. text-align:left;
  2577. }
  2578. #u1743 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:2px 2px 2px 2px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u1743_text {
  2586. border-width:0px;
  2587. white-space:nowrap;
  2588. text-transform:none;
  2589. }
  2590. #u1744_div {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:75px;
  2596. height:32px;
  2597. background:inherit;
  2598. background-color:rgba(245, 154, 35, 0);
  2599. border-left:0px;
  2600. border-top:0px;
  2601. border-right:0px;
  2602. border-radius:0px;
  2603. border-bottom-right-radius:0px;
  2604. border-bottom-left-radius:0px;
  2605. filter:drop-shadow(none);
  2606. transition:none;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:10px;
  2611. color:#FFFFFF;
  2612. text-align:left;
  2613. }
  2614. #u1744 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:1303px;
  2618. top:567px;
  2619. width:75px;
  2620. height:32px;
  2621. display:flex;
  2622. transition:none;
  2623. transform-origin:50% 50%;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:10px;
  2628. color:#FFFFFF;
  2629. text-align:left;
  2630. }
  2631. #u1744 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u1744_text {
  2639. border-width:0px;
  2640. white-space:nowrap;
  2641. text-transform:none;
  2642. }
  2643. #u1745_div {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:24px;
  2649. height:13px;
  2650. background:inherit;
  2651. background-color:rgba(245, 154, 35, 1);
  2652. border-radius:40px;
  2653. filter:drop-shadow(none);
  2654. transition:none;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:8px;
  2659. color:rgba(255, 255, 255, 0.6980392156862745);
  2660. }
  2661. #u1745 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:1356px;
  2665. top:550px;
  2666. width:24px;
  2667. height:13px;
  2668. display:flex;
  2669. transition:none;
  2670. transform-origin:50% 50%;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:8px;
  2675. color:rgba(255, 255, 255, 0.6980392156862745);
  2676. }
  2677. #u1745 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:0px 0px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u1745_text {
  2685. border-width:0px;
  2686. word-wrap:break-word;
  2687. text-transform:none;
  2688. }
  2689. #u1746 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:0px;
  2695. height:0px;
  2696. }
  2697. #u1747_div {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:240px;
  2703. height:60px;
  2704. background:inherit;
  2705. background-color:rgba(255, 255, 255, 0.2);
  2706. box-sizing:border-box;
  2707. border-width:1px;
  2708. border-style:solid;
  2709. border-color:rgba(255, 255, 255, 0.4);
  2710. border-radius:0px;
  2711. filter:drop-shadow(none);
  2712. transition:none;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. color:#FFFFFF;
  2718. text-align:left;
  2719. }
  2720. #u1747 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:1236px;
  2724. top:612px;
  2725. width:240px;
  2726. height:60px;
  2727. display:flex;
  2728. transition:none;
  2729. transform-origin:50% 50%;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:12px;
  2734. color:#FFFFFF;
  2735. text-align:left;
  2736. }
  2737. #u1747 .text {
  2738. position:absolute;
  2739. align-self:center;
  2740. padding:2px 2px 2px 10px;
  2741. box-sizing:border-box;
  2742. width:100%;
  2743. }
  2744. #u1747_text {
  2745. border-width:0px;
  2746. word-wrap:break-word;
  2747. text-transform:none;
  2748. visibility:hidden;
  2749. }
  2750. #u1748 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:1236px;
  2754. top:612px;
  2755. width:62px;
  2756. height:60px;
  2757. display:flex;
  2758. transition:none;
  2759. }
  2760. #u1748 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 2px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u1748_img {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:62px;
  2773. height:60px;
  2774. }
  2775. #u1748_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u1749_div {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:53px;
  2787. height:21px;
  2788. background:inherit;
  2789. background-color:rgba(245, 154, 35, 0);
  2790. border-left:0px;
  2791. border-top:0px;
  2792. border-right:0px;
  2793. border-radius:0px;
  2794. border-bottom-right-radius:0px;
  2795. border-bottom-left-radius:0px;
  2796. filter:drop-shadow(none);
  2797. transition:none;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:12px;
  2802. color:#FFFFFF;
  2803. text-align:left;
  2804. }
  2805. #u1749 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:1303px;
  2809. top:616px;
  2810. width:53px;
  2811. height:21px;
  2812. display:flex;
  2813. transition:none;
  2814. transform-origin:50% 50%;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. color:#FFFFFF;
  2820. text-align:left;
  2821. }
  2822. #u1749 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u1749_text {
  2830. border-width:0px;
  2831. white-space:nowrap;
  2832. text-transform:none;
  2833. }
  2834. #u1750_div {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:75px;
  2840. height:32px;
  2841. background:inherit;
  2842. background-color:rgba(245, 154, 35, 0);
  2843. border-left:0px;
  2844. border-top:0px;
  2845. border-right:0px;
  2846. border-radius:0px;
  2847. border-bottom-right-radius:0px;
  2848. border-bottom-left-radius:0px;
  2849. filter:drop-shadow(none);
  2850. transition:none;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:10px;
  2855. color:#FFFFFF;
  2856. text-align:left;
  2857. }
  2858. #u1750 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:1303px;
  2862. top:637px;
  2863. width:75px;
  2864. height:32px;
  2865. display:flex;
  2866. transition:none;
  2867. transform-origin:50% 50%;
  2868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:10px;
  2872. color:#FFFFFF;
  2873. text-align:left;
  2874. }
  2875. #u1750 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 2px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u1750_text {
  2883. border-width:0px;
  2884. white-space:nowrap;
  2885. text-transform:none;
  2886. }
  2887. #u1751_div {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:35px;
  2893. height:13px;
  2894. background:inherit;
  2895. background-color:rgba(217, 0, 27, 1);
  2896. border-radius:40px;
  2897. filter:drop-shadow(none);
  2898. transition:none;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:8px;
  2903. color:rgba(255, 255, 255, 0.6980392156862745);
  2904. }
  2905. #u1751 {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:1356px;
  2909. top:620px;
  2910. width:35px;
  2911. height:13px;
  2912. display:flex;
  2913. transition:none;
  2914. transform-origin:50% 50%;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:8px;
  2919. color:rgba(255, 255, 255, 0.6980392156862745);
  2920. }
  2921. #u1751 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:0px 0px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u1751_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. }
  2933. #u1752 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:0px;
  2939. height:0px;
  2940. }
  2941. #u1753_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:41px;
  2947. height:21px;
  2948. background:inherit;
  2949. background-color:rgba(245, 154, 35, 0);
  2950. border-left:0px;
  2951. border-top:0px;
  2952. border-right:0px;
  2953. border-radius:0px;
  2954. border-bottom-right-radius:0px;
  2955. border-bottom-left-radius:0px;
  2956. filter:drop-shadow(none);
  2957. transition:none;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:12px;
  2962. color:#FFFFFF;
  2963. }
  2964. #u1753 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:1375px;
  2968. top:186px;
  2969. width:41px;
  2970. height:21px;
  2971. display:flex;
  2972. transition:none;
  2973. transform-origin:50% 50%;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#FFFFFF;
  2979. }
  2980. #u1753 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 2px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u1753_text {
  2988. border-width:0px;
  2989. white-space:nowrap;
  2990. text-transform:none;
  2991. }
  2992. #u1754_div {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:27px;
  2998. height:29px;
  2999. background:inherit;
  3000. background-color:rgba(245, 154, 35, 0);
  3001. border-left:0px;
  3002. border-top:0px;
  3003. border-right:0px;
  3004. border-radius:0px;
  3005. border-bottom-right-radius:0px;
  3006. border-bottom-left-radius:0px;
  3007. filter:drop-shadow(none);
  3008. transition:none;
  3009. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3010. font-weight:500;
  3011. font-style:normal;
  3012. font-size:18px;
  3013. color:#FFFFFF;
  3014. }
  3015. #u1754 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:1382px;
  3019. top:157px;
  3020. width:27px;
  3021. height:29px;
  3022. display:flex;
  3023. transition:none;
  3024. transform-origin:50% 50%;
  3025. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3026. font-weight:500;
  3027. font-style:normal;
  3028. font-size:18px;
  3029. color:#FFFFFF;
  3030. }
  3031. #u1754 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 2px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u1754_text {
  3039. border-width:0px;
  3040. white-space:nowrap;
  3041. text-transform:none;
  3042. }
  3043. #u1755_div {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:836px;
  3049. height:630px;
  3050. background:inherit;
  3051. background-color:rgba(51, 51, 51, 0.8);
  3052. border-radius:0px;
  3053. filter:drop-shadow(none);
  3054. transition:none;
  3055. }
  3056. #u1755 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:325px;
  3060. top:104px;
  3061. width:836px;
  3062. height:630px;
  3063. display:flex;
  3064. transition:none;
  3065. transform-origin:50% 50%;
  3066. }
  3067. #u1755 .text {
  3068. position:absolute;
  3069. align-self:center;
  3070. padding:2px 2px 2px 2px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u1755_text {
  3075. border-width:0px;
  3076. word-wrap:break-word;
  3077. text-transform:none;
  3078. visibility:hidden;
  3079. }
  3080. #u1756_div {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:157px;
  3086. height:29px;
  3087. background:inherit;
  3088. background-color:rgba(245, 154, 35, 0);
  3089. border-left:0px;
  3090. border-top:0px;
  3091. border-right:0px;
  3092. border-radius:0px;
  3093. border-bottom-right-radius:0px;
  3094. border-bottom-left-radius:0px;
  3095. filter:drop-shadow(none);
  3096. transition:none;
  3097. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3098. font-weight:500;
  3099. font-style:normal;
  3100. font-size:18px;
  3101. color:#F59A23;
  3102. text-align:left;
  3103. }
  3104. #u1756 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:337px;
  3108. top:129px;
  3109. width:157px;
  3110. height:29px;
  3111. display:flex;
  3112. transition:none;
  3113. transform-origin:50% 50%;
  3114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3115. font-weight:500;
  3116. font-style:normal;
  3117. font-size:18px;
  3118. color:#F59A23;
  3119. text-align:left;
  3120. }
  3121. #u1756 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 10px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u1756_text {
  3129. border-width:0px;
  3130. white-space:nowrap;
  3131. text-transform:none;
  3132. }
  3133. #u1757 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:0px;
  3139. height:0px;
  3140. }
  3141. #u1758_div {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:254px;
  3147. height:82px;
  3148. background:inherit;
  3149. background-color:rgba(245, 154, 35, 0.09803921568627451);
  3150. box-sizing:border-box;
  3151. border-width:1px;
  3152. border-style:solid;
  3153. border-color:rgba(121, 121, 121, 1);
  3154. border-radius:0px;
  3155. filter:drop-shadow(none);
  3156. transition:none;
  3157. }
  3158. #u1758 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:348px;
  3162. top:179px;
  3163. width:254px;
  3164. height:82px;
  3165. display:flex;
  3166. transition:none;
  3167. transform-origin:50% 50%;
  3168. }
  3169. #u1758 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 2px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u1758_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u1759_div {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:31px;
  3188. height:24px;
  3189. background:inherit;
  3190. background-color:rgba(245, 154, 35, 0);
  3191. border-left:0px;
  3192. border-top:0px;
  3193. border-right:0px;
  3194. border-radius:0px;
  3195. border-bottom-right-radius:0px;
  3196. border-bottom-left-radius:0px;
  3197. filter:drop-shadow(none);
  3198. transition:none;
  3199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3200. font-weight:400;
  3201. font-style:normal;
  3202. font-size:14px;
  3203. color:#FFFFFF;
  3204. text-align:left;
  3205. }
  3206. #u1759 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:415px;
  3210. top:186px;
  3211. width:31px;
  3212. height:24px;
  3213. display:flex;
  3214. transition:none;
  3215. transform-origin:50% 50%;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. font-size:14px;
  3220. color:#FFFFFF;
  3221. text-align:left;
  3222. }
  3223. #u1759 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 0px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u1759_text {
  3231. border-width:0px;
  3232. white-space:nowrap;
  3233. text-transform:none;
  3234. }
  3235. #u1760_div {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:35px;
  3241. height:21px;
  3242. background:inherit;
  3243. background-color:rgba(245, 154, 35, 1);
  3244. border-radius:11px;
  3245. filter:drop-shadow(none);
  3246. transition:none;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:12px;
  3251. color:#FFFFFF;
  3252. }
  3253. #u1760 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:458px;
  3257. top:188px;
  3258. width:35px;
  3259. height:21px;
  3260. display:flex;
  3261. transition:none;
  3262. transform-origin:50% 50%;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:12px;
  3267. color:#FFFFFF;
  3268. }
  3269. #u1760 .text {
  3270. position:absolute;
  3271. align-self:center;
  3272. padding:2px 2px 2px 2px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u1760_text {
  3277. border-width:0px;
  3278. word-wrap:break-word;
  3279. text-transform:none;
  3280. }
  3281. #u1761_div {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:95px;
  3287. height:21px;
  3288. background:inherit;
  3289. background-color:rgba(245, 154, 35, 0);
  3290. border-left:0px;
  3291. border-top:0px;
  3292. border-right:0px;
  3293. border-radius:0px;
  3294. border-bottom-right-radius:0px;
  3295. border-bottom-left-radius:0px;
  3296. filter:drop-shadow(none);
  3297. transition:none;
  3298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3299. font-weight:400;
  3300. font-style:normal;
  3301. font-size:12px;
  3302. color:#FFFFFF;
  3303. text-align:left;
  3304. }
  3305. #u1761 {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:415px;
  3309. top:217px;
  3310. width:95px;
  3311. height:21px;
  3312. display:flex;
  3313. transition:none;
  3314. transform-origin:50% 50%;
  3315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3316. font-weight:400;
  3317. font-style:normal;
  3318. font-size:12px;
  3319. color:#FFFFFF;
  3320. text-align:left;
  3321. }
  3322. #u1761 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u1761_text {
  3330. border-width:0px;
  3331. white-space:nowrap;
  3332. text-transform:none;
  3333. }
  3334. #u1762_div {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:103px;
  3340. height:18px;
  3341. background:inherit;
  3342. background-color:rgba(245, 154, 35, 0);
  3343. border-left:0px;
  3344. border-top:0px;
  3345. border-right:0px;
  3346. border-radius:0px;
  3347. border-bottom-right-radius:0px;
  3348. border-bottom-left-radius:0px;
  3349. filter:drop-shadow(none);
  3350. transition:none;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:10px;
  3355. color:#FFFFFF;
  3356. text-align:left;
  3357. }
  3358. #u1762 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:415px;
  3362. top:238px;
  3363. width:103px;
  3364. height:18px;
  3365. display:flex;
  3366. transition:none;
  3367. transform-origin:50% 50%;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:10px;
  3372. color:#FFFFFF;
  3373. text-align:left;
  3374. }
  3375. #u1762 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u1762_text {
  3383. border-width:0px;
  3384. white-space:nowrap;
  3385. text-transform:none;
  3386. }
  3387. #u1763 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:356px;
  3391. top:190px;
  3392. width:50px;
  3393. height:59px;
  3394. display:flex;
  3395. transition:none;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. color:#FFFFFF;
  3400. }
  3401. #u1763 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 2px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u1763_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:50px;
  3414. height:59px;
  3415. }
  3416. #u1763_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. }
  3421. #u1764 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:0px;
  3427. height:0px;
  3428. }
  3429. #u1765_div {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:254px;
  3435. height:82px;
  3436. background:inherit;
  3437. background-color:rgba(245, 154, 35, 0.09803921568627451);
  3438. box-sizing:border-box;
  3439. border-width:1px;
  3440. border-style:solid;
  3441. border-color:rgba(121, 121, 121, 1);
  3442. border-radius:0px;
  3443. filter:drop-shadow(none);
  3444. transition:none;
  3445. }
  3446. #u1765 {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:612px;
  3450. top:179px;
  3451. width:254px;
  3452. height:82px;
  3453. display:flex;
  3454. transition:none;
  3455. transform-origin:50% 50%;
  3456. }
  3457. #u1765 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 2px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u1765_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. visibility:hidden;
  3469. }
  3470. #u1766_div {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:45px;
  3476. height:24px;
  3477. background:inherit;
  3478. background-color:rgba(245, 154, 35, 0);
  3479. border-left:0px;
  3480. border-top:0px;
  3481. border-right:0px;
  3482. border-radius:0px;
  3483. border-bottom-right-radius:0px;
  3484. border-bottom-left-radius:0px;
  3485. filter:drop-shadow(none);
  3486. transition:none;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:14px;
  3491. color:#FFFFFF;
  3492. text-align:left;
  3493. }
  3494. #u1766 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:679px;
  3498. top:186px;
  3499. width:45px;
  3500. height:24px;
  3501. display:flex;
  3502. transition:none;
  3503. transform-origin:50% 50%;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:14px;
  3508. color:#FFFFFF;
  3509. text-align:left;
  3510. }
  3511. #u1766 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u1766_text {
  3519. border-width:0px;
  3520. white-space:nowrap;
  3521. text-transform:none;
  3522. }
  3523. #u1767_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:95px;
  3529. height:21px;
  3530. background:inherit;
  3531. background-color:rgba(245, 154, 35, 0);
  3532. border-left:0px;
  3533. border-top:0px;
  3534. border-right:0px;
  3535. border-radius:0px;
  3536. border-bottom-right-radius:0px;
  3537. border-bottom-left-radius:0px;
  3538. filter:drop-shadow(none);
  3539. transition:none;
  3540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3541. font-weight:400;
  3542. font-style:normal;
  3543. font-size:12px;
  3544. color:#FFFFFF;
  3545. text-align:left;
  3546. }
  3547. #u1767 {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:679px;
  3551. top:217px;
  3552. width:95px;
  3553. height:21px;
  3554. display:flex;
  3555. transition:none;
  3556. transform-origin:50% 50%;
  3557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3558. font-weight:400;
  3559. font-style:normal;
  3560. font-size:12px;
  3561. color:#FFFFFF;
  3562. text-align:left;
  3563. }
  3564. #u1767 .text {
  3565. position:absolute;
  3566. align-self:center;
  3567. padding:2px 2px 2px 0px;
  3568. box-sizing:border-box;
  3569. width:100%;
  3570. }
  3571. #u1767_text {
  3572. border-width:0px;
  3573. white-space:nowrap;
  3574. text-transform:none;
  3575. }
  3576. #u1768_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:103px;
  3582. height:18px;
  3583. background:inherit;
  3584. background-color:rgba(245, 154, 35, 0);
  3585. border-left:0px;
  3586. border-top:0px;
  3587. border-right:0px;
  3588. border-radius:0px;
  3589. border-bottom-right-radius:0px;
  3590. border-bottom-left-radius:0px;
  3591. filter:drop-shadow(none);
  3592. transition:none;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:10px;
  3597. color:#FFFFFF;
  3598. text-align:left;
  3599. }
  3600. #u1768 {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:679px;
  3604. top:238px;
  3605. width:103px;
  3606. height:18px;
  3607. display:flex;
  3608. transition:none;
  3609. transform-origin:50% 50%;
  3610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:10px;
  3614. color:#FFFFFF;
  3615. text-align:left;
  3616. }
  3617. #u1768 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 0px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u1768_text {
  3625. border-width:0px;
  3626. white-space:nowrap;
  3627. text-transform:none;
  3628. }
  3629. #u1769 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:620px;
  3633. top:190px;
  3634. width:50px;
  3635. height:59px;
  3636. display:flex;
  3637. transition:none;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. color:#FFFFFF;
  3642. }
  3643. #u1769 .text {
  3644. position:absolute;
  3645. align-self:center;
  3646. padding:2px 2px 2px 2px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u1769_img {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:50px;
  3656. height:59px;
  3657. }
  3658. #u1769_text {
  3659. border-width:0px;
  3660. word-wrap:break-word;
  3661. text-transform:none;
  3662. }
  3663. #u1770 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:0px;
  3669. height:0px;
  3670. }
  3671. #u1771_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:254px;
  3677. height:82px;
  3678. background:inherit;
  3679. background-color:rgba(245, 154, 35, 0.09803921568627451);
  3680. box-sizing:border-box;
  3681. border-width:1px;
  3682. border-style:solid;
  3683. border-color:rgba(121, 121, 121, 1);
  3684. border-radius:0px;
  3685. filter:drop-shadow(none);
  3686. transition:none;
  3687. }
  3688. #u1771 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:876px;
  3692. top:179px;
  3693. width:254px;
  3694. height:82px;
  3695. display:flex;
  3696. transition:none;
  3697. transform-origin:50% 50%;
  3698. }
  3699. #u1771 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 2px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u1771_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u1772_div {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:31px;
  3718. height:24px;
  3719. background:inherit;
  3720. background-color:rgba(245, 154, 35, 0);
  3721. border-left:0px;
  3722. border-top:0px;
  3723. border-right:0px;
  3724. border-radius:0px;
  3725. border-bottom-right-radius:0px;
  3726. border-bottom-left-radius:0px;
  3727. filter:drop-shadow(none);
  3728. transition:none;
  3729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:14px;
  3733. color:#FFFFFF;
  3734. text-align:left;
  3735. }
  3736. #u1772 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:943px;
  3740. top:186px;
  3741. width:31px;
  3742. height:24px;
  3743. display:flex;
  3744. transition:none;
  3745. transform-origin:50% 50%;
  3746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:14px;
  3750. color:#FFFFFF;
  3751. text-align:left;
  3752. }
  3753. #u1772 .text {
  3754. position:absolute;
  3755. align-self:center;
  3756. padding:2px 2px 2px 0px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u1772_text {
  3761. border-width:0px;
  3762. white-space:nowrap;
  3763. text-transform:none;
  3764. }
  3765. #u1773_div {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:35px;
  3771. height:21px;
  3772. background:inherit;
  3773. background-color:rgba(245, 154, 35, 1);
  3774. border-radius:11px;
  3775. filter:drop-shadow(none);
  3776. transition:none;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:12px;
  3781. color:#FFFFFF;
  3782. }
  3783. #u1773 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:978px;
  3787. top:188px;
  3788. width:35px;
  3789. height:21px;
  3790. display:flex;
  3791. transition:none;
  3792. transform-origin:50% 50%;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:12px;
  3797. color:#FFFFFF;
  3798. }
  3799. #u1773 .text {
  3800. position:absolute;
  3801. align-self:center;
  3802. padding:2px 2px 2px 2px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u1773_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. }
  3811. #u1774_div {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:71px;
  3817. height:21px;
  3818. background:inherit;
  3819. background-color:rgba(245, 154, 35, 0);
  3820. border-left:0px;
  3821. border-top:0px;
  3822. border-right:0px;
  3823. border-radius:0px;
  3824. border-bottom-right-radius:0px;
  3825. border-bottom-left-radius:0px;
  3826. filter:drop-shadow(none);
  3827. transition:none;
  3828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3829. font-weight:400;
  3830. font-style:normal;
  3831. font-size:12px;
  3832. color:#FFFFFF;
  3833. text-align:left;
  3834. }
  3835. #u1774 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:943px;
  3839. top:217px;
  3840. width:71px;
  3841. height:21px;
  3842. display:flex;
  3843. transition:none;
  3844. transform-origin:50% 50%;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. color:#FFFFFF;
  3850. text-align:left;
  3851. }
  3852. #u1774 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 0px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u1774_text {
  3860. border-width:0px;
  3861. white-space:nowrap;
  3862. text-transform:none;
  3863. }
  3864. #u1775_div {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:103px;
  3870. height:18px;
  3871. background:inherit;
  3872. background-color:rgba(245, 154, 35, 0);
  3873. border-left:0px;
  3874. border-top:0px;
  3875. border-right:0px;
  3876. border-radius:0px;
  3877. border-bottom-right-radius:0px;
  3878. border-bottom-left-radius:0px;
  3879. filter:drop-shadow(none);
  3880. transition:none;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:10px;
  3885. color:#FFFFFF;
  3886. text-align:left;
  3887. }
  3888. #u1775 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:943px;
  3892. top:238px;
  3893. width:103px;
  3894. height:18px;
  3895. display:flex;
  3896. transition:none;
  3897. transform-origin:50% 50%;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:10px;
  3902. color:#FFFFFF;
  3903. text-align:left;
  3904. }
  3905. #u1775 .text {
  3906. position:absolute;
  3907. align-self:center;
  3908. padding:2px 2px 2px 0px;
  3909. box-sizing:border-box;
  3910. width:100%;
  3911. }
  3912. #u1775_text {
  3913. border-width:0px;
  3914. white-space:nowrap;
  3915. text-transform:none;
  3916. }
  3917. #u1776 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:884px;
  3921. top:190px;
  3922. width:50px;
  3923. height:59px;
  3924. display:flex;
  3925. transition:none;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. color:#FFFFFF;
  3930. }
  3931. #u1776 .text {
  3932. position:absolute;
  3933. align-self:center;
  3934. padding:2px 2px 2px 2px;
  3935. box-sizing:border-box;
  3936. width:100%;
  3937. }
  3938. #u1776_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:50px;
  3944. height:59px;
  3945. }
  3946. #u1776_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. }
  3951. #u1777 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:0px;
  3957. height:0px;
  3958. }
  3959. #u1778 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:0px;
  3965. height:0px;
  3966. }
  3967. #u1779_div {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:31px;
  3973. height:30px;
  3974. background:inherit;
  3975. background-color:rgba(255, 255, 255, 1);
  3976. box-sizing:border-box;
  3977. border-width:1px;
  3978. border-style:solid;
  3979. border-color:rgba(228, 228, 228, 1);
  3980. border-radius:4px;
  3981. filter:drop-shadow(none);
  3982. transition:none;
  3983. font-family:"Microsoft YaHei", sans-serif;
  3984. font-weight:400;
  3985. font-style:normal;
  3986. font-size:12px;
  3987. }
  3988. #u1779 {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:1030px;
  3992. top:689px;
  3993. width:31px;
  3994. height:30px;
  3995. display:flex;
  3996. transition:none;
  3997. transform-origin:50% 50%;
  3998. font-family:"Microsoft YaHei", sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. }
  4003. #u1779 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 2px 2px 2px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u1779_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. visibility:hidden;
  4015. }
  4016. #u1780 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:1042px;
  4020. top:697px;
  4021. width:8px;
  4022. height:14px;
  4023. display:flex;
  4024. transition:none;
  4025. font-family:"Microsoft YaHei", sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. }
  4030. #u1780 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 2px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u1780_img {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:8px;
  4043. height:14px;
  4044. }
  4045. #u1780_text {
  4046. border-width:0px;
  4047. word-wrap:break-word;
  4048. text-transform:none;
  4049. visibility:hidden;
  4050. }
  4051. #u1781 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:0px;
  4057. height:0px;
  4058. }
  4059. #u1782_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:31px;
  4065. height:30px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 1);
  4068. box-sizing:border-box;
  4069. border-width:1px;
  4070. border-style:solid;
  4071. border-color:rgba(228, 228, 228, 1);
  4072. border-radius:4px;
  4073. filter:drop-shadow(none);
  4074. transition:none;
  4075. font-family:"Microsoft YaHei", sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:12px;
  4079. }
  4080. #u1782 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:1115px;
  4084. top:689px;
  4085. width:31px;
  4086. height:30px;
  4087. display:flex;
  4088. transition:none;
  4089. transform-origin:50% 50%;
  4090. font-family:"Microsoft YaHei", sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:12px;
  4094. }
  4095. #u1782 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 2px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u1782_text {
  4103. border-width:0px;
  4104. word-wrap:break-word;
  4105. text-transform:none;
  4106. visibility:hidden;
  4107. }
  4108. #u1783 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:1128px;
  4112. top:697px;
  4113. width:8px;
  4114. height:14px;
  4115. display:flex;
  4116. transition:none;
  4117. font-family:"Microsoft YaHei", sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. }
  4122. #u1783 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 2px 2px 2px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u1783_img {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:8px;
  4135. height:14px;
  4136. }
  4137. #u1783_text {
  4138. border-width:0px;
  4139. word-wrap:break-word;
  4140. text-transform:none;
  4141. visibility:hidden;
  4142. }
  4143. #u1784_div {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:0px;
  4147. top:0px;
  4148. width:32px;
  4149. height:21px;
  4150. background:inherit;
  4151. background-color:rgba(255, 255, 255, 0);
  4152. border-radius:15px;
  4153. filter:drop-shadow(none);
  4154. transition:none;
  4155. font-family:"Microsoft YaHei", sans-serif;
  4156. font-weight:400;
  4157. font-style:normal;
  4158. font-size:14px;
  4159. color:#FFFFFF;
  4160. }
  4161. #u1784 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:1071px;
  4165. top:694px;
  4166. width:32px;
  4167. height:21px;
  4168. display:flex;
  4169. transition:none;
  4170. transform-origin:50% 50%;
  4171. font-family:"Microsoft YaHei", sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:14px;
  4175. color:#FFFFFF;
  4176. }
  4177. #u1784 .text {
  4178. position:absolute;
  4179. align-self:center;
  4180. padding:2px 2px 2px 2px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u1784_text {
  4185. border-width:0px;
  4186. white-space:nowrap;
  4187. text-transform:none;
  4188. }
  4189. #u1785_div {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:100px;
  4195. height:30px;
  4196. background:inherit;
  4197. background-color:rgba(245, 154, 35, 0);
  4198. box-sizing:border-box;
  4199. border-width:1px;
  4200. border-style:solid;
  4201. border-color:rgba(245, 154, 35, 1);
  4202. border-radius:4px;
  4203. filter:drop-shadow(none);
  4204. transition:none;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:12px;
  4209. color:#F59A23;
  4210. }
  4211. #u1785 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:941px;
  4215. top:124px;
  4216. width:100px;
  4217. height:30px;
  4218. display:flex;
  4219. transition:none;
  4220. transform-origin:50% 50%;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:12px;
  4225. color:#F59A23;
  4226. }
  4227. #u1785 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 2px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u1785_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. }
  4239. #u1786_div {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:100px;
  4245. height:30px;
  4246. background:inherit;
  4247. background-color:rgba(245, 154, 35, 0);
  4248. box-sizing:border-box;
  4249. border-width:1px;
  4250. border-style:solid;
  4251. border-color:rgba(245, 154, 35, 1);
  4252. border-radius:4px;
  4253. filter:drop-shadow(none);
  4254. transition:none;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:12px;
  4259. color:#F59A23;
  4260. }
  4261. #u1786 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:1047px;
  4265. top:124px;
  4266. width:100px;
  4267. height:30px;
  4268. display:flex;
  4269. transition:none;
  4270. transform-origin:50% 50%;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. color:#F59A23;
  4276. }
  4277. #u1786 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 2px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u1786_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. }
  4289. #u1787 {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:335px;
  4293. top:783px;
  4294. width:840px;
  4295. height:61px;
  4296. }
  4297. #u1788 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:0px;
  4303. height:0px;
  4304. }
  4305. #u1789 {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:0px;
  4311. height:0px;
  4312. }
  4313. #u1790_div {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:0px;
  4317. top:0px;
  4318. width:57px;
  4319. height:20px;
  4320. background:inherit;
  4321. background-color:rgba(28, 33, 30, 1);
  4322. border-radius:0px;
  4323. filter:drop-shadow(none);
  4324. transition:none;
  4325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4326. font-weight:500;
  4327. font-style:normal;
  4328. font-size:14px;
  4329. color:#FFFFFF;
  4330. }
  4331. #u1790 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:77px;
  4335. top:41px;
  4336. width:57px;
  4337. height:20px;
  4338. display:flex;
  4339. transition:none;
  4340. transform-origin:50% 50%;
  4341. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4342. font-weight:500;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. color:#FFFFFF;
  4346. }
  4347. #u1790 .text {
  4348. position:absolute;
  4349. align-self:flex-start;
  4350. padding:0px 0px 0px 0px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u1790_text {
  4355. border-width:0px;
  4356. white-space:nowrap;
  4357. text-transform:none;
  4358. }
  4359. #u1791 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:89px;
  4363. top:0px;
  4364. width:33px;
  4365. height:39px;
  4366. display:flex;
  4367. transition:none;
  4368. color:#FFFFFF;
  4369. }
  4370. #u1791 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 2px 2px 2px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u1791_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:33px;
  4383. height:39px;
  4384. }
  4385. #u1791_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. }
  4390. #u1792 {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:0px;
  4396. height:0px;
  4397. }
  4398. #u1793_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:57px;
  4404. height:20px;
  4405. background:inherit;
  4406. background-color:rgba(28, 33, 30, 1);
  4407. border-radius:0px;
  4408. filter:drop-shadow(none);
  4409. transition:none;
  4410. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4411. font-weight:500;
  4412. font-style:normal;
  4413. font-size:14px;
  4414. color:#FFFFFF;
  4415. }
  4416. #u1793 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:151px;
  4420. top:41px;
  4421. width:57px;
  4422. height:20px;
  4423. display:flex;
  4424. transition:none;
  4425. transform-origin:50% 50%;
  4426. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4427. font-weight:500;
  4428. font-style:normal;
  4429. font-size:14px;
  4430. color:#FFFFFF;
  4431. }
  4432. #u1793 .text {
  4433. position:absolute;
  4434. align-self:flex-start;
  4435. padding:0px 0px 0px 0px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u1793_text {
  4440. border-width:0px;
  4441. white-space:nowrap;
  4442. text-transform:none;
  4443. }
  4444. #u1794 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:163px;
  4448. top:0px;
  4449. width:33px;
  4450. height:39px;
  4451. display:flex;
  4452. transition:none;
  4453. color:#FFFFFF;
  4454. }
  4455. #u1794 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 2px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u1794_img {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:33px;
  4468. height:39px;
  4469. }
  4470. #u1794_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. }
  4475. #u1795 {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:0px;
  4481. height:0px;
  4482. }
  4483. #u1796_div {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:57px;
  4489. height:20px;
  4490. background:inherit;
  4491. background-color:rgba(28, 33, 30, 1);
  4492. border-radius:0px;
  4493. filter:drop-shadow(none);
  4494. transition:none;
  4495. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4496. font-weight:500;
  4497. font-style:normal;
  4498. font-size:14px;
  4499. color:#FFFFFF;
  4500. }
  4501. #u1796 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:41px;
  4506. width:57px;
  4507. height:20px;
  4508. display:flex;
  4509. transition:none;
  4510. transform-origin:50% 50%;
  4511. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4512. font-weight:500;
  4513. font-style:normal;
  4514. font-size:14px;
  4515. color:#FFFFFF;
  4516. }
  4517. #u1796 .text {
  4518. position:absolute;
  4519. align-self:flex-start;
  4520. padding:0px 0px 0px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u1796_text {
  4525. border-width:0px;
  4526. white-space:nowrap;
  4527. text-transform:none;
  4528. }
  4529. #u1797 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:12px;
  4533. top:0px;
  4534. width:33px;
  4535. height:39px;
  4536. display:flex;
  4537. transition:none;
  4538. color:#FFFFFF;
  4539. }
  4540. #u1797 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 2px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u1797_img {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:33px;
  4553. height:39px;
  4554. }
  4555. #u1797_text {
  4556. border-width:0px;
  4557. word-wrap:break-word;
  4558. text-transform:none;
  4559. }
  4560. #u1798_div {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:59px;
  4566. height:20px;
  4567. background:inherit;
  4568. background-color:rgba(28, 33, 30, 1);
  4569. border-radius:0px;
  4570. filter:drop-shadow(none);
  4571. transition:none;
  4572. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4573. font-weight:500;
  4574. font-style:normal;
  4575. font-size:14px;
  4576. color:#FFFFFF;
  4577. }
  4578. #u1798 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:41px;
  4583. width:59px;
  4584. height:20px;
  4585. display:flex;
  4586. transition:none;
  4587. transform-origin:50% 50%;
  4588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4589. font-weight:500;
  4590. font-style:normal;
  4591. font-size:14px;
  4592. color:#FFFFFF;
  4593. }
  4594. #u1798 .text {
  4595. position:absolute;
  4596. align-self:flex-start;
  4597. padding:0px 0px 0px 0px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u1798_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. }
  4606. #u1799 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:0px;
  4612. height:0px;
  4613. }
  4614. #u1800_div {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:57px;
  4620. height:20px;
  4621. background:inherit;
  4622. background-color:rgba(28, 33, 30, 1);
  4623. border-radius:0px;
  4624. filter:drop-shadow(none);
  4625. transition:none;
  4626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4627. font-weight:500;
  4628. font-style:normal;
  4629. font-size:14px;
  4630. color:#FFFFFF;
  4631. }
  4632. #u1800 {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:226px;
  4636. top:41px;
  4637. width:57px;
  4638. height:20px;
  4639. display:flex;
  4640. transition:none;
  4641. transform-origin:50% 50%;
  4642. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4643. font-weight:500;
  4644. font-style:normal;
  4645. font-size:14px;
  4646. color:#FFFFFF;
  4647. }
  4648. #u1800 .text {
  4649. position:absolute;
  4650. align-self:flex-start;
  4651. padding:0px 0px 0px 0px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u1800_text {
  4656. border-width:0px;
  4657. white-space:nowrap;
  4658. text-transform:none;
  4659. }
  4660. #u1801 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:238px;
  4664. top:0px;
  4665. width:33px;
  4666. height:39px;
  4667. display:flex;
  4668. transition:none;
  4669. color:#FFFFFF;
  4670. }
  4671. #u1801 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 2px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u1801_img {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:33px;
  4684. height:39px;
  4685. }
  4686. #u1801_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. }
  4691. #u1802 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:0px;
  4697. height:0px;
  4698. }
  4699. #u1803_div {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:57px;
  4705. height:20px;
  4706. background:inherit;
  4707. background-color:rgba(28, 33, 30, 1);
  4708. border-radius:0px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4712. font-weight:500;
  4713. font-style:normal;
  4714. font-size:14px;
  4715. color:#FFFFFF;
  4716. }
  4717. #u1803 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:301px;
  4721. top:41px;
  4722. width:57px;
  4723. height:20px;
  4724. display:flex;
  4725. transition:none;
  4726. transform-origin:50% 50%;
  4727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4728. font-weight:500;
  4729. font-style:normal;
  4730. font-size:14px;
  4731. color:#FFFFFF;
  4732. }
  4733. #u1803 .text {
  4734. position:absolute;
  4735. align-self:flex-start;
  4736. padding:0px 0px 0px 0px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u1803_text {
  4741. border-width:0px;
  4742. white-space:nowrap;
  4743. text-transform:none;
  4744. }
  4745. #u1804 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:313px;
  4749. top:0px;
  4750. width:33px;
  4751. height:39px;
  4752. display:flex;
  4753. transition:none;
  4754. color:#FFFFFF;
  4755. }
  4756. #u1804 .text {
  4757. position:absolute;
  4758. align-self:center;
  4759. padding:2px 2px 2px 2px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u1804_img {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:33px;
  4769. height:39px;
  4770. }
  4771. #u1804_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. }
  4776. #u1805 {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:0px;
  4782. height:0px;
  4783. }
  4784. #u1806_div {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:0px;
  4788. top:0px;
  4789. width:56px;
  4790. height:20px;
  4791. background:inherit;
  4792. background-color:rgba(28, 33, 30, 1);
  4793. border-radius:0px;
  4794. filter:drop-shadow(none);
  4795. transition:none;
  4796. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4797. font-weight:500;
  4798. font-style:normal;
  4799. font-size:14px;
  4800. color:#FFFFFF;
  4801. }
  4802. #u1806 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:452px;
  4806. top:41px;
  4807. width:56px;
  4808. height:20px;
  4809. display:flex;
  4810. transition:none;
  4811. transform-origin:50% 50%;
  4812. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4813. font-weight:500;
  4814. font-style:normal;
  4815. font-size:14px;
  4816. color:#FFFFFF;
  4817. }
  4818. #u1806 .text {
  4819. position:absolute;
  4820. align-self:flex-start;
  4821. padding:0px 0px 0px 0px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u1806_text {
  4826. border-width:0px;
  4827. white-space:nowrap;
  4828. text-transform:none;
  4829. }
  4830. #u1807 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:464px;
  4834. top:0px;
  4835. width:33px;
  4836. height:39px;
  4837. display:flex;
  4838. transition:none;
  4839. color:#FFFFFF;
  4840. }
  4841. #u1807 .text {
  4842. position:absolute;
  4843. align-self:center;
  4844. padding:2px 2px 2px 2px;
  4845. box-sizing:border-box;
  4846. width:100%;
  4847. }
  4848. #u1807_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:33px;
  4854. height:39px;
  4855. }
  4856. #u1807_text {
  4857. border-width:0px;
  4858. word-wrap:break-word;
  4859. text-transform:none;
  4860. }
  4861. #u1808 {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:0px;
  4867. height:0px;
  4868. }
  4869. #u1809_div {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:59px;
  4875. height:20px;
  4876. background:inherit;
  4877. background-color:rgba(28, 33, 30, 1);
  4878. border-radius:0px;
  4879. filter:drop-shadow(none);
  4880. transition:none;
  4881. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4882. font-weight:500;
  4883. font-style:normal;
  4884. font-size:14px;
  4885. color:#FFFFFF;
  4886. }
  4887. #u1809 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:376px;
  4891. top:41px;
  4892. width:59px;
  4893. height:20px;
  4894. display:flex;
  4895. transition:none;
  4896. transform-origin:50% 50%;
  4897. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4898. font-weight:500;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. color:#FFFFFF;
  4902. }
  4903. #u1809 .text {
  4904. position:absolute;
  4905. align-self:flex-start;
  4906. padding:0px 0px 0px 0px;
  4907. box-sizing:border-box;
  4908. width:100%;
  4909. }
  4910. #u1809_text {
  4911. border-width:0px;
  4912. word-wrap:break-word;
  4913. text-transform:none;
  4914. }
  4915. #u1810 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:387px;
  4919. top:0px;
  4920. width:33px;
  4921. height:39px;
  4922. display:flex;
  4923. transition:none;
  4924. color:#FFFFFF;
  4925. }
  4926. #u1810 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 2px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u1810_img {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:33px;
  4939. height:39px;
  4940. }
  4941. #u1810_text {
  4942. border-width:0px;
  4943. word-wrap:break-word;
  4944. text-transform:none;
  4945. }
  4946. #u1811 {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:0px;
  4952. height:0px;
  4953. }
  4954. #u1812_div {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:57px;
  4960. height:20px;
  4961. background:inherit;
  4962. background-color:rgba(28, 33, 30, 1);
  4963. border-radius:0px;
  4964. filter:drop-shadow(none);
  4965. transition:none;
  4966. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4967. font-weight:500;
  4968. font-style:normal;
  4969. font-size:14px;
  4970. color:#FFFFFF;
  4971. }
  4972. #u1812 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:526px;
  4976. top:41px;
  4977. width:57px;
  4978. height:20px;
  4979. display:flex;
  4980. transition:none;
  4981. transform-origin:50% 50%;
  4982. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4983. font-weight:500;
  4984. font-style:normal;
  4985. font-size:14px;
  4986. color:#FFFFFF;
  4987. }
  4988. #u1812 .text {
  4989. position:absolute;
  4990. align-self:flex-start;
  4991. padding:0px 0px 0px 0px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u1812_text {
  4996. border-width:0px;
  4997. white-space:nowrap;
  4998. text-transform:none;
  4999. }
  5000. #u1813 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:539px;
  5004. top:0px;
  5005. width:33px;
  5006. height:39px;
  5007. display:flex;
  5008. transition:none;
  5009. color:#FFFFFF;
  5010. }
  5011. #u1813 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:2px 2px 2px 2px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u1813_img {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:33px;
  5024. height:39px;
  5025. }
  5026. #u1813_text {
  5027. border-width:0px;
  5028. word-wrap:break-word;
  5029. text-transform:none;
  5030. }
  5031. #u1814 {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:0px;
  5037. height:0px;
  5038. }
  5039. #u1815_div {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:68px;
  5045. height:20px;
  5046. background:inherit;
  5047. background-color:rgba(28, 33, 30, 1);
  5048. border-radius:0px;
  5049. filter:drop-shadow(none);
  5050. transition:none;
  5051. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5052. font-weight:500;
  5053. font-style:normal;
  5054. font-size:14px;
  5055. color:#FFFFFF;
  5056. text-align:center;
  5057. }
  5058. #u1815 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:601px;
  5062. top:41px;
  5063. width:68px;
  5064. height:20px;
  5065. display:flex;
  5066. transition:none;
  5067. transform-origin:50% 50%;
  5068. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5069. font-weight:500;
  5070. font-style:normal;
  5071. font-size:14px;
  5072. color:#FFFFFF;
  5073. text-align:center;
  5074. }
  5075. #u1815 .text {
  5076. position:absolute;
  5077. align-self:flex-start;
  5078. padding:0px 0px 0px 0px;
  5079. box-sizing:border-box;
  5080. width:100%;
  5081. }
  5082. #u1815_text {
  5083. border-width:0px;
  5084. word-wrap:break-word;
  5085. text-transform:none;
  5086. }
  5087. #u1816 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:617px;
  5091. top:0px;
  5092. width:33px;
  5093. height:39px;
  5094. display:flex;
  5095. transition:none;
  5096. color:#FFFFFF;
  5097. }
  5098. #u1816 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 2px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u1816_img {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:33px;
  5111. height:39px;
  5112. }
  5113. #u1816_text {
  5114. border-width:0px;
  5115. word-wrap:break-word;
  5116. text-transform:none;
  5117. }
  5118. #u1817 {
  5119. border-width:0px;
  5120. position:absolute;
  5121. left:0px;
  5122. top:0px;
  5123. width:0px;
  5124. height:0px;
  5125. }
  5126. #u1818_div {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:68px;
  5132. height:20px;
  5133. background:inherit;
  5134. background-color:rgba(28, 33, 30, 1);
  5135. border-radius:0px;
  5136. filter:drop-shadow(none);
  5137. transition:none;
  5138. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5139. font-weight:500;
  5140. font-style:normal;
  5141. font-size:14px;
  5142. color:#FFFFFF;
  5143. text-align:center;
  5144. }
  5145. #u1818 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:686px;
  5149. top:41px;
  5150. width:68px;
  5151. height:20px;
  5152. display:flex;
  5153. transition:none;
  5154. transform-origin:50% 50%;
  5155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5156. font-weight:500;
  5157. font-style:normal;
  5158. font-size:14px;
  5159. color:#FFFFFF;
  5160. text-align:center;
  5161. }
  5162. #u1818 .text {
  5163. position:absolute;
  5164. align-self:flex-start;
  5165. padding:0px 0px 0px 0px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u1818_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. }
  5174. #u1819 {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:702px;
  5178. top:0px;
  5179. width:33px;
  5180. height:39px;
  5181. display:flex;
  5182. transition:none;
  5183. color:#FFFFFF;
  5184. }
  5185. #u1819 .text {
  5186. position:absolute;
  5187. align-self:center;
  5188. padding:2px 2px 2px 2px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u1819_img {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:33px;
  5198. height:39px;
  5199. }
  5200. #u1819_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. }
  5205. #u1820 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:0px;
  5211. height:0px;
  5212. }
  5213. #u1821_div {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:68px;
  5219. height:20px;
  5220. background:inherit;
  5221. background-color:rgba(28, 33, 30, 1);
  5222. border-radius:0px;
  5223. filter:drop-shadow(none);
  5224. transition:none;
  5225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5226. font-weight:500;
  5227. font-style:normal;
  5228. font-size:14px;
  5229. color:#FFFFFF;
  5230. text-align:center;
  5231. }
  5232. #u1821 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:772px;
  5236. top:41px;
  5237. width:68px;
  5238. height:20px;
  5239. display:flex;
  5240. transition:none;
  5241. transform-origin:50% 50%;
  5242. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5243. font-weight:500;
  5244. font-style:normal;
  5245. font-size:14px;
  5246. color:#FFFFFF;
  5247. text-align:center;
  5248. }
  5249. #u1821 .text {
  5250. position:absolute;
  5251. align-self:flex-start;
  5252. padding:0px 0px 0px 0px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u1821_text {
  5257. border-width:0px;
  5258. word-wrap:break-word;
  5259. text-transform:none;
  5260. }
  5261. #u1822 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:788px;
  5265. top:0px;
  5266. width:33px;
  5267. height:39px;
  5268. display:flex;
  5269. transition:none;
  5270. color:#FFFFFF;
  5271. }
  5272. #u1822 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u1822_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:33px;
  5285. height:39px;
  5286. }
  5287. #u1822_text {
  5288. border-width:0px;
  5289. word-wrap:break-word;
  5290. text-transform:none;
  5291. }
  5292. #u1823 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:0px;
  5298. height:0px;
  5299. }
  5300. #u1824_div {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:0px;
  5304. top:0px;
  5305. width:1000px;
  5306. height:589px;
  5307. background:inherit;
  5308. background-color:rgba(110, 109, 102, 0.8745098039215686);
  5309. box-sizing:border-box;
  5310. border-width:1px;
  5311. border-style:solid;
  5312. border-color:rgba(245, 154, 35, 1);
  5313. border-radius:4px;
  5314. filter:drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.34901960784313724));
  5315. transition:none;
  5316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. color:#F59A23;
  5321. }
  5322. #u1824 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:216px;
  5326. top:887px;
  5327. width:1000px;
  5328. height:589px;
  5329. display:flex;
  5330. transition:none;
  5331. transform-origin:50% 50%;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:14px;
  5336. color:#F59A23;
  5337. }
  5338. #u1824 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 2px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u1824_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. visibility:hidden;
  5350. }
  5351. #u1825_div {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:125px;
  5357. height:32px;
  5358. background:inherit;
  5359. background-color:rgba(255, 255, 255, 0);
  5360. border-radius:0px;
  5361. filter:drop-shadow(none);
  5362. transition:none;
  5363. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5364. font-weight:500;
  5365. font-style:normal;
  5366. font-size:20px;
  5367. color:#FFFFFF;
  5368. }
  5369. #u1825 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:236px;
  5373. top:897px;
  5374. width:125px;
  5375. height:32px;
  5376. display:flex;
  5377. transition:none;
  5378. transform-origin:50% 50%;
  5379. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5380. font-weight:500;
  5381. font-style:normal;
  5382. font-size:20px;
  5383. color:#FFFFFF;
  5384. }
  5385. #u1825 .text {
  5386. position:absolute;
  5387. align-self:center;
  5388. padding:2px 2px 2px 2px;
  5389. box-sizing:border-box;
  5390. width:100%;
  5391. }
  5392. #u1825_text {
  5393. border-width:0px;
  5394. white-space:nowrap;
  5395. text-transform:none;
  5396. }
  5397. #u1826_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:33px;
  5403. height:40px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 0);
  5406. box-sizing:border-box;
  5407. border-width:2px;
  5408. border-style:solid;
  5409. border-color:rgba(245, 154, 35, 1);
  5410. border-left:0px;
  5411. border-top:0px;
  5412. border-right:0px;
  5413. border-radius:0px;
  5414. border-bottom-right-radius:0px;
  5415. border-bottom-left-radius:0px;
  5416. filter:drop-shadow(none);
  5417. transition:none;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:14px;
  5422. color:#F59A23;
  5423. }
  5424. #u1826 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:252px;
  5428. top:943px;
  5429. width:33px;
  5430. height:40px;
  5431. display:flex;
  5432. transition:none;
  5433. transform-origin:50% 50%;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. color:#F59A23;
  5439. }
  5440. #u1826 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:2px 2px 2px 2px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u1826_text {
  5448. border-width:0px;
  5449. white-space:nowrap;
  5450. text-transform:none;
  5451. }
  5452. #u1827_div {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:47px;
  5458. height:40px;
  5459. background:inherit;
  5460. background-color:rgba(255, 255, 255, 0);
  5461. border-left:0px;
  5462. border-top:0px;
  5463. border-right:0px;
  5464. border-radius:0px;
  5465. border-bottom-right-radius:0px;
  5466. border-bottom-left-radius:0px;
  5467. filter:drop-shadow(none);
  5468. transition:none;
  5469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:14px;
  5473. color:#FFFFFF;
  5474. }
  5475. #u1827 {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:317px;
  5479. top:943px;
  5480. width:47px;
  5481. height:40px;
  5482. display:flex;
  5483. transition:none;
  5484. transform-origin:50% 50%;
  5485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5486. font-weight:400;
  5487. font-style:normal;
  5488. font-size:14px;
  5489. color:#FFFFFF;
  5490. }
  5491. #u1827 .text {
  5492. position:absolute;
  5493. align-self:center;
  5494. padding:2px 2px 2px 2px;
  5495. box-sizing:border-box;
  5496. width:100%;
  5497. }
  5498. #u1827_text {
  5499. border-width:0px;
  5500. white-space:nowrap;
  5501. text-transform:none;
  5502. }
  5503. #u1828_div {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:47px;
  5509. height:40px;
  5510. background:inherit;
  5511. background-color:rgba(255, 255, 255, 0);
  5512. border-left:0px;
  5513. border-top:0px;
  5514. border-right:0px;
  5515. border-radius:0px;
  5516. border-bottom-right-radius:0px;
  5517. border-bottom-left-radius:0px;
  5518. filter:drop-shadow(none);
  5519. transition:none;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:14px;
  5524. color:#FFFFFF;
  5525. }
  5526. #u1828 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:395px;
  5530. top:943px;
  5531. width:47px;
  5532. height:40px;
  5533. display:flex;
  5534. transition:none;
  5535. transform-origin:50% 50%;
  5536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:14px;
  5540. color:#FFFFFF;
  5541. }
  5542. #u1828 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:2px 2px 2px 2px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u1828_text {
  5550. border-width:0px;
  5551. white-space:nowrap;
  5552. text-transform:none;
  5553. }
  5554. #u1829 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:252px;
  5558. top:993px;
  5559. width:944px;
  5560. height:366px;
  5561. }
  5562. #u1830 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:118px;
  5568. height:39px;
  5569. display:flex;
  5570. transition:none;
  5571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5572. font-weight:400;
  5573. font-style:normal;
  5574. font-size:12px;
  5575. color:#FFFFFF;
  5576. }
  5577. #u1830 .text {
  5578. position:absolute;
  5579. align-self:center;
  5580. padding:2px 2px 2px 0px;
  5581. box-sizing:border-box;
  5582. width:100%;
  5583. }
  5584. #u1830_img {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:118px;
  5590. height:39px;
  5591. }
  5592. #u1830_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. }
  5597. #u1831 {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:118px;
  5601. top:0px;
  5602. width:118px;
  5603. height:39px;
  5604. display:flex;
  5605. transition:none;
  5606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:12px;
  5610. color:#FFFFFF;
  5611. }
  5612. #u1831 .text {
  5613. position:absolute;
  5614. align-self:center;
  5615. padding:2px 2px 2px 0px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u1831_img {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:118px;
  5625. height:39px;
  5626. }
  5627. #u1831_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. }
  5632. #u1832 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:236px;
  5636. top:0px;
  5637. width:118px;
  5638. height:39px;
  5639. display:flex;
  5640. transition:none;
  5641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:12px;
  5645. color:#FFFFFF;
  5646. }
  5647. #u1832 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 2px 2px 0px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u1832_img {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:0px;
  5658. top:0px;
  5659. width:118px;
  5660. height:39px;
  5661. }
  5662. #u1832_text {
  5663. border-width:0px;
  5664. word-wrap:break-word;
  5665. text-transform:none;
  5666. }
  5667. #u1833 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:354px;
  5671. top:0px;
  5672. width:118px;
  5673. height:39px;
  5674. display:flex;
  5675. transition:none;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:12px;
  5680. color:#FFFFFF;
  5681. }
  5682. #u1833 .text {
  5683. position:absolute;
  5684. align-self:center;
  5685. padding:2px 2px 2px 0px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u1833_img {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:118px;
  5695. height:39px;
  5696. }
  5697. #u1833_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. }
  5702. #u1834 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:472px;
  5706. top:0px;
  5707. width:118px;
  5708. height:39px;
  5709. display:flex;
  5710. transition:none;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:12px;
  5715. color:#FFFFFF;
  5716. }
  5717. #u1834 .text {
  5718. position:absolute;
  5719. align-self:center;
  5720. padding:2px 2px 2px 0px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u1834_img {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:118px;
  5730. height:39px;
  5731. }
  5732. #u1834_text {
  5733. border-width:0px;
  5734. word-wrap:break-word;
  5735. text-transform:none;
  5736. }
  5737. #u1835 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:590px;
  5741. top:0px;
  5742. width:118px;
  5743. height:39px;
  5744. display:flex;
  5745. transition:none;
  5746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:12px;
  5750. color:#FFFFFF;
  5751. }
  5752. #u1835 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 0px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u1835_img {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:118px;
  5765. height:39px;
  5766. }
  5767. #u1835_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. }
  5772. #u1836 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:708px;
  5776. top:0px;
  5777. width:118px;
  5778. height:39px;
  5779. display:flex;
  5780. transition:none;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:12px;
  5785. color:#FFFFFF;
  5786. }
  5787. #u1836 .text {
  5788. position:absolute;
  5789. align-self:center;
  5790. padding:2px 2px 2px 0px;
  5791. box-sizing:border-box;
  5792. width:100%;
  5793. }
  5794. #u1836_img {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:118px;
  5800. height:39px;
  5801. }
  5802. #u1836_text {
  5803. border-width:0px;
  5804. word-wrap:break-word;
  5805. text-transform:none;
  5806. }
  5807. #u1837 {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:826px;
  5811. top:0px;
  5812. width:118px;
  5813. height:39px;
  5814. display:flex;
  5815. transition:none;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:12px;
  5820. color:#FFFFFF;
  5821. }
  5822. #u1837 .text {
  5823. position:absolute;
  5824. align-self:center;
  5825. padding:2px 2px 2px 0px;
  5826. box-sizing:border-box;
  5827. width:100%;
  5828. }
  5829. #u1837_img {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:118px;
  5835. height:39px;
  5836. }
  5837. #u1837_text {
  5838. border-width:0px;
  5839. word-wrap:break-word;
  5840. text-transform:none;
  5841. }
  5842. #u1838 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:39px;
  5847. width:118px;
  5848. height:38px;
  5849. display:flex;
  5850. transition:none;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:12px;
  5855. color:#FFFFFF;
  5856. }
  5857. #u1838 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:2px 2px 2px 0px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u1838_img {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:0px;
  5868. top:0px;
  5869. width:118px;
  5870. height:38px;
  5871. }
  5872. #u1838_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u1839 {
  5879. border-width:0px;
  5880. position:absolute;
  5881. left:118px;
  5882. top:39px;
  5883. width:118px;
  5884. height:38px;
  5885. display:flex;
  5886. transition:none;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:12px;
  5891. color:#FFFFFF;
  5892. }
  5893. #u1839 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 0px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u1839_img {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:118px;
  5906. height:38px;
  5907. }
  5908. #u1839_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u1840 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:236px;
  5918. top:39px;
  5919. width:118px;
  5920. height:38px;
  5921. display:flex;
  5922. transition:none;
  5923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:12px;
  5927. color:#FFFFFF;
  5928. }
  5929. #u1840 .text {
  5930. position:absolute;
  5931. align-self:center;
  5932. padding:2px 2px 2px 0px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u1840_img {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:118px;
  5942. height:38px;
  5943. }
  5944. #u1840_text {
  5945. border-width:0px;
  5946. word-wrap:break-word;
  5947. text-transform:none;
  5948. visibility:hidden;
  5949. }
  5950. #u1841 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:354px;
  5954. top:39px;
  5955. width:118px;
  5956. height:38px;
  5957. display:flex;
  5958. transition:none;
  5959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:12px;
  5963. color:#FFFFFF;
  5964. }
  5965. #u1841 .text {
  5966. position:absolute;
  5967. align-self:center;
  5968. padding:2px 2px 2px 0px;
  5969. box-sizing:border-box;
  5970. width:100%;
  5971. }
  5972. #u1841_img {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:118px;
  5978. height:38px;
  5979. }
  5980. #u1841_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. visibility:hidden;
  5985. }
  5986. #u1842 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:472px;
  5990. top:39px;
  5991. width:118px;
  5992. height:38px;
  5993. display:flex;
  5994. transition:none;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:12px;
  5999. color:#FFFFFF;
  6000. }
  6001. #u1842 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 0px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u1842_img {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:118px;
  6014. height:38px;
  6015. }
  6016. #u1842_text {
  6017. border-width:0px;
  6018. word-wrap:break-word;
  6019. text-transform:none;
  6020. visibility:hidden;
  6021. }
  6022. #u1843 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:590px;
  6026. top:39px;
  6027. width:118px;
  6028. height:38px;
  6029. display:flex;
  6030. transition:none;
  6031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:12px;
  6035. color:#FFFFFF;
  6036. }
  6037. #u1843 .text {
  6038. position:absolute;
  6039. align-self:center;
  6040. padding:2px 2px 2px 0px;
  6041. box-sizing:border-box;
  6042. width:100%;
  6043. }
  6044. #u1843_img {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:118px;
  6050. height:38px;
  6051. }
  6052. #u1843_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u1844 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:708px;
  6062. top:39px;
  6063. width:118px;
  6064. height:38px;
  6065. display:flex;
  6066. transition:none;
  6067. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6068. font-weight:400;
  6069. font-style:normal;
  6070. font-size:12px;
  6071. color:#FFFFFF;
  6072. }
  6073. #u1844 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 2px 2px 0px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u1844_img {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:118px;
  6086. height:38px;
  6087. }
  6088. #u1844_text {
  6089. border-width:0px;
  6090. word-wrap:break-word;
  6091. text-transform:none;
  6092. visibility:hidden;
  6093. }
  6094. #u1845 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:826px;
  6098. top:39px;
  6099. width:118px;
  6100. height:38px;
  6101. display:flex;
  6102. transition:none;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:12px;
  6107. color:#FFFFFF;
  6108. }
  6109. #u1845 .text {
  6110. position:absolute;
  6111. align-self:center;
  6112. padding:2px 2px 2px 0px;
  6113. box-sizing:border-box;
  6114. width:100%;
  6115. }
  6116. #u1845_img {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:118px;
  6122. height:38px;
  6123. }
  6124. #u1845_text {
  6125. border-width:0px;
  6126. word-wrap:break-word;
  6127. text-transform:none;
  6128. visibility:hidden;
  6129. }
  6130. #u1846 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:77px;
  6135. width:118px;
  6136. height:38px;
  6137. display:flex;
  6138. transition:none;
  6139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:12px;
  6143. color:#FFFFFF;
  6144. }
  6145. #u1846 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 0px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u1846_img {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:118px;
  6158. height:38px;
  6159. }
  6160. #u1846_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u1847 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:118px;
  6170. top:77px;
  6171. width:118px;
  6172. height:38px;
  6173. display:flex;
  6174. transition:none;
  6175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:12px;
  6179. color:#FFFFFF;
  6180. }
  6181. #u1847 .text {
  6182. position:absolute;
  6183. align-self:center;
  6184. padding:2px 2px 2px 0px;
  6185. box-sizing:border-box;
  6186. width:100%;
  6187. }
  6188. #u1847_img {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:118px;
  6194. height:38px;
  6195. }
  6196. #u1847_text {
  6197. border-width:0px;
  6198. word-wrap:break-word;
  6199. text-transform:none;
  6200. visibility:hidden;
  6201. }
  6202. #u1848 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:236px;
  6206. top:77px;
  6207. width:118px;
  6208. height:38px;
  6209. display:flex;
  6210. transition:none;
  6211. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:12px;
  6215. color:#FFFFFF;
  6216. }
  6217. #u1848 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:2px 2px 2px 0px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u1848_img {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:118px;
  6230. height:38px;
  6231. }
  6232. #u1848_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u1849 {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:354px;
  6242. top:77px;
  6243. width:118px;
  6244. height:38px;
  6245. display:flex;
  6246. transition:none;
  6247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:12px;
  6251. color:#FFFFFF;
  6252. }
  6253. #u1849 .text {
  6254. position:absolute;
  6255. align-self:center;
  6256. padding:2px 2px 2px 0px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u1849_img {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:118px;
  6266. height:38px;
  6267. }
  6268. #u1849_text {
  6269. border-width:0px;
  6270. word-wrap:break-word;
  6271. text-transform:none;
  6272. visibility:hidden;
  6273. }
  6274. #u1850 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:472px;
  6278. top:77px;
  6279. width:118px;
  6280. height:38px;
  6281. display:flex;
  6282. transition:none;
  6283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:12px;
  6287. color:#FFFFFF;
  6288. }
  6289. #u1850 .text {
  6290. position:absolute;
  6291. align-self:center;
  6292. padding:2px 2px 2px 0px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u1850_img {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:118px;
  6302. height:38px;
  6303. }
  6304. #u1850_text {
  6305. border-width:0px;
  6306. word-wrap:break-word;
  6307. text-transform:none;
  6308. visibility:hidden;
  6309. }
  6310. #u1851 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:590px;
  6314. top:77px;
  6315. width:118px;
  6316. height:38px;
  6317. display:flex;
  6318. transition:none;
  6319. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6320. font-weight:400;
  6321. font-style:normal;
  6322. font-size:12px;
  6323. color:#FFFFFF;
  6324. }
  6325. #u1851 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u1851_img {
  6333. border-width:0px;
  6334. position:absolute;
  6335. left:0px;
  6336. top:0px;
  6337. width:118px;
  6338. height:38px;
  6339. }
  6340. #u1851_text {
  6341. border-width:0px;
  6342. word-wrap:break-word;
  6343. text-transform:none;
  6344. visibility:hidden;
  6345. }
  6346. #u1852 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:708px;
  6350. top:77px;
  6351. width:118px;
  6352. height:38px;
  6353. display:flex;
  6354. transition:none;
  6355. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:12px;
  6359. color:#FFFFFF;
  6360. }
  6361. #u1852 .text {
  6362. position:absolute;
  6363. align-self:center;
  6364. padding:2px 2px 2px 0px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u1852_img {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:0px;
  6372. top:0px;
  6373. width:118px;
  6374. height:38px;
  6375. }
  6376. #u1852_text {
  6377. border-width:0px;
  6378. word-wrap:break-word;
  6379. text-transform:none;
  6380. visibility:hidden;
  6381. }
  6382. #u1853 {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:826px;
  6386. top:77px;
  6387. width:118px;
  6388. height:38px;
  6389. display:flex;
  6390. transition:none;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:12px;
  6395. color:#FFFFFF;
  6396. }
  6397. #u1853 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 0px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u1853_img {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:118px;
  6410. height:38px;
  6411. }
  6412. #u1853_text {
  6413. border-width:0px;
  6414. word-wrap:break-word;
  6415. text-transform:none;
  6416. visibility:hidden;
  6417. }
  6418. #u1854 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:115px;
  6423. width:118px;
  6424. height:38px;
  6425. display:flex;
  6426. transition:none;
  6427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. font-size:12px;
  6431. color:#FFFFFF;
  6432. }
  6433. #u1854 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 0px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u1854_img {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:0px;
  6444. top:0px;
  6445. width:118px;
  6446. height:38px;
  6447. }
  6448. #u1854_text {
  6449. border-width:0px;
  6450. word-wrap:break-word;
  6451. text-transform:none;
  6452. visibility:hidden;
  6453. }
  6454. #u1855 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:118px;
  6458. top:115px;
  6459. width:118px;
  6460. height:38px;
  6461. display:flex;
  6462. transition:none;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:12px;
  6467. color:#FFFFFF;
  6468. }
  6469. #u1855 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 0px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u1855_img {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:118px;
  6482. height:38px;
  6483. }
  6484. #u1855_text {
  6485. border-width:0px;
  6486. word-wrap:break-word;
  6487. text-transform:none;
  6488. visibility:hidden;
  6489. }
  6490. #u1856 {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:236px;
  6494. top:115px;
  6495. width:118px;
  6496. height:38px;
  6497. display:flex;
  6498. transition:none;
  6499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6500. font-weight:400;
  6501. font-style:normal;
  6502. font-size:12px;
  6503. color:#FFFFFF;
  6504. }
  6505. #u1856 .text {
  6506. position:absolute;
  6507. align-self:center;
  6508. padding:2px 2px 2px 0px;
  6509. box-sizing:border-box;
  6510. width:100%;
  6511. }
  6512. #u1856_img {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:0px;
  6516. top:0px;
  6517. width:118px;
  6518. height:38px;
  6519. }
  6520. #u1856_text {
  6521. border-width:0px;
  6522. word-wrap:break-word;
  6523. text-transform:none;
  6524. visibility:hidden;
  6525. }
  6526. #u1857 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:354px;
  6530. top:115px;
  6531. width:118px;
  6532. height:38px;
  6533. display:flex;
  6534. transition:none;
  6535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:12px;
  6539. color:#FFFFFF;
  6540. }
  6541. #u1857 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:2px 2px 2px 0px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u1857_img {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:118px;
  6554. height:38px;
  6555. }
  6556. #u1857_text {
  6557. border-width:0px;
  6558. word-wrap:break-word;
  6559. text-transform:none;
  6560. visibility:hidden;
  6561. }
  6562. #u1858 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:472px;
  6566. top:115px;
  6567. width:118px;
  6568. height:38px;
  6569. display:flex;
  6570. transition:none;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:12px;
  6575. color:#FFFFFF;
  6576. }
  6577. #u1858 .text {
  6578. position:absolute;
  6579. align-self:center;
  6580. padding:2px 2px 2px 0px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u1858_img {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:118px;
  6590. height:38px;
  6591. }
  6592. #u1858_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. visibility:hidden;
  6597. }
  6598. #u1859 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:590px;
  6602. top:115px;
  6603. width:118px;
  6604. height:38px;
  6605. display:flex;
  6606. transition:none;
  6607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. font-size:12px;
  6611. color:#FFFFFF;
  6612. }
  6613. #u1859 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:2px 2px 2px 0px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u1859_img {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:118px;
  6626. height:38px;
  6627. }
  6628. #u1859_text {
  6629. border-width:0px;
  6630. word-wrap:break-word;
  6631. text-transform:none;
  6632. visibility:hidden;
  6633. }
  6634. #u1860 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:708px;
  6638. top:115px;
  6639. width:118px;
  6640. height:38px;
  6641. display:flex;
  6642. transition:none;
  6643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6644. font-weight:400;
  6645. font-style:normal;
  6646. font-size:12px;
  6647. color:#FFFFFF;
  6648. }
  6649. #u1860 .text {
  6650. position:absolute;
  6651. align-self:center;
  6652. padding:2px 2px 2px 0px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u1860_img {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:118px;
  6662. height:38px;
  6663. }
  6664. #u1860_text {
  6665. border-width:0px;
  6666. word-wrap:break-word;
  6667. text-transform:none;
  6668. visibility:hidden;
  6669. }
  6670. #u1861 {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:826px;
  6674. top:115px;
  6675. width:118px;
  6676. height:38px;
  6677. display:flex;
  6678. transition:none;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:12px;
  6683. color:#FFFFFF;
  6684. }
  6685. #u1861 .text {
  6686. position:absolute;
  6687. align-self:center;
  6688. padding:2px 2px 2px 0px;
  6689. box-sizing:border-box;
  6690. width:100%;
  6691. }
  6692. #u1861_img {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:0px;
  6696. top:0px;
  6697. width:118px;
  6698. height:38px;
  6699. }
  6700. #u1861_text {
  6701. border-width:0px;
  6702. word-wrap:break-word;
  6703. text-transform:none;
  6704. visibility:hidden;
  6705. }
  6706. #u1862 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:153px;
  6711. width:118px;
  6712. height:38px;
  6713. display:flex;
  6714. transition:none;
  6715. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:12px;
  6719. color:#FFFFFF;
  6720. }
  6721. #u1862 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:2px 2px 2px 0px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u1862_img {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:118px;
  6734. height:38px;
  6735. }
  6736. #u1862_text {
  6737. border-width:0px;
  6738. word-wrap:break-word;
  6739. text-transform:none;
  6740. visibility:hidden;
  6741. }
  6742. #u1863 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:118px;
  6746. top:153px;
  6747. width:118px;
  6748. height:38px;
  6749. display:flex;
  6750. transition:none;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:12px;
  6755. color:#FFFFFF;
  6756. }
  6757. #u1863 .text {
  6758. position:absolute;
  6759. align-self:center;
  6760. padding:2px 2px 2px 0px;
  6761. box-sizing:border-box;
  6762. width:100%;
  6763. }
  6764. #u1863_img {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:118px;
  6770. height:38px;
  6771. }
  6772. #u1863_text {
  6773. border-width:0px;
  6774. word-wrap:break-word;
  6775. text-transform:none;
  6776. visibility:hidden;
  6777. }
  6778. #u1864 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:236px;
  6782. top:153px;
  6783. width:118px;
  6784. height:38px;
  6785. display:flex;
  6786. transition:none;
  6787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6788. font-weight:400;
  6789. font-style:normal;
  6790. font-size:12px;
  6791. color:#FFFFFF;
  6792. }
  6793. #u1864 .text {
  6794. position:absolute;
  6795. align-self:center;
  6796. padding:2px 2px 2px 0px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u1864_img {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:118px;
  6806. height:38px;
  6807. }
  6808. #u1864_text {
  6809. border-width:0px;
  6810. word-wrap:break-word;
  6811. text-transform:none;
  6812. visibility:hidden;
  6813. }
  6814. #u1865 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:354px;
  6818. top:153px;
  6819. width:118px;
  6820. height:38px;
  6821. display:flex;
  6822. transition:none;
  6823. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:12px;
  6827. color:#FFFFFF;
  6828. }
  6829. #u1865 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:2px 2px 2px 0px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u1865_img {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:118px;
  6842. height:38px;
  6843. }
  6844. #u1865_text {
  6845. border-width:0px;
  6846. word-wrap:break-word;
  6847. text-transform:none;
  6848. visibility:hidden;
  6849. }
  6850. #u1866 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:472px;
  6854. top:153px;
  6855. width:118px;
  6856. height:38px;
  6857. display:flex;
  6858. transition:none;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. font-size:12px;
  6863. color:#FFFFFF;
  6864. }
  6865. #u1866 .text {
  6866. position:absolute;
  6867. align-self:center;
  6868. padding:2px 2px 2px 0px;
  6869. box-sizing:border-box;
  6870. width:100%;
  6871. }
  6872. #u1866_img {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:118px;
  6878. height:38px;
  6879. }
  6880. #u1866_text {
  6881. border-width:0px;
  6882. word-wrap:break-word;
  6883. text-transform:none;
  6884. visibility:hidden;
  6885. }
  6886. #u1867 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:590px;
  6890. top:153px;
  6891. width:118px;
  6892. height:38px;
  6893. display:flex;
  6894. transition:none;
  6895. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:12px;
  6899. color:#FFFFFF;
  6900. }
  6901. #u1867 .text {
  6902. position:absolute;
  6903. align-self:center;
  6904. padding:2px 2px 2px 0px;
  6905. box-sizing:border-box;
  6906. width:100%;
  6907. }
  6908. #u1867_img {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:118px;
  6914. height:38px;
  6915. }
  6916. #u1867_text {
  6917. border-width:0px;
  6918. word-wrap:break-word;
  6919. text-transform:none;
  6920. visibility:hidden;
  6921. }
  6922. #u1868 {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:708px;
  6926. top:153px;
  6927. width:118px;
  6928. height:38px;
  6929. display:flex;
  6930. transition:none;
  6931. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:12px;
  6935. color:#FFFFFF;
  6936. }
  6937. #u1868 .text {
  6938. position:absolute;
  6939. align-self:center;
  6940. padding:2px 2px 2px 0px;
  6941. box-sizing:border-box;
  6942. width:100%;
  6943. }
  6944. #u1868_img {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:118px;
  6950. height:38px;
  6951. }
  6952. #u1868_text {
  6953. border-width:0px;
  6954. word-wrap:break-word;
  6955. text-transform:none;
  6956. visibility:hidden;
  6957. }
  6958. #u1869 {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:826px;
  6962. top:153px;
  6963. width:118px;
  6964. height:38px;
  6965. display:flex;
  6966. transition:none;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:12px;
  6971. color:#FFFFFF;
  6972. }
  6973. #u1869 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:2px 2px 2px 0px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u1869_img {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:118px;
  6986. height:38px;
  6987. }
  6988. #u1869_text {
  6989. border-width:0px;
  6990. word-wrap:break-word;
  6991. text-transform:none;
  6992. visibility:hidden;
  6993. }
  6994. #u1870 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:0px;
  6998. top:191px;
  6999. width:118px;
  7000. height:35px;
  7001. display:flex;
  7002. transition:none;
  7003. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7004. font-weight:400;
  7005. font-style:normal;
  7006. font-size:12px;
  7007. color:#FFFFFF;
  7008. }
  7009. #u1870 .text {
  7010. position:absolute;
  7011. align-self:center;
  7012. padding:2px 2px 2px 0px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u1870_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:118px;
  7022. height:35px;
  7023. }
  7024. #u1870_text {
  7025. border-width:0px;
  7026. word-wrap:break-word;
  7027. text-transform:none;
  7028. visibility:hidden;
  7029. }
  7030. #u1871 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:118px;
  7034. top:191px;
  7035. width:118px;
  7036. height:35px;
  7037. display:flex;
  7038. transition:none;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:12px;
  7043. color:#FFFFFF;
  7044. }
  7045. #u1871 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 0px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u1871_img {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:118px;
  7058. height:35px;
  7059. }
  7060. #u1871_text {
  7061. border-width:0px;
  7062. word-wrap:break-word;
  7063. text-transform:none;
  7064. visibility:hidden;
  7065. }
  7066. #u1872 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:236px;
  7070. top:191px;
  7071. width:118px;
  7072. height:35px;
  7073. display:flex;
  7074. transition:none;
  7075. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7076. font-weight:400;
  7077. font-style:normal;
  7078. font-size:12px;
  7079. color:#FFFFFF;
  7080. }
  7081. #u1872 .text {
  7082. position:absolute;
  7083. align-self:center;
  7084. padding:2px 2px 2px 0px;
  7085. box-sizing:border-box;
  7086. width:100%;
  7087. }
  7088. #u1872_img {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:118px;
  7094. height:35px;
  7095. }
  7096. #u1872_text {
  7097. border-width:0px;
  7098. word-wrap:break-word;
  7099. text-transform:none;
  7100. visibility:hidden;
  7101. }
  7102. #u1873 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:354px;
  7106. top:191px;
  7107. width:118px;
  7108. height:35px;
  7109. display:flex;
  7110. transition:none;
  7111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:12px;
  7115. color:#FFFFFF;
  7116. }
  7117. #u1873 .text {
  7118. position:absolute;
  7119. align-self:center;
  7120. padding:2px 2px 2px 0px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u1873_img {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:118px;
  7130. height:35px;
  7131. }
  7132. #u1873_text {
  7133. border-width:0px;
  7134. word-wrap:break-word;
  7135. text-transform:none;
  7136. visibility:hidden;
  7137. }
  7138. #u1874 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:472px;
  7142. top:191px;
  7143. width:118px;
  7144. height:35px;
  7145. display:flex;
  7146. transition:none;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:12px;
  7151. color:#FFFFFF;
  7152. }
  7153. #u1874 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:2px 2px 2px 0px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u1874_img {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:118px;
  7166. height:35px;
  7167. }
  7168. #u1874_text {
  7169. border-width:0px;
  7170. word-wrap:break-word;
  7171. text-transform:none;
  7172. visibility:hidden;
  7173. }
  7174. #u1875 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:590px;
  7178. top:191px;
  7179. width:118px;
  7180. height:35px;
  7181. display:flex;
  7182. transition:none;
  7183. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:12px;
  7187. color:#FFFFFF;
  7188. }
  7189. #u1875 .text {
  7190. position:absolute;
  7191. align-self:center;
  7192. padding:2px 2px 2px 0px;
  7193. box-sizing:border-box;
  7194. width:100%;
  7195. }
  7196. #u1875_img {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:118px;
  7202. height:35px;
  7203. }
  7204. #u1875_text {
  7205. border-width:0px;
  7206. word-wrap:break-word;
  7207. text-transform:none;
  7208. visibility:hidden;
  7209. }
  7210. #u1876 {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:708px;
  7214. top:191px;
  7215. width:118px;
  7216. height:35px;
  7217. display:flex;
  7218. transition:none;
  7219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7220. font-weight:400;
  7221. font-style:normal;
  7222. font-size:12px;
  7223. color:#FFFFFF;
  7224. }
  7225. #u1876 .text {
  7226. position:absolute;
  7227. align-self:center;
  7228. padding:2px 2px 2px 0px;
  7229. box-sizing:border-box;
  7230. width:100%;
  7231. }
  7232. #u1876_img {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:118px;
  7238. height:35px;
  7239. }
  7240. #u1876_text {
  7241. border-width:0px;
  7242. word-wrap:break-word;
  7243. text-transform:none;
  7244. visibility:hidden;
  7245. }
  7246. #u1877 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:826px;
  7250. top:191px;
  7251. width:118px;
  7252. height:35px;
  7253. display:flex;
  7254. transition:none;
  7255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7256. font-weight:400;
  7257. font-style:normal;
  7258. font-size:12px;
  7259. color:#FFFFFF;
  7260. }
  7261. #u1877 .text {
  7262. position:absolute;
  7263. align-self:center;
  7264. padding:2px 2px 2px 0px;
  7265. box-sizing:border-box;
  7266. width:100%;
  7267. }
  7268. #u1877_img {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:0px;
  7273. width:118px;
  7274. height:35px;
  7275. }
  7276. #u1877_text {
  7277. border-width:0px;
  7278. word-wrap:break-word;
  7279. text-transform:none;
  7280. visibility:hidden;
  7281. }
  7282. #u1878 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:0px;
  7286. top:226px;
  7287. width:118px;
  7288. height:35px;
  7289. display:flex;
  7290. transition:none;
  7291. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:12px;
  7295. color:#FFFFFF;
  7296. }
  7297. #u1878 .text {
  7298. position:absolute;
  7299. align-self:center;
  7300. padding:2px 2px 2px 0px;
  7301. box-sizing:border-box;
  7302. width:100%;
  7303. }
  7304. #u1878_img {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:118px;
  7310. height:35px;
  7311. }
  7312. #u1878_text {
  7313. border-width:0px;
  7314. word-wrap:break-word;
  7315. text-transform:none;
  7316. visibility:hidden;
  7317. }
  7318. #u1879 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:118px;
  7322. top:226px;
  7323. width:118px;
  7324. height:35px;
  7325. display:flex;
  7326. transition:none;
  7327. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:12px;
  7331. color:#FFFFFF;
  7332. }
  7333. #u1879 .text {
  7334. position:absolute;
  7335. align-self:center;
  7336. padding:2px 2px 2px 0px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u1879_img {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:118px;
  7346. height:35px;
  7347. }
  7348. #u1879_text {
  7349. border-width:0px;
  7350. word-wrap:break-word;
  7351. text-transform:none;
  7352. visibility:hidden;
  7353. }
  7354. #u1880 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:236px;
  7358. top:226px;
  7359. width:118px;
  7360. height:35px;
  7361. display:flex;
  7362. transition:none;
  7363. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:12px;
  7367. color:#FFFFFF;
  7368. }
  7369. #u1880 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 0px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u1880_img {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:118px;
  7382. height:35px;
  7383. }
  7384. #u1880_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u1881 {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:354px;
  7394. top:226px;
  7395. width:118px;
  7396. height:35px;
  7397. display:flex;
  7398. transition:none;
  7399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:12px;
  7403. color:#FFFFFF;
  7404. }
  7405. #u1881 .text {
  7406. position:absolute;
  7407. align-self:center;
  7408. padding:2px 2px 2px 0px;
  7409. box-sizing:border-box;
  7410. width:100%;
  7411. }
  7412. #u1881_img {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:118px;
  7418. height:35px;
  7419. }
  7420. #u1881_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u1882 {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:472px;
  7430. top:226px;
  7431. width:118px;
  7432. height:35px;
  7433. display:flex;
  7434. transition:none;
  7435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7436. font-weight:400;
  7437. font-style:normal;
  7438. font-size:12px;
  7439. color:#FFFFFF;
  7440. }
  7441. #u1882 .text {
  7442. position:absolute;
  7443. align-self:center;
  7444. padding:2px 2px 2px 0px;
  7445. box-sizing:border-box;
  7446. width:100%;
  7447. }
  7448. #u1882_img {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:118px;
  7454. height:35px;
  7455. }
  7456. #u1882_text {
  7457. border-width:0px;
  7458. word-wrap:break-word;
  7459. text-transform:none;
  7460. visibility:hidden;
  7461. }
  7462. #u1883 {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:590px;
  7466. top:226px;
  7467. width:118px;
  7468. height:35px;
  7469. display:flex;
  7470. transition:none;
  7471. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:12px;
  7475. color:#FFFFFF;
  7476. }
  7477. #u1883 .text {
  7478. position:absolute;
  7479. align-self:center;
  7480. padding:2px 2px 2px 0px;
  7481. box-sizing:border-box;
  7482. width:100%;
  7483. }
  7484. #u1883_img {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:118px;
  7490. height:35px;
  7491. }
  7492. #u1883_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. visibility:hidden;
  7497. }
  7498. #u1884 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:708px;
  7502. top:226px;
  7503. width:118px;
  7504. height:35px;
  7505. display:flex;
  7506. transition:none;
  7507. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7508. font-weight:400;
  7509. font-style:normal;
  7510. font-size:12px;
  7511. color:#FFFFFF;
  7512. }
  7513. #u1884 .text {
  7514. position:absolute;
  7515. align-self:center;
  7516. padding:2px 2px 2px 0px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u1884_img {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:118px;
  7526. height:35px;
  7527. }
  7528. #u1884_text {
  7529. border-width:0px;
  7530. word-wrap:break-word;
  7531. text-transform:none;
  7532. visibility:hidden;
  7533. }
  7534. #u1885 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:826px;
  7538. top:226px;
  7539. width:118px;
  7540. height:35px;
  7541. display:flex;
  7542. transition:none;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:12px;
  7547. color:#FFFFFF;
  7548. }
  7549. #u1885 .text {
  7550. position:absolute;
  7551. align-self:center;
  7552. padding:2px 2px 2px 0px;
  7553. box-sizing:border-box;
  7554. width:100%;
  7555. }
  7556. #u1885_img {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:0px;
  7561. width:118px;
  7562. height:35px;
  7563. }
  7564. #u1885_text {
  7565. border-width:0px;
  7566. word-wrap:break-word;
  7567. text-transform:none;
  7568. visibility:hidden;
  7569. }
  7570. #u1886 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:0px;
  7574. top:261px;
  7575. width:118px;
  7576. height:35px;
  7577. display:flex;
  7578. transition:none;
  7579. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:12px;
  7583. color:#FFFFFF;
  7584. }
  7585. #u1886 .text {
  7586. position:absolute;
  7587. align-self:center;
  7588. padding:2px 2px 2px 0px;
  7589. box-sizing:border-box;
  7590. width:100%;
  7591. }
  7592. #u1886_img {
  7593. border-width:0px;
  7594. position:absolute;
  7595. left:0px;
  7596. top:0px;
  7597. width:118px;
  7598. height:35px;
  7599. }
  7600. #u1886_text {
  7601. border-width:0px;
  7602. word-wrap:break-word;
  7603. text-transform:none;
  7604. visibility:hidden;
  7605. }
  7606. #u1887 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:118px;
  7610. top:261px;
  7611. width:118px;
  7612. height:35px;
  7613. display:flex;
  7614. transition:none;
  7615. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7616. font-weight:400;
  7617. font-style:normal;
  7618. font-size:12px;
  7619. color:#FFFFFF;
  7620. }
  7621. #u1887 .text {
  7622. position:absolute;
  7623. align-self:center;
  7624. padding:2px 2px 2px 0px;
  7625. box-sizing:border-box;
  7626. width:100%;
  7627. }
  7628. #u1887_img {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:0px;
  7632. top:0px;
  7633. width:118px;
  7634. height:35px;
  7635. }
  7636. #u1887_text {
  7637. border-width:0px;
  7638. word-wrap:break-word;
  7639. text-transform:none;
  7640. visibility:hidden;
  7641. }
  7642. #u1888 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:236px;
  7646. top:261px;
  7647. width:118px;
  7648. height:35px;
  7649. display:flex;
  7650. transition:none;
  7651. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:12px;
  7655. color:#FFFFFF;
  7656. }
  7657. #u1888 .text {
  7658. position:absolute;
  7659. align-self:center;
  7660. padding:2px 2px 2px 0px;
  7661. box-sizing:border-box;
  7662. width:100%;
  7663. }
  7664. #u1888_img {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:118px;
  7670. height:35px;
  7671. }
  7672. #u1888_text {
  7673. border-width:0px;
  7674. word-wrap:break-word;
  7675. text-transform:none;
  7676. visibility:hidden;
  7677. }
  7678. #u1889 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:354px;
  7682. top:261px;
  7683. width:118px;
  7684. height:35px;
  7685. display:flex;
  7686. transition:none;
  7687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:12px;
  7691. color:#FFFFFF;
  7692. }
  7693. #u1889 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 0px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u1889_img {
  7701. border-width:0px;
  7702. position:absolute;
  7703. left:0px;
  7704. top:0px;
  7705. width:118px;
  7706. height:35px;
  7707. }
  7708. #u1889_text {
  7709. border-width:0px;
  7710. word-wrap:break-word;
  7711. text-transform:none;
  7712. visibility:hidden;
  7713. }
  7714. #u1890 {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:472px;
  7718. top:261px;
  7719. width:118px;
  7720. height:35px;
  7721. display:flex;
  7722. transition:none;
  7723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7724. font-weight:400;
  7725. font-style:normal;
  7726. font-size:12px;
  7727. color:#FFFFFF;
  7728. }
  7729. #u1890 .text {
  7730. position:absolute;
  7731. align-self:center;
  7732. padding:2px 2px 2px 0px;
  7733. box-sizing:border-box;
  7734. width:100%;
  7735. }
  7736. #u1890_img {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:118px;
  7742. height:35px;
  7743. }
  7744. #u1890_text {
  7745. border-width:0px;
  7746. word-wrap:break-word;
  7747. text-transform:none;
  7748. visibility:hidden;
  7749. }
  7750. #u1891 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:590px;
  7754. top:261px;
  7755. width:118px;
  7756. height:35px;
  7757. display:flex;
  7758. transition:none;
  7759. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:12px;
  7763. color:#FFFFFF;
  7764. }
  7765. #u1891 .text {
  7766. position:absolute;
  7767. align-self:center;
  7768. padding:2px 2px 2px 0px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u1891_img {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:118px;
  7778. height:35px;
  7779. }
  7780. #u1891_text {
  7781. border-width:0px;
  7782. word-wrap:break-word;
  7783. text-transform:none;
  7784. visibility:hidden;
  7785. }
  7786. #u1892 {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:708px;
  7790. top:261px;
  7791. width:118px;
  7792. height:35px;
  7793. display:flex;
  7794. transition:none;
  7795. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7796. font-weight:400;
  7797. font-style:normal;
  7798. font-size:12px;
  7799. color:#FFFFFF;
  7800. }
  7801. #u1892 .text {
  7802. position:absolute;
  7803. align-self:center;
  7804. padding:2px 2px 2px 0px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u1892_img {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:118px;
  7814. height:35px;
  7815. }
  7816. #u1892_text {
  7817. border-width:0px;
  7818. word-wrap:break-word;
  7819. text-transform:none;
  7820. visibility:hidden;
  7821. }
  7822. #u1893 {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:826px;
  7826. top:261px;
  7827. width:118px;
  7828. height:35px;
  7829. display:flex;
  7830. transition:none;
  7831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7832. font-weight:400;
  7833. font-style:normal;
  7834. font-size:12px;
  7835. color:#FFFFFF;
  7836. }
  7837. #u1893 .text {
  7838. position:absolute;
  7839. align-self:center;
  7840. padding:2px 2px 2px 0px;
  7841. box-sizing:border-box;
  7842. width:100%;
  7843. }
  7844. #u1893_img {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:0px;
  7848. top:0px;
  7849. width:118px;
  7850. height:35px;
  7851. }
  7852. #u1893_text {
  7853. border-width:0px;
  7854. word-wrap:break-word;
  7855. text-transform:none;
  7856. visibility:hidden;
  7857. }
  7858. #u1894 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:0px;
  7862. top:296px;
  7863. width:118px;
  7864. height:35px;
  7865. display:flex;
  7866. transition:none;
  7867. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:12px;
  7871. color:#FFFFFF;
  7872. }
  7873. #u1894 .text {
  7874. position:absolute;
  7875. align-self:center;
  7876. padding:2px 2px 2px 0px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u1894_img {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:118px;
  7886. height:35px;
  7887. }
  7888. #u1894_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. visibility:hidden;
  7893. }
  7894. #u1895 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:118px;
  7898. top:296px;
  7899. width:118px;
  7900. height:35px;
  7901. display:flex;
  7902. transition:none;
  7903. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7904. font-weight:400;
  7905. font-style:normal;
  7906. font-size:12px;
  7907. color:#FFFFFF;
  7908. }
  7909. #u1895 .text {
  7910. position:absolute;
  7911. align-self:center;
  7912. padding:2px 2px 2px 0px;
  7913. box-sizing:border-box;
  7914. width:100%;
  7915. }
  7916. #u1895_img {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:0px;
  7920. top:0px;
  7921. width:118px;
  7922. height:35px;
  7923. }
  7924. #u1895_text {
  7925. border-width:0px;
  7926. word-wrap:break-word;
  7927. text-transform:none;
  7928. visibility:hidden;
  7929. }
  7930. #u1896 {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:236px;
  7934. top:296px;
  7935. width:118px;
  7936. height:35px;
  7937. display:flex;
  7938. transition:none;
  7939. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:12px;
  7943. color:#FFFFFF;
  7944. }
  7945. #u1896 .text {
  7946. position:absolute;
  7947. align-self:center;
  7948. padding:2px 2px 2px 0px;
  7949. box-sizing:border-box;
  7950. width:100%;
  7951. }
  7952. #u1896_img {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:118px;
  7958. height:35px;
  7959. }
  7960. #u1896_text {
  7961. border-width:0px;
  7962. word-wrap:break-word;
  7963. text-transform:none;
  7964. visibility:hidden;
  7965. }
  7966. #u1897 {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:354px;
  7970. top:296px;
  7971. width:118px;
  7972. height:35px;
  7973. display:flex;
  7974. transition:none;
  7975. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7976. font-weight:400;
  7977. font-style:normal;
  7978. font-size:12px;
  7979. color:#FFFFFF;
  7980. }
  7981. #u1897 .text {
  7982. position:absolute;
  7983. align-self:center;
  7984. padding:2px 2px 2px 0px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u1897_img {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:0px;
  7992. top:0px;
  7993. width:118px;
  7994. height:35px;
  7995. }
  7996. #u1897_text {
  7997. border-width:0px;
  7998. word-wrap:break-word;
  7999. text-transform:none;
  8000. visibility:hidden;
  8001. }
  8002. #u1898 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:472px;
  8006. top:296px;
  8007. width:118px;
  8008. height:35px;
  8009. display:flex;
  8010. transition:none;
  8011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:12px;
  8015. color:#FFFFFF;
  8016. }
  8017. #u1898 .text {
  8018. position:absolute;
  8019. align-self:center;
  8020. padding:2px 2px 2px 0px;
  8021. box-sizing:border-box;
  8022. width:100%;
  8023. }
  8024. #u1898_img {
  8025. border-width:0px;
  8026. position:absolute;
  8027. left:0px;
  8028. top:0px;
  8029. width:118px;
  8030. height:35px;
  8031. }
  8032. #u1898_text {
  8033. border-width:0px;
  8034. word-wrap:break-word;
  8035. text-transform:none;
  8036. visibility:hidden;
  8037. }
  8038. #u1899 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:590px;
  8042. top:296px;
  8043. width:118px;
  8044. height:35px;
  8045. display:flex;
  8046. transition:none;
  8047. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. font-size:12px;
  8051. color:#FFFFFF;
  8052. }
  8053. #u1899 .text {
  8054. position:absolute;
  8055. align-self:center;
  8056. padding:2px 2px 2px 0px;
  8057. box-sizing:border-box;
  8058. width:100%;
  8059. }
  8060. #u1899_img {
  8061. border-width:0px;
  8062. position:absolute;
  8063. left:0px;
  8064. top:0px;
  8065. width:118px;
  8066. height:35px;
  8067. }
  8068. #u1899_text {
  8069. border-width:0px;
  8070. word-wrap:break-word;
  8071. text-transform:none;
  8072. visibility:hidden;
  8073. }
  8074. #u1900 {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:708px;
  8078. top:296px;
  8079. width:118px;
  8080. height:35px;
  8081. display:flex;
  8082. transition:none;
  8083. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8084. font-weight:400;
  8085. font-style:normal;
  8086. font-size:12px;
  8087. color:#FFFFFF;
  8088. }
  8089. #u1900 .text {
  8090. position:absolute;
  8091. align-self:center;
  8092. padding:2px 2px 2px 0px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u1900_img {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:118px;
  8102. height:35px;
  8103. }
  8104. #u1900_text {
  8105. border-width:0px;
  8106. word-wrap:break-word;
  8107. text-transform:none;
  8108. visibility:hidden;
  8109. }
  8110. #u1901 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:826px;
  8114. top:296px;
  8115. width:118px;
  8116. height:35px;
  8117. display:flex;
  8118. transition:none;
  8119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8120. font-weight:400;
  8121. font-style:normal;
  8122. font-size:12px;
  8123. color:#FFFFFF;
  8124. }
  8125. #u1901 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:2px 2px 2px 0px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u1901_img {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:118px;
  8138. height:35px;
  8139. }
  8140. #u1901_text {
  8141. border-width:0px;
  8142. word-wrap:break-word;
  8143. text-transform:none;
  8144. visibility:hidden;
  8145. }
  8146. #u1902 {
  8147. border-width:0px;
  8148. position:absolute;
  8149. left:0px;
  8150. top:331px;
  8151. width:118px;
  8152. height:35px;
  8153. display:flex;
  8154. transition:none;
  8155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:12px;
  8159. color:#FFFFFF;
  8160. }
  8161. #u1902 .text {
  8162. position:absolute;
  8163. align-self:center;
  8164. padding:2px 2px 2px 0px;
  8165. box-sizing:border-box;
  8166. width:100%;
  8167. }
  8168. #u1902_img {
  8169. border-width:0px;
  8170. position:absolute;
  8171. left:0px;
  8172. top:0px;
  8173. width:118px;
  8174. height:35px;
  8175. }
  8176. #u1902_text {
  8177. border-width:0px;
  8178. word-wrap:break-word;
  8179. text-transform:none;
  8180. visibility:hidden;
  8181. }
  8182. #u1903 {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:118px;
  8186. top:331px;
  8187. width:118px;
  8188. height:35px;
  8189. display:flex;
  8190. transition:none;
  8191. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:12px;
  8195. color:#FFFFFF;
  8196. }
  8197. #u1903 .text {
  8198. position:absolute;
  8199. align-self:center;
  8200. padding:2px 2px 2px 0px;
  8201. box-sizing:border-box;
  8202. width:100%;
  8203. }
  8204. #u1903_img {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:118px;
  8210. height:35px;
  8211. }
  8212. #u1903_text {
  8213. border-width:0px;
  8214. word-wrap:break-word;
  8215. text-transform:none;
  8216. visibility:hidden;
  8217. }
  8218. #u1904 {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:236px;
  8222. top:331px;
  8223. width:118px;
  8224. height:35px;
  8225. display:flex;
  8226. transition:none;
  8227. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8228. font-weight:400;
  8229. font-style:normal;
  8230. font-size:12px;
  8231. color:#FFFFFF;
  8232. }
  8233. #u1904 .text {
  8234. position:absolute;
  8235. align-self:center;
  8236. padding:2px 2px 2px 0px;
  8237. box-sizing:border-box;
  8238. width:100%;
  8239. }
  8240. #u1904_img {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:0px;
  8244. top:0px;
  8245. width:118px;
  8246. height:35px;
  8247. }
  8248. #u1904_text {
  8249. border-width:0px;
  8250. word-wrap:break-word;
  8251. text-transform:none;
  8252. visibility:hidden;
  8253. }
  8254. #u1905 {
  8255. border-width:0px;
  8256. position:absolute;
  8257. left:354px;
  8258. top:331px;
  8259. width:118px;
  8260. height:35px;
  8261. display:flex;
  8262. transition:none;
  8263. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:12px;
  8267. color:#FFFFFF;
  8268. }
  8269. #u1905 .text {
  8270. position:absolute;
  8271. align-self:center;
  8272. padding:2px 2px 2px 0px;
  8273. box-sizing:border-box;
  8274. width:100%;
  8275. }
  8276. #u1905_img {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:0px;
  8280. top:0px;
  8281. width:118px;
  8282. height:35px;
  8283. }
  8284. #u1905_text {
  8285. border-width:0px;
  8286. word-wrap:break-word;
  8287. text-transform:none;
  8288. visibility:hidden;
  8289. }
  8290. #u1906 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:472px;
  8294. top:331px;
  8295. width:118px;
  8296. height:35px;
  8297. display:flex;
  8298. transition:none;
  8299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8300. font-weight:400;
  8301. font-style:normal;
  8302. font-size:12px;
  8303. color:#FFFFFF;
  8304. }
  8305. #u1906 .text {
  8306. position:absolute;
  8307. align-self:center;
  8308. padding:2px 2px 2px 0px;
  8309. box-sizing:border-box;
  8310. width:100%;
  8311. }
  8312. #u1906_img {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:118px;
  8318. height:35px;
  8319. }
  8320. #u1906_text {
  8321. border-width:0px;
  8322. word-wrap:break-word;
  8323. text-transform:none;
  8324. visibility:hidden;
  8325. }
  8326. #u1907 {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:590px;
  8330. top:331px;
  8331. width:118px;
  8332. height:35px;
  8333. display:flex;
  8334. transition:none;
  8335. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8336. font-weight:400;
  8337. font-style:normal;
  8338. font-size:12px;
  8339. color:#FFFFFF;
  8340. }
  8341. #u1907 .text {
  8342. position:absolute;
  8343. align-self:center;
  8344. padding:2px 2px 2px 0px;
  8345. box-sizing:border-box;
  8346. width:100%;
  8347. }
  8348. #u1907_img {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:0px;
  8352. top:0px;
  8353. width:118px;
  8354. height:35px;
  8355. }
  8356. #u1907_text {
  8357. border-width:0px;
  8358. word-wrap:break-word;
  8359. text-transform:none;
  8360. visibility:hidden;
  8361. }
  8362. #u1908 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:708px;
  8366. top:331px;
  8367. width:118px;
  8368. height:35px;
  8369. display:flex;
  8370. transition:none;
  8371. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8372. font-weight:400;
  8373. font-style:normal;
  8374. font-size:12px;
  8375. color:#FFFFFF;
  8376. }
  8377. #u1908 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:2px 2px 2px 0px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u1908_img {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:118px;
  8390. height:35px;
  8391. }
  8392. #u1908_text {
  8393. border-width:0px;
  8394. word-wrap:break-word;
  8395. text-transform:none;
  8396. visibility:hidden;
  8397. }
  8398. #u1909 {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:826px;
  8402. top:331px;
  8403. width:118px;
  8404. height:35px;
  8405. display:flex;
  8406. transition:none;
  8407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8408. font-weight:400;
  8409. font-style:normal;
  8410. font-size:12px;
  8411. color:#FFFFFF;
  8412. }
  8413. #u1909 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:2px 2px 2px 0px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u1909_img {
  8421. border-width:0px;
  8422. position:absolute;
  8423. left:0px;
  8424. top:0px;
  8425. width:118px;
  8426. height:35px;
  8427. }
  8428. #u1909_text {
  8429. border-width:0px;
  8430. word-wrap:break-word;
  8431. text-transform:none;
  8432. visibility:hidden;
  8433. }
  8434. #u1910 {
  8435. border-width:0px;
  8436. position:absolute;
  8437. left:0px;
  8438. top:0px;
  8439. width:0px;
  8440. height:0px;
  8441. }
  8442. #u1911 {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:1155px;
  8446. top:903px;
  8447. width:10px;
  8448. height:10px;
  8449. display:flex;
  8450. transition:none;
  8451. }
  8452. #u1911 .text {
  8453. position:absolute;
  8454. align-self:center;
  8455. padding:2px 2px 2px 2px;
  8456. box-sizing:border-box;
  8457. width:100%;
  8458. }
  8459. #u1911_img {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:0px;
  8463. top:0px;
  8464. width:10px;
  8465. height:10px;
  8466. }
  8467. #u1911_text {
  8468. border-width:0px;
  8469. word-wrap:break-word;
  8470. text-transform:none;
  8471. visibility:hidden;
  8472. }
  8473. #u1912_div {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:33px;
  8479. height:40px;
  8480. background:inherit;
  8481. background-color:rgba(255, 255, 255, 0);
  8482. border-left:0px;
  8483. border-top:0px;
  8484. border-right:0px;
  8485. border-radius:0px;
  8486. border-bottom-right-radius:0px;
  8487. border-bottom-left-radius:0px;
  8488. filter:drop-shadow(none);
  8489. transition:none;
  8490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8491. font-weight:400;
  8492. font-style:normal;
  8493. font-size:14px;
  8494. color:#FFFFFF;
  8495. }
  8496. #u1912 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:1173px;
  8500. top:888px;
  8501. width:33px;
  8502. height:40px;
  8503. display:flex;
  8504. transition:none;
  8505. transform-origin:50% 50%;
  8506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8507. font-weight:400;
  8508. font-style:normal;
  8509. font-size:14px;
  8510. color:#FFFFFF;
  8511. }
  8512. #u1912 .text {
  8513. position:absolute;
  8514. align-self:center;
  8515. padding:2px 2px 2px 2px;
  8516. box-sizing:border-box;
  8517. width:100%;
  8518. }
  8519. #u1912_text {
  8520. border-width:0px;
  8521. white-space:nowrap;
  8522. text-transform:none;
  8523. }
  8524. #u1913 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:0px;
  8528. top:0px;
  8529. width:0px;
  8530. height:0px;
  8531. }
  8532. #u1914 {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:0px;
  8538. height:0px;
  8539. }
  8540. #u1915_div {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:0px;
  8544. top:0px;
  8545. width:31px;
  8546. height:30px;
  8547. background:inherit;
  8548. background-color:rgba(255, 255, 255, 0);
  8549. box-sizing:border-box;
  8550. border-width:1px;
  8551. border-style:solid;
  8552. border-color:rgba(245, 154, 35, 0.996078431372549);
  8553. border-radius:4px;
  8554. filter:drop-shadow(none);
  8555. transition:none;
  8556. font-family:"Microsoft YaHei", sans-serif;
  8557. font-weight:400;
  8558. font-style:normal;
  8559. font-size:12px;
  8560. color:#FFFFFF;
  8561. }
  8562. #u1915 {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:1069px;
  8566. top:1422px;
  8567. width:31px;
  8568. height:30px;
  8569. display:flex;
  8570. transition:none;
  8571. transform-origin:50% 50%;
  8572. font-family:"Microsoft YaHei", sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:12px;
  8576. color:#FFFFFF;
  8577. }
  8578. #u1915 .text {
  8579. position:absolute;
  8580. align-self:center;
  8581. padding:2px 2px 2px 2px;
  8582. box-sizing:border-box;
  8583. width:100%;
  8584. }
  8585. #u1915_text {
  8586. border-width:0px;
  8587. word-wrap:break-word;
  8588. text-transform:none;
  8589. visibility:hidden;
  8590. }
  8591. #u1916 {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:1081px;
  8595. top:1430px;
  8596. width:8px;
  8597. height:14px;
  8598. display:flex;
  8599. transition:none;
  8600. font-family:"Microsoft YaHei", sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:12px;
  8604. color:#FFFFFF;
  8605. }
  8606. #u1916 .text {
  8607. position:absolute;
  8608. align-self:center;
  8609. padding:2px 2px 2px 2px;
  8610. box-sizing:border-box;
  8611. width:100%;
  8612. }
  8613. #u1916_img {
  8614. border-width:0px;
  8615. position:absolute;
  8616. left:0px;
  8617. top:0px;
  8618. width:8px;
  8619. height:14px;
  8620. }
  8621. #u1916_text {
  8622. border-width:0px;
  8623. word-wrap:break-word;
  8624. text-transform:none;
  8625. visibility:hidden;
  8626. }
  8627. #u1917 {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:0px;
  8631. top:0px;
  8632. width:0px;
  8633. height:0px;
  8634. }
  8635. #u1918_div {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:31px;
  8641. height:30px;
  8642. background:inherit;
  8643. background-color:rgba(255, 255, 255, 0);
  8644. box-sizing:border-box;
  8645. border-width:1px;
  8646. border-style:solid;
  8647. border-color:rgba(245, 154, 35, 0.996078431372549);
  8648. border-radius:4px;
  8649. filter:drop-shadow(none);
  8650. transition:none;
  8651. font-family:"Microsoft YaHei", sans-serif;
  8652. font-weight:400;
  8653. font-style:normal;
  8654. font-size:12px;
  8655. color:#FFFFFF;
  8656. }
  8657. #u1918 {
  8658. border-width:0px;
  8659. position:absolute;
  8660. left:1154px;
  8661. top:1422px;
  8662. width:31px;
  8663. height:30px;
  8664. display:flex;
  8665. transition:none;
  8666. transform-origin:50% 50%;
  8667. font-family:"Microsoft YaHei", sans-serif;
  8668. font-weight:400;
  8669. font-style:normal;
  8670. font-size:12px;
  8671. color:#FFFFFF;
  8672. }
  8673. #u1918 .text {
  8674. position:absolute;
  8675. align-self:center;
  8676. padding:2px 2px 2px 2px;
  8677. box-sizing:border-box;
  8678. width:100%;
  8679. }
  8680. #u1918_text {
  8681. border-width:0px;
  8682. word-wrap:break-word;
  8683. text-transform:none;
  8684. visibility:hidden;
  8685. }
  8686. #u1919 {
  8687. border-width:0px;
  8688. position:absolute;
  8689. left:1167px;
  8690. top:1430px;
  8691. width:8px;
  8692. height:14px;
  8693. display:flex;
  8694. opacity:0.3;
  8695. transition:none;
  8696. font-family:"Microsoft YaHei", sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:12px;
  8700. color:rgba(245, 154, 35, 0.996078431372549);
  8701. }
  8702. #u1919 .text {
  8703. position:absolute;
  8704. align-self:center;
  8705. padding:2px 2px 2px 2px;
  8706. box-sizing:border-box;
  8707. width:100%;
  8708. }
  8709. #u1919_img {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:8px;
  8715. height:14px;
  8716. }
  8717. #u1919_text {
  8718. border-width:0px;
  8719. word-wrap:break-word;
  8720. text-transform:none;
  8721. visibility:hidden;
  8722. }
  8723. #u1920_div {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:0px;
  8727. top:0px;
  8728. width:40px;
  8729. height:21px;
  8730. background:inherit;
  8731. background-color:rgba(255, 255, 255, 0);
  8732. border-radius:15px;
  8733. filter:drop-shadow(none);
  8734. transition:none;
  8735. font-family:'Helvetica', sans-serif;
  8736. font-weight:400;
  8737. font-style:normal;
  8738. font-size:14px;
  8739. }
  8740. #u1920 {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:1106px;
  8744. top:1427px;
  8745. width:40px;
  8746. height:21px;
  8747. display:flex;
  8748. transition:none;
  8749. transform-origin:50% 50%;
  8750. font-family:'Helvetica', sans-serif;
  8751. font-weight:400;
  8752. font-style:normal;
  8753. font-size:14px;
  8754. }
  8755. #u1920 .text {
  8756. position:absolute;
  8757. align-self:center;
  8758. padding:2px 2px 2px 2px;
  8759. box-sizing:border-box;
  8760. width:100%;
  8761. }
  8762. #u1920_text {
  8763. border-width:0px;
  8764. white-space:nowrap;
  8765. text-transform:none;
  8766. }
  8767. #u1921 {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:0px;
  8771. top:0px;
  8772. width:0px;
  8773. height:0px;
  8774. }
  8775. #u1922_div {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:0px;
  8779. top:0px;
  8780. width:240px;
  8781. height:60px;
  8782. background:inherit;
  8783. background-color:rgba(255, 255, 255, 0.2);
  8784. box-sizing:border-box;
  8785. border-width:1px;
  8786. border-style:solid;
  8787. border-color:rgba(255, 255, 255, 0.4);
  8788. border-radius:0px;
  8789. filter:drop-shadow(none);
  8790. transition:none;
  8791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. font-size:12px;
  8795. color:#FFFFFF;
  8796. text-align:left;
  8797. }
  8798. #u1922 {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:1236px;
  8802. top:682px;
  8803. width:240px;
  8804. height:60px;
  8805. display:flex;
  8806. transition:none;
  8807. transform-origin:50% 50%;
  8808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8809. font-weight:400;
  8810. font-style:normal;
  8811. font-size:12px;
  8812. color:#FFFFFF;
  8813. text-align:left;
  8814. }
  8815. #u1922 .text {
  8816. position:absolute;
  8817. align-self:center;
  8818. padding:2px 2px 2px 10px;
  8819. box-sizing:border-box;
  8820. width:100%;
  8821. }
  8822. #u1922_text {
  8823. border-width:0px;
  8824. word-wrap:break-word;
  8825. text-transform:none;
  8826. visibility:hidden;
  8827. }
  8828. #u1923 {
  8829. border-width:0px;
  8830. position:absolute;
  8831. left:1236px;
  8832. top:682px;
  8833. width:62px;
  8834. height:60px;
  8835. display:flex;
  8836. transition:none;
  8837. }
  8838. #u1923 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 2px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u1923_img {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:0px;
  8849. top:0px;
  8850. width:62px;
  8851. height:60px;
  8852. }
  8853. #u1923_text {
  8854. border-width:0px;
  8855. word-wrap:break-word;
  8856. text-transform:none;
  8857. visibility:hidden;
  8858. }
  8859. #u1924_div {
  8860. border-width:0px;
  8861. position:absolute;
  8862. left:0px;
  8863. top:0px;
  8864. width:53px;
  8865. height:21px;
  8866. background:inherit;
  8867. background-color:rgba(245, 154, 35, 0);
  8868. border-left:0px;
  8869. border-top:0px;
  8870. border-right:0px;
  8871. border-radius:0px;
  8872. border-bottom-right-radius:0px;
  8873. border-bottom-left-radius:0px;
  8874. filter:drop-shadow(none);
  8875. transition:none;
  8876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8877. font-weight:400;
  8878. font-style:normal;
  8879. font-size:12px;
  8880. color:#FFFFFF;
  8881. text-align:left;
  8882. }
  8883. #u1924 {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:1303px;
  8887. top:686px;
  8888. width:53px;
  8889. height:21px;
  8890. display:flex;
  8891. transition:none;
  8892. transform-origin:50% 50%;
  8893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8894. font-weight:400;
  8895. font-style:normal;
  8896. font-size:12px;
  8897. color:#FFFFFF;
  8898. text-align:left;
  8899. }
  8900. #u1924 .text {
  8901. position:absolute;
  8902. align-self:center;
  8903. padding:2px 2px 2px 2px;
  8904. box-sizing:border-box;
  8905. width:100%;
  8906. }
  8907. #u1924_text {
  8908. border-width:0px;
  8909. white-space:nowrap;
  8910. text-transform:none;
  8911. }
  8912. #u1925_div {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:0px;
  8916. top:0px;
  8917. width:75px;
  8918. height:32px;
  8919. background:inherit;
  8920. background-color:rgba(245, 154, 35, 0);
  8921. border-left:0px;
  8922. border-top:0px;
  8923. border-right:0px;
  8924. border-radius:0px;
  8925. border-bottom-right-radius:0px;
  8926. border-bottom-left-radius:0px;
  8927. filter:drop-shadow(none);
  8928. transition:none;
  8929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:10px;
  8933. color:#FFFFFF;
  8934. text-align:left;
  8935. }
  8936. #u1925 {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:1303px;
  8940. top:707px;
  8941. width:75px;
  8942. height:32px;
  8943. display:flex;
  8944. transition:none;
  8945. transform-origin:50% 50%;
  8946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8947. font-weight:400;
  8948. font-style:normal;
  8949. font-size:10px;
  8950. color:#FFFFFF;
  8951. text-align:left;
  8952. }
  8953. #u1925 .text {
  8954. position:absolute;
  8955. align-self:center;
  8956. padding:2px 2px 2px 2px;
  8957. box-sizing:border-box;
  8958. width:100%;
  8959. }
  8960. #u1925_text {
  8961. border-width:0px;
  8962. white-space:nowrap;
  8963. text-transform:none;
  8964. }
  8965. #u1926_div {
  8966. border-width:0px;
  8967. position:absolute;
  8968. left:0px;
  8969. top:0px;
  8970. width:35px;
  8971. height:13px;
  8972. background:inherit;
  8973. background-color:rgba(217, 0, 27, 1);
  8974. border-radius:40px;
  8975. filter:drop-shadow(none);
  8976. transition:none;
  8977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8978. font-weight:400;
  8979. font-style:normal;
  8980. font-size:8px;
  8981. color:rgba(255, 255, 255, 0.6980392156862745);
  8982. }
  8983. #u1926 {
  8984. border-width:0px;
  8985. position:absolute;
  8986. left:1356px;
  8987. top:690px;
  8988. width:35px;
  8989. height:13px;
  8990. display:flex;
  8991. transition:none;
  8992. transform-origin:50% 50%;
  8993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8994. font-weight:400;
  8995. font-style:normal;
  8996. font-size:8px;
  8997. color:rgba(255, 255, 255, 0.6980392156862745);
  8998. }
  8999. #u1926 .text {
  9000. position:absolute;
  9001. align-self:center;
  9002. padding:0px 0px 2px 0px;
  9003. box-sizing:border-box;
  9004. width:100%;
  9005. }
  9006. #u1926_text {
  9007. border-width:0px;
  9008. word-wrap:break-word;
  9009. text-transform:none;
  9010. }
  9011. #u1927 {
  9012. border-width:0px;
  9013. position:absolute;
  9014. left:0px;
  9015. top:0px;
  9016. width:0px;
  9017. height:0px;
  9018. }
  9019. #u1928_div {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:240px;
  9025. height:60px;
  9026. background:inherit;
  9027. background-color:rgba(255, 255, 255, 0.2);
  9028. box-sizing:border-box;
  9029. border-width:1px;
  9030. border-style:solid;
  9031. border-color:rgba(255, 255, 255, 0.4);
  9032. border-radius:0px;
  9033. filter:drop-shadow(none);
  9034. transition:none;
  9035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9036. font-weight:400;
  9037. font-style:normal;
  9038. font-size:12px;
  9039. color:#FFFFFF;
  9040. text-align:left;
  9041. }
  9042. #u1928 {
  9043. border-width:0px;
  9044. position:absolute;
  9045. left:1242px;
  9046. top:272px;
  9047. width:240px;
  9048. height:60px;
  9049. display:flex;
  9050. transition:none;
  9051. transform-origin:50% 50%;
  9052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:12px;
  9056. color:#FFFFFF;
  9057. text-align:left;
  9058. }
  9059. #u1928 .text {
  9060. position:absolute;
  9061. align-self:center;
  9062. padding:2px 2px 2px 10px;
  9063. box-sizing:border-box;
  9064. width:100%;
  9065. }
  9066. #u1928_text {
  9067. border-width:0px;
  9068. word-wrap:break-word;
  9069. text-transform:none;
  9070. visibility:hidden;
  9071. }
  9072. #u1929 {
  9073. border-width:0px;
  9074. position:absolute;
  9075. left:1242px;
  9076. top:272px;
  9077. width:62px;
  9078. height:60px;
  9079. display:flex;
  9080. transition:none;
  9081. }
  9082. #u1929 .text {
  9083. position:absolute;
  9084. align-self:center;
  9085. padding:2px 2px 2px 2px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u1929_img {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:0px;
  9093. top:0px;
  9094. width:62px;
  9095. height:60px;
  9096. }
  9097. #u1929_text {
  9098. border-width:0px;
  9099. word-wrap:break-word;
  9100. text-transform:none;
  9101. visibility:hidden;
  9102. }
  9103. #u1930_div {
  9104. border-width:0px;
  9105. position:absolute;
  9106. left:0px;
  9107. top:0px;
  9108. width:41px;
  9109. height:21px;
  9110. background:inherit;
  9111. background-color:rgba(245, 154, 35, 0);
  9112. border-left:0px;
  9113. border-top:0px;
  9114. border-right:0px;
  9115. border-radius:0px;
  9116. border-bottom-right-radius:0px;
  9117. border-bottom-left-radius:0px;
  9118. filter:drop-shadow(none);
  9119. transition:none;
  9120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9121. font-weight:400;
  9122. font-style:normal;
  9123. font-size:12px;
  9124. color:#FFFFFF;
  9125. text-align:left;
  9126. }
  9127. #u1930 {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:1309px;
  9131. top:276px;
  9132. width:41px;
  9133. height:21px;
  9134. display:flex;
  9135. transition:none;
  9136. transform-origin:50% 50%;
  9137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:12px;
  9141. color:#FFFFFF;
  9142. text-align:left;
  9143. }
  9144. #u1930 .text {
  9145. position:absolute;
  9146. align-self:center;
  9147. padding:2px 2px 2px 2px;
  9148. box-sizing:border-box;
  9149. width:100%;
  9150. }
  9151. #u1930_text {
  9152. border-width:0px;
  9153. white-space:nowrap;
  9154. text-transform:none;
  9155. }
  9156. #u1931_div {
  9157. border-width:0px;
  9158. position:absolute;
  9159. left:0px;
  9160. top:0px;
  9161. width:75px;
  9162. height:32px;
  9163. background:inherit;
  9164. background-color:rgba(245, 154, 35, 0);
  9165. border-left:0px;
  9166. border-top:0px;
  9167. border-right:0px;
  9168. border-radius:0px;
  9169. border-bottom-right-radius:0px;
  9170. border-bottom-left-radius:0px;
  9171. filter:drop-shadow(none);
  9172. transition:none;
  9173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9174. font-weight:400;
  9175. font-style:normal;
  9176. font-size:10px;
  9177. color:#FFFFFF;
  9178. text-align:left;
  9179. }
  9180. #u1931 {
  9181. border-width:0px;
  9182. position:absolute;
  9183. left:1309px;
  9184. top:297px;
  9185. width:75px;
  9186. height:32px;
  9187. display:flex;
  9188. transition:none;
  9189. transform-origin:50% 50%;
  9190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9191. font-weight:400;
  9192. font-style:normal;
  9193. font-size:10px;
  9194. color:#FFFFFF;
  9195. text-align:left;
  9196. }
  9197. #u1931 .text {
  9198. position:absolute;
  9199. align-self:center;
  9200. padding:2px 2px 2px 2px;
  9201. box-sizing:border-box;
  9202. width:100%;
  9203. }
  9204. #u1931_text {
  9205. border-width:0px;
  9206. white-space:nowrap;
  9207. text-transform:none;
  9208. }
  9209. #u1932_div {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:0px;
  9213. top:0px;
  9214. width:24px;
  9215. height:13px;
  9216. background:inherit;
  9217. background-color:rgba(245, 154, 35, 1);
  9218. border-radius:40px;
  9219. filter:drop-shadow(none);
  9220. transition:none;
  9221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:8px;
  9225. color:rgba(255, 255, 255, 0.6980392156862745);
  9226. }
  9227. #u1932 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:1362px;
  9231. top:280px;
  9232. width:24px;
  9233. height:13px;
  9234. display:flex;
  9235. transition:none;
  9236. transform-origin:50% 50%;
  9237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9238. font-weight:400;
  9239. font-style:normal;
  9240. font-size:8px;
  9241. color:rgba(255, 255, 255, 0.6980392156862745);
  9242. }
  9243. #u1932 .text {
  9244. position:absolute;
  9245. align-self:center;
  9246. padding:0px 0px 2px 0px;
  9247. box-sizing:border-box;
  9248. width:100%;
  9249. }
  9250. #u1932_text {
  9251. border-width:0px;
  9252. word-wrap:break-word;
  9253. text-transform:none;
  9254. }
  9255. #u1933_div {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:17px;
  9261. height:21px;
  9262. background:inherit;
  9263. background-color:rgba(245, 154, 35, 0);
  9264. border-left:0px;
  9265. border-top:0px;
  9266. border-right:0px;
  9267. border-radius:0px;
  9268. border-bottom-right-radius:0px;
  9269. border-bottom-left-radius:0px;
  9270. filter:drop-shadow(none);
  9271. transition:none;
  9272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9273. font-weight:400;
  9274. font-style:normal;
  9275. font-size:12px;
  9276. color:#00BFBF;
  9277. text-align:left;
  9278. }
  9279. #u1933 {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:1455px;
  9283. top:272px;
  9284. width:17px;
  9285. height:21px;
  9286. display:flex;
  9287. transition:none;
  9288. transform-origin:50% 50%;
  9289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9290. font-weight:400;
  9291. font-style:normal;
  9292. font-size:12px;
  9293. color:#00BFBF;
  9294. text-align:left;
  9295. }
  9296. #u1933 .text {
  9297. position:absolute;
  9298. align-self:center;
  9299. padding:2px 2px 2px 2px;
  9300. box-sizing:border-box;
  9301. width:100%;
  9302. }
  9303. #u1933_text {
  9304. border-width:0px;
  9305. white-space:nowrap;
  9306. text-transform:none;
  9307. }
  9308. #u1934 {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:0px;
  9312. top:0px;
  9313. width:0px;
  9314. height:0px;
  9315. }
  9316. #u1935_div {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:240px;
  9322. height:60px;
  9323. background:inherit;
  9324. background-color:rgba(255, 255, 255, 0.2);
  9325. box-sizing:border-box;
  9326. border-width:1px;
  9327. border-style:solid;
  9328. border-color:rgba(255, 255, 255, 0.4);
  9329. border-radius:0px;
  9330. filter:drop-shadow(none);
  9331. transition:none;
  9332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9333. font-weight:400;
  9334. font-style:normal;
  9335. font-size:12px;
  9336. color:#FFFFFF;
  9337. text-align:left;
  9338. }
  9339. #u1935 {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:1242px;
  9343. top:342px;
  9344. width:240px;
  9345. height:60px;
  9346. display:flex;
  9347. transition:none;
  9348. transform-origin:50% 50%;
  9349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9350. font-weight:400;
  9351. font-style:normal;
  9352. font-size:12px;
  9353. color:#FFFFFF;
  9354. text-align:left;
  9355. }
  9356. #u1935 .text {
  9357. position:absolute;
  9358. align-self:center;
  9359. padding:2px 2px 2px 10px;
  9360. box-sizing:border-box;
  9361. width:100%;
  9362. }
  9363. #u1935_text {
  9364. border-width:0px;
  9365. word-wrap:break-word;
  9366. text-transform:none;
  9367. visibility:hidden;
  9368. }
  9369. #u1936 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:1242px;
  9373. top:342px;
  9374. width:62px;
  9375. height:60px;
  9376. display:flex;
  9377. transition:none;
  9378. }
  9379. #u1936 .text {
  9380. position:absolute;
  9381. align-self:center;
  9382. padding:2px 2px 2px 2px;
  9383. box-sizing:border-box;
  9384. width:100%;
  9385. }
  9386. #u1936_img {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:62px;
  9392. height:60px;
  9393. }
  9394. #u1936_text {
  9395. border-width:0px;
  9396. word-wrap:break-word;
  9397. text-transform:none;
  9398. visibility:hidden;
  9399. }
  9400. #u1937_div {
  9401. border-width:0px;
  9402. position:absolute;
  9403. left:0px;
  9404. top:0px;
  9405. width:41px;
  9406. height:21px;
  9407. background:inherit;
  9408. background-color:rgba(245, 154, 35, 0);
  9409. border-left:0px;
  9410. border-top:0px;
  9411. border-right:0px;
  9412. border-radius:0px;
  9413. border-bottom-right-radius:0px;
  9414. border-bottom-left-radius:0px;
  9415. filter:drop-shadow(none);
  9416. transition:none;
  9417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9418. font-weight:400;
  9419. font-style:normal;
  9420. font-size:12px;
  9421. color:#FFFFFF;
  9422. text-align:left;
  9423. }
  9424. #u1937 {
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:1309px;
  9428. top:346px;
  9429. width:41px;
  9430. height:21px;
  9431. display:flex;
  9432. transition:none;
  9433. transform-origin:50% 50%;
  9434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:12px;
  9438. color:#FFFFFF;
  9439. text-align:left;
  9440. }
  9441. #u1937 .text {
  9442. position:absolute;
  9443. align-self:center;
  9444. padding:2px 2px 2px 2px;
  9445. box-sizing:border-box;
  9446. width:100%;
  9447. }
  9448. #u1937_text {
  9449. border-width:0px;
  9450. white-space:nowrap;
  9451. text-transform:none;
  9452. }
  9453. #u1938_div {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:75px;
  9459. height:32px;
  9460. background:inherit;
  9461. background-color:rgba(245, 154, 35, 0);
  9462. border-left:0px;
  9463. border-top:0px;
  9464. border-right:0px;
  9465. border-radius:0px;
  9466. border-bottom-right-radius:0px;
  9467. border-bottom-left-radius:0px;
  9468. filter:drop-shadow(none);
  9469. transition:none;
  9470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9471. font-weight:400;
  9472. font-style:normal;
  9473. font-size:10px;
  9474. color:#FFFFFF;
  9475. text-align:left;
  9476. }
  9477. #u1938 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:1309px;
  9481. top:367px;
  9482. width:75px;
  9483. height:32px;
  9484. display:flex;
  9485. transition:none;
  9486. transform-origin:50% 50%;
  9487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9488. font-weight:400;
  9489. font-style:normal;
  9490. font-size:10px;
  9491. color:#FFFFFF;
  9492. text-align:left;
  9493. }
  9494. #u1938 .text {
  9495. position:absolute;
  9496. align-self:center;
  9497. padding:2px 2px 2px 2px;
  9498. box-sizing:border-box;
  9499. width:100%;
  9500. }
  9501. #u1938_text {
  9502. border-width:0px;
  9503. white-space:nowrap;
  9504. text-transform:none;
  9505. }
  9506. #u1939_div {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:0px;
  9510. top:0px;
  9511. width:24px;
  9512. height:13px;
  9513. background:inherit;
  9514. background-color:rgba(245, 154, 35, 1);
  9515. border-radius:40px;
  9516. filter:drop-shadow(none);
  9517. transition:none;
  9518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9519. font-weight:400;
  9520. font-style:normal;
  9521. font-size:8px;
  9522. color:rgba(255, 255, 255, 0.6980392156862745);
  9523. }
  9524. #u1939 {
  9525. border-width:0px;
  9526. position:absolute;
  9527. left:1362px;
  9528. top:350px;
  9529. width:24px;
  9530. height:13px;
  9531. display:flex;
  9532. transition:none;
  9533. transform-origin:50% 50%;
  9534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9535. font-weight:400;
  9536. font-style:normal;
  9537. font-size:8px;
  9538. color:rgba(255, 255, 255, 0.6980392156862745);
  9539. }
  9540. #u1939 .text {
  9541. position:absolute;
  9542. align-self:center;
  9543. padding:0px 0px 2px 0px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u1939_text {
  9548. border-width:0px;
  9549. word-wrap:break-word;
  9550. text-transform:none;
  9551. }
  9552. #u1940_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:17px;
  9558. height:21px;
  9559. background:inherit;
  9560. background-color:rgba(245, 154, 35, 0);
  9561. border-left:0px;
  9562. border-top:0px;
  9563. border-right:0px;
  9564. border-radius:0px;
  9565. border-bottom-right-radius:0px;
  9566. border-bottom-left-radius:0px;
  9567. filter:drop-shadow(none);
  9568. transition:none;
  9569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9570. font-weight:400;
  9571. font-style:normal;
  9572. font-size:12px;
  9573. color:#00BFBF;
  9574. text-align:left;
  9575. }
  9576. #u1940 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:1455px;
  9580. top:342px;
  9581. width:17px;
  9582. height:21px;
  9583. display:flex;
  9584. transition:none;
  9585. transform-origin:50% 50%;
  9586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9587. font-weight:400;
  9588. font-style:normal;
  9589. font-size:12px;
  9590. color:#00BFBF;
  9591. text-align:left;
  9592. }
  9593. #u1940 .text {
  9594. position:absolute;
  9595. align-self:center;
  9596. padding:2px 2px 2px 2px;
  9597. box-sizing:border-box;
  9598. width:100%;
  9599. }
  9600. #u1940_text {
  9601. border-width:0px;
  9602. white-space:nowrap;
  9603. text-transform:none;
  9604. }
  9605. #u1941 {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:0px;
  9609. top:0px;
  9610. width:0px;
  9611. height:0px;
  9612. }
  9613. #u1942_div {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:0px;
  9617. top:0px;
  9618. width:240px;
  9619. height:60px;
  9620. background:inherit;
  9621. background-color:rgba(255, 255, 255, 0.2);
  9622. box-sizing:border-box;
  9623. border-width:1px;
  9624. border-style:solid;
  9625. border-color:rgba(255, 255, 255, 0.4);
  9626. border-radius:0px;
  9627. filter:drop-shadow(none);
  9628. transition:none;
  9629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9630. font-weight:400;
  9631. font-style:normal;
  9632. font-size:12px;
  9633. color:#FFFFFF;
  9634. text-align:left;
  9635. }
  9636. #u1942 {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:1242px;
  9640. top:412px;
  9641. width:240px;
  9642. height:60px;
  9643. display:flex;
  9644. transition:none;
  9645. transform-origin:50% 50%;
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:12px;
  9650. color:#FFFFFF;
  9651. text-align:left;
  9652. }
  9653. #u1942 .text {
  9654. position:absolute;
  9655. align-self:center;
  9656. padding:2px 2px 2px 10px;
  9657. box-sizing:border-box;
  9658. width:100%;
  9659. }
  9660. #u1942_text {
  9661. border-width:0px;
  9662. word-wrap:break-word;
  9663. text-transform:none;
  9664. visibility:hidden;
  9665. }
  9666. #u1943 {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:1242px;
  9670. top:412px;
  9671. width:62px;
  9672. height:60px;
  9673. display:flex;
  9674. transition:none;
  9675. }
  9676. #u1943 .text {
  9677. position:absolute;
  9678. align-self:center;
  9679. padding:2px 2px 2px 2px;
  9680. box-sizing:border-box;
  9681. width:100%;
  9682. }
  9683. #u1943_img {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:0px;
  9687. top:0px;
  9688. width:62px;
  9689. height:60px;
  9690. }
  9691. #u1943_text {
  9692. border-width:0px;
  9693. word-wrap:break-word;
  9694. text-transform:none;
  9695. visibility:hidden;
  9696. }
  9697. #u1944_div {
  9698. border-width:0px;
  9699. position:absolute;
  9700. left:0px;
  9701. top:0px;
  9702. width:41px;
  9703. height:21px;
  9704. background:inherit;
  9705. background-color:rgba(245, 154, 35, 0);
  9706. border-left:0px;
  9707. border-top:0px;
  9708. border-right:0px;
  9709. border-radius:0px;
  9710. border-bottom-right-radius:0px;
  9711. border-bottom-left-radius:0px;
  9712. filter:drop-shadow(none);
  9713. transition:none;
  9714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:12px;
  9718. color:#FFFFFF;
  9719. text-align:left;
  9720. }
  9721. #u1944 {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:1309px;
  9725. top:416px;
  9726. width:41px;
  9727. height:21px;
  9728. display:flex;
  9729. transition:none;
  9730. transform-origin:50% 50%;
  9731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9732. font-weight:400;
  9733. font-style:normal;
  9734. font-size:12px;
  9735. color:#FFFFFF;
  9736. text-align:left;
  9737. }
  9738. #u1944 .text {
  9739. position:absolute;
  9740. align-self:center;
  9741. padding:2px 2px 2px 2px;
  9742. box-sizing:border-box;
  9743. width:100%;
  9744. }
  9745. #u1944_text {
  9746. border-width:0px;
  9747. white-space:nowrap;
  9748. text-transform:none;
  9749. }
  9750. #u1945_div {
  9751. border-width:0px;
  9752. position:absolute;
  9753. left:0px;
  9754. top:0px;
  9755. width:75px;
  9756. height:32px;
  9757. background:inherit;
  9758. background-color:rgba(245, 154, 35, 0);
  9759. border-left:0px;
  9760. border-top:0px;
  9761. border-right:0px;
  9762. border-radius:0px;
  9763. border-bottom-right-radius:0px;
  9764. border-bottom-left-radius:0px;
  9765. filter:drop-shadow(none);
  9766. transition:none;
  9767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9768. font-weight:400;
  9769. font-style:normal;
  9770. font-size:10px;
  9771. color:#FFFFFF;
  9772. text-align:left;
  9773. }
  9774. #u1945 {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:1309px;
  9778. top:437px;
  9779. width:75px;
  9780. height:32px;
  9781. display:flex;
  9782. transition:none;
  9783. transform-origin:50% 50%;
  9784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9785. font-weight:400;
  9786. font-style:normal;
  9787. font-size:10px;
  9788. color:#FFFFFF;
  9789. text-align:left;
  9790. }
  9791. #u1945 .text {
  9792. position:absolute;
  9793. align-self:center;
  9794. padding:2px 2px 2px 2px;
  9795. box-sizing:border-box;
  9796. width:100%;
  9797. }
  9798. #u1945_text {
  9799. border-width:0px;
  9800. white-space:nowrap;
  9801. text-transform:none;
  9802. }
  9803. #u1946_div {
  9804. border-width:0px;
  9805. position:absolute;
  9806. left:0px;
  9807. top:0px;
  9808. width:24px;
  9809. height:13px;
  9810. background:inherit;
  9811. background-color:rgba(245, 154, 35, 1);
  9812. border-radius:40px;
  9813. filter:drop-shadow(none);
  9814. transition:none;
  9815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9816. font-weight:400;
  9817. font-style:normal;
  9818. font-size:8px;
  9819. color:rgba(255, 255, 255, 0.6980392156862745);
  9820. }
  9821. #u1946 {
  9822. border-width:0px;
  9823. position:absolute;
  9824. left:1362px;
  9825. top:420px;
  9826. width:24px;
  9827. height:13px;
  9828. display:flex;
  9829. transition:none;
  9830. transform-origin:50% 50%;
  9831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9832. font-weight:400;
  9833. font-style:normal;
  9834. font-size:8px;
  9835. color:rgba(255, 255, 255, 0.6980392156862745);
  9836. }
  9837. #u1946 .text {
  9838. position:absolute;
  9839. align-self:center;
  9840. padding:0px 0px 2px 0px;
  9841. box-sizing:border-box;
  9842. width:100%;
  9843. }
  9844. #u1946_text {
  9845. border-width:0px;
  9846. word-wrap:break-word;
  9847. text-transform:none;
  9848. }
  9849. #u1947_div {
  9850. border-width:0px;
  9851. position:absolute;
  9852. left:0px;
  9853. top:0px;
  9854. width:17px;
  9855. height:21px;
  9856. background:inherit;
  9857. background-color:rgba(245, 154, 35, 0);
  9858. border-left:0px;
  9859. border-top:0px;
  9860. border-right:0px;
  9861. border-radius:0px;
  9862. border-bottom-right-radius:0px;
  9863. border-bottom-left-radius:0px;
  9864. filter:drop-shadow(none);
  9865. transition:none;
  9866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9867. font-weight:400;
  9868. font-style:normal;
  9869. font-size:12px;
  9870. color:#00BFBF;
  9871. text-align:left;
  9872. }
  9873. #u1947 {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:1455px;
  9877. top:412px;
  9878. width:17px;
  9879. height:21px;
  9880. display:flex;
  9881. transition:none;
  9882. transform-origin:50% 50%;
  9883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9884. font-weight:400;
  9885. font-style:normal;
  9886. font-size:12px;
  9887. color:#00BFBF;
  9888. text-align:left;
  9889. }
  9890. #u1947 .text {
  9891. position:absolute;
  9892. align-self:center;
  9893. padding:2px 2px 2px 2px;
  9894. box-sizing:border-box;
  9895. width:100%;
  9896. }
  9897. #u1947_text {
  9898. border-width:0px;
  9899. white-space:nowrap;
  9900. text-transform:none;
  9901. }
  9902. #u1948 {
  9903. border-width:0px;
  9904. position:absolute;
  9905. left:0px;
  9906. top:0px;
  9907. width:0px;
  9908. height:0px;
  9909. }
  9910. #u1949_div {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:0px;
  9914. top:0px;
  9915. width:254px;
  9916. height:82px;
  9917. background:inherit;
  9918. background-color:rgba(245, 154, 35, 0.09803921568627451);
  9919. box-sizing:border-box;
  9920. border-width:1px;
  9921. border-style:solid;
  9922. border-color:rgba(121, 121, 121, 1);
  9923. border-radius:0px;
  9924. filter:drop-shadow(none);
  9925. transition:none;
  9926. }
  9927. #u1949 {
  9928. border-width:0px;
  9929. position:absolute;
  9930. left:348px;
  9931. top:271px;
  9932. width:254px;
  9933. height:82px;
  9934. display:flex;
  9935. transition:none;
  9936. transform-origin:50% 50%;
  9937. }
  9938. #u1949 .text {
  9939. position:absolute;
  9940. align-self:center;
  9941. padding:2px 2px 2px 2px;
  9942. box-sizing:border-box;
  9943. width:100%;
  9944. }
  9945. #u1949_text {
  9946. border-width:0px;
  9947. word-wrap:break-word;
  9948. text-transform:none;
  9949. visibility:hidden;
  9950. }
  9951. #u1950_div {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:0px;
  9955. top:0px;
  9956. width:31px;
  9957. height:24px;
  9958. background:inherit;
  9959. background-color:rgba(245, 154, 35, 0);
  9960. border-left:0px;
  9961. border-top:0px;
  9962. border-right:0px;
  9963. border-radius:0px;
  9964. border-bottom-right-radius:0px;
  9965. border-bottom-left-radius:0px;
  9966. filter:drop-shadow(none);
  9967. transition:none;
  9968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9969. font-weight:400;
  9970. font-style:normal;
  9971. font-size:14px;
  9972. color:#FFFFFF;
  9973. text-align:left;
  9974. }
  9975. #u1950 {
  9976. border-width:0px;
  9977. position:absolute;
  9978. left:415px;
  9979. top:278px;
  9980. width:31px;
  9981. height:24px;
  9982. display:flex;
  9983. transition:none;
  9984. transform-origin:50% 50%;
  9985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9986. font-weight:400;
  9987. font-style:normal;
  9988. font-size:14px;
  9989. color:#FFFFFF;
  9990. text-align:left;
  9991. }
  9992. #u1950 .text {
  9993. position:absolute;
  9994. align-self:center;
  9995. padding:2px 2px 2px 0px;
  9996. box-sizing:border-box;
  9997. width:100%;
  9998. }
  9999. #u1950_text {
  10000. border-width:0px;
  10001. white-space:nowrap;
  10002. text-transform:none;
  10003. }
  10004. #u1951_div {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:35px;
  10010. height:21px;
  10011. background:inherit;
  10012. background-color:rgba(245, 154, 35, 1);
  10013. border-radius:11px;
  10014. filter:drop-shadow(none);
  10015. transition:none;
  10016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10017. font-weight:400;
  10018. font-style:normal;
  10019. font-size:12px;
  10020. color:#FFFFFF;
  10021. }
  10022. #u1951 {
  10023. border-width:0px;
  10024. position:absolute;
  10025. left:458px;
  10026. top:280px;
  10027. width:35px;
  10028. height:21px;
  10029. display:flex;
  10030. transition:none;
  10031. transform-origin:50% 50%;
  10032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10033. font-weight:400;
  10034. font-style:normal;
  10035. font-size:12px;
  10036. color:#FFFFFF;
  10037. }
  10038. #u1951 .text {
  10039. position:absolute;
  10040. align-self:center;
  10041. padding:2px 2px 2px 2px;
  10042. box-sizing:border-box;
  10043. width:100%;
  10044. }
  10045. #u1951_text {
  10046. border-width:0px;
  10047. word-wrap:break-word;
  10048. text-transform:none;
  10049. }
  10050. #u1952_div {
  10051. border-width:0px;
  10052. position:absolute;
  10053. left:0px;
  10054. top:0px;
  10055. width:95px;
  10056. height:21px;
  10057. background:inherit;
  10058. background-color:rgba(245, 154, 35, 0);
  10059. border-left:0px;
  10060. border-top:0px;
  10061. border-right:0px;
  10062. border-radius:0px;
  10063. border-bottom-right-radius:0px;
  10064. border-bottom-left-radius:0px;
  10065. filter:drop-shadow(none);
  10066. transition:none;
  10067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10068. font-weight:400;
  10069. font-style:normal;
  10070. font-size:12px;
  10071. color:#FFFFFF;
  10072. text-align:left;
  10073. }
  10074. #u1952 {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:415px;
  10078. top:309px;
  10079. width:95px;
  10080. height:21px;
  10081. display:flex;
  10082. transition:none;
  10083. transform-origin:50% 50%;
  10084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10085. font-weight:400;
  10086. font-style:normal;
  10087. font-size:12px;
  10088. color:#FFFFFF;
  10089. text-align:left;
  10090. }
  10091. #u1952 .text {
  10092. position:absolute;
  10093. align-self:center;
  10094. padding:2px 2px 2px 0px;
  10095. box-sizing:border-box;
  10096. width:100%;
  10097. }
  10098. #u1952_text {
  10099. border-width:0px;
  10100. white-space:nowrap;
  10101. text-transform:none;
  10102. }
  10103. #u1953_div {
  10104. border-width:0px;
  10105. position:absolute;
  10106. left:0px;
  10107. top:0px;
  10108. width:103px;
  10109. height:18px;
  10110. background:inherit;
  10111. background-color:rgba(245, 154, 35, 0);
  10112. border-left:0px;
  10113. border-top:0px;
  10114. border-right:0px;
  10115. border-radius:0px;
  10116. border-bottom-right-radius:0px;
  10117. border-bottom-left-radius:0px;
  10118. filter:drop-shadow(none);
  10119. transition:none;
  10120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10121. font-weight:400;
  10122. font-style:normal;
  10123. font-size:10px;
  10124. color:#FFFFFF;
  10125. text-align:left;
  10126. }
  10127. #u1953 {
  10128. border-width:0px;
  10129. position:absolute;
  10130. left:415px;
  10131. top:330px;
  10132. width:103px;
  10133. height:18px;
  10134. display:flex;
  10135. transition:none;
  10136. transform-origin:50% 50%;
  10137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10138. font-weight:400;
  10139. font-style:normal;
  10140. font-size:10px;
  10141. color:#FFFFFF;
  10142. text-align:left;
  10143. }
  10144. #u1953 .text {
  10145. position:absolute;
  10146. align-self:center;
  10147. padding:2px 2px 2px 0px;
  10148. box-sizing:border-box;
  10149. width:100%;
  10150. }
  10151. #u1953_text {
  10152. border-width:0px;
  10153. white-space:nowrap;
  10154. text-transform:none;
  10155. }
  10156. #u1954 {
  10157. border-width:0px;
  10158. position:absolute;
  10159. left:356px;
  10160. top:282px;
  10161. width:50px;
  10162. height:59px;
  10163. display:flex;
  10164. transition:none;
  10165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10166. font-weight:400;
  10167. font-style:normal;
  10168. color:#FFFFFF;
  10169. }
  10170. #u1954 .text {
  10171. position:absolute;
  10172. align-self:center;
  10173. padding:2px 2px 2px 2px;
  10174. box-sizing:border-box;
  10175. width:100%;
  10176. }
  10177. #u1954_img {
  10178. border-width:0px;
  10179. position:absolute;
  10180. left:0px;
  10181. top:0px;
  10182. width:50px;
  10183. height:59px;
  10184. }
  10185. #u1954_text {
  10186. border-width:0px;
  10187. word-wrap:break-word;
  10188. text-transform:none;
  10189. }
  10190. #u1955 {
  10191. border-width:0px;
  10192. position:absolute;
  10193. left:0px;
  10194. top:0px;
  10195. width:0px;
  10196. height:0px;
  10197. }
  10198. #u1956_div {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:0px;
  10202. top:0px;
  10203. width:254px;
  10204. height:82px;
  10205. background:inherit;
  10206. background-color:rgba(245, 154, 35, 0.09803921568627451);
  10207. box-sizing:border-box;
  10208. border-width:1px;
  10209. border-style:solid;
  10210. border-color:rgba(121, 121, 121, 1);
  10211. border-radius:0px;
  10212. filter:drop-shadow(none);
  10213. transition:none;
  10214. }
  10215. #u1956 {
  10216. border-width:0px;
  10217. position:absolute;
  10218. left:612px;
  10219. top:271px;
  10220. width:254px;
  10221. height:82px;
  10222. display:flex;
  10223. transition:none;
  10224. transform-origin:50% 50%;
  10225. }
  10226. #u1956 .text {
  10227. position:absolute;
  10228. align-self:center;
  10229. padding:2px 2px 2px 2px;
  10230. box-sizing:border-box;
  10231. width:100%;
  10232. }
  10233. #u1956_text {
  10234. border-width:0px;
  10235. word-wrap:break-word;
  10236. text-transform:none;
  10237. visibility:hidden;
  10238. }
  10239. #u1957_div {
  10240. border-width:0px;
  10241. position:absolute;
  10242. left:0px;
  10243. top:0px;
  10244. width:45px;
  10245. height:24px;
  10246. background:inherit;
  10247. background-color:rgba(245, 154, 35, 0);
  10248. border-left:0px;
  10249. border-top:0px;
  10250. border-right:0px;
  10251. border-radius:0px;
  10252. border-bottom-right-radius:0px;
  10253. border-bottom-left-radius:0px;
  10254. filter:drop-shadow(none);
  10255. transition:none;
  10256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10257. font-weight:400;
  10258. font-style:normal;
  10259. font-size:14px;
  10260. color:#FFFFFF;
  10261. text-align:left;
  10262. }
  10263. #u1957 {
  10264. border-width:0px;
  10265. position:absolute;
  10266. left:679px;
  10267. top:278px;
  10268. width:45px;
  10269. height:24px;
  10270. display:flex;
  10271. transition:none;
  10272. transform-origin:50% 50%;
  10273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10274. font-weight:400;
  10275. font-style:normal;
  10276. font-size:14px;
  10277. color:#FFFFFF;
  10278. text-align:left;
  10279. }
  10280. #u1957 .text {
  10281. position:absolute;
  10282. align-self:center;
  10283. padding:2px 2px 2px 0px;
  10284. box-sizing:border-box;
  10285. width:100%;
  10286. }
  10287. #u1957_text {
  10288. border-width:0px;
  10289. white-space:nowrap;
  10290. text-transform:none;
  10291. }
  10292. #u1958_div {
  10293. border-width:0px;
  10294. position:absolute;
  10295. left:0px;
  10296. top:0px;
  10297. width:95px;
  10298. height:21px;
  10299. background:inherit;
  10300. background-color:rgba(245, 154, 35, 0);
  10301. border-left:0px;
  10302. border-top:0px;
  10303. border-right:0px;
  10304. border-radius:0px;
  10305. border-bottom-right-radius:0px;
  10306. border-bottom-left-radius:0px;
  10307. filter:drop-shadow(none);
  10308. transition:none;
  10309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10310. font-weight:400;
  10311. font-style:normal;
  10312. font-size:12px;
  10313. color:#FFFFFF;
  10314. text-align:left;
  10315. }
  10316. #u1958 {
  10317. border-width:0px;
  10318. position:absolute;
  10319. left:679px;
  10320. top:309px;
  10321. width:95px;
  10322. height:21px;
  10323. display:flex;
  10324. transition:none;
  10325. transform-origin:50% 50%;
  10326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10327. font-weight:400;
  10328. font-style:normal;
  10329. font-size:12px;
  10330. color:#FFFFFF;
  10331. text-align:left;
  10332. }
  10333. #u1958 .text {
  10334. position:absolute;
  10335. align-self:center;
  10336. padding:2px 2px 2px 0px;
  10337. box-sizing:border-box;
  10338. width:100%;
  10339. }
  10340. #u1958_text {
  10341. border-width:0px;
  10342. white-space:nowrap;
  10343. text-transform:none;
  10344. }
  10345. #u1959_div {
  10346. border-width:0px;
  10347. position:absolute;
  10348. left:0px;
  10349. top:0px;
  10350. width:103px;
  10351. height:18px;
  10352. background:inherit;
  10353. background-color:rgba(245, 154, 35, 0);
  10354. border-left:0px;
  10355. border-top:0px;
  10356. border-right:0px;
  10357. border-radius:0px;
  10358. border-bottom-right-radius:0px;
  10359. border-bottom-left-radius:0px;
  10360. filter:drop-shadow(none);
  10361. transition:none;
  10362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10363. font-weight:400;
  10364. font-style:normal;
  10365. font-size:10px;
  10366. color:#FFFFFF;
  10367. text-align:left;
  10368. }
  10369. #u1959 {
  10370. border-width:0px;
  10371. position:absolute;
  10372. left:679px;
  10373. top:330px;
  10374. width:103px;
  10375. height:18px;
  10376. display:flex;
  10377. transition:none;
  10378. transform-origin:50% 50%;
  10379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10380. font-weight:400;
  10381. font-style:normal;
  10382. font-size:10px;
  10383. color:#FFFFFF;
  10384. text-align:left;
  10385. }
  10386. #u1959 .text {
  10387. position:absolute;
  10388. align-self:center;
  10389. padding:2px 2px 2px 0px;
  10390. box-sizing:border-box;
  10391. width:100%;
  10392. }
  10393. #u1959_text {
  10394. border-width:0px;
  10395. white-space:nowrap;
  10396. text-transform:none;
  10397. }
  10398. #u1960 {
  10399. border-width:0px;
  10400. position:absolute;
  10401. left:620px;
  10402. top:282px;
  10403. width:50px;
  10404. height:59px;
  10405. display:flex;
  10406. transition:none;
  10407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10408. font-weight:400;
  10409. font-style:normal;
  10410. color:#FFFFFF;
  10411. }
  10412. #u1960 .text {
  10413. position:absolute;
  10414. align-self:center;
  10415. padding:2px 2px 2px 2px;
  10416. box-sizing:border-box;
  10417. width:100%;
  10418. }
  10419. #u1960_img {
  10420. border-width:0px;
  10421. position:absolute;
  10422. left:0px;
  10423. top:0px;
  10424. width:50px;
  10425. height:59px;
  10426. }
  10427. #u1960_text {
  10428. border-width:0px;
  10429. word-wrap:break-word;
  10430. text-transform:none;
  10431. }
  10432. #u1961 {
  10433. border-width:0px;
  10434. position:absolute;
  10435. left:0px;
  10436. top:0px;
  10437. width:0px;
  10438. height:0px;
  10439. }
  10440. #u1962_div {
  10441. border-width:0px;
  10442. position:absolute;
  10443. left:0px;
  10444. top:0px;
  10445. width:254px;
  10446. height:82px;
  10447. background:inherit;
  10448. background-color:rgba(245, 154, 35, 0.09803921568627451);
  10449. box-sizing:border-box;
  10450. border-width:1px;
  10451. border-style:solid;
  10452. border-color:rgba(121, 121, 121, 1);
  10453. border-radius:0px;
  10454. filter:drop-shadow(none);
  10455. transition:none;
  10456. }
  10457. #u1962 {
  10458. border-width:0px;
  10459. position:absolute;
  10460. left:876px;
  10461. top:271px;
  10462. width:254px;
  10463. height:82px;
  10464. display:flex;
  10465. transition:none;
  10466. transform-origin:50% 50%;
  10467. }
  10468. #u1962 .text {
  10469. position:absolute;
  10470. align-self:center;
  10471. padding:2px 2px 2px 2px;
  10472. box-sizing:border-box;
  10473. width:100%;
  10474. }
  10475. #u1962_text {
  10476. border-width:0px;
  10477. word-wrap:break-word;
  10478. text-transform:none;
  10479. visibility:hidden;
  10480. }
  10481. #u1963_div {
  10482. border-width:0px;
  10483. position:absolute;
  10484. left:0px;
  10485. top:0px;
  10486. width:31px;
  10487. height:24px;
  10488. background:inherit;
  10489. background-color:rgba(245, 154, 35, 0);
  10490. border-left:0px;
  10491. border-top:0px;
  10492. border-right:0px;
  10493. border-radius:0px;
  10494. border-bottom-right-radius:0px;
  10495. border-bottom-left-radius:0px;
  10496. filter:drop-shadow(none);
  10497. transition:none;
  10498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10499. font-weight:400;
  10500. font-style:normal;
  10501. font-size:14px;
  10502. color:#FFFFFF;
  10503. text-align:left;
  10504. }
  10505. #u1963 {
  10506. border-width:0px;
  10507. position:absolute;
  10508. left:943px;
  10509. top:278px;
  10510. width:31px;
  10511. height:24px;
  10512. display:flex;
  10513. transition:none;
  10514. transform-origin:50% 50%;
  10515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10516. font-weight:400;
  10517. font-style:normal;
  10518. font-size:14px;
  10519. color:#FFFFFF;
  10520. text-align:left;
  10521. }
  10522. #u1963 .text {
  10523. position:absolute;
  10524. align-self:center;
  10525. padding:2px 2px 2px 0px;
  10526. box-sizing:border-box;
  10527. width:100%;
  10528. }
  10529. #u1963_text {
  10530. border-width:0px;
  10531. white-space:nowrap;
  10532. text-transform:none;
  10533. }
  10534. #u1964_div {
  10535. border-width:0px;
  10536. position:absolute;
  10537. left:0px;
  10538. top:0px;
  10539. width:35px;
  10540. height:21px;
  10541. background:inherit;
  10542. background-color:rgba(245, 154, 35, 1);
  10543. border-radius:11px;
  10544. filter:drop-shadow(none);
  10545. transition:none;
  10546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10547. font-weight:400;
  10548. font-style:normal;
  10549. font-size:12px;
  10550. color:#FFFFFF;
  10551. }
  10552. #u1964 {
  10553. border-width:0px;
  10554. position:absolute;
  10555. left:978px;
  10556. top:280px;
  10557. width:35px;
  10558. height:21px;
  10559. display:flex;
  10560. transition:none;
  10561. transform-origin:50% 50%;
  10562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10563. font-weight:400;
  10564. font-style:normal;
  10565. font-size:12px;
  10566. color:#FFFFFF;
  10567. }
  10568. #u1964 .text {
  10569. position:absolute;
  10570. align-self:center;
  10571. padding:2px 2px 2px 2px;
  10572. box-sizing:border-box;
  10573. width:100%;
  10574. }
  10575. #u1964_text {
  10576. border-width:0px;
  10577. word-wrap:break-word;
  10578. text-transform:none;
  10579. }
  10580. #u1965_div {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:0px;
  10584. top:0px;
  10585. width:71px;
  10586. height:21px;
  10587. background:inherit;
  10588. background-color:rgba(245, 154, 35, 0);
  10589. border-left:0px;
  10590. border-top:0px;
  10591. border-right:0px;
  10592. border-radius:0px;
  10593. border-bottom-right-radius:0px;
  10594. border-bottom-left-radius:0px;
  10595. filter:drop-shadow(none);
  10596. transition:none;
  10597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. font-size:12px;
  10601. color:#FFFFFF;
  10602. text-align:left;
  10603. }
  10604. #u1965 {
  10605. border-width:0px;
  10606. position:absolute;
  10607. left:943px;
  10608. top:309px;
  10609. width:71px;
  10610. height:21px;
  10611. display:flex;
  10612. transition:none;
  10613. transform-origin:50% 50%;
  10614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10615. font-weight:400;
  10616. font-style:normal;
  10617. font-size:12px;
  10618. color:#FFFFFF;
  10619. text-align:left;
  10620. }
  10621. #u1965 .text {
  10622. position:absolute;
  10623. align-self:center;
  10624. padding:2px 2px 2px 0px;
  10625. box-sizing:border-box;
  10626. width:100%;
  10627. }
  10628. #u1965_text {
  10629. border-width:0px;
  10630. white-space:nowrap;
  10631. text-transform:none;
  10632. }
  10633. #u1966_div {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:0px;
  10637. top:0px;
  10638. width:103px;
  10639. height:18px;
  10640. background:inherit;
  10641. background-color:rgba(245, 154, 35, 0);
  10642. border-left:0px;
  10643. border-top:0px;
  10644. border-right:0px;
  10645. border-radius:0px;
  10646. border-bottom-right-radius:0px;
  10647. border-bottom-left-radius:0px;
  10648. filter:drop-shadow(none);
  10649. transition:none;
  10650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10651. font-weight:400;
  10652. font-style:normal;
  10653. font-size:10px;
  10654. color:#FFFFFF;
  10655. text-align:left;
  10656. }
  10657. #u1966 {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:943px;
  10661. top:330px;
  10662. width:103px;
  10663. height:18px;
  10664. display:flex;
  10665. transition:none;
  10666. transform-origin:50% 50%;
  10667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10668. font-weight:400;
  10669. font-style:normal;
  10670. font-size:10px;
  10671. color:#FFFFFF;
  10672. text-align:left;
  10673. }
  10674. #u1966 .text {
  10675. position:absolute;
  10676. align-self:center;
  10677. padding:2px 2px 2px 0px;
  10678. box-sizing:border-box;
  10679. width:100%;
  10680. }
  10681. #u1966_text {
  10682. border-width:0px;
  10683. white-space:nowrap;
  10684. text-transform:none;
  10685. }
  10686. #u1967 {
  10687. border-width:0px;
  10688. position:absolute;
  10689. left:884px;
  10690. top:282px;
  10691. width:50px;
  10692. height:59px;
  10693. display:flex;
  10694. transition:none;
  10695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10696. font-weight:400;
  10697. font-style:normal;
  10698. color:#FFFFFF;
  10699. }
  10700. #u1967 .text {
  10701. position:absolute;
  10702. align-self:center;
  10703. padding:2px 2px 2px 2px;
  10704. box-sizing:border-box;
  10705. width:100%;
  10706. }
  10707. #u1967_img {
  10708. border-width:0px;
  10709. position:absolute;
  10710. left:0px;
  10711. top:0px;
  10712. width:50px;
  10713. height:59px;
  10714. }
  10715. #u1967_text {
  10716. border-width:0px;
  10717. word-wrap:break-word;
  10718. text-transform:none;
  10719. }
  10720. #u1968 {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:0px;
  10724. top:0px;
  10725. width:0px;
  10726. height:0px;
  10727. }
  10728. #u1969_div {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:0px;
  10732. top:0px;
  10733. width:254px;
  10734. height:82px;
  10735. background:inherit;
  10736. background-color:rgba(245, 154, 35, 0.09803921568627451);
  10737. box-sizing:border-box;
  10738. border-width:1px;
  10739. border-style:solid;
  10740. border-color:rgba(121, 121, 121, 1);
  10741. border-radius:0px;
  10742. filter:drop-shadow(none);
  10743. transition:none;
  10744. }
  10745. #u1969 {
  10746. border-width:0px;
  10747. position:absolute;
  10748. left:348px;
  10749. top:363px;
  10750. width:254px;
  10751. height:82px;
  10752. display:flex;
  10753. transition:none;
  10754. transform-origin:50% 50%;
  10755. }
  10756. #u1969 .text {
  10757. position:absolute;
  10758. align-self:center;
  10759. padding:2px 2px 2px 2px;
  10760. box-sizing:border-box;
  10761. width:100%;
  10762. }
  10763. #u1969_text {
  10764. border-width:0px;
  10765. word-wrap:break-word;
  10766. text-transform:none;
  10767. visibility:hidden;
  10768. }
  10769. #u1970_div {
  10770. border-width:0px;
  10771. position:absolute;
  10772. left:0px;
  10773. top:0px;
  10774. width:31px;
  10775. height:24px;
  10776. background:inherit;
  10777. background-color:rgba(245, 154, 35, 0);
  10778. border-left:0px;
  10779. border-top:0px;
  10780. border-right:0px;
  10781. border-radius:0px;
  10782. border-bottom-right-radius:0px;
  10783. border-bottom-left-radius:0px;
  10784. filter:drop-shadow(none);
  10785. transition:none;
  10786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10787. font-weight:400;
  10788. font-style:normal;
  10789. font-size:14px;
  10790. color:#FFFFFF;
  10791. text-align:left;
  10792. }
  10793. #u1970 {
  10794. border-width:0px;
  10795. position:absolute;
  10796. left:415px;
  10797. top:370px;
  10798. width:31px;
  10799. height:24px;
  10800. display:flex;
  10801. transition:none;
  10802. transform-origin:50% 50%;
  10803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10804. font-weight:400;
  10805. font-style:normal;
  10806. font-size:14px;
  10807. color:#FFFFFF;
  10808. text-align:left;
  10809. }
  10810. #u1970 .text {
  10811. position:absolute;
  10812. align-self:center;
  10813. padding:2px 2px 2px 0px;
  10814. box-sizing:border-box;
  10815. width:100%;
  10816. }
  10817. #u1970_text {
  10818. border-width:0px;
  10819. white-space:nowrap;
  10820. text-transform:none;
  10821. }
  10822. #u1971_div {
  10823. border-width:0px;
  10824. position:absolute;
  10825. left:0px;
  10826. top:0px;
  10827. width:35px;
  10828. height:21px;
  10829. background:inherit;
  10830. background-color:rgba(245, 154, 35, 1);
  10831. border-radius:11px;
  10832. filter:drop-shadow(none);
  10833. transition:none;
  10834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10835. font-weight:400;
  10836. font-style:normal;
  10837. font-size:12px;
  10838. color:#FFFFFF;
  10839. }
  10840. #u1971 {
  10841. border-width:0px;
  10842. position:absolute;
  10843. left:458px;
  10844. top:372px;
  10845. width:35px;
  10846. height:21px;
  10847. display:flex;
  10848. transition:none;
  10849. transform-origin:50% 50%;
  10850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10851. font-weight:400;
  10852. font-style:normal;
  10853. font-size:12px;
  10854. color:#FFFFFF;
  10855. }
  10856. #u1971 .text {
  10857. position:absolute;
  10858. align-self:center;
  10859. padding:2px 2px 2px 2px;
  10860. box-sizing:border-box;
  10861. width:100%;
  10862. }
  10863. #u1971_text {
  10864. border-width:0px;
  10865. word-wrap:break-word;
  10866. text-transform:none;
  10867. }
  10868. #u1972_div {
  10869. border-width:0px;
  10870. position:absolute;
  10871. left:0px;
  10872. top:0px;
  10873. width:95px;
  10874. height:21px;
  10875. background:inherit;
  10876. background-color:rgba(245, 154, 35, 0);
  10877. border-left:0px;
  10878. border-top:0px;
  10879. border-right:0px;
  10880. border-radius:0px;
  10881. border-bottom-right-radius:0px;
  10882. border-bottom-left-radius:0px;
  10883. filter:drop-shadow(none);
  10884. transition:none;
  10885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10886. font-weight:400;
  10887. font-style:normal;
  10888. font-size:12px;
  10889. color:#FFFFFF;
  10890. text-align:left;
  10891. }
  10892. #u1972 {
  10893. border-width:0px;
  10894. position:absolute;
  10895. left:415px;
  10896. top:401px;
  10897. width:95px;
  10898. height:21px;
  10899. display:flex;
  10900. transition:none;
  10901. transform-origin:50% 50%;
  10902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10903. font-weight:400;
  10904. font-style:normal;
  10905. font-size:12px;
  10906. color:#FFFFFF;
  10907. text-align:left;
  10908. }
  10909. #u1972 .text {
  10910. position:absolute;
  10911. align-self:center;
  10912. padding:2px 2px 2px 0px;
  10913. box-sizing:border-box;
  10914. width:100%;
  10915. }
  10916. #u1972_text {
  10917. border-width:0px;
  10918. white-space:nowrap;
  10919. text-transform:none;
  10920. }
  10921. #u1973_div {
  10922. border-width:0px;
  10923. position:absolute;
  10924. left:0px;
  10925. top:0px;
  10926. width:103px;
  10927. height:18px;
  10928. background:inherit;
  10929. background-color:rgba(245, 154, 35, 0);
  10930. border-left:0px;
  10931. border-top:0px;
  10932. border-right:0px;
  10933. border-radius:0px;
  10934. border-bottom-right-radius:0px;
  10935. border-bottom-left-radius:0px;
  10936. filter:drop-shadow(none);
  10937. transition:none;
  10938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10939. font-weight:400;
  10940. font-style:normal;
  10941. font-size:10px;
  10942. color:#FFFFFF;
  10943. text-align:left;
  10944. }
  10945. #u1973 {
  10946. border-width:0px;
  10947. position:absolute;
  10948. left:415px;
  10949. top:422px;
  10950. width:103px;
  10951. height:18px;
  10952. display:flex;
  10953. transition:none;
  10954. transform-origin:50% 50%;
  10955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10956. font-weight:400;
  10957. font-style:normal;
  10958. font-size:10px;
  10959. color:#FFFFFF;
  10960. text-align:left;
  10961. }
  10962. #u1973 .text {
  10963. position:absolute;
  10964. align-self:center;
  10965. padding:2px 2px 2px 0px;
  10966. box-sizing:border-box;
  10967. width:100%;
  10968. }
  10969. #u1973_text {
  10970. border-width:0px;
  10971. white-space:nowrap;
  10972. text-transform:none;
  10973. }
  10974. #u1974 {
  10975. border-width:0px;
  10976. position:absolute;
  10977. left:356px;
  10978. top:374px;
  10979. width:50px;
  10980. height:59px;
  10981. display:flex;
  10982. transition:none;
  10983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10984. font-weight:400;
  10985. font-style:normal;
  10986. color:#FFFFFF;
  10987. }
  10988. #u1974 .text {
  10989. position:absolute;
  10990. align-self:center;
  10991. padding:2px 2px 2px 2px;
  10992. box-sizing:border-box;
  10993. width:100%;
  10994. }
  10995. #u1974_img {
  10996. border-width:0px;
  10997. position:absolute;
  10998. left:0px;
  10999. top:0px;
  11000. width:50px;
  11001. height:59px;
  11002. }
  11003. #u1974_text {
  11004. border-width:0px;
  11005. word-wrap:break-word;
  11006. text-transform:none;
  11007. }
  11008. #u1975 {
  11009. border-width:0px;
  11010. position:absolute;
  11011. left:0px;
  11012. top:0px;
  11013. width:0px;
  11014. height:0px;
  11015. }
  11016. #u1976_div {
  11017. border-width:0px;
  11018. position:absolute;
  11019. left:0px;
  11020. top:0px;
  11021. width:254px;
  11022. height:82px;
  11023. background:inherit;
  11024. background-color:rgba(245, 154, 35, 0.09803921568627451);
  11025. box-sizing:border-box;
  11026. border-width:1px;
  11027. border-style:solid;
  11028. border-color:rgba(121, 121, 121, 1);
  11029. border-radius:0px;
  11030. filter:drop-shadow(none);
  11031. transition:none;
  11032. }
  11033. #u1976 {
  11034. border-width:0px;
  11035. position:absolute;
  11036. left:612px;
  11037. top:363px;
  11038. width:254px;
  11039. height:82px;
  11040. display:flex;
  11041. transition:none;
  11042. transform-origin:50% 50%;
  11043. }
  11044. #u1976 .text {
  11045. position:absolute;
  11046. align-self:center;
  11047. padding:2px 2px 2px 2px;
  11048. box-sizing:border-box;
  11049. width:100%;
  11050. }
  11051. #u1976_text {
  11052. border-width:0px;
  11053. word-wrap:break-word;
  11054. text-transform:none;
  11055. visibility:hidden;
  11056. }
  11057. #u1977_div {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:0px;
  11061. top:0px;
  11062. width:45px;
  11063. height:24px;
  11064. background:inherit;
  11065. background-color:rgba(245, 154, 35, 0);
  11066. border-left:0px;
  11067. border-top:0px;
  11068. border-right:0px;
  11069. border-radius:0px;
  11070. border-bottom-right-radius:0px;
  11071. border-bottom-left-radius:0px;
  11072. filter:drop-shadow(none);
  11073. transition:none;
  11074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11075. font-weight:400;
  11076. font-style:normal;
  11077. font-size:14px;
  11078. color:#FFFFFF;
  11079. text-align:left;
  11080. }
  11081. #u1977 {
  11082. border-width:0px;
  11083. position:absolute;
  11084. left:679px;
  11085. top:370px;
  11086. width:45px;
  11087. height:24px;
  11088. display:flex;
  11089. transition:none;
  11090. transform-origin:50% 50%;
  11091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11092. font-weight:400;
  11093. font-style:normal;
  11094. font-size:14px;
  11095. color:#FFFFFF;
  11096. text-align:left;
  11097. }
  11098. #u1977 .text {
  11099. position:absolute;
  11100. align-self:center;
  11101. padding:2px 2px 2px 0px;
  11102. box-sizing:border-box;
  11103. width:100%;
  11104. }
  11105. #u1977_text {
  11106. border-width:0px;
  11107. white-space:nowrap;
  11108. text-transform:none;
  11109. }
  11110. #u1978_div {
  11111. border-width:0px;
  11112. position:absolute;
  11113. left:0px;
  11114. top:0px;
  11115. width:95px;
  11116. height:21px;
  11117. background:inherit;
  11118. background-color:rgba(245, 154, 35, 0);
  11119. border-left:0px;
  11120. border-top:0px;
  11121. border-right:0px;
  11122. border-radius:0px;
  11123. border-bottom-right-radius:0px;
  11124. border-bottom-left-radius:0px;
  11125. filter:drop-shadow(none);
  11126. transition:none;
  11127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11128. font-weight:400;
  11129. font-style:normal;
  11130. font-size:12px;
  11131. color:#FFFFFF;
  11132. text-align:left;
  11133. }
  11134. #u1978 {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:679px;
  11138. top:401px;
  11139. width:95px;
  11140. height:21px;
  11141. display:flex;
  11142. transition:none;
  11143. transform-origin:50% 50%;
  11144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11145. font-weight:400;
  11146. font-style:normal;
  11147. font-size:12px;
  11148. color:#FFFFFF;
  11149. text-align:left;
  11150. }
  11151. #u1978 .text {
  11152. position:absolute;
  11153. align-self:center;
  11154. padding:2px 2px 2px 0px;
  11155. box-sizing:border-box;
  11156. width:100%;
  11157. }
  11158. #u1978_text {
  11159. border-width:0px;
  11160. white-space:nowrap;
  11161. text-transform:none;
  11162. }
  11163. #u1979_div {
  11164. border-width:0px;
  11165. position:absolute;
  11166. left:0px;
  11167. top:0px;
  11168. width:103px;
  11169. height:18px;
  11170. background:inherit;
  11171. background-color:rgba(245, 154, 35, 0);
  11172. border-left:0px;
  11173. border-top:0px;
  11174. border-right:0px;
  11175. border-radius:0px;
  11176. border-bottom-right-radius:0px;
  11177. border-bottom-left-radius:0px;
  11178. filter:drop-shadow(none);
  11179. transition:none;
  11180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11181. font-weight:400;
  11182. font-style:normal;
  11183. font-size:10px;
  11184. color:#FFFFFF;
  11185. text-align:left;
  11186. }
  11187. #u1979 {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:679px;
  11191. top:422px;
  11192. width:103px;
  11193. height:18px;
  11194. display:flex;
  11195. transition:none;
  11196. transform-origin:50% 50%;
  11197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11198. font-weight:400;
  11199. font-style:normal;
  11200. font-size:10px;
  11201. color:#FFFFFF;
  11202. text-align:left;
  11203. }
  11204. #u1979 .text {
  11205. position:absolute;
  11206. align-self:center;
  11207. padding:2px 2px 2px 0px;
  11208. box-sizing:border-box;
  11209. width:100%;
  11210. }
  11211. #u1979_text {
  11212. border-width:0px;
  11213. white-space:nowrap;
  11214. text-transform:none;
  11215. }
  11216. #u1980 {
  11217. border-width:0px;
  11218. position:absolute;
  11219. left:620px;
  11220. top:374px;
  11221. width:50px;
  11222. height:59px;
  11223. display:flex;
  11224. transition:none;
  11225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11226. font-weight:400;
  11227. font-style:normal;
  11228. color:#FFFFFF;
  11229. }
  11230. #u1980 .text {
  11231. position:absolute;
  11232. align-self:center;
  11233. padding:2px 2px 2px 2px;
  11234. box-sizing:border-box;
  11235. width:100%;
  11236. }
  11237. #u1980_img {
  11238. border-width:0px;
  11239. position:absolute;
  11240. left:0px;
  11241. top:0px;
  11242. width:50px;
  11243. height:59px;
  11244. }
  11245. #u1980_text {
  11246. border-width:0px;
  11247. word-wrap:break-word;
  11248. text-transform:none;
  11249. }
  11250. #u1981 {
  11251. border-width:0px;
  11252. position:absolute;
  11253. left:0px;
  11254. top:0px;
  11255. width:0px;
  11256. height:0px;
  11257. }
  11258. #u1982_div {
  11259. border-width:0px;
  11260. position:absolute;
  11261. left:0px;
  11262. top:0px;
  11263. width:254px;
  11264. height:82px;
  11265. background:inherit;
  11266. background-color:rgba(245, 154, 35, 0.09803921568627451);
  11267. box-sizing:border-box;
  11268. border-width:1px;
  11269. border-style:solid;
  11270. border-color:rgba(121, 121, 121, 1);
  11271. border-radius:0px;
  11272. filter:drop-shadow(none);
  11273. transition:none;
  11274. }
  11275. #u1982 {
  11276. border-width:0px;
  11277. position:absolute;
  11278. left:876px;
  11279. top:363px;
  11280. width:254px;
  11281. height:82px;
  11282. display:flex;
  11283. transition:none;
  11284. transform-origin:50% 50%;
  11285. }
  11286. #u1982 .text {
  11287. position:absolute;
  11288. align-self:center;
  11289. padding:2px 2px 2px 2px;
  11290. box-sizing:border-box;
  11291. width:100%;
  11292. }
  11293. #u1982_text {
  11294. border-width:0px;
  11295. word-wrap:break-word;
  11296. text-transform:none;
  11297. visibility:hidden;
  11298. }
  11299. #u1983_div {
  11300. border-width:0px;
  11301. position:absolute;
  11302. left:0px;
  11303. top:0px;
  11304. width:31px;
  11305. height:24px;
  11306. background:inherit;
  11307. background-color:rgba(245, 154, 35, 0);
  11308. border-left:0px;
  11309. border-top:0px;
  11310. border-right:0px;
  11311. border-radius:0px;
  11312. border-bottom-right-radius:0px;
  11313. border-bottom-left-radius:0px;
  11314. filter:drop-shadow(none);
  11315. transition:none;
  11316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11317. font-weight:400;
  11318. font-style:normal;
  11319. font-size:14px;
  11320. color:#FFFFFF;
  11321. text-align:left;
  11322. }
  11323. #u1983 {
  11324. border-width:0px;
  11325. position:absolute;
  11326. left:943px;
  11327. top:370px;
  11328. width:31px;
  11329. height:24px;
  11330. display:flex;
  11331. transition:none;
  11332. transform-origin:50% 50%;
  11333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11334. font-weight:400;
  11335. font-style:normal;
  11336. font-size:14px;
  11337. color:#FFFFFF;
  11338. text-align:left;
  11339. }
  11340. #u1983 .text {
  11341. position:absolute;
  11342. align-self:center;
  11343. padding:2px 2px 2px 0px;
  11344. box-sizing:border-box;
  11345. width:100%;
  11346. }
  11347. #u1983_text {
  11348. border-width:0px;
  11349. white-space:nowrap;
  11350. text-transform:none;
  11351. }
  11352. #u1984_div {
  11353. border-width:0px;
  11354. position:absolute;
  11355. left:0px;
  11356. top:0px;
  11357. width:35px;
  11358. height:21px;
  11359. background:inherit;
  11360. background-color:rgba(245, 154, 35, 1);
  11361. border-radius:11px;
  11362. filter:drop-shadow(none);
  11363. transition:none;
  11364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11365. font-weight:400;
  11366. font-style:normal;
  11367. font-size:12px;
  11368. color:#FFFFFF;
  11369. }
  11370. #u1984 {
  11371. border-width:0px;
  11372. position:absolute;
  11373. left:978px;
  11374. top:372px;
  11375. width:35px;
  11376. height:21px;
  11377. display:flex;
  11378. transition:none;
  11379. transform-origin:50% 50%;
  11380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11381. font-weight:400;
  11382. font-style:normal;
  11383. font-size:12px;
  11384. color:#FFFFFF;
  11385. }
  11386. #u1984 .text {
  11387. position:absolute;
  11388. align-self:center;
  11389. padding:2px 2px 2px 2px;
  11390. box-sizing:border-box;
  11391. width:100%;
  11392. }
  11393. #u1984_text {
  11394. border-width:0px;
  11395. word-wrap:break-word;
  11396. text-transform:none;
  11397. }
  11398. #u1985_div {
  11399. border-width:0px;
  11400. position:absolute;
  11401. left:0px;
  11402. top:0px;
  11403. width:71px;
  11404. height:21px;
  11405. background:inherit;
  11406. background-color:rgba(245, 154, 35, 0);
  11407. border-left:0px;
  11408. border-top:0px;
  11409. border-right:0px;
  11410. border-radius:0px;
  11411. border-bottom-right-radius:0px;
  11412. border-bottom-left-radius:0px;
  11413. filter:drop-shadow(none);
  11414. transition:none;
  11415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11416. font-weight:400;
  11417. font-style:normal;
  11418. font-size:12px;
  11419. color:#FFFFFF;
  11420. text-align:left;
  11421. }
  11422. #u1985 {
  11423. border-width:0px;
  11424. position:absolute;
  11425. left:943px;
  11426. top:401px;
  11427. width:71px;
  11428. height:21px;
  11429. display:flex;
  11430. transition:none;
  11431. transform-origin:50% 50%;
  11432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11433. font-weight:400;
  11434. font-style:normal;
  11435. font-size:12px;
  11436. color:#FFFFFF;
  11437. text-align:left;
  11438. }
  11439. #u1985 .text {
  11440. position:absolute;
  11441. align-self:center;
  11442. padding:2px 2px 2px 0px;
  11443. box-sizing:border-box;
  11444. width:100%;
  11445. }
  11446. #u1985_text {
  11447. border-width:0px;
  11448. white-space:nowrap;
  11449. text-transform:none;
  11450. }
  11451. #u1986_div {
  11452. border-width:0px;
  11453. position:absolute;
  11454. left:0px;
  11455. top:0px;
  11456. width:103px;
  11457. height:18px;
  11458. background:inherit;
  11459. background-color:rgba(245, 154, 35, 0);
  11460. border-left:0px;
  11461. border-top:0px;
  11462. border-right:0px;
  11463. border-radius:0px;
  11464. border-bottom-right-radius:0px;
  11465. border-bottom-left-radius:0px;
  11466. filter:drop-shadow(none);
  11467. transition:none;
  11468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11469. font-weight:400;
  11470. font-style:normal;
  11471. font-size:10px;
  11472. color:#FFFFFF;
  11473. text-align:left;
  11474. }
  11475. #u1986 {
  11476. border-width:0px;
  11477. position:absolute;
  11478. left:943px;
  11479. top:422px;
  11480. width:103px;
  11481. height:18px;
  11482. display:flex;
  11483. transition:none;
  11484. transform-origin:50% 50%;
  11485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11486. font-weight:400;
  11487. font-style:normal;
  11488. font-size:10px;
  11489. color:#FFFFFF;
  11490. text-align:left;
  11491. }
  11492. #u1986 .text {
  11493. position:absolute;
  11494. align-self:center;
  11495. padding:2px 2px 2px 0px;
  11496. box-sizing:border-box;
  11497. width:100%;
  11498. }
  11499. #u1986_text {
  11500. border-width:0px;
  11501. white-space:nowrap;
  11502. text-transform:none;
  11503. }
  11504. #u1987 {
  11505. border-width:0px;
  11506. position:absolute;
  11507. left:884px;
  11508. top:374px;
  11509. width:50px;
  11510. height:59px;
  11511. display:flex;
  11512. transition:none;
  11513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11514. font-weight:400;
  11515. font-style:normal;
  11516. color:#FFFFFF;
  11517. }
  11518. #u1987 .text {
  11519. position:absolute;
  11520. align-self:center;
  11521. padding:2px 2px 2px 2px;
  11522. box-sizing:border-box;
  11523. width:100%;
  11524. }
  11525. #u1987_img {
  11526. border-width:0px;
  11527. position:absolute;
  11528. left:0px;
  11529. top:0px;
  11530. width:50px;
  11531. height:59px;
  11532. }
  11533. #u1987_text {
  11534. border-width:0px;
  11535. word-wrap:break-word;
  11536. text-transform:none;
  11537. }
  11538. #u1988 {
  11539. border-width:0px;
  11540. position:absolute;
  11541. left:0px;
  11542. top:0px;
  11543. width:0px;
  11544. height:0px;
  11545. }
  11546. #u1989_div {
  11547. border-width:0px;
  11548. position:absolute;
  11549. left:0px;
  11550. top:0px;
  11551. width:254px;
  11552. height:82px;
  11553. background:inherit;
  11554. background-color:rgba(245, 154, 35, 0.09803921568627451);
  11555. box-sizing:border-box;
  11556. border-width:1px;
  11557. border-style:solid;
  11558. border-color:rgba(121, 121, 121, 1);
  11559. border-radius:0px;
  11560. filter:drop-shadow(none);
  11561. transition:none;
  11562. }
  11563. #u1989 {
  11564. border-width:0px;
  11565. position:absolute;
  11566. left:348px;
  11567. top:455px;
  11568. width:254px;
  11569. height:82px;
  11570. display:flex;
  11571. transition:none;
  11572. transform-origin:50% 50%;
  11573. }
  11574. #u1989 .text {
  11575. position:absolute;
  11576. align-self:center;
  11577. padding:2px 2px 2px 2px;
  11578. box-sizing:border-box;
  11579. width:100%;
  11580. }
  11581. #u1989_text {
  11582. border-width:0px;
  11583. word-wrap:break-word;
  11584. text-transform:none;
  11585. visibility:hidden;
  11586. }
  11587. #u1990_div {
  11588. border-width:0px;
  11589. position:absolute;
  11590. left:0px;
  11591. top:0px;
  11592. width:31px;
  11593. height:24px;
  11594. background:inherit;
  11595. background-color:rgba(245, 154, 35, 0);
  11596. border-left:0px;
  11597. border-top:0px;
  11598. border-right:0px;
  11599. border-radius:0px;
  11600. border-bottom-right-radius:0px;
  11601. border-bottom-left-radius:0px;
  11602. filter:drop-shadow(none);
  11603. transition:none;
  11604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11605. font-weight:400;
  11606. font-style:normal;
  11607. font-size:14px;
  11608. color:#FFFFFF;
  11609. text-align:left;
  11610. }
  11611. #u1990 {
  11612. border-width:0px;
  11613. position:absolute;
  11614. left:415px;
  11615. top:462px;
  11616. width:31px;
  11617. height:24px;
  11618. display:flex;
  11619. transition:none;
  11620. transform-origin:50% 50%;
  11621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11622. font-weight:400;
  11623. font-style:normal;
  11624. font-size:14px;
  11625. color:#FFFFFF;
  11626. text-align:left;
  11627. }
  11628. #u1990 .text {
  11629. position:absolute;
  11630. align-self:center;
  11631. padding:2px 2px 2px 0px;
  11632. box-sizing:border-box;
  11633. width:100%;
  11634. }
  11635. #u1990_text {
  11636. border-width:0px;
  11637. white-space:nowrap;
  11638. text-transform:none;
  11639. }
  11640. #u1991_div {
  11641. border-width:0px;
  11642. position:absolute;
  11643. left:0px;
  11644. top:0px;
  11645. width:35px;
  11646. height:21px;
  11647. background:inherit;
  11648. background-color:rgba(245, 154, 35, 1);
  11649. border-radius:11px;
  11650. filter:drop-shadow(none);
  11651. transition:none;
  11652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11653. font-weight:400;
  11654. font-style:normal;
  11655. font-size:12px;
  11656. color:#FFFFFF;
  11657. }
  11658. #u1991 {
  11659. border-width:0px;
  11660. position:absolute;
  11661. left:458px;
  11662. top:464px;
  11663. width:35px;
  11664. height:21px;
  11665. display:flex;
  11666. transition:none;
  11667. transform-origin:50% 50%;
  11668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11669. font-weight:400;
  11670. font-style:normal;
  11671. font-size:12px;
  11672. color:#FFFFFF;
  11673. }
  11674. #u1991 .text {
  11675. position:absolute;
  11676. align-self:center;
  11677. padding:2px 2px 2px 2px;
  11678. box-sizing:border-box;
  11679. width:100%;
  11680. }
  11681. #u1991_text {
  11682. border-width:0px;
  11683. word-wrap:break-word;
  11684. text-transform:none;
  11685. }
  11686. #u1992_div {
  11687. border-width:0px;
  11688. position:absolute;
  11689. left:0px;
  11690. top:0px;
  11691. width:95px;
  11692. height:21px;
  11693. background:inherit;
  11694. background-color:rgba(245, 154, 35, 0);
  11695. border-left:0px;
  11696. border-top:0px;
  11697. border-right:0px;
  11698. border-radius:0px;
  11699. border-bottom-right-radius:0px;
  11700. border-bottom-left-radius:0px;
  11701. filter:drop-shadow(none);
  11702. transition:none;
  11703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11704. font-weight:400;
  11705. font-style:normal;
  11706. font-size:12px;
  11707. color:#FFFFFF;
  11708. text-align:left;
  11709. }
  11710. #u1992 {
  11711. border-width:0px;
  11712. position:absolute;
  11713. left:415px;
  11714. top:493px;
  11715. width:95px;
  11716. height:21px;
  11717. display:flex;
  11718. transition:none;
  11719. transform-origin:50% 50%;
  11720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11721. font-weight:400;
  11722. font-style:normal;
  11723. font-size:12px;
  11724. color:#FFFFFF;
  11725. text-align:left;
  11726. }
  11727. #u1992 .text {
  11728. position:absolute;
  11729. align-self:center;
  11730. padding:2px 2px 2px 0px;
  11731. box-sizing:border-box;
  11732. width:100%;
  11733. }
  11734. #u1992_text {
  11735. border-width:0px;
  11736. white-space:nowrap;
  11737. text-transform:none;
  11738. }
  11739. #u1993_div {
  11740. border-width:0px;
  11741. position:absolute;
  11742. left:0px;
  11743. top:0px;
  11744. width:103px;
  11745. height:18px;
  11746. background:inherit;
  11747. background-color:rgba(245, 154, 35, 0);
  11748. border-left:0px;
  11749. border-top:0px;
  11750. border-right:0px;
  11751. border-radius:0px;
  11752. border-bottom-right-radius:0px;
  11753. border-bottom-left-radius:0px;
  11754. filter:drop-shadow(none);
  11755. transition:none;
  11756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11757. font-weight:400;
  11758. font-style:normal;
  11759. font-size:10px;
  11760. color:#FFFFFF;
  11761. text-align:left;
  11762. }
  11763. #u1993 {
  11764. border-width:0px;
  11765. position:absolute;
  11766. left:415px;
  11767. top:514px;
  11768. width:103px;
  11769. height:18px;
  11770. display:flex;
  11771. transition:none;
  11772. transform-origin:50% 50%;
  11773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11774. font-weight:400;
  11775. font-style:normal;
  11776. font-size:10px;
  11777. color:#FFFFFF;
  11778. text-align:left;
  11779. }
  11780. #u1993 .text {
  11781. position:absolute;
  11782. align-self:center;
  11783. padding:2px 2px 2px 0px;
  11784. box-sizing:border-box;
  11785. width:100%;
  11786. }
  11787. #u1993_text {
  11788. border-width:0px;
  11789. white-space:nowrap;
  11790. text-transform:none;
  11791. }
  11792. #u1994 {
  11793. border-width:0px;
  11794. position:absolute;
  11795. left:356px;
  11796. top:466px;
  11797. width:50px;
  11798. height:59px;
  11799. display:flex;
  11800. transition:none;
  11801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11802. font-weight:400;
  11803. font-style:normal;
  11804. color:#FFFFFF;
  11805. }
  11806. #u1994 .text {
  11807. position:absolute;
  11808. align-self:center;
  11809. padding:2px 2px 2px 2px;
  11810. box-sizing:border-box;
  11811. width:100%;
  11812. }
  11813. #u1994_img {
  11814. border-width:0px;
  11815. position:absolute;
  11816. left:0px;
  11817. top:0px;
  11818. width:50px;
  11819. height:59px;
  11820. }
  11821. #u1994_text {
  11822. border-width:0px;
  11823. word-wrap:break-word;
  11824. text-transform:none;
  11825. }
  11826. #u1995 {
  11827. border-width:0px;
  11828. position:absolute;
  11829. left:0px;
  11830. top:0px;
  11831. width:0px;
  11832. height:0px;
  11833. }
  11834. #u1996_div {
  11835. border-width:0px;
  11836. position:absolute;
  11837. left:0px;
  11838. top:0px;
  11839. width:254px;
  11840. height:82px;
  11841. background:inherit;
  11842. background-color:rgba(245, 154, 35, 0.09803921568627451);
  11843. box-sizing:border-box;
  11844. border-width:1px;
  11845. border-style:solid;
  11846. border-color:rgba(121, 121, 121, 1);
  11847. border-radius:0px;
  11848. filter:drop-shadow(none);
  11849. transition:none;
  11850. }
  11851. #u1996 {
  11852. border-width:0px;
  11853. position:absolute;
  11854. left:612px;
  11855. top:455px;
  11856. width:254px;
  11857. height:82px;
  11858. display:flex;
  11859. transition:none;
  11860. transform-origin:50% 50%;
  11861. }
  11862. #u1996 .text {
  11863. position:absolute;
  11864. align-self:center;
  11865. padding:2px 2px 2px 2px;
  11866. box-sizing:border-box;
  11867. width:100%;
  11868. }
  11869. #u1996_text {
  11870. border-width:0px;
  11871. word-wrap:break-word;
  11872. text-transform:none;
  11873. visibility:hidden;
  11874. }
  11875. #u1997_div {
  11876. border-width:0px;
  11877. position:absolute;
  11878. left:0px;
  11879. top:0px;
  11880. width:45px;
  11881. height:24px;
  11882. background:inherit;
  11883. background-color:rgba(245, 154, 35, 0);
  11884. border-left:0px;
  11885. border-top:0px;
  11886. border-right:0px;
  11887. border-radius:0px;
  11888. border-bottom-right-radius:0px;
  11889. border-bottom-left-radius:0px;
  11890. filter:drop-shadow(none);
  11891. transition:none;
  11892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11893. font-weight:400;
  11894. font-style:normal;
  11895. font-size:14px;
  11896. color:#FFFFFF;
  11897. text-align:left;
  11898. }
  11899. #u1997 {
  11900. border-width:0px;
  11901. position:absolute;
  11902. left:679px;
  11903. top:462px;
  11904. width:45px;
  11905. height:24px;
  11906. display:flex;
  11907. transition:none;
  11908. transform-origin:50% 50%;
  11909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11910. font-weight:400;
  11911. font-style:normal;
  11912. font-size:14px;
  11913. color:#FFFFFF;
  11914. text-align:left;
  11915. }
  11916. #u1997 .text {
  11917. position:absolute;
  11918. align-self:center;
  11919. padding:2px 2px 2px 0px;
  11920. box-sizing:border-box;
  11921. width:100%;
  11922. }
  11923. #u1997_text {
  11924. border-width:0px;
  11925. white-space:nowrap;
  11926. text-transform:none;
  11927. }
  11928. #u1998_div {
  11929. border-width:0px;
  11930. position:absolute;
  11931. left:0px;
  11932. top:0px;
  11933. width:95px;
  11934. height:21px;
  11935. background:inherit;
  11936. background-color:rgba(245, 154, 35, 0);
  11937. border-left:0px;
  11938. border-top:0px;
  11939. border-right:0px;
  11940. border-radius:0px;
  11941. border-bottom-right-radius:0px;
  11942. border-bottom-left-radius:0px;
  11943. filter:drop-shadow(none);
  11944. transition:none;
  11945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11946. font-weight:400;
  11947. font-style:normal;
  11948. font-size:12px;
  11949. color:#FFFFFF;
  11950. text-align:left;
  11951. }
  11952. #u1998 {
  11953. border-width:0px;
  11954. position:absolute;
  11955. left:679px;
  11956. top:493px;
  11957. width:95px;
  11958. height:21px;
  11959. display:flex;
  11960. transition:none;
  11961. transform-origin:50% 50%;
  11962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11963. font-weight:400;
  11964. font-style:normal;
  11965. font-size:12px;
  11966. color:#FFFFFF;
  11967. text-align:left;
  11968. }
  11969. #u1998 .text {
  11970. position:absolute;
  11971. align-self:center;
  11972. padding:2px 2px 2px 0px;
  11973. box-sizing:border-box;
  11974. width:100%;
  11975. }
  11976. #u1998_text {
  11977. border-width:0px;
  11978. white-space:nowrap;
  11979. text-transform:none;
  11980. }
  11981. #u1999_div {
  11982. border-width:0px;
  11983. position:absolute;
  11984. left:0px;
  11985. top:0px;
  11986. width:103px;
  11987. height:18px;
  11988. background:inherit;
  11989. background-color:rgba(245, 154, 35, 0);
  11990. border-left:0px;
  11991. border-top:0px;
  11992. border-right:0px;
  11993. border-radius:0px;
  11994. border-bottom-right-radius:0px;
  11995. border-bottom-left-radius:0px;
  11996. filter:drop-shadow(none);
  11997. transition:none;
  11998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11999. font-weight:400;
  12000. font-style:normal;
  12001. font-size:10px;
  12002. color:#FFFFFF;
  12003. text-align:left;
  12004. }
  12005. #u1999 {
  12006. border-width:0px;
  12007. position:absolute;
  12008. left:679px;
  12009. top:514px;
  12010. width:103px;
  12011. height:18px;
  12012. display:flex;
  12013. transition:none;
  12014. transform-origin:50% 50%;
  12015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12016. font-weight:400;
  12017. font-style:normal;
  12018. font-size:10px;
  12019. color:#FFFFFF;
  12020. text-align:left;
  12021. }
  12022. #u1999 .text {
  12023. position:absolute;
  12024. align-self:center;
  12025. padding:2px 2px 2px 0px;
  12026. box-sizing:border-box;
  12027. width:100%;
  12028. }
  12029. #u1999_text {
  12030. border-width:0px;
  12031. white-space:nowrap;
  12032. text-transform:none;
  12033. }
  12034. #u2000 {
  12035. border-width:0px;
  12036. position:absolute;
  12037. left:620px;
  12038. top:466px;
  12039. width:50px;
  12040. height:59px;
  12041. display:flex;
  12042. transition:none;
  12043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12044. font-weight:400;
  12045. font-style:normal;
  12046. color:#FFFFFF;
  12047. }
  12048. #u2000 .text {
  12049. position:absolute;
  12050. align-self:center;
  12051. padding:2px 2px 2px 2px;
  12052. box-sizing:border-box;
  12053. width:100%;
  12054. }
  12055. #u2000_img {
  12056. border-width:0px;
  12057. position:absolute;
  12058. left:0px;
  12059. top:0px;
  12060. width:50px;
  12061. height:59px;
  12062. }
  12063. #u2000_text {
  12064. border-width:0px;
  12065. word-wrap:break-word;
  12066. text-transform:none;
  12067. }
  12068. #u2001 {
  12069. border-width:0px;
  12070. position:absolute;
  12071. left:0px;
  12072. top:0px;
  12073. width:0px;
  12074. height:0px;
  12075. }
  12076. #u2002_div {
  12077. border-width:0px;
  12078. position:absolute;
  12079. left:0px;
  12080. top:0px;
  12081. width:254px;
  12082. height:82px;
  12083. background:inherit;
  12084. background-color:rgba(245, 154, 35, 0.09803921568627451);
  12085. box-sizing:border-box;
  12086. border-width:1px;
  12087. border-style:solid;
  12088. border-color:rgba(121, 121, 121, 1);
  12089. border-radius:0px;
  12090. filter:drop-shadow(none);
  12091. transition:none;
  12092. }
  12093. #u2002 {
  12094. border-width:0px;
  12095. position:absolute;
  12096. left:876px;
  12097. top:455px;
  12098. width:254px;
  12099. height:82px;
  12100. display:flex;
  12101. transition:none;
  12102. transform-origin:50% 50%;
  12103. }
  12104. #u2002 .text {
  12105. position:absolute;
  12106. align-self:center;
  12107. padding:2px 2px 2px 2px;
  12108. box-sizing:border-box;
  12109. width:100%;
  12110. }
  12111. #u2002_text {
  12112. border-width:0px;
  12113. word-wrap:break-word;
  12114. text-transform:none;
  12115. visibility:hidden;
  12116. }
  12117. #u2003_div {
  12118. border-width:0px;
  12119. position:absolute;
  12120. left:0px;
  12121. top:0px;
  12122. width:31px;
  12123. height:24px;
  12124. background:inherit;
  12125. background-color:rgba(245, 154, 35, 0);
  12126. border-left:0px;
  12127. border-top:0px;
  12128. border-right:0px;
  12129. border-radius:0px;
  12130. border-bottom-right-radius:0px;
  12131. border-bottom-left-radius:0px;
  12132. filter:drop-shadow(none);
  12133. transition:none;
  12134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12135. font-weight:400;
  12136. font-style:normal;
  12137. font-size:14px;
  12138. color:#FFFFFF;
  12139. text-align:left;
  12140. }
  12141. #u2003 {
  12142. border-width:0px;
  12143. position:absolute;
  12144. left:943px;
  12145. top:462px;
  12146. width:31px;
  12147. height:24px;
  12148. display:flex;
  12149. transition:none;
  12150. transform-origin:50% 50%;
  12151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12152. font-weight:400;
  12153. font-style:normal;
  12154. font-size:14px;
  12155. color:#FFFFFF;
  12156. text-align:left;
  12157. }
  12158. #u2003 .text {
  12159. position:absolute;
  12160. align-self:center;
  12161. padding:2px 2px 2px 0px;
  12162. box-sizing:border-box;
  12163. width:100%;
  12164. }
  12165. #u2003_text {
  12166. border-width:0px;
  12167. white-space:nowrap;
  12168. text-transform:none;
  12169. }
  12170. #u2004_div {
  12171. border-width:0px;
  12172. position:absolute;
  12173. left:0px;
  12174. top:0px;
  12175. width:35px;
  12176. height:21px;
  12177. background:inherit;
  12178. background-color:rgba(245, 154, 35, 1);
  12179. border-radius:11px;
  12180. filter:drop-shadow(none);
  12181. transition:none;
  12182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12183. font-weight:400;
  12184. font-style:normal;
  12185. font-size:12px;
  12186. color:#FFFFFF;
  12187. }
  12188. #u2004 {
  12189. border-width:0px;
  12190. position:absolute;
  12191. left:978px;
  12192. top:464px;
  12193. width:35px;
  12194. height:21px;
  12195. display:flex;
  12196. transition:none;
  12197. transform-origin:50% 50%;
  12198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12199. font-weight:400;
  12200. font-style:normal;
  12201. font-size:12px;
  12202. color:#FFFFFF;
  12203. }
  12204. #u2004 .text {
  12205. position:absolute;
  12206. align-self:center;
  12207. padding:2px 2px 2px 2px;
  12208. box-sizing:border-box;
  12209. width:100%;
  12210. }
  12211. #u2004_text {
  12212. border-width:0px;
  12213. word-wrap:break-word;
  12214. text-transform:none;
  12215. }
  12216. #u2005_div {
  12217. border-width:0px;
  12218. position:absolute;
  12219. left:0px;
  12220. top:0px;
  12221. width:71px;
  12222. height:21px;
  12223. background:inherit;
  12224. background-color:rgba(245, 154, 35, 0);
  12225. border-left:0px;
  12226. border-top:0px;
  12227. border-right:0px;
  12228. border-radius:0px;
  12229. border-bottom-right-radius:0px;
  12230. border-bottom-left-radius:0px;
  12231. filter:drop-shadow(none);
  12232. transition:none;
  12233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12234. font-weight:400;
  12235. font-style:normal;
  12236. font-size:12px;
  12237. color:#FFFFFF;
  12238. text-align:left;
  12239. }
  12240. #u2005 {
  12241. border-width:0px;
  12242. position:absolute;
  12243. left:943px;
  12244. top:493px;
  12245. width:71px;
  12246. height:21px;
  12247. display:flex;
  12248. transition:none;
  12249. transform-origin:50% 50%;
  12250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12251. font-weight:400;
  12252. font-style:normal;
  12253. font-size:12px;
  12254. color:#FFFFFF;
  12255. text-align:left;
  12256. }
  12257. #u2005 .text {
  12258. position:absolute;
  12259. align-self:center;
  12260. padding:2px 2px 2px 0px;
  12261. box-sizing:border-box;
  12262. width:100%;
  12263. }
  12264. #u2005_text {
  12265. border-width:0px;
  12266. white-space:nowrap;
  12267. text-transform:none;
  12268. }
  12269. #u2006_div {
  12270. border-width:0px;
  12271. position:absolute;
  12272. left:0px;
  12273. top:0px;
  12274. width:103px;
  12275. height:18px;
  12276. background:inherit;
  12277. background-color:rgba(245, 154, 35, 0);
  12278. border-left:0px;
  12279. border-top:0px;
  12280. border-right:0px;
  12281. border-radius:0px;
  12282. border-bottom-right-radius:0px;
  12283. border-bottom-left-radius:0px;
  12284. filter:drop-shadow(none);
  12285. transition:none;
  12286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12287. font-weight:400;
  12288. font-style:normal;
  12289. font-size:10px;
  12290. color:#FFFFFF;
  12291. text-align:left;
  12292. }
  12293. #u2006 {
  12294. border-width:0px;
  12295. position:absolute;
  12296. left:943px;
  12297. top:514px;
  12298. width:103px;
  12299. height:18px;
  12300. display:flex;
  12301. transition:none;
  12302. transform-origin:50% 50%;
  12303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12304. font-weight:400;
  12305. font-style:normal;
  12306. font-size:10px;
  12307. color:#FFFFFF;
  12308. text-align:left;
  12309. }
  12310. #u2006 .text {
  12311. position:absolute;
  12312. align-self:center;
  12313. padding:2px 2px 2px 0px;
  12314. box-sizing:border-box;
  12315. width:100%;
  12316. }
  12317. #u2006_text {
  12318. border-width:0px;
  12319. white-space:nowrap;
  12320. text-transform:none;
  12321. }
  12322. #u2007 {
  12323. border-width:0px;
  12324. position:absolute;
  12325. left:884px;
  12326. top:466px;
  12327. width:50px;
  12328. height:59px;
  12329. display:flex;
  12330. transition:none;
  12331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12332. font-weight:400;
  12333. font-style:normal;
  12334. color:#FFFFFF;
  12335. }
  12336. #u2007 .text {
  12337. position:absolute;
  12338. align-self:center;
  12339. padding:2px 2px 2px 2px;
  12340. box-sizing:border-box;
  12341. width:100%;
  12342. }
  12343. #u2007_img {
  12344. border-width:0px;
  12345. position:absolute;
  12346. left:0px;
  12347. top:0px;
  12348. width:50px;
  12349. height:59px;
  12350. }
  12351. #u2007_text {
  12352. border-width:0px;
  12353. word-wrap:break-word;
  12354. text-transform:none;
  12355. }
  12356. #u2008 {
  12357. border-width:0px;
  12358. position:absolute;
  12359. left:0px;
  12360. top:0px;
  12361. width:0px;
  12362. height:0px;
  12363. }
  12364. #u2009_div {
  12365. border-width:0px;
  12366. position:absolute;
  12367. left:0px;
  12368. top:0px;
  12369. width:254px;
  12370. height:82px;
  12371. background:inherit;
  12372. background-color:rgba(245, 154, 35, 0.09803921568627451);
  12373. box-sizing:border-box;
  12374. border-width:1px;
  12375. border-style:solid;
  12376. border-color:rgba(121, 121, 121, 1);
  12377. border-radius:0px;
  12378. filter:drop-shadow(none);
  12379. transition:none;
  12380. }
  12381. #u2009 {
  12382. border-width:0px;
  12383. position:absolute;
  12384. left:348px;
  12385. top:547px;
  12386. width:254px;
  12387. height:82px;
  12388. display:flex;
  12389. transition:none;
  12390. transform-origin:50% 50%;
  12391. }
  12392. #u2009 .text {
  12393. position:absolute;
  12394. align-self:center;
  12395. padding:2px 2px 2px 2px;
  12396. box-sizing:border-box;
  12397. width:100%;
  12398. }
  12399. #u2009_text {
  12400. border-width:0px;
  12401. word-wrap:break-word;
  12402. text-transform:none;
  12403. visibility:hidden;
  12404. }
  12405. #u2010_div {
  12406. border-width:0px;
  12407. position:absolute;
  12408. left:0px;
  12409. top:0px;
  12410. width:31px;
  12411. height:24px;
  12412. background:inherit;
  12413. background-color:rgba(245, 154, 35, 0);
  12414. border-left:0px;
  12415. border-top:0px;
  12416. border-right:0px;
  12417. border-radius:0px;
  12418. border-bottom-right-radius:0px;
  12419. border-bottom-left-radius:0px;
  12420. filter:drop-shadow(none);
  12421. transition:none;
  12422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12423. font-weight:400;
  12424. font-style:normal;
  12425. font-size:14px;
  12426. color:#FFFFFF;
  12427. text-align:left;
  12428. }
  12429. #u2010 {
  12430. border-width:0px;
  12431. position:absolute;
  12432. left:415px;
  12433. top:554px;
  12434. width:31px;
  12435. height:24px;
  12436. display:flex;
  12437. transition:none;
  12438. transform-origin:50% 50%;
  12439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12440. font-weight:400;
  12441. font-style:normal;
  12442. font-size:14px;
  12443. color:#FFFFFF;
  12444. text-align:left;
  12445. }
  12446. #u2010 .text {
  12447. position:absolute;
  12448. align-self:center;
  12449. padding:2px 2px 2px 0px;
  12450. box-sizing:border-box;
  12451. width:100%;
  12452. }
  12453. #u2010_text {
  12454. border-width:0px;
  12455. white-space:nowrap;
  12456. text-transform:none;
  12457. }
  12458. #u2011_div {
  12459. border-width:0px;
  12460. position:absolute;
  12461. left:0px;
  12462. top:0px;
  12463. width:35px;
  12464. height:21px;
  12465. background:inherit;
  12466. background-color:rgba(245, 154, 35, 1);
  12467. border-radius:11px;
  12468. filter:drop-shadow(none);
  12469. transition:none;
  12470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12471. font-weight:400;
  12472. font-style:normal;
  12473. font-size:12px;
  12474. color:#FFFFFF;
  12475. }
  12476. #u2011 {
  12477. border-width:0px;
  12478. position:absolute;
  12479. left:458px;
  12480. top:556px;
  12481. width:35px;
  12482. height:21px;
  12483. display:flex;
  12484. transition:none;
  12485. transform-origin:50% 50%;
  12486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12487. font-weight:400;
  12488. font-style:normal;
  12489. font-size:12px;
  12490. color:#FFFFFF;
  12491. }
  12492. #u2011 .text {
  12493. position:absolute;
  12494. align-self:center;
  12495. padding:2px 2px 2px 2px;
  12496. box-sizing:border-box;
  12497. width:100%;
  12498. }
  12499. #u2011_text {
  12500. border-width:0px;
  12501. word-wrap:break-word;
  12502. text-transform:none;
  12503. }
  12504. #u2012_div {
  12505. border-width:0px;
  12506. position:absolute;
  12507. left:0px;
  12508. top:0px;
  12509. width:95px;
  12510. height:21px;
  12511. background:inherit;
  12512. background-color:rgba(245, 154, 35, 0);
  12513. border-left:0px;
  12514. border-top:0px;
  12515. border-right:0px;
  12516. border-radius:0px;
  12517. border-bottom-right-radius:0px;
  12518. border-bottom-left-radius:0px;
  12519. filter:drop-shadow(none);
  12520. transition:none;
  12521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12522. font-weight:400;
  12523. font-style:normal;
  12524. font-size:12px;
  12525. color:#FFFFFF;
  12526. text-align:left;
  12527. }
  12528. #u2012 {
  12529. border-width:0px;
  12530. position:absolute;
  12531. left:415px;
  12532. top:585px;
  12533. width:95px;
  12534. height:21px;
  12535. display:flex;
  12536. transition:none;
  12537. transform-origin:50% 50%;
  12538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12539. font-weight:400;
  12540. font-style:normal;
  12541. font-size:12px;
  12542. color:#FFFFFF;
  12543. text-align:left;
  12544. }
  12545. #u2012 .text {
  12546. position:absolute;
  12547. align-self:center;
  12548. padding:2px 2px 2px 0px;
  12549. box-sizing:border-box;
  12550. width:100%;
  12551. }
  12552. #u2012_text {
  12553. border-width:0px;
  12554. white-space:nowrap;
  12555. text-transform:none;
  12556. }
  12557. #u2013_div {
  12558. border-width:0px;
  12559. position:absolute;
  12560. left:0px;
  12561. top:0px;
  12562. width:103px;
  12563. height:18px;
  12564. background:inherit;
  12565. background-color:rgba(245, 154, 35, 0);
  12566. border-left:0px;
  12567. border-top:0px;
  12568. border-right:0px;
  12569. border-radius:0px;
  12570. border-bottom-right-radius:0px;
  12571. border-bottom-left-radius:0px;
  12572. filter:drop-shadow(none);
  12573. transition:none;
  12574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12575. font-weight:400;
  12576. font-style:normal;
  12577. font-size:10px;
  12578. color:#FFFFFF;
  12579. text-align:left;
  12580. }
  12581. #u2013 {
  12582. border-width:0px;
  12583. position:absolute;
  12584. left:415px;
  12585. top:606px;
  12586. width:103px;
  12587. height:18px;
  12588. display:flex;
  12589. transition:none;
  12590. transform-origin:50% 50%;
  12591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12592. font-weight:400;
  12593. font-style:normal;
  12594. font-size:10px;
  12595. color:#FFFFFF;
  12596. text-align:left;
  12597. }
  12598. #u2013 .text {
  12599. position:absolute;
  12600. align-self:center;
  12601. padding:2px 2px 2px 0px;
  12602. box-sizing:border-box;
  12603. width:100%;
  12604. }
  12605. #u2013_text {
  12606. border-width:0px;
  12607. white-space:nowrap;
  12608. text-transform:none;
  12609. }
  12610. #u2014 {
  12611. border-width:0px;
  12612. position:absolute;
  12613. left:356px;
  12614. top:558px;
  12615. width:50px;
  12616. height:59px;
  12617. display:flex;
  12618. transition:none;
  12619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12620. font-weight:400;
  12621. font-style:normal;
  12622. color:#FFFFFF;
  12623. }
  12624. #u2014 .text {
  12625. position:absolute;
  12626. align-self:center;
  12627. padding:2px 2px 2px 2px;
  12628. box-sizing:border-box;
  12629. width:100%;
  12630. }
  12631. #u2014_img {
  12632. border-width:0px;
  12633. position:absolute;
  12634. left:0px;
  12635. top:0px;
  12636. width:50px;
  12637. height:59px;
  12638. }
  12639. #u2014_text {
  12640. border-width:0px;
  12641. word-wrap:break-word;
  12642. text-transform:none;
  12643. }
  12644. #u2015 {
  12645. border-width:0px;
  12646. position:absolute;
  12647. left:0px;
  12648. top:0px;
  12649. width:0px;
  12650. height:0px;
  12651. }
  12652. #u2016_div {
  12653. border-width:0px;
  12654. position:absolute;
  12655. left:0px;
  12656. top:0px;
  12657. width:254px;
  12658. height:82px;
  12659. background:inherit;
  12660. background-color:rgba(245, 154, 35, 0.09803921568627451);
  12661. box-sizing:border-box;
  12662. border-width:1px;
  12663. border-style:solid;
  12664. border-color:rgba(121, 121, 121, 1);
  12665. border-radius:0px;
  12666. filter:drop-shadow(none);
  12667. transition:none;
  12668. }
  12669. #u2016 {
  12670. border-width:0px;
  12671. position:absolute;
  12672. left:612px;
  12673. top:547px;
  12674. width:254px;
  12675. height:82px;
  12676. display:flex;
  12677. transition:none;
  12678. transform-origin:50% 50%;
  12679. }
  12680. #u2016 .text {
  12681. position:absolute;
  12682. align-self:center;
  12683. padding:2px 2px 2px 2px;
  12684. box-sizing:border-box;
  12685. width:100%;
  12686. }
  12687. #u2016_text {
  12688. border-width:0px;
  12689. word-wrap:break-word;
  12690. text-transform:none;
  12691. visibility:hidden;
  12692. }
  12693. #u2017_div {
  12694. border-width:0px;
  12695. position:absolute;
  12696. left:0px;
  12697. top:0px;
  12698. width:45px;
  12699. height:24px;
  12700. background:inherit;
  12701. background-color:rgba(245, 154, 35, 0);
  12702. border-left:0px;
  12703. border-top:0px;
  12704. border-right:0px;
  12705. border-radius:0px;
  12706. border-bottom-right-radius:0px;
  12707. border-bottom-left-radius:0px;
  12708. filter:drop-shadow(none);
  12709. transition:none;
  12710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12711. font-weight:400;
  12712. font-style:normal;
  12713. font-size:14px;
  12714. color:#FFFFFF;
  12715. text-align:left;
  12716. }
  12717. #u2017 {
  12718. border-width:0px;
  12719. position:absolute;
  12720. left:679px;
  12721. top:554px;
  12722. width:45px;
  12723. height:24px;
  12724. display:flex;
  12725. transition:none;
  12726. transform-origin:50% 50%;
  12727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12728. font-weight:400;
  12729. font-style:normal;
  12730. font-size:14px;
  12731. color:#FFFFFF;
  12732. text-align:left;
  12733. }
  12734. #u2017 .text {
  12735. position:absolute;
  12736. align-self:center;
  12737. padding:2px 2px 2px 0px;
  12738. box-sizing:border-box;
  12739. width:100%;
  12740. }
  12741. #u2017_text {
  12742. border-width:0px;
  12743. white-space:nowrap;
  12744. text-transform:none;
  12745. }
  12746. #u2018_div {
  12747. border-width:0px;
  12748. position:absolute;
  12749. left:0px;
  12750. top:0px;
  12751. width:95px;
  12752. height:21px;
  12753. background:inherit;
  12754. background-color:rgba(245, 154, 35, 0);
  12755. border-left:0px;
  12756. border-top:0px;
  12757. border-right:0px;
  12758. border-radius:0px;
  12759. border-bottom-right-radius:0px;
  12760. border-bottom-left-radius:0px;
  12761. filter:drop-shadow(none);
  12762. transition:none;
  12763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12764. font-weight:400;
  12765. font-style:normal;
  12766. font-size:12px;
  12767. color:#FFFFFF;
  12768. text-align:left;
  12769. }
  12770. #u2018 {
  12771. border-width:0px;
  12772. position:absolute;
  12773. left:679px;
  12774. top:585px;
  12775. width:95px;
  12776. height:21px;
  12777. display:flex;
  12778. transition:none;
  12779. transform-origin:50% 50%;
  12780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12781. font-weight:400;
  12782. font-style:normal;
  12783. font-size:12px;
  12784. color:#FFFFFF;
  12785. text-align:left;
  12786. }
  12787. #u2018 .text {
  12788. position:absolute;
  12789. align-self:center;
  12790. padding:2px 2px 2px 0px;
  12791. box-sizing:border-box;
  12792. width:100%;
  12793. }
  12794. #u2018_text {
  12795. border-width:0px;
  12796. white-space:nowrap;
  12797. text-transform:none;
  12798. }
  12799. #u2019_div {
  12800. border-width:0px;
  12801. position:absolute;
  12802. left:0px;
  12803. top:0px;
  12804. width:103px;
  12805. height:18px;
  12806. background:inherit;
  12807. background-color:rgba(245, 154, 35, 0);
  12808. border-left:0px;
  12809. border-top:0px;
  12810. border-right:0px;
  12811. border-radius:0px;
  12812. border-bottom-right-radius:0px;
  12813. border-bottom-left-radius:0px;
  12814. filter:drop-shadow(none);
  12815. transition:none;
  12816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12817. font-weight:400;
  12818. font-style:normal;
  12819. font-size:10px;
  12820. color:#FFFFFF;
  12821. text-align:left;
  12822. }
  12823. #u2019 {
  12824. border-width:0px;
  12825. position:absolute;
  12826. left:679px;
  12827. top:606px;
  12828. width:103px;
  12829. height:18px;
  12830. display:flex;
  12831. transition:none;
  12832. transform-origin:50% 50%;
  12833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12834. font-weight:400;
  12835. font-style:normal;
  12836. font-size:10px;
  12837. color:#FFFFFF;
  12838. text-align:left;
  12839. }
  12840. #u2019 .text {
  12841. position:absolute;
  12842. align-self:center;
  12843. padding:2px 2px 2px 0px;
  12844. box-sizing:border-box;
  12845. width:100%;
  12846. }
  12847. #u2019_text {
  12848. border-width:0px;
  12849. white-space:nowrap;
  12850. text-transform:none;
  12851. }
  12852. #u2020 {
  12853. border-width:0px;
  12854. position:absolute;
  12855. left:620px;
  12856. top:558px;
  12857. width:50px;
  12858. height:59px;
  12859. display:flex;
  12860. transition:none;
  12861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12862. font-weight:400;
  12863. font-style:normal;
  12864. color:#FFFFFF;
  12865. }
  12866. #u2020 .text {
  12867. position:absolute;
  12868. align-self:center;
  12869. padding:2px 2px 2px 2px;
  12870. box-sizing:border-box;
  12871. width:100%;
  12872. }
  12873. #u2020_img {
  12874. border-width:0px;
  12875. position:absolute;
  12876. left:0px;
  12877. top:0px;
  12878. width:50px;
  12879. height:59px;
  12880. }
  12881. #u2020_text {
  12882. border-width:0px;
  12883. word-wrap:break-word;
  12884. text-transform:none;
  12885. }
  12886. #u2021 {
  12887. border-width:0px;
  12888. position:absolute;
  12889. left:0px;
  12890. top:0px;
  12891. width:0px;
  12892. height:0px;
  12893. }
  12894. #u2022_div {
  12895. border-width:0px;
  12896. position:absolute;
  12897. left:0px;
  12898. top:0px;
  12899. width:254px;
  12900. height:82px;
  12901. background:inherit;
  12902. background-color:rgba(245, 154, 35, 0.09803921568627451);
  12903. box-sizing:border-box;
  12904. border-width:1px;
  12905. border-style:solid;
  12906. border-color:rgba(121, 121, 121, 1);
  12907. border-radius:0px;
  12908. filter:drop-shadow(none);
  12909. transition:none;
  12910. }
  12911. #u2022 {
  12912. border-width:0px;
  12913. position:absolute;
  12914. left:876px;
  12915. top:547px;
  12916. width:254px;
  12917. height:82px;
  12918. display:flex;
  12919. transition:none;
  12920. transform-origin:50% 50%;
  12921. }
  12922. #u2022 .text {
  12923. position:absolute;
  12924. align-self:center;
  12925. padding:2px 2px 2px 2px;
  12926. box-sizing:border-box;
  12927. width:100%;
  12928. }
  12929. #u2022_text {
  12930. border-width:0px;
  12931. word-wrap:break-word;
  12932. text-transform:none;
  12933. visibility:hidden;
  12934. }
  12935. #u2023_div {
  12936. border-width:0px;
  12937. position:absolute;
  12938. left:0px;
  12939. top:0px;
  12940. width:31px;
  12941. height:24px;
  12942. background:inherit;
  12943. background-color:rgba(245, 154, 35, 0);
  12944. border-left:0px;
  12945. border-top:0px;
  12946. border-right:0px;
  12947. border-radius:0px;
  12948. border-bottom-right-radius:0px;
  12949. border-bottom-left-radius:0px;
  12950. filter:drop-shadow(none);
  12951. transition:none;
  12952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12953. font-weight:400;
  12954. font-style:normal;
  12955. font-size:14px;
  12956. color:#FFFFFF;
  12957. text-align:left;
  12958. }
  12959. #u2023 {
  12960. border-width:0px;
  12961. position:absolute;
  12962. left:943px;
  12963. top:554px;
  12964. width:31px;
  12965. height:24px;
  12966. display:flex;
  12967. transition:none;
  12968. transform-origin:50% 50%;
  12969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12970. font-weight:400;
  12971. font-style:normal;
  12972. font-size:14px;
  12973. color:#FFFFFF;
  12974. text-align:left;
  12975. }
  12976. #u2023 .text {
  12977. position:absolute;
  12978. align-self:center;
  12979. padding:2px 2px 2px 0px;
  12980. box-sizing:border-box;
  12981. width:100%;
  12982. }
  12983. #u2023_text {
  12984. border-width:0px;
  12985. white-space:nowrap;
  12986. text-transform:none;
  12987. }
  12988. #u2024_div {
  12989. border-width:0px;
  12990. position:absolute;
  12991. left:0px;
  12992. top:0px;
  12993. width:35px;
  12994. height:21px;
  12995. background:inherit;
  12996. background-color:rgba(245, 154, 35, 1);
  12997. border-radius:11px;
  12998. filter:drop-shadow(none);
  12999. transition:none;
  13000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13001. font-weight:400;
  13002. font-style:normal;
  13003. font-size:12px;
  13004. color:#FFFFFF;
  13005. }
  13006. #u2024 {
  13007. border-width:0px;
  13008. position:absolute;
  13009. left:978px;
  13010. top:556px;
  13011. width:35px;
  13012. height:21px;
  13013. display:flex;
  13014. transition:none;
  13015. transform-origin:50% 50%;
  13016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13017. font-weight:400;
  13018. font-style:normal;
  13019. font-size:12px;
  13020. color:#FFFFFF;
  13021. }
  13022. #u2024 .text {
  13023. position:absolute;
  13024. align-self:center;
  13025. padding:2px 2px 2px 2px;
  13026. box-sizing:border-box;
  13027. width:100%;
  13028. }
  13029. #u2024_text {
  13030. border-width:0px;
  13031. word-wrap:break-word;
  13032. text-transform:none;
  13033. }
  13034. #u2025_div {
  13035. border-width:0px;
  13036. position:absolute;
  13037. left:0px;
  13038. top:0px;
  13039. width:71px;
  13040. height:21px;
  13041. background:inherit;
  13042. background-color:rgba(245, 154, 35, 0);
  13043. border-left:0px;
  13044. border-top:0px;
  13045. border-right:0px;
  13046. border-radius:0px;
  13047. border-bottom-right-radius:0px;
  13048. border-bottom-left-radius:0px;
  13049. filter:drop-shadow(none);
  13050. transition:none;
  13051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13052. font-weight:400;
  13053. font-style:normal;
  13054. font-size:12px;
  13055. color:#FFFFFF;
  13056. text-align:left;
  13057. }
  13058. #u2025 {
  13059. border-width:0px;
  13060. position:absolute;
  13061. left:943px;
  13062. top:585px;
  13063. width:71px;
  13064. height:21px;
  13065. display:flex;
  13066. transition:none;
  13067. transform-origin:50% 50%;
  13068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13069. font-weight:400;
  13070. font-style:normal;
  13071. font-size:12px;
  13072. color:#FFFFFF;
  13073. text-align:left;
  13074. }
  13075. #u2025 .text {
  13076. position:absolute;
  13077. align-self:center;
  13078. padding:2px 2px 2px 0px;
  13079. box-sizing:border-box;
  13080. width:100%;
  13081. }
  13082. #u2025_text {
  13083. border-width:0px;
  13084. white-space:nowrap;
  13085. text-transform:none;
  13086. }
  13087. #u2026_div {
  13088. border-width:0px;
  13089. position:absolute;
  13090. left:0px;
  13091. top:0px;
  13092. width:103px;
  13093. height:18px;
  13094. background:inherit;
  13095. background-color:rgba(245, 154, 35, 0);
  13096. border-left:0px;
  13097. border-top:0px;
  13098. border-right:0px;
  13099. border-radius:0px;
  13100. border-bottom-right-radius:0px;
  13101. border-bottom-left-radius:0px;
  13102. filter:drop-shadow(none);
  13103. transition:none;
  13104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13105. font-weight:400;
  13106. font-style:normal;
  13107. font-size:10px;
  13108. color:#FFFFFF;
  13109. text-align:left;
  13110. }
  13111. #u2026 {
  13112. border-width:0px;
  13113. position:absolute;
  13114. left:943px;
  13115. top:606px;
  13116. width:103px;
  13117. height:18px;
  13118. display:flex;
  13119. transition:none;
  13120. transform-origin:50% 50%;
  13121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13122. font-weight:400;
  13123. font-style:normal;
  13124. font-size:10px;
  13125. color:#FFFFFF;
  13126. text-align:left;
  13127. }
  13128. #u2026 .text {
  13129. position:absolute;
  13130. align-self:center;
  13131. padding:2px 2px 2px 0px;
  13132. box-sizing:border-box;
  13133. width:100%;
  13134. }
  13135. #u2026_text {
  13136. border-width:0px;
  13137. white-space:nowrap;
  13138. text-transform:none;
  13139. }
  13140. #u2027 {
  13141. border-width:0px;
  13142. position:absolute;
  13143. left:884px;
  13144. top:558px;
  13145. width:50px;
  13146. height:59px;
  13147. display:flex;
  13148. transition:none;
  13149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13150. font-weight:400;
  13151. font-style:normal;
  13152. color:#FFFFFF;
  13153. }
  13154. #u2027 .text {
  13155. position:absolute;
  13156. align-self:center;
  13157. padding:2px 2px 2px 2px;
  13158. box-sizing:border-box;
  13159. width:100%;
  13160. }
  13161. #u2027_img {
  13162. border-width:0px;
  13163. position:absolute;
  13164. left:0px;
  13165. top:0px;
  13166. width:50px;
  13167. height:59px;
  13168. }
  13169. #u2027_text {
  13170. border-width:0px;
  13171. word-wrap:break-word;
  13172. text-transform:none;
  13173. }