styles.css 229 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672
  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. #u1680_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1510px;
  25. height:858px;
  26. }
  27. #u1680 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1510px;
  33. height:858px;
  34. display:flex;
  35. }
  36. #u1680 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u1680_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u1681_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:240px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(245, 154, 35, 0.2);
  58. box-sizing:border-box;
  59. border-width:2px;
  60. border-style:solid;
  61. border-color:rgba(245, 154, 35, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. 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. #u1681 {
  79. border-width:0px;
  80. position:absolute;
  81. left:27px;
  82. top:107px;
  83. width:240px;
  84. height:40px;
  85. display:flex;
  86. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  87. font-weight:400;
  88. font-style:normal;
  89. font-size:18px;
  90. color:#FFFFFF;
  91. text-align:left;
  92. }
  93. #u1681 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 10px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u1681_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. }
  105. #u1682_div {
  106. border-width:0px;
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:240px;
  111. height:40px;
  112. background:inherit;
  113. background-color:rgba(245, 154, 35, 0.2);
  114. box-sizing:border-box;
  115. border-width:2px;
  116. border-style:solid;
  117. border-color:rgba(245, 154, 35, 1);
  118. border-left:0px;
  119. border-top:0px;
  120. border-right:0px;
  121. border-radius:0px;
  122. border-bottom-right-radius:0px;
  123. border-bottom-left-radius:0px;
  124. -moz-box-shadow:none;
  125. -webkit-box-shadow:none;
  126. box-shadow:none;
  127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  128. font-weight:400;
  129. font-style:normal;
  130. font-size:18px;
  131. color:#FFFFFF;
  132. text-align:left;
  133. }
  134. #u1682 {
  135. border-width:0px;
  136. position:absolute;
  137. left:1236px;
  138. top:107px;
  139. width:240px;
  140. height:40px;
  141. display:flex;
  142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  143. font-weight:400;
  144. font-style:normal;
  145. font-size:18px;
  146. color:#FFFFFF;
  147. text-align:left;
  148. }
  149. #u1682 .text {
  150. position:absolute;
  151. align-self:center;
  152. padding:2px 2px 2px 10px;
  153. box-sizing:border-box;
  154. width:100%;
  155. }
  156. #u1682_text {
  157. border-width:0px;
  158. word-wrap:break-word;
  159. text-transform:none;
  160. }
  161. #u1683_img {
  162. border-width:0px;
  163. position:absolute;
  164. left:0px;
  165. top:0px;
  166. width:96px;
  167. height:96px;
  168. }
  169. #u1683 {
  170. border-width:0px;
  171. position:absolute;
  172. left:41px;
  173. top:157px;
  174. width:96px;
  175. height:96px;
  176. display:flex;
  177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  178. font-style:normal;
  179. color:#FFFFFF;
  180. }
  181. #u1683 .text {
  182. position:absolute;
  183. align-self:center;
  184. padding:2px 2px 2px 2px;
  185. box-sizing:border-box;
  186. width:100%;
  187. }
  188. #u1683_text {
  189. border-width:0px;
  190. word-wrap:break-word;
  191. text-transform:none;
  192. }
  193. #u1684_div {
  194. border-width:0px;
  195. position:absolute;
  196. left:0px;
  197. top:0px;
  198. width:70px;
  199. height:94px;
  200. background:inherit;
  201. background-color:rgba(255, 255, 255, 0);
  202. border:none;
  203. border-radius:0px;
  204. -moz-box-shadow:none;
  205. -webkit-box-shadow:none;
  206. box-shadow:none;
  207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  208. font-weight:400;
  209. font-style:normal;
  210. font-size:12px;
  211. color:rgba(255, 255, 255, 0.698039215686274);
  212. text-align:left;
  213. line-height:30px;
  214. }
  215. #u1684 {
  216. border-width:0px;
  217. position:absolute;
  218. left:157px;
  219. top:157px;
  220. width:70px;
  221. height:94px;
  222. display:flex;
  223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  224. font-weight:400;
  225. font-style:normal;
  226. font-size:12px;
  227. color:rgba(255, 255, 255, 0.698039215686274);
  228. text-align:left;
  229. line-height:30px;
  230. }
  231. #u1684 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:2px 2px 2px 2px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u1684_text {
  239. border-width:0px;
  240. white-space:nowrap;
  241. text-transform:none;
  242. }
  243. #u1685_div {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:98px;
  249. height:34px;
  250. background:inherit;
  251. background-color:rgba(255, 255, 255, 0);
  252. border:none;
  253. border-radius:0px;
  254. -moz-box-shadow:none;
  255. -webkit-box-shadow:none;
  256. box-shadow:none;
  257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  258. font-weight:400;
  259. font-style:normal;
  260. font-size:12px;
  261. color:rgba(255, 255, 255, 0.698039215686274);
  262. text-align:left;
  263. line-height:30px;
  264. }
  265. #u1685 {
  266. border-width:0px;
  267. position:absolute;
  268. left:9px;
  269. top:262px;
  270. width:98px;
  271. height:34px;
  272. display:flex;
  273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  274. font-weight:400;
  275. font-style:normal;
  276. font-size:12px;
  277. color:rgba(255, 255, 255, 0.698039215686274);
  278. text-align:left;
  279. line-height:30px;
  280. }
  281. #u1685 .text {
  282. position:absolute;
  283. align-self:center;
  284. padding:2px 2px 2px 2px;
  285. box-sizing:border-box;
  286. width:100%;
  287. }
  288. #u1685_text {
  289. border-width:0px;
  290. white-space:nowrap;
  291. text-transform:none;
  292. }
  293. #u1686_div {
  294. border-width:0px;
  295. position:absolute;
  296. left:0px;
  297. top:0px;
  298. width:98px;
  299. height:34px;
  300. background:inherit;
  301. background-color:rgba(255, 255, 255, 0);
  302. border:none;
  303. border-radius:0px;
  304. -moz-box-shadow:none;
  305. -webkit-box-shadow:none;
  306. box-shadow:none;
  307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  308. font-weight:400;
  309. font-style:normal;
  310. font-size:12px;
  311. color:rgba(255, 255, 255, 0.698039215686274);
  312. text-align:left;
  313. line-height:30px;
  314. }
  315. #u1686 {
  316. border-width:0px;
  317. position:absolute;
  318. left:124px;
  319. top:262px;
  320. width:98px;
  321. height:34px;
  322. display:flex;
  323. opacity:0.9;
  324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  325. font-weight:400;
  326. font-style:normal;
  327. font-size:12px;
  328. color:rgba(255, 255, 255, 0.698039215686274);
  329. text-align:left;
  330. line-height:30px;
  331. }
  332. #u1686 .text {
  333. position:absolute;
  334. align-self:center;
  335. padding:2px 2px 2px 2px;
  336. box-sizing:border-box;
  337. width:100%;
  338. }
  339. #u1686_text {
  340. border-width:0px;
  341. white-space:nowrap;
  342. text-transform:none;
  343. }
  344. #u1687_div {
  345. border-width:0px;
  346. position:absolute;
  347. left:0px;
  348. top:0px;
  349. width:240px;
  350. height:40px;
  351. background:inherit;
  352. background-color:rgba(245, 154, 35, 0.2);
  353. box-sizing:border-box;
  354. border-width:2px;
  355. border-style:solid;
  356. border-color:rgba(245, 154, 35, 1);
  357. border-left:0px;
  358. border-top:0px;
  359. border-right:0px;
  360. border-radius:0px;
  361. border-bottom-right-radius:0px;
  362. border-bottom-left-radius:0px;
  363. -moz-box-shadow:none;
  364. -webkit-box-shadow:none;
  365. box-shadow:none;
  366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  367. font-weight:400;
  368. font-style:normal;
  369. font-size:18px;
  370. color:#FFFFFF;
  371. text-align:left;
  372. }
  373. #u1687 {
  374. border-width:0px;
  375. position:absolute;
  376. left:27px;
  377. top:311px;
  378. width:240px;
  379. height:40px;
  380. display:flex;
  381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  382. font-weight:400;
  383. font-style:normal;
  384. font-size:18px;
  385. color:#FFFFFF;
  386. text-align:left;
  387. }
  388. #u1687 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 10px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u1687_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. }
  400. #u1688_div {
  401. border-width:0px;
  402. position:absolute;
  403. left:0px;
  404. top:0px;
  405. width:29px;
  406. height:124px;
  407. background:inherit;
  408. background-color:rgba(255, 255, 255, 0);
  409. border:none;
  410. border-radius:0px;
  411. -moz-box-shadow:none;
  412. -webkit-box-shadow:none;
  413. box-shadow:none;
  414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  415. font-weight:400;
  416. font-style:normal;
  417. font-size:12px;
  418. color:rgba(255, 255, 255, 0.698039215686274);
  419. text-align:left;
  420. line-height:30px;
  421. }
  422. #u1688 {
  423. border-width:0px;
  424. position:absolute;
  425. left:37px;
  426. top:429px;
  427. width:29px;
  428. height:124px;
  429. display:flex;
  430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  431. font-weight:400;
  432. font-style:normal;
  433. font-size:12px;
  434. color:rgba(255, 255, 255, 0.698039215686274);
  435. text-align:left;
  436. line-height:30px;
  437. }
  438. #u1688 .text {
  439. position:absolute;
  440. align-self:center;
  441. padding:2px 2px 2px 2px;
  442. box-sizing:border-box;
  443. width:100%;
  444. }
  445. #u1688_text {
  446. border-width:0px;
  447. white-space:nowrap;
  448. text-transform:none;
  449. }
  450. #u1689 {
  451. border-width:0px;
  452. position:absolute;
  453. left:0px;
  454. top:0px;
  455. width:0px;
  456. height:0px;
  457. }
  458. #u1690_img {
  459. border-width:0px;
  460. position:absolute;
  461. left:0px;
  462. top:0px;
  463. width:114px;
  464. height:80px;
  465. }
  466. #u1690 {
  467. border-width:0px;
  468. position:absolute;
  469. left:1207px;
  470. top:-325px;
  471. width:114px;
  472. height:80px;
  473. display:flex;
  474. }
  475. #u1690 .text {
  476. position:absolute;
  477. align-self:center;
  478. padding:2px 2px 2px 2px;
  479. box-sizing:border-box;
  480. width:100%;
  481. }
  482. #u1690_text {
  483. border-width:0px;
  484. word-wrap:break-word;
  485. text-transform:none;
  486. visibility:hidden;
  487. }
  488. #u1691_img {
  489. border-width:0px;
  490. position:absolute;
  491. left:0px;
  492. top:0px;
  493. width:114px;
  494. height:80px;
  495. }
  496. #u1691 {
  497. border-width:0px;
  498. position:absolute;
  499. left:1327px;
  500. top:-325px;
  501. width:114px;
  502. height:80px;
  503. display:flex;
  504. }
  505. #u1691 .text {
  506. position:absolute;
  507. align-self:center;
  508. padding:2px 2px 2px 2px;
  509. box-sizing:border-box;
  510. width:100%;
  511. }
  512. #u1691_text {
  513. border-width:0px;
  514. word-wrap:break-word;
  515. text-transform:none;
  516. visibility:hidden;
  517. }
  518. #u1692_img {
  519. border-width:0px;
  520. position:absolute;
  521. left:0px;
  522. top:0px;
  523. width:114px;
  524. height:80px;
  525. }
  526. #u1692 {
  527. border-width:0px;
  528. position:absolute;
  529. left:1207px;
  530. top:-240px;
  531. width:114px;
  532. height:80px;
  533. display:flex;
  534. }
  535. #u1692 .text {
  536. position:absolute;
  537. align-self:center;
  538. padding:2px 2px 2px 2px;
  539. box-sizing:border-box;
  540. width:100%;
  541. }
  542. #u1692_text {
  543. border-width:0px;
  544. word-wrap:break-word;
  545. text-transform:none;
  546. visibility:hidden;
  547. }
  548. #u1693_img {
  549. border-width:0px;
  550. position:absolute;
  551. left:0px;
  552. top:0px;
  553. width:114px;
  554. height:80px;
  555. }
  556. #u1693 {
  557. border-width:0px;
  558. position:absolute;
  559. left:1327px;
  560. top:-240px;
  561. width:114px;
  562. height:80px;
  563. display:flex;
  564. }
  565. #u1693 .text {
  566. position:absolute;
  567. align-self:center;
  568. padding:2px 2px 2px 2px;
  569. box-sizing:border-box;
  570. width:100%;
  571. }
  572. #u1693_text {
  573. border-width:0px;
  574. word-wrap:break-word;
  575. text-transform:none;
  576. visibility:hidden;
  577. }
  578. #u1694_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:19px;
  584. height:13px;
  585. background:inherit;
  586. background-color:rgba(217, 0, 27, 1);
  587. border:none;
  588. border-radius:4px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  593. font-weight:400;
  594. font-style:normal;
  595. font-size:7px;
  596. color:#FFFFFF;
  597. }
  598. #u1694 {
  599. border-width:0px;
  600. position:absolute;
  601. left:1302px;
  602. top:-325px;
  603. width:19px;
  604. height:13px;
  605. display:flex;
  606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  607. font-weight:400;
  608. font-style:normal;
  609. font-size:7px;
  610. color:#FFFFFF;
  611. }
  612. #u1694 .text {
  613. position:absolute;
  614. align-self:center;
  615. padding:2px 2px 2px 2px;
  616. box-sizing:border-box;
  617. width:100%;
  618. }
  619. #u1694_text {
  620. border-width:0px;
  621. white-space:nowrap;
  622. text-transform:none;
  623. }
  624. #u1695_div {
  625. border-width:0px;
  626. position:absolute;
  627. left:0px;
  628. top:0px;
  629. width:240px;
  630. height:40px;
  631. background:inherit;
  632. background-color:rgba(245, 154, 35, 0.2);
  633. box-sizing:border-box;
  634. border-width:2px;
  635. border-style:solid;
  636. border-color:rgba(245, 154, 35, 1);
  637. border-left:0px;
  638. border-top:0px;
  639. border-right:0px;
  640. border-radius:0px;
  641. border-bottom-right-radius:0px;
  642. border-bottom-left-radius:0px;
  643. -moz-box-shadow:none;
  644. -webkit-box-shadow:none;
  645. box-shadow:none;
  646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  647. font-weight:400;
  648. font-style:normal;
  649. font-size:18px;
  650. color:#FFFFFF;
  651. text-align:left;
  652. }
  653. #u1695 {
  654. border-width:0px;
  655. position:absolute;
  656. left:1236px;
  657. top:492px;
  658. width:240px;
  659. height:40px;
  660. display:flex;
  661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  662. font-weight:400;
  663. font-style:normal;
  664. font-size:18px;
  665. color:#FFFFFF;
  666. text-align:left;
  667. }
  668. #u1695 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 10px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u1695_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. }
  680. #u1696_div {
  681. border-width:0px;
  682. position:absolute;
  683. left:0px;
  684. top:0px;
  685. width:29px;
  686. height:34px;
  687. background:inherit;
  688. background-color:rgba(255, 255, 255, 0);
  689. border:none;
  690. border-radius:0px;
  691. -moz-box-shadow:none;
  692. -webkit-box-shadow:none;
  693. box-shadow:none;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. font-size:12px;
  698. color:rgba(255, 255, 255, 0.698039215686274);
  699. text-align:left;
  700. line-height:30px;
  701. }
  702. #u1696 {
  703. border-width:0px;
  704. position:absolute;
  705. left:1437px;
  706. top:495px;
  707. width:29px;
  708. height:34px;
  709. display:flex;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:12px;
  714. color:rgba(255, 255, 255, 0.698039215686274);
  715. text-align:left;
  716. line-height:30px;
  717. }
  718. #u1696 .text {
  719. position:absolute;
  720. align-self:center;
  721. padding:2px 2px 2px 2px;
  722. box-sizing:border-box;
  723. width:100%;
  724. }
  725. #u1696_text {
  726. border-width:0px;
  727. white-space:nowrap;
  728. text-transform:none;
  729. }
  730. #u1697_div {
  731. border-width:0px;
  732. position:absolute;
  733. left:0px;
  734. top:0px;
  735. width:83px;
  736. height:24px;
  737. background:inherit;
  738. background-color:rgba(245, 154, 35, 0);
  739. border:none;
  740. border-left:0px;
  741. border-top:0px;
  742. border-right:0px;
  743. border-radius:0px;
  744. border-bottom-right-radius:0px;
  745. border-bottom-left-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:14px;
  753. color:#FFFFFF;
  754. text-align:left;
  755. }
  756. #u1697 {
  757. border-width:0px;
  758. position:absolute;
  759. left:64px;
  760. top:367px;
  761. width:83px;
  762. height:24px;
  763. display:flex;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:14px;
  768. color:#FFFFFF;
  769. text-align:left;
  770. }
  771. #u1697 .text {
  772. position:absolute;
  773. align-self:center;
  774. padding:2px 2px 2px 10px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u1697_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u1698_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:67px;
  789. height:29px;
  790. background:inherit;
  791. background-color:rgba(245, 154, 35, 0);
  792. border:none;
  793. border-left:0px;
  794. border-top:0px;
  795. border-right:0px;
  796. border-radius:0px;
  797. border-bottom-right-radius:0px;
  798. border-bottom-left-radius:0px;
  799. -moz-box-shadow:none;
  800. -webkit-box-shadow:none;
  801. box-shadow:none;
  802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  803. font-weight:500;
  804. font-style:normal;
  805. font-size:18px;
  806. color:#FFFFFF;
  807. text-align:left;
  808. }
  809. #u1698 {
  810. border-width:0px;
  811. position:absolute;
  812. left:147px;
  813. top:364px;
  814. width:67px;
  815. height:29px;
  816. display:flex;
  817. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  818. font-weight:500;
  819. font-style:normal;
  820. font-size:18px;
  821. color:#FFFFFF;
  822. text-align:left;
  823. }
  824. #u1698 .text {
  825. position:absolute;
  826. align-self:center;
  827. padding:2px 2px 2px 10px;
  828. box-sizing:border-box;
  829. width:100%;
  830. }
  831. #u1698_text {
  832. border-width:0px;
  833. white-space:nowrap;
  834. text-transform:none;
  835. }
  836. #u1699_div {
  837. border-width:0px;
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:27px;
  842. height:124px;
  843. background:inherit;
  844. background-color:rgba(255, 255, 255, 0);
  845. border:none;
  846. border-radius:0px;
  847. -moz-box-shadow:none;
  848. -webkit-box-shadow:none;
  849. box-shadow:none;
  850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  851. font-weight:400;
  852. font-style:normal;
  853. font-size:12px;
  854. color:rgba(255, 255, 255, 0.698039215686274);
  855. text-align:left;
  856. line-height:30px;
  857. }
  858. #u1699 {
  859. border-width:0px;
  860. position:absolute;
  861. left:192px;
  862. top:429px;
  863. width:27px;
  864. height:124px;
  865. display:flex;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:12px;
  870. color:rgba(255, 255, 255, 0.698039215686274);
  871. text-align:left;
  872. line-height:30px;
  873. }
  874. #u1699 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u1699_text {
  882. border-width:0px;
  883. white-space:nowrap;
  884. text-transform:none;
  885. }
  886. #u1700_div {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:31px;
  892. height:124px;
  893. background:inherit;
  894. background-color:rgba(255, 255, 255, 0);
  895. border:none;
  896. border-radius:0px;
  897. -moz-box-shadow:none;
  898. -webkit-box-shadow:none;
  899. box-shadow:none;
  900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:12px;
  904. color:rgba(255, 255, 255, 0.698039215686274);
  905. text-align:left;
  906. line-height:30px;
  907. }
  908. #u1700 {
  909. border-width:0px;
  910. position:absolute;
  911. left:238px;
  912. top:429px;
  913. width:31px;
  914. height:124px;
  915. display:flex;
  916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  917. font-weight:400;
  918. font-style:normal;
  919. font-size:12px;
  920. color:rgba(255, 255, 255, 0.698039215686274);
  921. text-align:left;
  922. line-height:30px;
  923. }
  924. #u1700 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u1700_text {
  932. border-width:0px;
  933. white-space:nowrap;
  934. text-transform:none;
  935. }
  936. #u1701_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:65px;
  942. height:30px;
  943. background:inherit;
  944. background-color:rgba(245, 154, 35, 0);
  945. box-sizing:border-box;
  946. border-width:2px;
  947. border-style:solid;
  948. border-color:rgba(245, 154, 35, 1);
  949. border-left:0px;
  950. border-top:0px;
  951. border-right:0px;
  952. border-radius:0px;
  953. border-bottom-right-radius:0px;
  954. border-bottom-left-radius:0px;
  955. -moz-box-shadow:none;
  956. -webkit-box-shadow:none;
  957. box-shadow:none;
  958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  959. font-weight:400;
  960. font-style:normal;
  961. font-size:12px;
  962. color:#FFFFFF;
  963. text-align:left;
  964. }
  965. #u1701 {
  966. border-width:0px;
  967. position:absolute;
  968. left:37px;
  969. top:399px;
  970. width:65px;
  971. height:30px;
  972. display:flex;
  973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:12px;
  977. color:#FFFFFF;
  978. text-align:left;
  979. }
  980. #u1701 .text {
  981. position:absolute;
  982. align-self:center;
  983. padding:2px 2px 2px 2px;
  984. box-sizing:border-box;
  985. width:100%;
  986. }
  987. #u1701_text {
  988. border-width:0px;
  989. white-space:nowrap;
  990. text-transform:none;
  991. }
  992. #u1702_div {
  993. border-width:0px;
  994. position:absolute;
  995. left:0px;
  996. top:0px;
  997. width:53px;
  998. height:30px;
  999. background:inherit;
  1000. background-color:rgba(245, 154, 35, 0);
  1001. border:none;
  1002. border-left:0px;
  1003. border-top:0px;
  1004. border-right:0px;
  1005. border-radius:0px;
  1006. border-bottom-right-radius:0px;
  1007. border-bottom-left-radius:0px;
  1008. -moz-box-shadow:none;
  1009. -webkit-box-shadow:none;
  1010. box-shadow:none;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:12px;
  1015. color:#FFFFFF;
  1016. text-align:left;
  1017. }
  1018. #u1702 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:122px;
  1022. top:399px;
  1023. width:53px;
  1024. height:30px;
  1025. display:flex;
  1026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1027. font-weight:400;
  1028. font-style:normal;
  1029. font-size:12px;
  1030. color:#FFFFFF;
  1031. text-align:left;
  1032. }
  1033. #u1702 .text {
  1034. position:absolute;
  1035. align-self:center;
  1036. padding:2px 2px 2px 2px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u1702_text {
  1041. border-width:0px;
  1042. white-space:nowrap;
  1043. text-transform:none;
  1044. }
  1045. #u1703_div {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:0px;
  1049. top:0px;
  1050. width:240px;
  1051. height:40px;
  1052. background:inherit;
  1053. background-color:rgba(245, 154, 35, 0.2);
  1054. box-sizing:border-box;
  1055. border-width:2px;
  1056. border-style:solid;
  1057. border-color:rgba(245, 154, 35, 1);
  1058. border-left:0px;
  1059. border-top:0px;
  1060. border-right:0px;
  1061. border-radius:0px;
  1062. border-bottom-right-radius:0px;
  1063. border-bottom-left-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:18px;
  1071. color:#FFFFFF;
  1072. text-align:left;
  1073. }
  1074. #u1703 {
  1075. border-width:0px;
  1076. position:absolute;
  1077. left:27px;
  1078. top:565px;
  1079. width:240px;
  1080. height:40px;
  1081. display:flex;
  1082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1083. font-weight:400;
  1084. font-style:normal;
  1085. font-size:18px;
  1086. color:#FFFFFF;
  1087. text-align:left;
  1088. }
  1089. #u1703 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 10px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u1703_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. }
  1101. #u1704 {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:0px;
  1107. height:0px;
  1108. }
  1109. #u1705_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:14px;
  1115. height:11px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border:none;
  1119. border-radius:0px;
  1120. -moz-box-shadow:none;
  1121. -webkit-box-shadow:none;
  1122. box-shadow:none;
  1123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1124. font-weight:400;
  1125. font-style:normal;
  1126. font-size:8px;
  1127. color:rgba(255, 255, 255, 0.435294117647059);
  1128. }
  1129. #u1705 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:27px;
  1133. top:753px;
  1134. width:14px;
  1135. height:11px;
  1136. display:flex;
  1137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. font-size:8px;
  1141. color:rgba(255, 255, 255, 0.435294117647059);
  1142. }
  1143. #u1705 .text {
  1144. position:absolute;
  1145. align-self:flex-start;
  1146. padding:0px 0px 0px 0px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u1705_text {
  1151. border-width:0px;
  1152. white-space:nowrap;
  1153. text-transform:none;
  1154. }
  1155. #u1706_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:14px;
  1161. height:11px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 0);
  1164. border:none;
  1165. border-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1170. font-weight:400;
  1171. font-style:normal;
  1172. font-size:8px;
  1173. color:rgba(255, 255, 255, 0.435294117647059);
  1174. }
  1175. #u1706 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:45px;
  1179. top:753px;
  1180. width:14px;
  1181. height:11px;
  1182. display:flex;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:8px;
  1187. color:rgba(255, 255, 255, 0.435294117647059);
  1188. }
  1189. #u1706 .text {
  1190. position:absolute;
  1191. align-self:flex-start;
  1192. padding:0px 0px 0px 0px;
  1193. box-sizing:border-box;
  1194. width:100%;
  1195. }
  1196. #u1706_text {
  1197. border-width:0px;
  1198. white-space:nowrap;
  1199. text-transform:none;
  1200. }
  1201. #u1707_div {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:0px;
  1205. top:0px;
  1206. width:14px;
  1207. height:11px;
  1208. background:inherit;
  1209. background-color:rgba(255, 255, 255, 0);
  1210. border:none;
  1211. border-radius:0px;
  1212. -moz-box-shadow:none;
  1213. -webkit-box-shadow:none;
  1214. box-shadow:none;
  1215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1216. font-weight:400;
  1217. font-style:normal;
  1218. font-size:8px;
  1219. color:rgba(255, 255, 255, 0.435294117647059);
  1220. }
  1221. #u1707 {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:64px;
  1225. top:753px;
  1226. width:14px;
  1227. height:11px;
  1228. display:flex;
  1229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1230. font-weight:400;
  1231. font-style:normal;
  1232. font-size:8px;
  1233. color:rgba(255, 255, 255, 0.435294117647059);
  1234. }
  1235. #u1707 .text {
  1236. position:absolute;
  1237. align-self:flex-start;
  1238. padding:0px 0px 0px 0px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u1707_text {
  1243. border-width:0px;
  1244. white-space:nowrap;
  1245. text-transform:none;
  1246. }
  1247. #u1708_div {
  1248. border-width:0px;
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:14px;
  1253. height:11px;
  1254. background:inherit;
  1255. background-color:rgba(255, 255, 255, 0);
  1256. border:none;
  1257. border-radius:0px;
  1258. -moz-box-shadow:none;
  1259. -webkit-box-shadow:none;
  1260. box-shadow:none;
  1261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1262. font-weight:400;
  1263. font-style:normal;
  1264. font-size:8px;
  1265. color:rgba(255, 255, 255, 0.435294117647059);
  1266. }
  1267. #u1708 {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:82px;
  1271. top:753px;
  1272. width:14px;
  1273. height:11px;
  1274. display:flex;
  1275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1276. font-weight:400;
  1277. font-style:normal;
  1278. font-size:8px;
  1279. color:rgba(255, 255, 255, 0.435294117647059);
  1280. }
  1281. #u1708 .text {
  1282. position:absolute;
  1283. align-self:flex-start;
  1284. padding:0px 0px 0px 0px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u1708_text {
  1289. border-width:0px;
  1290. white-space:nowrap;
  1291. text-transform:none;
  1292. }
  1293. #u1709_div {
  1294. border-width:0px;
  1295. position:absolute;
  1296. left:0px;
  1297. top:0px;
  1298. width:14px;
  1299. height:11px;
  1300. background:inherit;
  1301. background-color:rgba(255, 255, 255, 0);
  1302. border:none;
  1303. border-radius:0px;
  1304. -moz-box-shadow:none;
  1305. -webkit-box-shadow:none;
  1306. box-shadow:none;
  1307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:8px;
  1311. color:rgba(255, 255, 255, 0.435294117647059);
  1312. }
  1313. #u1709 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:100px;
  1317. top:753px;
  1318. width:14px;
  1319. height:11px;
  1320. display:flex;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:8px;
  1325. color:rgba(255, 255, 255, 0.435294117647059);
  1326. }
  1327. #u1709 .text {
  1328. position:absolute;
  1329. align-self:flex-start;
  1330. padding:0px 0px 0px 0px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u1709_text {
  1335. border-width:0px;
  1336. white-space:nowrap;
  1337. text-transform:none;
  1338. }
  1339. #u1710_div {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:0px;
  1343. top:0px;
  1344. width:17px;
  1345. height:11px;
  1346. background:inherit;
  1347. background-color:rgba(255, 255, 255, 0);
  1348. border:none;
  1349. border-radius:0px;
  1350. -moz-box-shadow:none;
  1351. -webkit-box-shadow:none;
  1352. box-shadow:none;
  1353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1354. font-weight:400;
  1355. font-style:normal;
  1356. font-size:8px;
  1357. color:rgba(255, 255, 255, 0.435294117647059);
  1358. }
  1359. #u1710 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:119px;
  1363. top:753px;
  1364. width:17px;
  1365. height:11px;
  1366. display:flex;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:8px;
  1371. color:rgba(255, 255, 255, 0.435294117647059);
  1372. }
  1373. #u1710 .text {
  1374. position:absolute;
  1375. align-self:flex-start;
  1376. padding:0px 0px 0px 0px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u1710_text {
  1381. border-width:0px;
  1382. white-space:nowrap;
  1383. text-transform:none;
  1384. }
  1385. #u1711_div {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:17px;
  1391. height:11px;
  1392. background:inherit;
  1393. background-color:rgba(255, 255, 255, 0);
  1394. border:none;
  1395. border-radius:0px;
  1396. -moz-box-shadow:none;
  1397. -webkit-box-shadow:none;
  1398. box-shadow:none;
  1399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1400. font-weight:400;
  1401. font-style:normal;
  1402. font-size:8px;
  1403. color:rgba(255, 255, 255, 0.435294117647059);
  1404. }
  1405. #u1711 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:140px;
  1409. top:753px;
  1410. width:17px;
  1411. height:11px;
  1412. display:flex;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:8px;
  1417. color:rgba(255, 255, 255, 0.435294117647059);
  1418. }
  1419. #u1711 .text {
  1420. position:absolute;
  1421. align-self:flex-start;
  1422. padding:0px 0px 0px 0px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u1711_text {
  1427. border-width:0px;
  1428. white-space:nowrap;
  1429. text-transform:none;
  1430. }
  1431. #u1712_div {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:17px;
  1437. height:11px;
  1438. background:inherit;
  1439. background-color:rgba(255, 255, 255, 0);
  1440. border:none;
  1441. border-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:8px;
  1449. color:rgba(255, 255, 255, 0.435294117647059);
  1450. }
  1451. #u1712 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:162px;
  1455. top:753px;
  1456. width:17px;
  1457. height:11px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:8px;
  1463. color:rgba(255, 255, 255, 0.435294117647059);
  1464. }
  1465. #u1712 .text {
  1466. position:absolute;
  1467. align-self:flex-start;
  1468. padding:0px 0px 0px 0px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u1712_text {
  1473. border-width:0px;
  1474. white-space:nowrap;
  1475. text-transform:none;
  1476. }
  1477. #u1713_div {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:17px;
  1483. height:11px;
  1484. background:inherit;
  1485. background-color:rgba(255, 255, 255, 0);
  1486. border:none;
  1487. border-radius:0px;
  1488. -moz-box-shadow:none;
  1489. -webkit-box-shadow:none;
  1490. box-shadow:none;
  1491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1492. font-weight:400;
  1493. font-style:normal;
  1494. font-size:8px;
  1495. color:rgba(255, 255, 255, 0.435294117647059);
  1496. }
  1497. #u1713 {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:183px;
  1501. top:753px;
  1502. width:17px;
  1503. height:11px;
  1504. display:flex;
  1505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1506. font-weight:400;
  1507. font-style:normal;
  1508. font-size:8px;
  1509. color:rgba(255, 255, 255, 0.435294117647059);
  1510. }
  1511. #u1713 .text {
  1512. position:absolute;
  1513. align-self:flex-start;
  1514. padding:0px 0px 0px 0px;
  1515. box-sizing:border-box;
  1516. width:100%;
  1517. }
  1518. #u1713_text {
  1519. border-width:0px;
  1520. white-space:nowrap;
  1521. text-transform:none;
  1522. }
  1523. #u1714_div {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:0px;
  1527. top:0px;
  1528. width:17px;
  1529. height:11px;
  1530. background:inherit;
  1531. background-color:rgba(255, 255, 255, 0);
  1532. border:none;
  1533. border-radius:0px;
  1534. -moz-box-shadow:none;
  1535. -webkit-box-shadow:none;
  1536. box-shadow:none;
  1537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1538. font-weight:400;
  1539. font-style:normal;
  1540. font-size:8px;
  1541. color:rgba(255, 255, 255, 0.435294117647059);
  1542. }
  1543. #u1714 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:204px;
  1547. top:753px;
  1548. width:17px;
  1549. height:11px;
  1550. display:flex;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:8px;
  1555. color:rgba(255, 255, 255, 0.435294117647059);
  1556. }
  1557. #u1714 .text {
  1558. position:absolute;
  1559. align-self:flex-start;
  1560. padding:0px 0px 0px 0px;
  1561. box-sizing:border-box;
  1562. width:100%;
  1563. }
  1564. #u1714_text {
  1565. border-width:0px;
  1566. white-space:nowrap;
  1567. text-transform:none;
  1568. }
  1569. #u1715_div {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:0px;
  1573. top:0px;
  1574. width:19px;
  1575. height:11px;
  1576. background:inherit;
  1577. background-color:rgba(255, 255, 255, 0);
  1578. border:none;
  1579. border-radius:0px;
  1580. -moz-box-shadow:none;
  1581. -webkit-box-shadow:none;
  1582. box-shadow:none;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. font-size:8px;
  1587. color:rgba(255, 255, 255, 0.435294117647059);
  1588. }
  1589. #u1715 {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:226px;
  1593. top:753px;
  1594. width:19px;
  1595. height:11px;
  1596. display:flex;
  1597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1598. font-weight:400;
  1599. font-style:normal;
  1600. font-size:8px;
  1601. color:rgba(255, 255, 255, 0.435294117647059);
  1602. }
  1603. #u1715 .text {
  1604. position:absolute;
  1605. align-self:flex-start;
  1606. padding:0px 0px 0px 0px;
  1607. box-sizing:border-box;
  1608. width:100%;
  1609. }
  1610. #u1715_text {
  1611. border-width:0px;
  1612. white-space:nowrap;
  1613. text-transform:none;
  1614. }
  1615. #u1716_div {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:19px;
  1621. height:11px;
  1622. background:inherit;
  1623. background-color:rgba(255, 255, 255, 0);
  1624. border:none;
  1625. border-radius:0px;
  1626. -moz-box-shadow:none;
  1627. -webkit-box-shadow:none;
  1628. box-shadow:none;
  1629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1630. font-weight:400;
  1631. font-style:normal;
  1632. font-size:8px;
  1633. color:rgba(255, 255, 255, 0.435294117647059);
  1634. }
  1635. #u1716 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:249px;
  1639. top:753px;
  1640. width:19px;
  1641. height:11px;
  1642. display:flex;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:8px;
  1647. color:rgba(255, 255, 255, 0.435294117647059);
  1648. }
  1649. #u1716 .text {
  1650. position:absolute;
  1651. align-self:flex-start;
  1652. padding:0px 0px 0px 0px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u1716_text {
  1657. border-width:0px;
  1658. white-space:nowrap;
  1659. text-transform:none;
  1660. }
  1661. #u1717 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:0px;
  1667. height:0px;
  1668. }
  1669. #u1718_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:240px;
  1675. height:85px;
  1676. }
  1677. #u1718 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:28px;
  1681. top:642px;
  1682. width:239px;
  1683. height:84px;
  1684. display:flex;
  1685. color:rgba(255, 255, 255, 0.435294117647059);
  1686. }
  1687. #u1718 .text {
  1688. position:absolute;
  1689. align-self:center;
  1690. padding:2px 2px 2px 2px;
  1691. box-sizing:border-box;
  1692. width:100%;
  1693. }
  1694. #u1718_text {
  1695. border-width:0px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. visibility:hidden;
  1699. }
  1700. #u1719_img {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:239px;
  1706. height:92px;
  1707. }
  1708. #u1719 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:27px;
  1712. top:657px;
  1713. width:238px;
  1714. height:91px;
  1715. display:flex;
  1716. color:rgba(255, 255, 255, 0.435294117647059);
  1717. }
  1718. #u1719 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:2px 2px 2px 2px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u1719_text {
  1726. border-width:0px;
  1727. word-wrap:break-word;
  1728. text-transform:none;
  1729. visibility:hidden;
  1730. }
  1731. #u1720_img {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:240px;
  1737. height:4px;
  1738. }
  1739. #u1720 {
  1740. border-width:0px;
  1741. position:absolute;
  1742. left:27px;
  1743. top:747px;
  1744. width:239px;
  1745. height:3px;
  1746. display:flex;
  1747. }
  1748. #u1720 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u1720_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u1721 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:0px;
  1767. height:0px;
  1768. }
  1769. #u1722 {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:0px;
  1775. height:0px;
  1776. }
  1777. #u1723_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:11px;
  1783. height:2px;
  1784. }
  1785. #u1723 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:181px;
  1789. top:624px;
  1790. width:10px;
  1791. height:1px;
  1792. display:flex;
  1793. }
  1794. #u1723 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 2px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u1723_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. visibility:hidden;
  1806. }
  1807. #u1724_div {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:15px;
  1813. height:18px;
  1814. background:inherit;
  1815. background-color:rgba(255, 255, 255, 0);
  1816. border:none;
  1817. border-radius:0px;
  1818. -moz-box-shadow:none;
  1819. -webkit-box-shadow:none;
  1820. box-shadow:none;
  1821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1822. font-weight:400;
  1823. font-style:normal;
  1824. font-size:10px;
  1825. color:#FFFFFF;
  1826. text-align:left;
  1827. }
  1828. #u1724 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:194px;
  1832. top:615px;
  1833. width:15px;
  1834. height:18px;
  1835. display:flex;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:10px;
  1840. color:#FFFFFF;
  1841. text-align:left;
  1842. }
  1843. #u1724 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u1724_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u1725 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:0px;
  1861. height:0px;
  1862. }
  1863. #u1726_img {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:0px;
  1867. top:0px;
  1868. width:11px;
  1869. height:2px;
  1870. }
  1871. #u1726 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:239px;
  1875. top:624px;
  1876. width:10px;
  1877. height:1px;
  1878. display:flex;
  1879. }
  1880. #u1726 .text {
  1881. position:absolute;
  1882. align-self:center;
  1883. padding:2px 2px 2px 2px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u1726_text {
  1888. border-width:0px;
  1889. word-wrap:break-word;
  1890. text-transform:none;
  1891. visibility:hidden;
  1892. }
  1893. #u1727_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:15px;
  1899. height:18px;
  1900. background:inherit;
  1901. background-color:rgba(255, 255, 255, 0);
  1902. border:none;
  1903. border-radius:0px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:10px;
  1911. color:#FFFFFF;
  1912. text-align:left;
  1913. }
  1914. #u1727 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:252px;
  1918. top:615px;
  1919. width:15px;
  1920. height:18px;
  1921. display:flex;
  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. #u1727 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 2px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u1727_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u1728 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:0px;
  1947. height:0px;
  1948. }
  1949. #u1729_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:41px;
  1955. height:21px;
  1956. background:inherit;
  1957. background-color:rgba(245, 154, 35, 0);
  1958. border:none;
  1959. border-left:0px;
  1960. border-top:0px;
  1961. border-right:0px;
  1962. border-radius:0px;
  1963. border-bottom-right-radius:0px;
  1964. border-bottom-left-radius:0px;
  1965. -moz-box-shadow:none;
  1966. -webkit-box-shadow:none;
  1967. box-shadow:none;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. color:#FFFFFF;
  1973. }
  1974. #u1729 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:1249px;
  1978. top:186px;
  1979. width:41px;
  1980. height:21px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. color:#FFFFFF;
  1987. }
  1988. #u1729 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u1729_text {
  1996. border-width:0px;
  1997. white-space:nowrap;
  1998. text-transform:none;
  1999. }
  2000. #u1730_div {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:34px;
  2006. height:29px;
  2007. background:inherit;
  2008. background-color:rgba(245, 154, 35, 0);
  2009. border:none;
  2010. border-left:0px;
  2011. border-top:0px;
  2012. border-right:0px;
  2013. border-radius:0px;
  2014. border-bottom-right-radius:0px;
  2015. border-bottom-left-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2020. font-weight:500;
  2021. font-style:normal;
  2022. font-size:18px;
  2023. color:#FFFFFF;
  2024. }
  2025. #u1730 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:1252px;
  2029. top:157px;
  2030. width:34px;
  2031. height:29px;
  2032. display:flex;
  2033. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2034. font-weight:500;
  2035. font-style:normal;
  2036. font-size:18px;
  2037. color:#FFFFFF;
  2038. }
  2039. #u1730 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u1730_text {
  2047. border-width:0px;
  2048. white-space:nowrap;
  2049. text-transform:none;
  2050. }
  2051. #u1731 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:0px;
  2057. height:0px;
  2058. }
  2059. #u1732_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:41px;
  2065. height:21px;
  2066. background:inherit;
  2067. background-color:rgba(245, 154, 35, 0);
  2068. border:none;
  2069. border-left:0px;
  2070. border-top:0px;
  2071. border-right:0px;
  2072. border-radius:0px;
  2073. border-bottom-right-radius:0px;
  2074. border-bottom-left-radius:0px;
  2075. -moz-box-shadow:none;
  2076. -webkit-box-shadow:none;
  2077. box-shadow:none;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:12px;
  2082. color:#FFFFFF;
  2083. }
  2084. #u1732 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:1312px;
  2088. top:186px;
  2089. width:41px;
  2090. height:21px;
  2091. display:flex;
  2092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:12px;
  2096. color:#FFFFFF;
  2097. }
  2098. #u1732 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u1732_text {
  2106. border-width:0px;
  2107. white-space:nowrap;
  2108. text-transform:none;
  2109. }
  2110. #u1733_div {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:34px;
  2116. height:29px;
  2117. background:inherit;
  2118. background-color:rgba(245, 154, 35, 0);
  2119. border:none;
  2120. border-left:0px;
  2121. border-top:0px;
  2122. border-right:0px;
  2123. border-radius:0px;
  2124. border-bottom-right-radius:0px;
  2125. border-bottom-left-radius:0px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2130. font-weight:500;
  2131. font-style:normal;
  2132. font-size:18px;
  2133. color:#FFFFFF;
  2134. }
  2135. #u1733 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:1315px;
  2139. top:157px;
  2140. width:34px;
  2141. height:29px;
  2142. display:flex;
  2143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2144. font-weight:500;
  2145. font-style:normal;
  2146. font-size:18px;
  2147. color:#FFFFFF;
  2148. }
  2149. #u1733 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u1733_text {
  2157. border-width:0px;
  2158. white-space:nowrap;
  2159. text-transform:none;
  2160. }
  2161. #u1734 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:0px;
  2167. height:0px;
  2168. }
  2169. #u1735_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:29px;
  2175. height:21px;
  2176. background:inherit;
  2177. background-color:rgba(245, 154, 35, 0);
  2178. border:none;
  2179. border-left:0px;
  2180. border-top:0px;
  2181. border-right:0px;
  2182. border-radius:0px;
  2183. border-bottom-right-radius:0px;
  2184. border-bottom-left-radius:0px;
  2185. -moz-box-shadow:none;
  2186. -webkit-box-shadow:none;
  2187. box-shadow:none;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:12px;
  2192. color:#FFFFFF;
  2193. }
  2194. #u1735 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:1438px;
  2198. top:186px;
  2199. width:29px;
  2200. height:21px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2203. font-weight:400;
  2204. font-style:normal;
  2205. font-size:12px;
  2206. color:#FFFFFF;
  2207. }
  2208. #u1735 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u1735_text {
  2216. border-width:0px;
  2217. white-space:nowrap;
  2218. text-transform:none;
  2219. }
  2220. #u1736_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:27px;
  2226. height:29px;
  2227. background:inherit;
  2228. background-color:rgba(245, 154, 35, 0);
  2229. border:none;
  2230. border-left:0px;
  2231. border-top:0px;
  2232. border-right:0px;
  2233. border-radius:0px;
  2234. border-bottom-right-radius:0px;
  2235. border-bottom-left-radius:0px;
  2236. -moz-box-shadow:none;
  2237. -webkit-box-shadow:none;
  2238. box-shadow:none;
  2239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2240. font-weight:500;
  2241. font-style:normal;
  2242. font-size:18px;
  2243. color:#FFFFFF;
  2244. }
  2245. #u1736 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:1439px;
  2249. top:157px;
  2250. width:27px;
  2251. height:29px;
  2252. display:flex;
  2253. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2254. font-weight:500;
  2255. font-style:normal;
  2256. font-size:18px;
  2257. color:#FFFFFF;
  2258. }
  2259. #u1736 .text {
  2260. position:absolute;
  2261. align-self:center;
  2262. padding:2px 2px 2px 2px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u1736_text {
  2267. border-width:0px;
  2268. white-space:nowrap;
  2269. text-transform:none;
  2270. }
  2271. #u1737 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:0px;
  2277. height:0px;
  2278. }
  2279. #u1738_img {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:240px;
  2285. height:30px;
  2286. }
  2287. #u1738 {
  2288. border-width:0px;
  2289. position:absolute;
  2290. left:1242px;
  2291. top:232px;
  2292. width:240px;
  2293. height:30px;
  2294. display:flex;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:12px;
  2299. color:#FFFFFF;
  2300. text-align:left;
  2301. }
  2302. #u1738 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:2px 2px 2px 10px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u1738_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. visibility:hidden;
  2314. }
  2315. #u1739_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:73px;
  2321. height:17px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  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. }
  2335. #u1739 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:1252px;
  2339. top:237px;
  2340. width:73px;
  2341. height:17px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:12px;
  2347. color:#FFFFFF;
  2348. }
  2349. #u1739 .text {
  2350. position:absolute;
  2351. align-self:flex-start;
  2352. padding:0px 0px 0px 0px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u1739_text {
  2357. border-width:0px;
  2358. white-space:nowrap;
  2359. text-transform:none;
  2360. }
  2361. #u1740_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:29px;
  2367. height:34px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 0);
  2370. border:none;
  2371. border-radius:0px;
  2372. -moz-box-shadow:none;
  2373. -webkit-box-shadow:none;
  2374. box-shadow:none;
  2375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2376. font-weight:400;
  2377. font-style:normal;
  2378. font-size:12px;
  2379. color:rgba(255, 255, 255, 0.698039215686274);
  2380. text-align:left;
  2381. line-height:30px;
  2382. }
  2383. #u1740 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:1453px;
  2387. top:232px;
  2388. width:29px;
  2389. height:34px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. color:rgba(255, 255, 255, 0.698039215686274);
  2396. text-align:left;
  2397. line-height:30px;
  2398. }
  2399. #u1740 .text {
  2400. position:absolute;
  2401. align-self:center;
  2402. padding:2px 2px 2px 2px;
  2403. box-sizing:border-box;
  2404. width:100%;
  2405. }
  2406. #u1740_text {
  2407. border-width:0px;
  2408. white-space:nowrap;
  2409. text-transform:none;
  2410. }
  2411. #u1741 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:0px;
  2417. height:0px;
  2418. }
  2419. #u1742_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:240px;
  2425. height:60px;
  2426. }
  2427. #u1742 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:1236px;
  2431. top:542px;
  2432. width:240px;
  2433. height:60px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. color:#FFFFFF;
  2440. text-align:left;
  2441. }
  2442. #u1742 .text {
  2443. position:absolute;
  2444. align-self:center;
  2445. padding:2px 2px 2px 10px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u1742_text {
  2450. border-width:0px;
  2451. word-wrap:break-word;
  2452. text-transform:none;
  2453. visibility:hidden;
  2454. }
  2455. #u1743_img {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:62px;
  2461. height:60px;
  2462. }
  2463. #u1743 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:1236px;
  2467. top:542px;
  2468. width:62px;
  2469. height:60px;
  2470. display:flex;
  2471. }
  2472. #u1743 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 2px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u1743_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u1744_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:41px;
  2491. height:21px;
  2492. background:inherit;
  2493. background-color:rgba(245, 154, 35, 0);
  2494. border:none;
  2495. border-left:0px;
  2496. border-top:0px;
  2497. border-right:0px;
  2498. border-radius:0px;
  2499. border-bottom-right-radius:0px;
  2500. border-bottom-left-radius:0px;
  2501. -moz-box-shadow:none;
  2502. -webkit-box-shadow:none;
  2503. box-shadow:none;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. color:#FFFFFF;
  2509. text-align:left;
  2510. }
  2511. #u1744 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:1303px;
  2515. top:546px;
  2516. width:41px;
  2517. height:21px;
  2518. display:flex;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:12px;
  2523. color:#FFFFFF;
  2524. text-align:left;
  2525. }
  2526. #u1744 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 2px 2px 2px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u1744_text {
  2534. border-width:0px;
  2535. white-space:nowrap;
  2536. text-transform:none;
  2537. }
  2538. #u1745_div {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:75px;
  2544. height:32px;
  2545. background:inherit;
  2546. background-color:rgba(245, 154, 35, 0);
  2547. border:none;
  2548. border-left:0px;
  2549. border-top:0px;
  2550. border-right:0px;
  2551. border-radius:0px;
  2552. border-bottom-right-radius:0px;
  2553. border-bottom-left-radius:0px;
  2554. -moz-box-shadow:none;
  2555. -webkit-box-shadow:none;
  2556. box-shadow:none;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:10px;
  2561. color:#FFFFFF;
  2562. text-align:left;
  2563. }
  2564. #u1745 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:1303px;
  2568. top:567px;
  2569. width:75px;
  2570. height:32px;
  2571. display:flex;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:10px;
  2576. color:#FFFFFF;
  2577. text-align:left;
  2578. }
  2579. #u1745 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u1745_text {
  2587. border-width:0px;
  2588. white-space:nowrap;
  2589. text-transform:none;
  2590. }
  2591. #u1746_div {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:24px;
  2597. height:13px;
  2598. background:inherit;
  2599. background-color:rgba(245, 154, 35, 1);
  2600. border:none;
  2601. border-radius:40px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. font-size:8px;
  2609. color:rgba(255, 255, 255, 0.698039215686274);
  2610. }
  2611. #u1746 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:1356px;
  2615. top:550px;
  2616. width:24px;
  2617. height:13px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:8px;
  2623. color:rgba(255, 255, 255, 0.698039215686274);
  2624. }
  2625. #u1746 .text {
  2626. position:absolute;
  2627. align-self:center;
  2628. padding:0px 0px 2px 0px;
  2629. box-sizing:border-box;
  2630. width:100%;
  2631. }
  2632. #u1746_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. }
  2637. #u1747 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:0px;
  2641. top:0px;
  2642. width:0px;
  2643. height:0px;
  2644. }
  2645. #u1748_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:240px;
  2651. height:60px;
  2652. }
  2653. #u1748 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:1236px;
  2657. top:612px;
  2658. width:240px;
  2659. height:60px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:12px;
  2665. color:#FFFFFF;
  2666. text-align:left;
  2667. }
  2668. #u1748 .text {
  2669. position:absolute;
  2670. align-self:center;
  2671. padding:2px 2px 2px 10px;
  2672. box-sizing:border-box;
  2673. width:100%;
  2674. }
  2675. #u1748_text {
  2676. border-width:0px;
  2677. word-wrap:break-word;
  2678. text-transform:none;
  2679. visibility:hidden;
  2680. }
  2681. #u1749_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:62px;
  2687. height:60px;
  2688. }
  2689. #u1749 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:1236px;
  2693. top:612px;
  2694. width:62px;
  2695. height:60px;
  2696. display:flex;
  2697. }
  2698. #u1749 .text {
  2699. position:absolute;
  2700. align-self:center;
  2701. padding:2px 2px 2px 2px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u1749_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u1750_div {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:53px;
  2717. height:21px;
  2718. background:inherit;
  2719. background-color:rgba(245, 154, 35, 0);
  2720. border:none;
  2721. border-left:0px;
  2722. border-top:0px;
  2723. border-right:0px;
  2724. border-radius:0px;
  2725. border-bottom-right-radius:0px;
  2726. border-bottom-left-radius:0px;
  2727. -moz-box-shadow:none;
  2728. -webkit-box-shadow:none;
  2729. box-shadow:none;
  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. #u1750 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:1303px;
  2741. top:616px;
  2742. width:53px;
  2743. height:21px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. color:#FFFFFF;
  2750. text-align:left;
  2751. }
  2752. #u1750 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 2px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u1750_text {
  2760. border-width:0px;
  2761. white-space:nowrap;
  2762. text-transform:none;
  2763. }
  2764. #u1751_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:75px;
  2770. height:32px;
  2771. background:inherit;
  2772. background-color:rgba(245, 154, 35, 0);
  2773. border:none;
  2774. border-left:0px;
  2775. border-top:0px;
  2776. border-right:0px;
  2777. border-radius:0px;
  2778. border-bottom-right-radius:0px;
  2779. border-bottom-left-radius:0px;
  2780. -moz-box-shadow:none;
  2781. -webkit-box-shadow:none;
  2782. box-shadow:none;
  2783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:10px;
  2787. color:#FFFFFF;
  2788. text-align:left;
  2789. }
  2790. #u1751 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:1303px;
  2794. top:637px;
  2795. width:75px;
  2796. height:32px;
  2797. display:flex;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:10px;
  2802. color:#FFFFFF;
  2803. text-align:left;
  2804. }
  2805. #u1751 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 2px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u1751_text {
  2813. border-width:0px;
  2814. white-space:nowrap;
  2815. text-transform:none;
  2816. }
  2817. #u1752_div {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:35px;
  2823. height:13px;
  2824. background:inherit;
  2825. background-color:rgba(217, 0, 27, 1);
  2826. border:none;
  2827. border-radius:40px;
  2828. -moz-box-shadow:none;
  2829. -webkit-box-shadow:none;
  2830. box-shadow:none;
  2831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:8px;
  2835. color:rgba(255, 255, 255, 0.698039215686274);
  2836. }
  2837. #u1752 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:1356px;
  2841. top:620px;
  2842. width:35px;
  2843. height:13px;
  2844. display:flex;
  2845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:8px;
  2849. color:rgba(255, 255, 255, 0.698039215686274);
  2850. }
  2851. #u1752 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:0px 0px 2px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u1752_text {
  2859. border-width:0px;
  2860. word-wrap:break-word;
  2861. text-transform:none;
  2862. }
  2863. #u1753 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:0px;
  2869. height:0px;
  2870. }
  2871. #u1754_div {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:41px;
  2877. height:21px;
  2878. background:inherit;
  2879. background-color:rgba(245, 154, 35, 0);
  2880. border:none;
  2881. border-left:0px;
  2882. border-top:0px;
  2883. border-right:0px;
  2884. border-radius:0px;
  2885. border-bottom-right-radius:0px;
  2886. border-bottom-left-radius:0px;
  2887. -moz-box-shadow:none;
  2888. -webkit-box-shadow:none;
  2889. box-shadow:none;
  2890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2891. font-weight:400;
  2892. font-style:normal;
  2893. font-size:12px;
  2894. color:#FFFFFF;
  2895. }
  2896. #u1754 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:1375px;
  2900. top:186px;
  2901. width:41px;
  2902. height:21px;
  2903. display:flex;
  2904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2905. font-weight:400;
  2906. font-style:normal;
  2907. font-size:12px;
  2908. color:#FFFFFF;
  2909. }
  2910. #u1754 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u1754_text {
  2918. border-width:0px;
  2919. white-space:nowrap;
  2920. text-transform:none;
  2921. }
  2922. #u1755_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:27px;
  2928. height:29px;
  2929. background:inherit;
  2930. background-color:rgba(245, 154, 35, 0);
  2931. border:none;
  2932. border-left:0px;
  2933. border-top:0px;
  2934. border-right:0px;
  2935. border-radius:0px;
  2936. border-bottom-right-radius:0px;
  2937. border-bottom-left-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2942. font-weight:500;
  2943. font-style:normal;
  2944. font-size:18px;
  2945. color:#FFFFFF;
  2946. }
  2947. #u1755 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:1382px;
  2951. top:157px;
  2952. width:27px;
  2953. height:29px;
  2954. display:flex;
  2955. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2956. font-weight:500;
  2957. font-style:normal;
  2958. font-size:18px;
  2959. color:#FFFFFF;
  2960. }
  2961. #u1755 .text {
  2962. position:absolute;
  2963. align-self:center;
  2964. padding:2px 2px 2px 2px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u1755_text {
  2969. border-width:0px;
  2970. white-space:nowrap;
  2971. text-transform:none;
  2972. }
  2973. #u1756_div {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:836px;
  2979. height:630px;
  2980. background:inherit;
  2981. background-color:rgba(51, 51, 51, 0.8);
  2982. border:none;
  2983. border-radius:0px;
  2984. -moz-box-shadow:none;
  2985. -webkit-box-shadow:none;
  2986. box-shadow:none;
  2987. }
  2988. #u1756 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:325px;
  2992. top:104px;
  2993. width:836px;
  2994. height:630px;
  2995. display:flex;
  2996. }
  2997. #u1756 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 2px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u1756_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u1757_div {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:157px;
  3016. height:29px;
  3017. background:inherit;
  3018. background-color:rgba(245, 154, 35, 0);
  3019. border:none;
  3020. border-left:0px;
  3021. border-top:0px;
  3022. border-right:0px;
  3023. border-radius:0px;
  3024. border-bottom-right-radius:0px;
  3025. border-bottom-left-radius:0px;
  3026. -moz-box-shadow:none;
  3027. -webkit-box-shadow:none;
  3028. box-shadow:none;
  3029. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3030. font-weight:500;
  3031. font-style:normal;
  3032. font-size:18px;
  3033. color:#F59A23;
  3034. text-align:left;
  3035. }
  3036. #u1757 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:337px;
  3040. top:129px;
  3041. width:157px;
  3042. height:29px;
  3043. display:flex;
  3044. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3045. font-weight:500;
  3046. font-style:normal;
  3047. font-size:18px;
  3048. color:#F59A23;
  3049. text-align:left;
  3050. }
  3051. #u1757 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 10px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u1757_text {
  3059. border-width:0px;
  3060. white-space:nowrap;
  3061. text-transform:none;
  3062. }
  3063. #u1758 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:0px;
  3069. height:0px;
  3070. }
  3071. #u1759_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:254px;
  3077. height:82px;
  3078. background:inherit;
  3079. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3080. box-sizing:border-box;
  3081. border-width:1px;
  3082. border-style:solid;
  3083. border-color:rgba(121, 121, 121, 1);
  3084. border-radius:0px;
  3085. -moz-box-shadow:none;
  3086. -webkit-box-shadow:none;
  3087. box-shadow:none;
  3088. }
  3089. #u1759 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:348px;
  3093. top:179px;
  3094. width:254px;
  3095. height:82px;
  3096. display:flex;
  3097. }
  3098. #u1759 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 2px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u1759_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. visibility:hidden;
  3110. }
  3111. #u1760_div {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:31px;
  3117. height:24px;
  3118. background:inherit;
  3119. background-color:rgba(245, 154, 35, 0);
  3120. border:none;
  3121. border-left:0px;
  3122. border-top:0px;
  3123. border-right:0px;
  3124. border-radius:0px;
  3125. border-bottom-right-radius:0px;
  3126. border-bottom-left-radius:0px;
  3127. -moz-box-shadow:none;
  3128. -webkit-box-shadow:none;
  3129. box-shadow:none;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. color:#FFFFFF;
  3135. text-align:left;
  3136. }
  3137. #u1760 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:415px;
  3141. top:186px;
  3142. width:31px;
  3143. height:24px;
  3144. display:flex;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:14px;
  3149. color:#FFFFFF;
  3150. text-align:left;
  3151. }
  3152. #u1760 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 0px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u1760_text {
  3160. border-width:0px;
  3161. white-space:nowrap;
  3162. text-transform:none;
  3163. }
  3164. #u1761_div {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:35px;
  3170. height:21px;
  3171. background:inherit;
  3172. background-color:rgba(245, 154, 35, 1);
  3173. border:none;
  3174. border-radius:11px;
  3175. -moz-box-shadow:none;
  3176. -webkit-box-shadow:none;
  3177. box-shadow:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. color:#FFFFFF;
  3183. }
  3184. #u1761 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:458px;
  3188. top:188px;
  3189. width:35px;
  3190. height:21px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#FFFFFF;
  3197. }
  3198. #u1761 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 2px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u1761_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. }
  3210. #u1762_div {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:95px;
  3216. height:21px;
  3217. background:inherit;
  3218. background-color:rgba(245, 154, 35, 0);
  3219. border:none;
  3220. border-left:0px;
  3221. border-top:0px;
  3222. border-right:0px;
  3223. border-radius:0px;
  3224. border-bottom-right-radius:0px;
  3225. border-bottom-left-radius:0px;
  3226. -moz-box-shadow:none;
  3227. -webkit-box-shadow:none;
  3228. box-shadow:none;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#FFFFFF;
  3234. text-align:left;
  3235. }
  3236. #u1762 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:415px;
  3240. top:217px;
  3241. width:95px;
  3242. height:21px;
  3243. display:flex;
  3244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:12px;
  3248. color:#FFFFFF;
  3249. text-align:left;
  3250. }
  3251. #u1762 .text {
  3252. position:absolute;
  3253. align-self:center;
  3254. padding:2px 2px 2px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u1762_text {
  3259. border-width:0px;
  3260. white-space:nowrap;
  3261. text-transform:none;
  3262. }
  3263. #u1763_div {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:103px;
  3269. height:18px;
  3270. background:inherit;
  3271. background-color:rgba(245, 154, 35, 0);
  3272. border:none;
  3273. border-left:0px;
  3274. border-top:0px;
  3275. border-right:0px;
  3276. border-radius:0px;
  3277. border-bottom-right-radius:0px;
  3278. border-bottom-left-radius:0px;
  3279. -moz-box-shadow:none;
  3280. -webkit-box-shadow:none;
  3281. box-shadow:none;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:10px;
  3286. color:#FFFFFF;
  3287. text-align:left;
  3288. }
  3289. #u1763 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:415px;
  3293. top:238px;
  3294. width:103px;
  3295. height:18px;
  3296. display:flex;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:10px;
  3301. color:#FFFFFF;
  3302. text-align:left;
  3303. }
  3304. #u1763 .text {
  3305. position:absolute;
  3306. align-self:center;
  3307. padding:2px 2px 2px 0px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u1763_text {
  3312. border-width:0px;
  3313. white-space:nowrap;
  3314. text-transform:none;
  3315. }
  3316. #u1764_img {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:50px;
  3322. height:59px;
  3323. }
  3324. #u1764 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:356px;
  3328. top:190px;
  3329. width:50px;
  3330. height:59px;
  3331. display:flex;
  3332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3333. font-weight:400;
  3334. font-style:normal;
  3335. color:#FFFFFF;
  3336. }
  3337. #u1764 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 2px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u1764_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. }
  3349. #u1765 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:0px;
  3355. height:0px;
  3356. }
  3357. #u1766_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:254px;
  3363. height:82px;
  3364. background:inherit;
  3365. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3366. box-sizing:border-box;
  3367. border-width:1px;
  3368. border-style:solid;
  3369. border-color:rgba(121, 121, 121, 1);
  3370. border-radius:0px;
  3371. -moz-box-shadow:none;
  3372. -webkit-box-shadow:none;
  3373. box-shadow:none;
  3374. }
  3375. #u1766 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:612px;
  3379. top:179px;
  3380. width:254px;
  3381. height:82px;
  3382. display:flex;
  3383. }
  3384. #u1766 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 2px 2px 2px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u1766_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. visibility:hidden;
  3396. }
  3397. #u1767_div {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:45px;
  3403. height:24px;
  3404. background:inherit;
  3405. background-color:rgba(245, 154, 35, 0);
  3406. border:none;
  3407. border-left:0px;
  3408. border-top:0px;
  3409. border-right:0px;
  3410. border-radius:0px;
  3411. border-bottom-right-radius:0px;
  3412. border-bottom-left-radius:0px;
  3413. -moz-box-shadow:none;
  3414. -webkit-box-shadow:none;
  3415. box-shadow:none;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:14px;
  3420. color:#FFFFFF;
  3421. text-align:left;
  3422. }
  3423. #u1767 {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:679px;
  3427. top:186px;
  3428. width:45px;
  3429. height:24px;
  3430. display:flex;
  3431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:14px;
  3435. color:#FFFFFF;
  3436. text-align:left;
  3437. }
  3438. #u1767 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 2px 2px 0px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u1767_text {
  3446. border-width:0px;
  3447. white-space:nowrap;
  3448. text-transform:none;
  3449. }
  3450. #u1768_div {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:95px;
  3456. height:21px;
  3457. background:inherit;
  3458. background-color:rgba(245, 154, 35, 0);
  3459. border:none;
  3460. border-left:0px;
  3461. border-top:0px;
  3462. border-right:0px;
  3463. border-radius:0px;
  3464. border-bottom-right-radius:0px;
  3465. border-bottom-left-radius:0px;
  3466. -moz-box-shadow:none;
  3467. -webkit-box-shadow:none;
  3468. box-shadow:none;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#FFFFFF;
  3474. text-align:left;
  3475. }
  3476. #u1768 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:679px;
  3480. top:217px;
  3481. width:95px;
  3482. height:21px;
  3483. display:flex;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. color:#FFFFFF;
  3489. text-align:left;
  3490. }
  3491. #u1768 .text {
  3492. position:absolute;
  3493. align-self:center;
  3494. padding:2px 2px 2px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u1768_text {
  3499. border-width:0px;
  3500. white-space:nowrap;
  3501. text-transform:none;
  3502. }
  3503. #u1769_div {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:103px;
  3509. height:18px;
  3510. background:inherit;
  3511. background-color:rgba(245, 154, 35, 0);
  3512. border:none;
  3513. border-left:0px;
  3514. border-top:0px;
  3515. border-right:0px;
  3516. border-radius:0px;
  3517. border-bottom-right-radius:0px;
  3518. border-bottom-left-radius:0px;
  3519. -moz-box-shadow:none;
  3520. -webkit-box-shadow:none;
  3521. box-shadow:none;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:10px;
  3526. color:#FFFFFF;
  3527. text-align:left;
  3528. }
  3529. #u1769 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:679px;
  3533. top:238px;
  3534. width:103px;
  3535. height:18px;
  3536. display:flex;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:10px;
  3541. color:#FFFFFF;
  3542. text-align:left;
  3543. }
  3544. #u1769 .text {
  3545. position:absolute;
  3546. align-self:center;
  3547. padding:2px 2px 2px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u1769_text {
  3552. border-width:0px;
  3553. white-space:nowrap;
  3554. text-transform:none;
  3555. }
  3556. #u1770_img {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:50px;
  3562. height:59px;
  3563. }
  3564. #u1770 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:620px;
  3568. top:190px;
  3569. width:50px;
  3570. height:59px;
  3571. display:flex;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. color:#FFFFFF;
  3576. }
  3577. #u1770 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 2px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u1770_text {
  3585. border-width:0px;
  3586. word-wrap:break-word;
  3587. text-transform:none;
  3588. }
  3589. #u1771 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:0px;
  3595. height:0px;
  3596. }
  3597. #u1772_div {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:254px;
  3603. height:82px;
  3604. background:inherit;
  3605. background-color:rgba(245, 154, 35, 0.0980392156862745);
  3606. box-sizing:border-box;
  3607. border-width:1px;
  3608. border-style:solid;
  3609. border-color:rgba(121, 121, 121, 1);
  3610. border-radius:0px;
  3611. -moz-box-shadow:none;
  3612. -webkit-box-shadow:none;
  3613. box-shadow:none;
  3614. }
  3615. #u1772 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:876px;
  3619. top:179px;
  3620. width:254px;
  3621. height:82px;
  3622. display:flex;
  3623. }
  3624. #u1772 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 2px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u1772_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u1773_div {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:31px;
  3643. height:24px;
  3644. background:inherit;
  3645. background-color:rgba(245, 154, 35, 0);
  3646. border:none;
  3647. border-left:0px;
  3648. border-top:0px;
  3649. border-right:0px;
  3650. border-radius:0px;
  3651. border-bottom-right-radius:0px;
  3652. border-bottom-left-radius:0px;
  3653. -moz-box-shadow:none;
  3654. -webkit-box-shadow:none;
  3655. box-shadow:none;
  3656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3657. font-weight:400;
  3658. font-style:normal;
  3659. font-size:14px;
  3660. color:#FFFFFF;
  3661. text-align:left;
  3662. }
  3663. #u1773 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:943px;
  3667. top:186px;
  3668. width:31px;
  3669. height:24px;
  3670. display:flex;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:14px;
  3675. color:#FFFFFF;
  3676. text-align:left;
  3677. }
  3678. #u1773 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 2px 2px 0px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u1773_text {
  3686. border-width:0px;
  3687. white-space:nowrap;
  3688. text-transform:none;
  3689. }
  3690. #u1774_div {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:0px;
  3695. width:35px;
  3696. height:21px;
  3697. background:inherit;
  3698. background-color:rgba(245, 154, 35, 1);
  3699. border:none;
  3700. border-radius:11px;
  3701. -moz-box-shadow:none;
  3702. -webkit-box-shadow:none;
  3703. box-shadow:none;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. color:#FFFFFF;
  3709. }
  3710. #u1774 {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:978px;
  3714. top:188px;
  3715. width:35px;
  3716. height:21px;
  3717. display:flex;
  3718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. color:#FFFFFF;
  3723. }
  3724. #u1774 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 2px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u1774_text {
  3732. border-width:0px;
  3733. word-wrap:break-word;
  3734. text-transform:none;
  3735. }
  3736. #u1775_div {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:71px;
  3742. height:21px;
  3743. background:inherit;
  3744. background-color:rgba(245, 154, 35, 0);
  3745. border:none;
  3746. border-left:0px;
  3747. border-top:0px;
  3748. border-right:0px;
  3749. border-radius:0px;
  3750. border-bottom-right-radius:0px;
  3751. border-bottom-left-radius:0px;
  3752. -moz-box-shadow:none;
  3753. -webkit-box-shadow:none;
  3754. box-shadow:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. color:#FFFFFF;
  3760. text-align:left;
  3761. }
  3762. #u1775 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:943px;
  3766. top:217px;
  3767. width:71px;
  3768. height:21px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:12px;
  3774. color:#FFFFFF;
  3775. text-align:left;
  3776. }
  3777. #u1775 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 0px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u1775_text {
  3785. border-width:0px;
  3786. white-space:nowrap;
  3787. text-transform:none;
  3788. }
  3789. #u1776_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:103px;
  3795. height:18px;
  3796. background:inherit;
  3797. background-color:rgba(245, 154, 35, 0);
  3798. border:none;
  3799. border-left:0px;
  3800. border-top:0px;
  3801. border-right:0px;
  3802. border-radius:0px;
  3803. border-bottom-right-radius:0px;
  3804. border-bottom-left-radius:0px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:10px;
  3812. color:#FFFFFF;
  3813. text-align:left;
  3814. }
  3815. #u1776 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:943px;
  3819. top:238px;
  3820. width:103px;
  3821. height:18px;
  3822. display:flex;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:10px;
  3827. color:#FFFFFF;
  3828. text-align:left;
  3829. }
  3830. #u1776 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 0px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u1776_text {
  3838. border-width:0px;
  3839. white-space:nowrap;
  3840. text-transform:none;
  3841. }
  3842. #u1777_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:50px;
  3848. height:59px;
  3849. }
  3850. #u1777 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:884px;
  3854. top:190px;
  3855. width:50px;
  3856. height:59px;
  3857. display:flex;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. color:#FFFFFF;
  3862. }
  3863. #u1777 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 2px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u1777_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. }
  3875. #u1778 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:0px;
  3881. height:0px;
  3882. }
  3883. #u1779 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:0px;
  3889. height:0px;
  3890. }
  3891. #u1780_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:31px;
  3897. height:30px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 1);
  3900. box-sizing:border-box;
  3901. border-width:1px;
  3902. border-style:solid;
  3903. border-color:rgba(228, 228, 228, 1);
  3904. border-radius:4px;
  3905. -moz-box-shadow:none;
  3906. -webkit-box-shadow:none;
  3907. box-shadow:none;
  3908. font-family:'Microsoft YaHei', sans-serif;
  3909. font-weight:400;
  3910. font-style:normal;
  3911. font-size:12px;
  3912. }
  3913. #u1780 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:1030px;
  3917. top:689px;
  3918. width:31px;
  3919. height:30px;
  3920. display:flex;
  3921. font-family:'Microsoft YaHei', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. }
  3926. #u1780 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 2px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u1780_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u1781_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:8px;
  3945. height:14px;
  3946. }
  3947. #u1781 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:1042px;
  3951. top:697px;
  3952. width:8px;
  3953. height:14px;
  3954. display:flex;
  3955. font-family:'Microsoft YaHei', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. }
  3960. #u1781 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 2px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u1781_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u1782 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:0px;
  3979. height:0px;
  3980. }
  3981. #u1783_div {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:31px;
  3987. height:30px;
  3988. background:inherit;
  3989. background-color:rgba(255, 255, 255, 1);
  3990. box-sizing:border-box;
  3991. border-width:1px;
  3992. border-style:solid;
  3993. border-color:rgba(228, 228, 228, 1);
  3994. border-radius:4px;
  3995. -moz-box-shadow:none;
  3996. -webkit-box-shadow:none;
  3997. box-shadow:none;
  3998. font-family:'Microsoft YaHei', sans-serif;
  3999. font-weight:400;
  4000. font-style:normal;
  4001. font-size:12px;
  4002. }
  4003. #u1783 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:1115px;
  4007. top:689px;
  4008. width:31px;
  4009. height:30px;
  4010. display:flex;
  4011. font-family:'Microsoft YaHei', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:12px;
  4015. }
  4016. #u1783 .text {
  4017. position:absolute;
  4018. align-self:center;
  4019. padding:2px 2px 2px 2px;
  4020. box-sizing:border-box;
  4021. width:100%;
  4022. }
  4023. #u1783_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. visibility:hidden;
  4028. }
  4029. #u1784_img {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:8px;
  4035. height:14px;
  4036. }
  4037. #u1784 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:1128px;
  4041. top:697px;
  4042. width:8px;
  4043. height:14px;
  4044. display:flex;
  4045. font-family:'Microsoft YaHei', sans-serif;
  4046. font-weight:400;
  4047. font-style:normal;
  4048. font-size:12px;
  4049. }
  4050. #u1784 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 2px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u1784_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u1785_div {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:32px;
  4069. height:21px;
  4070. background:inherit;
  4071. background-color:rgba(255, 255, 255, 0);
  4072. border:none;
  4073. border-radius:15px;
  4074. -moz-box-shadow:none;
  4075. -webkit-box-shadow:none;
  4076. box-shadow:none;
  4077. font-family:'Microsoft YaHei', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:14px;
  4081. color:#FFFFFF;
  4082. }
  4083. #u1785 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:1071px;
  4087. top:694px;
  4088. width:32px;
  4089. height:21px;
  4090. display:flex;
  4091. font-family:'Microsoft YaHei', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:14px;
  4095. color:#FFFFFF;
  4096. }
  4097. #u1785 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u1785_text {
  4105. border-width:0px;
  4106. white-space:nowrap;
  4107. text-transform:none;
  4108. }
  4109. #u1786_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:100px;
  4115. height:30px;
  4116. background:inherit;
  4117. background-color:rgba(245, 154, 35, 0);
  4118. box-sizing:border-box;
  4119. border-width:1px;
  4120. border-style:solid;
  4121. border-color:rgba(245, 154, 35, 1);
  4122. border-radius:4px;
  4123. -moz-box-shadow:none;
  4124. -webkit-box-shadow:none;
  4125. box-shadow:none;
  4126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. font-size:12px;
  4130. color:#F59A23;
  4131. }
  4132. #u1786 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:941px;
  4136. top:124px;
  4137. width:100px;
  4138. height:30px;
  4139. display:flex;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. color:#F59A23;
  4145. }
  4146. #u1786 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 2px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u1786_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. }
  4158. #u1787_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:100px;
  4164. height:30px;
  4165. background:inherit;
  4166. background-color:rgba(245, 154, 35, 0);
  4167. box-sizing:border-box;
  4168. border-width:1px;
  4169. border-style:solid;
  4170. border-color:rgba(245, 154, 35, 1);
  4171. border-radius:4px;
  4172. -moz-box-shadow:none;
  4173. -webkit-box-shadow:none;
  4174. box-shadow:none;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:#F59A23;
  4180. }
  4181. #u1787 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:1047px;
  4185. top:124px;
  4186. width:100px;
  4187. height:30px;
  4188. display:flex;
  4189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. font-size:12px;
  4193. color:#F59A23;
  4194. }
  4195. #u1787 .text {
  4196. position:absolute;
  4197. align-self:center;
  4198. padding:2px 2px 2px 2px;
  4199. box-sizing:border-box;
  4200. width:100%;
  4201. }
  4202. #u1787_text {
  4203. border-width:0px;
  4204. word-wrap:break-word;
  4205. text-transform:none;
  4206. }
  4207. #u1788 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:0px;
  4213. height:0px;
  4214. }
  4215. #u1789 {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:0px;
  4221. height:0px;
  4222. }
  4223. #u1790_div {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:57px;
  4229. height:20px;
  4230. background:inherit;
  4231. background-color:rgba(28, 33, 30, 1);
  4232. border:none;
  4233. border-radius:0px;
  4234. -moz-box-shadow:none;
  4235. -webkit-box-shadow:none;
  4236. box-shadow:none;
  4237. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4238. font-weight:500;
  4239. font-style:normal;
  4240. font-size:14px;
  4241. color:#FFFFFF;
  4242. }
  4243. #u1790 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:497px;
  4247. top:831px;
  4248. width:57px;
  4249. height:20px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4252. font-weight:500;
  4253. font-style:normal;
  4254. font-size:14px;
  4255. color:#FFFFFF;
  4256. }
  4257. #u1790 .text {
  4258. position:absolute;
  4259. align-self:flex-start;
  4260. padding:0px 0px 0px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u1790_text {
  4265. border-width:0px;
  4266. white-space:nowrap;
  4267. text-transform:none;
  4268. }
  4269. #u1791_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:33px;
  4275. height:39px;
  4276. }
  4277. #u1791 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:509px;
  4281. top:790px;
  4282. width:33px;
  4283. height:39px;
  4284. display:flex;
  4285. color:#FFFFFF;
  4286. }
  4287. #u1791 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 2px 2px 2px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u1791_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. }
  4299. #u1792 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:0px;
  4305. height:0px;
  4306. }
  4307. #u1793_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:57px;
  4313. height:20px;
  4314. background:inherit;
  4315. background-color:rgba(28, 33, 30, 1);
  4316. border:none;
  4317. border-radius:0px;
  4318. -moz-box-shadow:none;
  4319. -webkit-box-shadow:none;
  4320. box-shadow:none;
  4321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4322. font-weight:500;
  4323. font-style:normal;
  4324. font-size:14px;
  4325. color:#FFFFFF;
  4326. }
  4327. #u1793 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:573px;
  4331. top:831px;
  4332. width:57px;
  4333. height:20px;
  4334. display:flex;
  4335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4336. font-weight:500;
  4337. font-style:normal;
  4338. font-size:14px;
  4339. color:#FFFFFF;
  4340. }
  4341. #u1793 .text {
  4342. position:absolute;
  4343. align-self:flex-start;
  4344. padding:0px 0px 0px 0px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u1793_text {
  4349. border-width:0px;
  4350. white-space:nowrap;
  4351. text-transform:none;
  4352. }
  4353. #u1794_img {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:0px;
  4357. top:0px;
  4358. width:33px;
  4359. height:39px;
  4360. }
  4361. #u1794 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:585px;
  4365. top:790px;
  4366. width:33px;
  4367. height:39px;
  4368. display:flex;
  4369. color:#FFFFFF;
  4370. }
  4371. #u1794 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u1794_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. }
  4383. #u1795 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:0px;
  4389. height:0px;
  4390. }
  4391. #u1796_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:57px;
  4397. height:20px;
  4398. background:inherit;
  4399. background-color:rgba(28, 33, 30, 1);
  4400. border:none;
  4401. border-radius:0px;
  4402. -moz-box-shadow:none;
  4403. -webkit-box-shadow:none;
  4404. box-shadow:none;
  4405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4406. font-weight:500;
  4407. font-style:normal;
  4408. font-size:14px;
  4409. color:#FFFFFF;
  4410. }
  4411. #u1796 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:423px;
  4415. top:831px;
  4416. width:57px;
  4417. height:20px;
  4418. display:flex;
  4419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4420. font-weight:500;
  4421. font-style:normal;
  4422. font-size:14px;
  4423. color:#FFFFFF;
  4424. }
  4425. #u1796 .text {
  4426. position:absolute;
  4427. align-self:flex-start;
  4428. padding:0px 0px 0px 0px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u1796_text {
  4433. border-width:0px;
  4434. white-space:nowrap;
  4435. text-transform:none;
  4436. }
  4437. #u1797_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:33px;
  4443. height:39px;
  4444. }
  4445. #u1797 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:435px;
  4449. top:790px;
  4450. width:33px;
  4451. height:39px;
  4452. display:flex;
  4453. color:#FFFFFF;
  4454. }
  4455. #u1797 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 2px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u1797_text {
  4463. border-width:0px;
  4464. word-wrap:break-word;
  4465. text-transform:none;
  4466. }
  4467. #u1798_div {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:59px;
  4473. height:20px;
  4474. background:inherit;
  4475. background-color:rgba(28, 33, 30, 1);
  4476. border:none;
  4477. border-radius:0px;
  4478. -moz-box-shadow:none;
  4479. -webkit-box-shadow:none;
  4480. box-shadow:none;
  4481. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4482. font-weight:500;
  4483. font-style:normal;
  4484. font-size:14px;
  4485. color:#FFFFFF;
  4486. }
  4487. #u1798 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:423px;
  4491. top:831px;
  4492. width:59px;
  4493. height:20px;
  4494. display:flex;
  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. #u1798 .text {
  4502. position:absolute;
  4503. align-self:flex-start;
  4504. padding:0px 0px 0px 0px;
  4505. box-sizing:border-box;
  4506. width:100%;
  4507. }
  4508. #u1798_text {
  4509. border-width:0px;
  4510. word-wrap:break-word;
  4511. text-transform:none;
  4512. }
  4513. #u1799 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:0px;
  4519. height:0px;
  4520. }
  4521. #u1800_div {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:57px;
  4527. height:20px;
  4528. background:inherit;
  4529. background-color:rgba(28, 33, 30, 1);
  4530. border:none;
  4531. border-radius:0px;
  4532. -moz-box-shadow:none;
  4533. -webkit-box-shadow:none;
  4534. box-shadow:none;
  4535. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4536. font-weight:500;
  4537. font-style:normal;
  4538. font-size:14px;
  4539. color:#FFFFFF;
  4540. }
  4541. #u1800 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:651px;
  4545. top:831px;
  4546. width:57px;
  4547. height:20px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4550. font-weight:500;
  4551. font-style:normal;
  4552. font-size:14px;
  4553. color:#FFFFFF;
  4554. }
  4555. #u1800 .text {
  4556. position:absolute;
  4557. align-self:flex-start;
  4558. padding:0px 0px 0px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u1800_text {
  4563. border-width:0px;
  4564. white-space:nowrap;
  4565. text-transform:none;
  4566. }
  4567. #u1801_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:33px;
  4573. height:39px;
  4574. }
  4575. #u1801 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:663px;
  4579. top:790px;
  4580. width:33px;
  4581. height:39px;
  4582. display:flex;
  4583. color:#FFFFFF;
  4584. }
  4585. #u1801 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 2px 2px 2px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u1801_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. }
  4597. #u1802 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:0px;
  4603. height:0px;
  4604. }
  4605. #u1803_div {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:57px;
  4611. height:20px;
  4612. background:inherit;
  4613. background-color:rgba(28, 33, 30, 1);
  4614. border:none;
  4615. border-radius:0px;
  4616. -moz-box-shadow:none;
  4617. -webkit-box-shadow:none;
  4618. box-shadow:none;
  4619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4620. font-weight:500;
  4621. font-style:normal;
  4622. font-size:14px;
  4623. color:#FFFFFF;
  4624. }
  4625. #u1803 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:799px;
  4629. top:831px;
  4630. width:57px;
  4631. height:20px;
  4632. display:flex;
  4633. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4634. font-weight:500;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. color:#FFFFFF;
  4638. }
  4639. #u1803 .text {
  4640. position:absolute;
  4641. align-self:flex-start;
  4642. padding:0px 0px 0px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u1803_text {
  4647. border-width:0px;
  4648. white-space:nowrap;
  4649. text-transform:none;
  4650. }
  4651. #u1804_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:33px;
  4657. height:39px;
  4658. }
  4659. #u1804 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:811px;
  4663. top:790px;
  4664. width:33px;
  4665. height:39px;
  4666. display:flex;
  4667. color:#FFFFFF;
  4668. }
  4669. #u1804 .text {
  4670. position:absolute;
  4671. align-self:center;
  4672. padding:2px 2px 2px 2px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u1804_text {
  4677. border-width:0px;
  4678. word-wrap:break-word;
  4679. text-transform:none;
  4680. }
  4681. #u1805 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:0px;
  4687. height:0px;
  4688. }
  4689. #u1806_div {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:0px;
  4693. top:0px;
  4694. width:56px;
  4695. height:20px;
  4696. background:inherit;
  4697. background-color:rgba(28, 33, 30, 1);
  4698. border:none;
  4699. border-radius:0px;
  4700. -moz-box-shadow:none;
  4701. -webkit-box-shadow:none;
  4702. box-shadow:none;
  4703. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4704. font-weight:500;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. color:#FFFFFF;
  4708. }
  4709. #u1806 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:874px;
  4713. top:831px;
  4714. width:56px;
  4715. height:20px;
  4716. display:flex;
  4717. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4718. font-weight:500;
  4719. font-style:normal;
  4720. font-size:14px;
  4721. color:#FFFFFF;
  4722. }
  4723. #u1806 .text {
  4724. position:absolute;
  4725. align-self:flex-start;
  4726. padding:0px 0px 0px 0px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u1806_text {
  4731. border-width:0px;
  4732. white-space:nowrap;
  4733. text-transform:none;
  4734. }
  4735. #u1807_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:33px;
  4741. height:39px;
  4742. }
  4743. #u1807 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:886px;
  4747. top:790px;
  4748. width:33px;
  4749. height:39px;
  4750. display:flex;
  4751. color:#FFFFFF;
  4752. }
  4753. #u1807 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 2px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u1807_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. }
  4765. #u1808 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:0px;
  4771. height:0px;
  4772. }
  4773. #u1809_div {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:59px;
  4779. height:20px;
  4780. background:inherit;
  4781. background-color:rgba(28, 33, 30, 1);
  4782. border:none;
  4783. border-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4788. font-weight:500;
  4789. font-style:normal;
  4790. font-size:14px;
  4791. color:#FFFFFF;
  4792. }
  4793. #u1809 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:726px;
  4797. top:831px;
  4798. width:59px;
  4799. height:20px;
  4800. display:flex;
  4801. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4802. font-weight:500;
  4803. font-style:normal;
  4804. font-size:14px;
  4805. color:#FFFFFF;
  4806. }
  4807. #u1809 .text {
  4808. position:absolute;
  4809. align-self:flex-start;
  4810. padding:0px 0px 0px 0px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u1809_text {
  4815. border-width:0px;
  4816. word-wrap:break-word;
  4817. text-transform:none;
  4818. }
  4819. #u1810_img {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:33px;
  4825. height:39px;
  4826. }
  4827. #u1810 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:737px;
  4831. top:790px;
  4832. width:33px;
  4833. height:39px;
  4834. display:flex;
  4835. color:#FFFFFF;
  4836. }
  4837. #u1810 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 2px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u1810_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. }
  4849. #u1811 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:0px;
  4855. height:0px;
  4856. }
  4857. #u1812_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:57px;
  4863. height:20px;
  4864. background:inherit;
  4865. background-color:rgba(28, 33, 30, 1);
  4866. border:none;
  4867. border-radius:0px;
  4868. -moz-box-shadow:none;
  4869. -webkit-box-shadow:none;
  4870. box-shadow:none;
  4871. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4872. font-weight:500;
  4873. font-style:normal;
  4874. font-size:14px;
  4875. color:#FFFFFF;
  4876. }
  4877. #u1812 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:947px;
  4881. top:831px;
  4882. width:57px;
  4883. height:20px;
  4884. display:flex;
  4885. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4886. font-weight:500;
  4887. font-style:normal;
  4888. font-size:14px;
  4889. color:#FFFFFF;
  4890. }
  4891. #u1812 .text {
  4892. position:absolute;
  4893. align-self:flex-start;
  4894. padding:0px 0px 0px 0px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u1812_text {
  4899. border-width:0px;
  4900. white-space:nowrap;
  4901. text-transform:none;
  4902. }
  4903. #u1813_img {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:33px;
  4909. height:39px;
  4910. }
  4911. #u1813 {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:960px;
  4915. top:790px;
  4916. width:33px;
  4917. height:39px;
  4918. display:flex;
  4919. color:#FFFFFF;
  4920. }
  4921. #u1813 .text {
  4922. position:absolute;
  4923. align-self:center;
  4924. padding:2px 2px 2px 2px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u1813_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. }
  4933. #u1814 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:0px;
  4939. height:0px;
  4940. }
  4941. #u1815_div {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:68px;
  4947. height:20px;
  4948. background:inherit;
  4949. background-color:rgba(28, 33, 30, 1);
  4950. border:none;
  4951. border-radius:0px;
  4952. -moz-box-shadow:none;
  4953. -webkit-box-shadow:none;
  4954. box-shadow:none;
  4955. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4956. font-weight:500;
  4957. font-style:normal;
  4958. font-size:14px;
  4959. color:#FFFFFF;
  4960. text-align:center;
  4961. }
  4962. #u1815 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:1019px;
  4966. top:831px;
  4967. width:68px;
  4968. height:20px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4971. font-weight:500;
  4972. font-style:normal;
  4973. font-size:14px;
  4974. color:#FFFFFF;
  4975. text-align:center;
  4976. }
  4977. #u1815 .text {
  4978. position:absolute;
  4979. align-self:flex-start;
  4980. padding:0px 0px 0px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u1815_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. }
  4989. #u1816_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:33px;
  4995. height:39px;
  4996. }
  4997. #u1816 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:1033px;
  5001. top:790px;
  5002. width:33px;
  5003. height:39px;
  5004. display:flex;
  5005. color:#FFFFFF;
  5006. }
  5007. #u1816 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 2px 2px 2px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u1816_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. }
  5019. #u1817 {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:0px;
  5025. height:0px;
  5026. }
  5027. #u1818_img {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:-20px;
  5031. top:-20px;
  5032. width:1040px;
  5033. height:629px;
  5034. }
  5035. #u1818 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:216px;
  5039. top:887px;
  5040. width:1000px;
  5041. height:589px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:14px;
  5047. color:#F59A23;
  5048. }
  5049. #u1818 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u1818_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u1819_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:125px;
  5068. height:32px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 0);
  5071. border:none;
  5072. border-radius:0px;
  5073. -moz-box-shadow:none;
  5074. -webkit-box-shadow:none;
  5075. box-shadow:none;
  5076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5077. font-weight:500;
  5078. font-style:normal;
  5079. font-size:20px;
  5080. color:#FFFFFF;
  5081. }
  5082. #u1819 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:236px;
  5086. top:897px;
  5087. width:125px;
  5088. height:32px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5091. font-weight:500;
  5092. font-style:normal;
  5093. font-size:20px;
  5094. color:#FFFFFF;
  5095. }
  5096. #u1819 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:2px 2px 2px 2px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u1819_text {
  5104. border-width:0px;
  5105. white-space:nowrap;
  5106. text-transform:none;
  5107. }
  5108. #u1820_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:33px;
  5114. height:40px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 0);
  5117. box-sizing:border-box;
  5118. border-width:2px;
  5119. border-style:solid;
  5120. border-color:rgba(245, 154, 35, 1);
  5121. border-left:0px;
  5122. border-top:0px;
  5123. border-right:0px;
  5124. border-radius:0px;
  5125. border-bottom-right-radius:0px;
  5126. border-bottom-left-radius:0px;
  5127. -moz-box-shadow:none;
  5128. -webkit-box-shadow:none;
  5129. box-shadow:none;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:14px;
  5134. color:#F59A23;
  5135. }
  5136. #u1820 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:252px;
  5140. top:943px;
  5141. width:33px;
  5142. height:40px;
  5143. display:flex;
  5144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:14px;
  5148. color:#F59A23;
  5149. }
  5150. #u1820 .text {
  5151. position:absolute;
  5152. align-self:center;
  5153. padding:2px 2px 2px 2px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u1820_text {
  5158. border-width:0px;
  5159. white-space:nowrap;
  5160. text-transform:none;
  5161. }
  5162. #u1821_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:47px;
  5168. height:40px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 0);
  5171. border:none;
  5172. border-left:0px;
  5173. border-top:0px;
  5174. border-right:0px;
  5175. border-radius:0px;
  5176. border-bottom-right-radius:0px;
  5177. border-bottom-left-radius:0px;
  5178. -moz-box-shadow:none;
  5179. -webkit-box-shadow:none;
  5180. box-shadow:none;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:14px;
  5185. color:#FFFFFF;
  5186. }
  5187. #u1821 {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:317px;
  5191. top:943px;
  5192. width:47px;
  5193. height:40px;
  5194. display:flex;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:14px;
  5199. color:#FFFFFF;
  5200. }
  5201. #u1821 .text {
  5202. position:absolute;
  5203. align-self:center;
  5204. padding:2px 2px 2px 2px;
  5205. box-sizing:border-box;
  5206. width:100%;
  5207. }
  5208. #u1821_text {
  5209. border-width:0px;
  5210. white-space:nowrap;
  5211. text-transform:none;
  5212. }
  5213. #u1822_div {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:47px;
  5219. height:40px;
  5220. background:inherit;
  5221. background-color:rgba(255, 255, 255, 0);
  5222. border:none;
  5223. border-left:0px;
  5224. border-top:0px;
  5225. border-right:0px;
  5226. border-radius:0px;
  5227. border-bottom-right-radius:0px;
  5228. border-bottom-left-radius:0px;
  5229. -moz-box-shadow:none;
  5230. -webkit-box-shadow:none;
  5231. box-shadow:none;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:14px;
  5236. color:#FFFFFF;
  5237. }
  5238. #u1822 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:395px;
  5242. top:943px;
  5243. width:47px;
  5244. height:40px;
  5245. display:flex;
  5246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5247. font-weight:400;
  5248. font-style:normal;
  5249. font-size:14px;
  5250. color:#FFFFFF;
  5251. }
  5252. #u1822 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:2px 2px 2px 2px;
  5256. box-sizing:border-box;
  5257. width:100%;
  5258. }
  5259. #u1822_text {
  5260. border-width:0px;
  5261. white-space:nowrap;
  5262. text-transform:none;
  5263. }
  5264. #u1823 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:252px;
  5268. top:993px;
  5269. width:944px;
  5270. height:366px;
  5271. }
  5272. #u1824_img {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:118px;
  5278. height:39px;
  5279. }
  5280. #u1824 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:118px;
  5286. height:39px;
  5287. display:flex;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:12px;
  5292. color:#FFFFFF;
  5293. }
  5294. #u1824 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:2px 2px 2px 0px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u1824_text {
  5302. border-width:0px;
  5303. word-wrap:break-word;
  5304. text-transform:none;
  5305. }
  5306. #u1825_img {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:118px;
  5312. height:39px;
  5313. }
  5314. #u1825 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:118px;
  5318. top:0px;
  5319. width:118px;
  5320. height:39px;
  5321. display:flex;
  5322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5323. font-weight:400;
  5324. font-style:normal;
  5325. font-size:12px;
  5326. color:#FFFFFF;
  5327. }
  5328. #u1825 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 0px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u1825_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. }
  5340. #u1826_img {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:118px;
  5346. height:39px;
  5347. }
  5348. #u1826 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:236px;
  5352. top:0px;
  5353. width:118px;
  5354. height:39px;
  5355. display:flex;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:12px;
  5360. color:#FFFFFF;
  5361. }
  5362. #u1826 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:2px 2px 2px 0px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u1826_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. }
  5374. #u1827_img {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:118px;
  5380. height:39px;
  5381. }
  5382. #u1827 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:354px;
  5386. top:0px;
  5387. width:118px;
  5388. height:39px;
  5389. display:flex;
  5390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:12px;
  5394. color:#FFFFFF;
  5395. }
  5396. #u1827 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 0px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u1827_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. }
  5408. #u1828_img {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:0px;
  5412. top:0px;
  5413. width:118px;
  5414. height:39px;
  5415. }
  5416. #u1828 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:472px;
  5420. top:0px;
  5421. width:118px;
  5422. height:39px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:12px;
  5428. color:#FFFFFF;
  5429. }
  5430. #u1828 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 0px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u1828_text {
  5438. border-width:0px;
  5439. word-wrap:break-word;
  5440. text-transform:none;
  5441. }
  5442. #u1829_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:118px;
  5448. height:39px;
  5449. }
  5450. #u1829 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:590px;
  5454. top:0px;
  5455. width:118px;
  5456. height:39px;
  5457. display:flex;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:12px;
  5462. color:#FFFFFF;
  5463. }
  5464. #u1829 .text {
  5465. position:absolute;
  5466. align-self:center;
  5467. padding:2px 2px 2px 0px;
  5468. box-sizing:border-box;
  5469. width:100%;
  5470. }
  5471. #u1829_text {
  5472. border-width:0px;
  5473. word-wrap:break-word;
  5474. text-transform:none;
  5475. }
  5476. #u1830_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:118px;
  5482. height:39px;
  5483. }
  5484. #u1830 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:708px;
  5488. top:0px;
  5489. width:118px;
  5490. height:39px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:12px;
  5496. color:#FFFFFF;
  5497. }
  5498. #u1830 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 0px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u1830_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. }
  5510. #u1831_img {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:0px;
  5514. top:0px;
  5515. width:118px;
  5516. height:39px;
  5517. }
  5518. #u1831 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:826px;
  5522. top:0px;
  5523. width:118px;
  5524. height:39px;
  5525. display:flex;
  5526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5527. font-weight:400;
  5528. font-style:normal;
  5529. font-size:12px;
  5530. color:#FFFFFF;
  5531. }
  5532. #u1831 .text {
  5533. position:absolute;
  5534. align-self:center;
  5535. padding:2px 2px 2px 0px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u1831_text {
  5540. border-width:0px;
  5541. word-wrap:break-word;
  5542. text-transform:none;
  5543. }
  5544. #u1832_img {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:118px;
  5550. height:38px;
  5551. }
  5552. #u1832 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:0px;
  5556. top:39px;
  5557. width:118px;
  5558. height:38px;
  5559. display:flex;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:12px;
  5564. color:#FFFFFF;
  5565. }
  5566. #u1832 .text {
  5567. position:absolute;
  5568. align-self:center;
  5569. padding:2px 2px 2px 0px;
  5570. box-sizing:border-box;
  5571. width:100%;
  5572. }
  5573. #u1832_text {
  5574. border-width:0px;
  5575. word-wrap:break-word;
  5576. text-transform:none;
  5577. visibility:hidden;
  5578. }
  5579. #u1833_img {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:118px;
  5585. height:38px;
  5586. }
  5587. #u1833 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:118px;
  5591. top:39px;
  5592. width:118px;
  5593. height:38px;
  5594. display:flex;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:12px;
  5599. color:#FFFFFF;
  5600. }
  5601. #u1833 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:2px 2px 2px 0px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u1833_text {
  5609. border-width:0px;
  5610. word-wrap:break-word;
  5611. text-transform:none;
  5612. visibility:hidden;
  5613. }
  5614. #u1834_img {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:0px;
  5618. top:0px;
  5619. width:118px;
  5620. height:38px;
  5621. }
  5622. #u1834 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:236px;
  5626. top:39px;
  5627. width:118px;
  5628. height:38px;
  5629. display:flex;
  5630. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:12px;
  5634. color:#FFFFFF;
  5635. }
  5636. #u1834 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u1834_text {
  5644. border-width:0px;
  5645. word-wrap:break-word;
  5646. text-transform:none;
  5647. visibility:hidden;
  5648. }
  5649. #u1835_img {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:118px;
  5655. height:38px;
  5656. }
  5657. #u1835 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:354px;
  5661. top:39px;
  5662. width:118px;
  5663. height:38px;
  5664. display:flex;
  5665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:12px;
  5669. color:#FFFFFF;
  5670. }
  5671. #u1835 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 0px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u1835_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u1836_img {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:118px;
  5690. height:38px;
  5691. }
  5692. #u1836 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:472px;
  5696. top:39px;
  5697. width:118px;
  5698. height:38px;
  5699. display:flex;
  5700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:12px;
  5704. color:#FFFFFF;
  5705. }
  5706. #u1836 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 2px 2px 0px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u1836_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u1837_img {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:118px;
  5725. height:38px;
  5726. }
  5727. #u1837 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:590px;
  5731. top:39px;
  5732. width:118px;
  5733. height:38px;
  5734. display:flex;
  5735. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5736. font-weight:400;
  5737. font-style:normal;
  5738. font-size:12px;
  5739. color:#FFFFFF;
  5740. }
  5741. #u1837 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:2px 2px 2px 0px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u1837_text {
  5749. border-width:0px;
  5750. word-wrap:break-word;
  5751. text-transform:none;
  5752. visibility:hidden;
  5753. }
  5754. #u1838_img {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:118px;
  5760. height:38px;
  5761. }
  5762. #u1838 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:708px;
  5766. top:39px;
  5767. width:118px;
  5768. height:38px;
  5769. display:flex;
  5770. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5771. font-weight:400;
  5772. font-style:normal;
  5773. font-size:12px;
  5774. color:#FFFFFF;
  5775. }
  5776. #u1838 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:2px 2px 2px 0px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u1838_text {
  5784. border-width:0px;
  5785. word-wrap:break-word;
  5786. text-transform:none;
  5787. visibility:hidden;
  5788. }
  5789. #u1839_img {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:118px;
  5795. height:38px;
  5796. }
  5797. #u1839 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:826px;
  5801. top:39px;
  5802. width:118px;
  5803. height:38px;
  5804. display:flex;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:12px;
  5809. color:#FFFFFF;
  5810. }
  5811. #u1839 .text {
  5812. position:absolute;
  5813. align-self:center;
  5814. padding:2px 2px 2px 0px;
  5815. box-sizing:border-box;
  5816. width:100%;
  5817. }
  5818. #u1839_text {
  5819. border-width:0px;
  5820. word-wrap:break-word;
  5821. text-transform:none;
  5822. visibility:hidden;
  5823. }
  5824. #u1840_img {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:118px;
  5830. height:38px;
  5831. }
  5832. #u1840 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:77px;
  5837. width:118px;
  5838. height:38px;
  5839. display:flex;
  5840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:12px;
  5844. color:#FFFFFF;
  5845. }
  5846. #u1840 .text {
  5847. position:absolute;
  5848. align-self:center;
  5849. padding:2px 2px 2px 0px;
  5850. box-sizing:border-box;
  5851. width:100%;
  5852. }
  5853. #u1840_text {
  5854. border-width:0px;
  5855. word-wrap:break-word;
  5856. text-transform:none;
  5857. visibility:hidden;
  5858. }
  5859. #u1841_img {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:0px;
  5863. top:0px;
  5864. width:118px;
  5865. height:38px;
  5866. }
  5867. #u1841 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:118px;
  5871. top:77px;
  5872. width:118px;
  5873. height:38px;
  5874. display:flex;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:12px;
  5879. color:#FFFFFF;
  5880. }
  5881. #u1841 .text {
  5882. position:absolute;
  5883. align-self:center;
  5884. padding:2px 2px 2px 0px;
  5885. box-sizing:border-box;
  5886. width:100%;
  5887. }
  5888. #u1841_text {
  5889. border-width:0px;
  5890. word-wrap:break-word;
  5891. text-transform:none;
  5892. visibility:hidden;
  5893. }
  5894. #u1842_img {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:118px;
  5900. height:38px;
  5901. }
  5902. #u1842 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:236px;
  5906. top:77px;
  5907. width:118px;
  5908. height:38px;
  5909. display:flex;
  5910. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:12px;
  5914. color:#FFFFFF;
  5915. }
  5916. #u1842 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 0px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u1842_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u1843_img {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:118px;
  5935. height:38px;
  5936. }
  5937. #u1843 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:354px;
  5941. top:77px;
  5942. width:118px;
  5943. height:38px;
  5944. display:flex;
  5945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:12px;
  5949. color:#FFFFFF;
  5950. }
  5951. #u1843 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 0px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u1843_text {
  5959. border-width:0px;
  5960. word-wrap:break-word;
  5961. text-transform:none;
  5962. visibility:hidden;
  5963. }
  5964. #u1844_img {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:118px;
  5970. height:38px;
  5971. }
  5972. #u1844 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:472px;
  5976. top:77px;
  5977. width:118px;
  5978. height:38px;
  5979. display:flex;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:12px;
  5984. color:#FFFFFF;
  5985. }
  5986. #u1844 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 2px 2px 0px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u1844_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. visibility:hidden;
  5998. }
  5999. #u1845_img {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:118px;
  6005. height:38px;
  6006. }
  6007. #u1845 {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:590px;
  6011. top:77px;
  6012. width:118px;
  6013. height:38px;
  6014. display:flex;
  6015. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. font-size:12px;
  6019. color:#FFFFFF;
  6020. }
  6021. #u1845 .text {
  6022. position:absolute;
  6023. align-self:center;
  6024. padding:2px 2px 2px 0px;
  6025. box-sizing:border-box;
  6026. width:100%;
  6027. }
  6028. #u1845_text {
  6029. border-width:0px;
  6030. word-wrap:break-word;
  6031. text-transform:none;
  6032. visibility:hidden;
  6033. }
  6034. #u1846_img {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:118px;
  6040. height:38px;
  6041. }
  6042. #u1846 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:708px;
  6046. top:77px;
  6047. width:118px;
  6048. height:38px;
  6049. display:flex;
  6050. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:12px;
  6054. color:#FFFFFF;
  6055. }
  6056. #u1846 .text {
  6057. position:absolute;
  6058. align-self:center;
  6059. padding:2px 2px 2px 0px;
  6060. box-sizing:border-box;
  6061. width:100%;
  6062. }
  6063. #u1846_text {
  6064. border-width:0px;
  6065. word-wrap:break-word;
  6066. text-transform:none;
  6067. visibility:hidden;
  6068. }
  6069. #u1847_img {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:118px;
  6075. height:38px;
  6076. }
  6077. #u1847 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:826px;
  6081. top:77px;
  6082. width:118px;
  6083. height:38px;
  6084. display:flex;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:12px;
  6089. color:#FFFFFF;
  6090. }
  6091. #u1847 .text {
  6092. position:absolute;
  6093. align-self:center;
  6094. padding:2px 2px 2px 0px;
  6095. box-sizing:border-box;
  6096. width:100%;
  6097. }
  6098. #u1847_text {
  6099. border-width:0px;
  6100. word-wrap:break-word;
  6101. text-transform:none;
  6102. visibility:hidden;
  6103. }
  6104. #u1848_img {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:118px;
  6110. height:38px;
  6111. }
  6112. #u1848 {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:115px;
  6117. width:118px;
  6118. height:38px;
  6119. display:flex;
  6120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:12px;
  6124. color:#FFFFFF;
  6125. }
  6126. #u1848 .text {
  6127. position:absolute;
  6128. align-self:center;
  6129. padding:2px 2px 2px 0px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u1848_text {
  6134. border-width:0px;
  6135. word-wrap:break-word;
  6136. text-transform:none;
  6137. visibility:hidden;
  6138. }
  6139. #u1849_img {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:118px;
  6145. height:38px;
  6146. }
  6147. #u1849 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:118px;
  6151. top:115px;
  6152. width:118px;
  6153. height:38px;
  6154. display:flex;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:12px;
  6159. color:#FFFFFF;
  6160. }
  6161. #u1849 .text {
  6162. position:absolute;
  6163. align-self:center;
  6164. padding:2px 2px 2px 0px;
  6165. box-sizing:border-box;
  6166. width:100%;
  6167. }
  6168. #u1849_text {
  6169. border-width:0px;
  6170. word-wrap:break-word;
  6171. text-transform:none;
  6172. visibility:hidden;
  6173. }
  6174. #u1850_img {
  6175. border-width:0px;
  6176. position:absolute;
  6177. left:0px;
  6178. top:0px;
  6179. width:118px;
  6180. height:38px;
  6181. }
  6182. #u1850 {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:236px;
  6186. top:115px;
  6187. width:118px;
  6188. height:38px;
  6189. display:flex;
  6190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:12px;
  6194. color:#FFFFFF;
  6195. }
  6196. #u1850 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:2px 2px 2px 0px;
  6200. box-sizing:border-box;
  6201. width:100%;
  6202. }
  6203. #u1850_text {
  6204. border-width:0px;
  6205. word-wrap:break-word;
  6206. text-transform:none;
  6207. visibility:hidden;
  6208. }
  6209. #u1851_img {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:118px;
  6215. height:38px;
  6216. }
  6217. #u1851 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:354px;
  6221. top:115px;
  6222. width:118px;
  6223. height:38px;
  6224. display:flex;
  6225. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6226. font-weight:400;
  6227. font-style:normal;
  6228. font-size:12px;
  6229. color:#FFFFFF;
  6230. }
  6231. #u1851 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:2px 2px 2px 0px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u1851_text {
  6239. border-width:0px;
  6240. word-wrap:break-word;
  6241. text-transform:none;
  6242. visibility:hidden;
  6243. }
  6244. #u1852_img {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:0px;
  6248. top:0px;
  6249. width:118px;
  6250. height:38px;
  6251. }
  6252. #u1852 {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:472px;
  6256. top:115px;
  6257. width:118px;
  6258. height:38px;
  6259. display:flex;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:12px;
  6264. color:#FFFFFF;
  6265. }
  6266. #u1852 .text {
  6267. position:absolute;
  6268. align-self:center;
  6269. padding:2px 2px 2px 0px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u1852_text {
  6274. border-width:0px;
  6275. word-wrap:break-word;
  6276. text-transform:none;
  6277. visibility:hidden;
  6278. }
  6279. #u1853_img {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:118px;
  6285. height:38px;
  6286. }
  6287. #u1853 {
  6288. border-width:0px;
  6289. position:absolute;
  6290. left:590px;
  6291. top:115px;
  6292. width:118px;
  6293. height:38px;
  6294. display:flex;
  6295. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:12px;
  6299. color:#FFFFFF;
  6300. }
  6301. #u1853 .text {
  6302. position:absolute;
  6303. align-self:center;
  6304. padding:2px 2px 2px 0px;
  6305. box-sizing:border-box;
  6306. width:100%;
  6307. }
  6308. #u1853_text {
  6309. border-width:0px;
  6310. word-wrap:break-word;
  6311. text-transform:none;
  6312. visibility:hidden;
  6313. }
  6314. #u1854_img {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:118px;
  6320. height:38px;
  6321. }
  6322. #u1854 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:708px;
  6326. top:115px;
  6327. width:118px;
  6328. height:38px;
  6329. display:flex;
  6330. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6331. font-weight:400;
  6332. font-style:normal;
  6333. font-size:12px;
  6334. color:#FFFFFF;
  6335. }
  6336. #u1854 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:2px 2px 2px 0px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u1854_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. visibility:hidden;
  6348. }
  6349. #u1855_img {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:118px;
  6355. height:38px;
  6356. }
  6357. #u1855 {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:826px;
  6361. top:115px;
  6362. width:118px;
  6363. height:38px;
  6364. display:flex;
  6365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:12px;
  6369. color:#FFFFFF;
  6370. }
  6371. #u1855 .text {
  6372. position:absolute;
  6373. align-self:center;
  6374. padding:2px 2px 2px 0px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u1855_text {
  6379. border-width:0px;
  6380. word-wrap:break-word;
  6381. text-transform:none;
  6382. visibility:hidden;
  6383. }
  6384. #u1856_img {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:118px;
  6390. height:38px;
  6391. }
  6392. #u1856 {
  6393. border-width:0px;
  6394. position:absolute;
  6395. left:0px;
  6396. top:153px;
  6397. width:118px;
  6398. height:38px;
  6399. display:flex;
  6400. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. font-size:12px;
  6404. color:#FFFFFF;
  6405. }
  6406. #u1856 .text {
  6407. position:absolute;
  6408. align-self:center;
  6409. padding:2px 2px 2px 0px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u1856_text {
  6414. border-width:0px;
  6415. word-wrap:break-word;
  6416. text-transform:none;
  6417. visibility:hidden;
  6418. }
  6419. #u1857_img {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:118px;
  6425. height:38px;
  6426. }
  6427. #u1857 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:118px;
  6431. top:153px;
  6432. width:118px;
  6433. height:38px;
  6434. display:flex;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:12px;
  6439. color:#FFFFFF;
  6440. }
  6441. #u1857 .text {
  6442. position:absolute;
  6443. align-self:center;
  6444. padding:2px 2px 2px 0px;
  6445. box-sizing:border-box;
  6446. width:100%;
  6447. }
  6448. #u1857_text {
  6449. border-width:0px;
  6450. word-wrap:break-word;
  6451. text-transform:none;
  6452. visibility:hidden;
  6453. }
  6454. #u1858_img {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:118px;
  6460. height:38px;
  6461. }
  6462. #u1858 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:236px;
  6466. top:153px;
  6467. width:118px;
  6468. height:38px;
  6469. display:flex;
  6470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6471. font-weight:400;
  6472. font-style:normal;
  6473. font-size:12px;
  6474. color:#FFFFFF;
  6475. }
  6476. #u1858 .text {
  6477. position:absolute;
  6478. align-self:center;
  6479. padding:2px 2px 2px 0px;
  6480. box-sizing:border-box;
  6481. width:100%;
  6482. }
  6483. #u1858_text {
  6484. border-width:0px;
  6485. word-wrap:break-word;
  6486. text-transform:none;
  6487. visibility:hidden;
  6488. }
  6489. #u1859_img {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:118px;
  6495. height:38px;
  6496. }
  6497. #u1859 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:354px;
  6501. top:153px;
  6502. width:118px;
  6503. height:38px;
  6504. display:flex;
  6505. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6506. font-weight:400;
  6507. font-style:normal;
  6508. font-size:12px;
  6509. color:#FFFFFF;
  6510. }
  6511. #u1859 .text {
  6512. position:absolute;
  6513. align-self:center;
  6514. padding:2px 2px 2px 0px;
  6515. box-sizing:border-box;
  6516. width:100%;
  6517. }
  6518. #u1859_text {
  6519. border-width:0px;
  6520. word-wrap:break-word;
  6521. text-transform:none;
  6522. visibility:hidden;
  6523. }
  6524. #u1860_img {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:118px;
  6530. height:38px;
  6531. }
  6532. #u1860 {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:472px;
  6536. top:153px;
  6537. width:118px;
  6538. height:38px;
  6539. display:flex;
  6540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:12px;
  6544. color:#FFFFFF;
  6545. }
  6546. #u1860 .text {
  6547. position:absolute;
  6548. align-self:center;
  6549. padding:2px 2px 2px 0px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u1860_text {
  6554. border-width:0px;
  6555. word-wrap:break-word;
  6556. text-transform:none;
  6557. visibility:hidden;
  6558. }
  6559. #u1861_img {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:118px;
  6565. height:38px;
  6566. }
  6567. #u1861 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:590px;
  6571. top:153px;
  6572. width:118px;
  6573. height:38px;
  6574. display:flex;
  6575. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. color:#FFFFFF;
  6580. }
  6581. #u1861 .text {
  6582. position:absolute;
  6583. align-self:center;
  6584. padding:2px 2px 2px 0px;
  6585. box-sizing:border-box;
  6586. width:100%;
  6587. }
  6588. #u1861_text {
  6589. border-width:0px;
  6590. word-wrap:break-word;
  6591. text-transform:none;
  6592. visibility:hidden;
  6593. }
  6594. #u1862_img {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:118px;
  6600. height:38px;
  6601. }
  6602. #u1862 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:708px;
  6606. top:153px;
  6607. width:118px;
  6608. height:38px;
  6609. display:flex;
  6610. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:12px;
  6614. color:#FFFFFF;
  6615. }
  6616. #u1862 .text {
  6617. position:absolute;
  6618. align-self:center;
  6619. padding:2px 2px 2px 0px;
  6620. box-sizing:border-box;
  6621. width:100%;
  6622. }
  6623. #u1862_text {
  6624. border-width:0px;
  6625. word-wrap:break-word;
  6626. text-transform:none;
  6627. visibility:hidden;
  6628. }
  6629. #u1863_img {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:118px;
  6635. height:38px;
  6636. }
  6637. #u1863 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:826px;
  6641. top:153px;
  6642. width:118px;
  6643. height:38px;
  6644. display:flex;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:12px;
  6649. color:#FFFFFF;
  6650. }
  6651. #u1863 .text {
  6652. position:absolute;
  6653. align-self:center;
  6654. padding:2px 2px 2px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u1863_text {
  6659. border-width:0px;
  6660. word-wrap:break-word;
  6661. text-transform:none;
  6662. visibility:hidden;
  6663. }
  6664. #u1864_img {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:118px;
  6670. height:35px;
  6671. }
  6672. #u1864 {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:191px;
  6677. width:118px;
  6678. height:35px;
  6679. display:flex;
  6680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6681. font-weight:400;
  6682. font-style:normal;
  6683. font-size:12px;
  6684. color:#FFFFFF;
  6685. }
  6686. #u1864 .text {
  6687. position:absolute;
  6688. align-self:center;
  6689. padding:2px 2px 2px 0px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u1864_text {
  6694. border-width:0px;
  6695. word-wrap:break-word;
  6696. text-transform:none;
  6697. visibility:hidden;
  6698. }
  6699. #u1865_img {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:118px;
  6705. height:35px;
  6706. }
  6707. #u1865 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:118px;
  6711. top:191px;
  6712. width:118px;
  6713. height:35px;
  6714. display:flex;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:12px;
  6719. color:#FFFFFF;
  6720. }
  6721. #u1865 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:2px 2px 2px 0px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u1865_text {
  6729. border-width:0px;
  6730. word-wrap:break-word;
  6731. text-transform:none;
  6732. visibility:hidden;
  6733. }
  6734. #u1866_img {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:118px;
  6740. height:35px;
  6741. }
  6742. #u1866 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:236px;
  6746. top:191px;
  6747. width:118px;
  6748. height:35px;
  6749. display:flex;
  6750. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:12px;
  6754. color:#FFFFFF;
  6755. }
  6756. #u1866 .text {
  6757. position:absolute;
  6758. align-self:center;
  6759. padding:2px 2px 2px 0px;
  6760. box-sizing:border-box;
  6761. width:100%;
  6762. }
  6763. #u1866_text {
  6764. border-width:0px;
  6765. word-wrap:break-word;
  6766. text-transform:none;
  6767. visibility:hidden;
  6768. }
  6769. #u1867_img {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:0px;
  6773. top:0px;
  6774. width:118px;
  6775. height:35px;
  6776. }
  6777. #u1867 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:354px;
  6781. top:191px;
  6782. width:118px;
  6783. height:35px;
  6784. display:flex;
  6785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:12px;
  6789. color:#FFFFFF;
  6790. }
  6791. #u1867 .text {
  6792. position:absolute;
  6793. align-self:center;
  6794. padding:2px 2px 2px 0px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u1867_text {
  6799. border-width:0px;
  6800. word-wrap:break-word;
  6801. text-transform:none;
  6802. visibility:hidden;
  6803. }
  6804. #u1868_img {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:118px;
  6810. height:35px;
  6811. }
  6812. #u1868 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:472px;
  6816. top:191px;
  6817. width:118px;
  6818. height:35px;
  6819. display:flex;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:12px;
  6824. color:#FFFFFF;
  6825. }
  6826. #u1868 .text {
  6827. position:absolute;
  6828. align-self:center;
  6829. padding:2px 2px 2px 0px;
  6830. box-sizing:border-box;
  6831. width:100%;
  6832. }
  6833. #u1868_text {
  6834. border-width:0px;
  6835. word-wrap:break-word;
  6836. text-transform:none;
  6837. visibility:hidden;
  6838. }
  6839. #u1869_img {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:118px;
  6845. height:35px;
  6846. }
  6847. #u1869 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:590px;
  6851. top:191px;
  6852. width:118px;
  6853. height:35px;
  6854. display:flex;
  6855. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:12px;
  6859. color:#FFFFFF;
  6860. }
  6861. #u1869 .text {
  6862. position:absolute;
  6863. align-self:center;
  6864. padding:2px 2px 2px 0px;
  6865. box-sizing:border-box;
  6866. width:100%;
  6867. }
  6868. #u1869_text {
  6869. border-width:0px;
  6870. word-wrap:break-word;
  6871. text-transform:none;
  6872. visibility:hidden;
  6873. }
  6874. #u1870_img {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:118px;
  6880. height:35px;
  6881. }
  6882. #u1870 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:708px;
  6886. top:191px;
  6887. width:118px;
  6888. height:35px;
  6889. display:flex;
  6890. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:12px;
  6894. color:#FFFFFF;
  6895. }
  6896. #u1870 .text {
  6897. position:absolute;
  6898. align-self:center;
  6899. padding:2px 2px 2px 0px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u1870_text {
  6904. border-width:0px;
  6905. word-wrap:break-word;
  6906. text-transform:none;
  6907. visibility:hidden;
  6908. }
  6909. #u1871_img {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:118px;
  6915. height:35px;
  6916. }
  6917. #u1871 {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:826px;
  6921. top:191px;
  6922. width:118px;
  6923. height:35px;
  6924. display:flex;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:12px;
  6929. color:#FFFFFF;
  6930. }
  6931. #u1871 .text {
  6932. position:absolute;
  6933. align-self:center;
  6934. padding:2px 2px 2px 0px;
  6935. box-sizing:border-box;
  6936. width:100%;
  6937. }
  6938. #u1871_text {
  6939. border-width:0px;
  6940. word-wrap:break-word;
  6941. text-transform:none;
  6942. visibility:hidden;
  6943. }
  6944. #u1872_img {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:0px;
  6948. top:0px;
  6949. width:118px;
  6950. height:35px;
  6951. }
  6952. #u1872 {
  6953. border-width:0px;
  6954. position:absolute;
  6955. left:0px;
  6956. top:226px;
  6957. width:118px;
  6958. height:35px;
  6959. display:flex;
  6960. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:12px;
  6964. color:#FFFFFF;
  6965. }
  6966. #u1872 .text {
  6967. position:absolute;
  6968. align-self:center;
  6969. padding:2px 2px 2px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u1872_text {
  6974. border-width:0px;
  6975. word-wrap:break-word;
  6976. text-transform:none;
  6977. visibility:hidden;
  6978. }
  6979. #u1873_img {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:0px;
  6983. top:0px;
  6984. width:118px;
  6985. height:35px;
  6986. }
  6987. #u1873 {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:118px;
  6991. top:226px;
  6992. width:118px;
  6993. height:35px;
  6994. display:flex;
  6995. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6996. font-weight:400;
  6997. font-style:normal;
  6998. font-size:12px;
  6999. color:#FFFFFF;
  7000. }
  7001. #u1873 .text {
  7002. position:absolute;
  7003. align-self:center;
  7004. padding:2px 2px 2px 0px;
  7005. box-sizing:border-box;
  7006. width:100%;
  7007. }
  7008. #u1873_text {
  7009. border-width:0px;
  7010. word-wrap:break-word;
  7011. text-transform:none;
  7012. visibility:hidden;
  7013. }
  7014. #u1874_img {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:118px;
  7020. height:35px;
  7021. }
  7022. #u1874 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:236px;
  7026. top:226px;
  7027. width:118px;
  7028. height:35px;
  7029. display:flex;
  7030. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:12px;
  7034. color:#FFFFFF;
  7035. }
  7036. #u1874 .text {
  7037. position:absolute;
  7038. align-self:center;
  7039. padding:2px 2px 2px 0px;
  7040. box-sizing:border-box;
  7041. width:100%;
  7042. }
  7043. #u1874_text {
  7044. border-width:0px;
  7045. word-wrap:break-word;
  7046. text-transform:none;
  7047. visibility:hidden;
  7048. }
  7049. #u1875_img {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:0px;
  7054. width:118px;
  7055. height:35px;
  7056. }
  7057. #u1875 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:354px;
  7061. top:226px;
  7062. width:118px;
  7063. height:35px;
  7064. display:flex;
  7065. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:12px;
  7069. color:#FFFFFF;
  7070. }
  7071. #u1875 .text {
  7072. position:absolute;
  7073. align-self:center;
  7074. padding:2px 2px 2px 0px;
  7075. box-sizing:border-box;
  7076. width:100%;
  7077. }
  7078. #u1875_text {
  7079. border-width:0px;
  7080. word-wrap:break-word;
  7081. text-transform:none;
  7082. visibility:hidden;
  7083. }
  7084. #u1876_img {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:118px;
  7090. height:35px;
  7091. }
  7092. #u1876 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:472px;
  7096. top:226px;
  7097. width:118px;
  7098. height:35px;
  7099. display:flex;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:12px;
  7104. color:#FFFFFF;
  7105. }
  7106. #u1876 .text {
  7107. position:absolute;
  7108. align-self:center;
  7109. padding:2px 2px 2px 0px;
  7110. box-sizing:border-box;
  7111. width:100%;
  7112. }
  7113. #u1876_text {
  7114. border-width:0px;
  7115. word-wrap:break-word;
  7116. text-transform:none;
  7117. visibility:hidden;
  7118. }
  7119. #u1877_img {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:118px;
  7125. height:35px;
  7126. }
  7127. #u1877 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:590px;
  7131. top:226px;
  7132. width:118px;
  7133. height:35px;
  7134. display:flex;
  7135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:12px;
  7139. color:#FFFFFF;
  7140. }
  7141. #u1877 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:2px 2px 2px 0px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u1877_text {
  7149. border-width:0px;
  7150. word-wrap:break-word;
  7151. text-transform:none;
  7152. visibility:hidden;
  7153. }
  7154. #u1878_img {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:0px;
  7158. top:0px;
  7159. width:118px;
  7160. height:35px;
  7161. }
  7162. #u1878 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:708px;
  7166. top:226px;
  7167. width:118px;
  7168. height:35px;
  7169. display:flex;
  7170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7171. font-weight:400;
  7172. font-style:normal;
  7173. font-size:12px;
  7174. color:#FFFFFF;
  7175. }
  7176. #u1878 .text {
  7177. position:absolute;
  7178. align-self:center;
  7179. padding:2px 2px 2px 0px;
  7180. box-sizing:border-box;
  7181. width:100%;
  7182. }
  7183. #u1878_text {
  7184. border-width:0px;
  7185. word-wrap:break-word;
  7186. text-transform:none;
  7187. visibility:hidden;
  7188. }
  7189. #u1879_img {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:0px;
  7193. top:0px;
  7194. width:118px;
  7195. height:35px;
  7196. }
  7197. #u1879 {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:826px;
  7201. top:226px;
  7202. width:118px;
  7203. height:35px;
  7204. display:flex;
  7205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:12px;
  7209. color:#FFFFFF;
  7210. }
  7211. #u1879 .text {
  7212. position:absolute;
  7213. align-self:center;
  7214. padding:2px 2px 2px 0px;
  7215. box-sizing:border-box;
  7216. width:100%;
  7217. }
  7218. #u1879_text {
  7219. border-width:0px;
  7220. word-wrap:break-word;
  7221. text-transform:none;
  7222. visibility:hidden;
  7223. }
  7224. #u1880_img {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:0px;
  7228. top:0px;
  7229. width:118px;
  7230. height:35px;
  7231. }
  7232. #u1880 {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:261px;
  7237. width:118px;
  7238. height:35px;
  7239. display:flex;
  7240. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. font-size:12px;
  7244. color:#FFFFFF;
  7245. }
  7246. #u1880 .text {
  7247. position:absolute;
  7248. align-self:center;
  7249. padding:2px 2px 2px 0px;
  7250. box-sizing:border-box;
  7251. width:100%;
  7252. }
  7253. #u1880_text {
  7254. border-width:0px;
  7255. word-wrap:break-word;
  7256. text-transform:none;
  7257. visibility:hidden;
  7258. }
  7259. #u1881_img {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:0px;
  7263. top:0px;
  7264. width:118px;
  7265. height:35px;
  7266. }
  7267. #u1881 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:118px;
  7271. top:261px;
  7272. width:118px;
  7273. height:35px;
  7274. display:flex;
  7275. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:12px;
  7279. color:#FFFFFF;
  7280. }
  7281. #u1881 .text {
  7282. position:absolute;
  7283. align-self:center;
  7284. padding:2px 2px 2px 0px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u1881_text {
  7289. border-width:0px;
  7290. word-wrap:break-word;
  7291. text-transform:none;
  7292. visibility:hidden;
  7293. }
  7294. #u1882_img {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:118px;
  7300. height:35px;
  7301. }
  7302. #u1882 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:236px;
  7306. top:261px;
  7307. width:118px;
  7308. height:35px;
  7309. display:flex;
  7310. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#FFFFFF;
  7315. }
  7316. #u1882 .text {
  7317. position:absolute;
  7318. align-self:center;
  7319. padding:2px 2px 2px 0px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u1882_text {
  7324. border-width:0px;
  7325. word-wrap:break-word;
  7326. text-transform:none;
  7327. visibility:hidden;
  7328. }
  7329. #u1883_img {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:118px;
  7335. height:35px;
  7336. }
  7337. #u1883 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:354px;
  7341. top:261px;
  7342. width:118px;
  7343. height:35px;
  7344. display:flex;
  7345. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:12px;
  7349. color:#FFFFFF;
  7350. }
  7351. #u1883 .text {
  7352. position:absolute;
  7353. align-self:center;
  7354. padding:2px 2px 2px 0px;
  7355. box-sizing:border-box;
  7356. width:100%;
  7357. }
  7358. #u1883_text {
  7359. border-width:0px;
  7360. word-wrap:break-word;
  7361. text-transform:none;
  7362. visibility:hidden;
  7363. }
  7364. #u1884_img {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:0px;
  7368. top:0px;
  7369. width:118px;
  7370. height:35px;
  7371. }
  7372. #u1884 {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:472px;
  7376. top:261px;
  7377. width:118px;
  7378. height:35px;
  7379. display:flex;
  7380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7381. font-weight:400;
  7382. font-style:normal;
  7383. font-size:12px;
  7384. color:#FFFFFF;
  7385. }
  7386. #u1884 .text {
  7387. position:absolute;
  7388. align-self:center;
  7389. padding:2px 2px 2px 0px;
  7390. box-sizing:border-box;
  7391. width:100%;
  7392. }
  7393. #u1884_text {
  7394. border-width:0px;
  7395. word-wrap:break-word;
  7396. text-transform:none;
  7397. visibility:hidden;
  7398. }
  7399. #u1885_img {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:118px;
  7405. height:35px;
  7406. }
  7407. #u1885 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:590px;
  7411. top:261px;
  7412. width:118px;
  7413. height:35px;
  7414. display:flex;
  7415. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7416. font-weight:400;
  7417. font-style:normal;
  7418. font-size:12px;
  7419. color:#FFFFFF;
  7420. }
  7421. #u1885 .text {
  7422. position:absolute;
  7423. align-self:center;
  7424. padding:2px 2px 2px 0px;
  7425. box-sizing:border-box;
  7426. width:100%;
  7427. }
  7428. #u1885_text {
  7429. border-width:0px;
  7430. word-wrap:break-word;
  7431. text-transform:none;
  7432. visibility:hidden;
  7433. }
  7434. #u1886_img {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:118px;
  7440. height:35px;
  7441. }
  7442. #u1886 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:708px;
  7446. top:261px;
  7447. width:118px;
  7448. height:35px;
  7449. display:flex;
  7450. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. font-size:12px;
  7454. color:#FFFFFF;
  7455. }
  7456. #u1886 .text {
  7457. position:absolute;
  7458. align-self:center;
  7459. padding:2px 2px 2px 0px;
  7460. box-sizing:border-box;
  7461. width:100%;
  7462. }
  7463. #u1886_text {
  7464. border-width:0px;
  7465. word-wrap:break-word;
  7466. text-transform:none;
  7467. visibility:hidden;
  7468. }
  7469. #u1887_img {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:118px;
  7475. height:35px;
  7476. }
  7477. #u1887 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:826px;
  7481. top:261px;
  7482. width:118px;
  7483. height:35px;
  7484. display:flex;
  7485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:12px;
  7489. color:#FFFFFF;
  7490. }
  7491. #u1887 .text {
  7492. position:absolute;
  7493. align-self:center;
  7494. padding:2px 2px 2px 0px;
  7495. box-sizing:border-box;
  7496. width:100%;
  7497. }
  7498. #u1887_text {
  7499. border-width:0px;
  7500. word-wrap:break-word;
  7501. text-transform:none;
  7502. visibility:hidden;
  7503. }
  7504. #u1888_img {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:118px;
  7510. height:35px;
  7511. }
  7512. #u1888 {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:296px;
  7517. width:118px;
  7518. height:35px;
  7519. display:flex;
  7520. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7521. font-weight:400;
  7522. font-style:normal;
  7523. font-size:12px;
  7524. color:#FFFFFF;
  7525. }
  7526. #u1888 .text {
  7527. position:absolute;
  7528. align-self:center;
  7529. padding:2px 2px 2px 0px;
  7530. box-sizing:border-box;
  7531. width:100%;
  7532. }
  7533. #u1888_text {
  7534. border-width:0px;
  7535. word-wrap:break-word;
  7536. text-transform:none;
  7537. visibility:hidden;
  7538. }
  7539. #u1889_img {
  7540. border-width:0px;
  7541. position:absolute;
  7542. left:0px;
  7543. top:0px;
  7544. width:118px;
  7545. height:35px;
  7546. }
  7547. #u1889 {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:118px;
  7551. top:296px;
  7552. width:118px;
  7553. height:35px;
  7554. display:flex;
  7555. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7556. font-weight:400;
  7557. font-style:normal;
  7558. font-size:12px;
  7559. color:#FFFFFF;
  7560. }
  7561. #u1889 .text {
  7562. position:absolute;
  7563. align-self:center;
  7564. padding:2px 2px 2px 0px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u1889_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. visibility:hidden;
  7573. }
  7574. #u1890_img {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:118px;
  7580. height:35px;
  7581. }
  7582. #u1890 {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:236px;
  7586. top:296px;
  7587. width:118px;
  7588. height:35px;
  7589. display:flex;
  7590. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:12px;
  7594. color:#FFFFFF;
  7595. }
  7596. #u1890 .text {
  7597. position:absolute;
  7598. align-self:center;
  7599. padding:2px 2px 2px 0px;
  7600. box-sizing:border-box;
  7601. width:100%;
  7602. }
  7603. #u1890_text {
  7604. border-width:0px;
  7605. word-wrap:break-word;
  7606. text-transform:none;
  7607. visibility:hidden;
  7608. }
  7609. #u1891_img {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:118px;
  7615. height:35px;
  7616. }
  7617. #u1891 {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:354px;
  7621. top:296px;
  7622. width:118px;
  7623. height:35px;
  7624. display:flex;
  7625. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7626. font-weight:400;
  7627. font-style:normal;
  7628. font-size:12px;
  7629. color:#FFFFFF;
  7630. }
  7631. #u1891 .text {
  7632. position:absolute;
  7633. align-self:center;
  7634. padding:2px 2px 2px 0px;
  7635. box-sizing:border-box;
  7636. width:100%;
  7637. }
  7638. #u1891_text {
  7639. border-width:0px;
  7640. word-wrap:break-word;
  7641. text-transform:none;
  7642. visibility:hidden;
  7643. }
  7644. #u1892_img {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:118px;
  7650. height:35px;
  7651. }
  7652. #u1892 {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:472px;
  7656. top:296px;
  7657. width:118px;
  7658. height:35px;
  7659. display:flex;
  7660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7661. font-weight:400;
  7662. font-style:normal;
  7663. font-size:12px;
  7664. color:#FFFFFF;
  7665. }
  7666. #u1892 .text {
  7667. position:absolute;
  7668. align-self:center;
  7669. padding:2px 2px 2px 0px;
  7670. box-sizing:border-box;
  7671. width:100%;
  7672. }
  7673. #u1892_text {
  7674. border-width:0px;
  7675. word-wrap:break-word;
  7676. text-transform:none;
  7677. visibility:hidden;
  7678. }
  7679. #u1893_img {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:118px;
  7685. height:35px;
  7686. }
  7687. #u1893 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:590px;
  7691. top:296px;
  7692. width:118px;
  7693. height:35px;
  7694. display:flex;
  7695. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:12px;
  7699. color:#FFFFFF;
  7700. }
  7701. #u1893 .text {
  7702. position:absolute;
  7703. align-self:center;
  7704. padding:2px 2px 2px 0px;
  7705. box-sizing:border-box;
  7706. width:100%;
  7707. }
  7708. #u1893_text {
  7709. border-width:0px;
  7710. word-wrap:break-word;
  7711. text-transform:none;
  7712. visibility:hidden;
  7713. }
  7714. #u1894_img {
  7715. border-width:0px;
  7716. position:absolute;
  7717. left:0px;
  7718. top:0px;
  7719. width:118px;
  7720. height:35px;
  7721. }
  7722. #u1894 {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:708px;
  7726. top:296px;
  7727. width:118px;
  7728. height:35px;
  7729. display:flex;
  7730. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7731. font-weight:400;
  7732. font-style:normal;
  7733. font-size:12px;
  7734. color:#FFFFFF;
  7735. }
  7736. #u1894 .text {
  7737. position:absolute;
  7738. align-self:center;
  7739. padding:2px 2px 2px 0px;
  7740. box-sizing:border-box;
  7741. width:100%;
  7742. }
  7743. #u1894_text {
  7744. border-width:0px;
  7745. word-wrap:break-word;
  7746. text-transform:none;
  7747. visibility:hidden;
  7748. }
  7749. #u1895_img {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:118px;
  7755. height:35px;
  7756. }
  7757. #u1895 {
  7758. border-width:0px;
  7759. position:absolute;
  7760. left:826px;
  7761. top:296px;
  7762. width:118px;
  7763. height:35px;
  7764. display:flex;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:12px;
  7769. color:#FFFFFF;
  7770. }
  7771. #u1895 .text {
  7772. position:absolute;
  7773. align-self:center;
  7774. padding:2px 2px 2px 0px;
  7775. box-sizing:border-box;
  7776. width:100%;
  7777. }
  7778. #u1895_text {
  7779. border-width:0px;
  7780. word-wrap:break-word;
  7781. text-transform:none;
  7782. visibility:hidden;
  7783. }
  7784. #u1896_img {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:0px;
  7788. top:0px;
  7789. width:118px;
  7790. height:35px;
  7791. }
  7792. #u1896 {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:0px;
  7796. top:331px;
  7797. width:118px;
  7798. height:35px;
  7799. display:flex;
  7800. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7801. font-weight:400;
  7802. font-style:normal;
  7803. font-size:12px;
  7804. color:#FFFFFF;
  7805. }
  7806. #u1896 .text {
  7807. position:absolute;
  7808. align-self:center;
  7809. padding:2px 2px 2px 0px;
  7810. box-sizing:border-box;
  7811. width:100%;
  7812. }
  7813. #u1896_text {
  7814. border-width:0px;
  7815. word-wrap:break-word;
  7816. text-transform:none;
  7817. visibility:hidden;
  7818. }
  7819. #u1897_img {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:118px;
  7825. height:35px;
  7826. }
  7827. #u1897 {
  7828. border-width:0px;
  7829. position:absolute;
  7830. left:118px;
  7831. top:331px;
  7832. width:118px;
  7833. height:35px;
  7834. display:flex;
  7835. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:12px;
  7839. color:#FFFFFF;
  7840. }
  7841. #u1897 .text {
  7842. position:absolute;
  7843. align-self:center;
  7844. padding:2px 2px 2px 0px;
  7845. box-sizing:border-box;
  7846. width:100%;
  7847. }
  7848. #u1897_text {
  7849. border-width:0px;
  7850. word-wrap:break-word;
  7851. text-transform:none;
  7852. visibility:hidden;
  7853. }
  7854. #u1898_img {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:118px;
  7860. height:35px;
  7861. }
  7862. #u1898 {
  7863. border-width:0px;
  7864. position:absolute;
  7865. left:236px;
  7866. top:331px;
  7867. width:118px;
  7868. height:35px;
  7869. display:flex;
  7870. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7871. font-weight:400;
  7872. font-style:normal;
  7873. font-size:12px;
  7874. color:#FFFFFF;
  7875. }
  7876. #u1898 .text {
  7877. position:absolute;
  7878. align-self:center;
  7879. padding:2px 2px 2px 0px;
  7880. box-sizing:border-box;
  7881. width:100%;
  7882. }
  7883. #u1898_text {
  7884. border-width:0px;
  7885. word-wrap:break-word;
  7886. text-transform:none;
  7887. visibility:hidden;
  7888. }
  7889. #u1899_img {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:118px;
  7895. height:35px;
  7896. }
  7897. #u1899 {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:354px;
  7901. top:331px;
  7902. width:118px;
  7903. height:35px;
  7904. display:flex;
  7905. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7906. font-weight:400;
  7907. font-style:normal;
  7908. font-size:12px;
  7909. color:#FFFFFF;
  7910. }
  7911. #u1899 .text {
  7912. position:absolute;
  7913. align-self:center;
  7914. padding:2px 2px 2px 0px;
  7915. box-sizing:border-box;
  7916. width:100%;
  7917. }
  7918. #u1899_text {
  7919. border-width:0px;
  7920. word-wrap:break-word;
  7921. text-transform:none;
  7922. visibility:hidden;
  7923. }
  7924. #u1900_img {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:0px;
  7928. top:0px;
  7929. width:118px;
  7930. height:35px;
  7931. }
  7932. #u1900 {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:472px;
  7936. top:331px;
  7937. width:118px;
  7938. height:35px;
  7939. display:flex;
  7940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7941. font-weight:400;
  7942. font-style:normal;
  7943. font-size:12px;
  7944. color:#FFFFFF;
  7945. }
  7946. #u1900 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:2px 2px 2px 0px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u1900_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. visibility:hidden;
  7958. }
  7959. #u1901_img {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:0px;
  7963. top:0px;
  7964. width:118px;
  7965. height:35px;
  7966. }
  7967. #u1901 {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:590px;
  7971. top:331px;
  7972. width:118px;
  7973. height:35px;
  7974. display:flex;
  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. #u1901 .text {
  7982. position:absolute;
  7983. align-self:center;
  7984. padding:2px 2px 2px 0px;
  7985. box-sizing:border-box;
  7986. width:100%;
  7987. }
  7988. #u1901_text {
  7989. border-width:0px;
  7990. word-wrap:break-word;
  7991. text-transform:none;
  7992. visibility:hidden;
  7993. }
  7994. #u1902_img {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:118px;
  8000. height:35px;
  8001. }
  8002. #u1902 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:708px;
  8006. top:331px;
  8007. width:118px;
  8008. height:35px;
  8009. display:flex;
  8010. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:12px;
  8014. color:#FFFFFF;
  8015. }
  8016. #u1902 .text {
  8017. position:absolute;
  8018. align-self:center;
  8019. padding:2px 2px 2px 0px;
  8020. box-sizing:border-box;
  8021. width:100%;
  8022. }
  8023. #u1902_text {
  8024. border-width:0px;
  8025. word-wrap:break-word;
  8026. text-transform:none;
  8027. visibility:hidden;
  8028. }
  8029. #u1903_img {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:118px;
  8035. height:35px;
  8036. }
  8037. #u1903 {
  8038. border-width:0px;
  8039. position:absolute;
  8040. left:826px;
  8041. top:331px;
  8042. width:118px;
  8043. height:35px;
  8044. display:flex;
  8045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8046. font-weight:400;
  8047. font-style:normal;
  8048. font-size:12px;
  8049. color:#FFFFFF;
  8050. }
  8051. #u1903 .text {
  8052. position:absolute;
  8053. align-self:center;
  8054. padding:2px 2px 2px 0px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u1903_text {
  8059. border-width:0px;
  8060. word-wrap:break-word;
  8061. text-transform:none;
  8062. visibility:hidden;
  8063. }
  8064. #u1904 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:0px;
  8070. height:0px;
  8071. }
  8072. #u1905_img {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:10px;
  8078. height:10px;
  8079. }
  8080. #u1905 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:1155px;
  8084. top:903px;
  8085. width:10px;
  8086. height:10px;
  8087. display:flex;
  8088. }
  8089. #u1905 .text {
  8090. position:absolute;
  8091. align-self:center;
  8092. padding:2px 2px 2px 2px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u1905_text {
  8097. border-width:0px;
  8098. word-wrap:break-word;
  8099. text-transform:none;
  8100. visibility:hidden;
  8101. }
  8102. #u1906_div {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:33px;
  8108. height:40px;
  8109. background:inherit;
  8110. background-color:rgba(255, 255, 255, 0);
  8111. border:none;
  8112. border-left:0px;
  8113. border-top:0px;
  8114. border-right:0px;
  8115. border-radius:0px;
  8116. border-bottom-right-radius:0px;
  8117. border-bottom-left-radius:0px;
  8118. -moz-box-shadow:none;
  8119. -webkit-box-shadow:none;
  8120. box-shadow:none;
  8121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:14px;
  8125. color:#FFFFFF;
  8126. }
  8127. #u1906 {
  8128. border-width:0px;
  8129. position:absolute;
  8130. left:1173px;
  8131. top:888px;
  8132. width:33px;
  8133. height:40px;
  8134. display:flex;
  8135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8136. font-weight:400;
  8137. font-style:normal;
  8138. font-size:14px;
  8139. color:#FFFFFF;
  8140. }
  8141. #u1906 .text {
  8142. position:absolute;
  8143. align-self:center;
  8144. padding:2px 2px 2px 2px;
  8145. box-sizing:border-box;
  8146. width:100%;
  8147. }
  8148. #u1906_text {
  8149. border-width:0px;
  8150. white-space:nowrap;
  8151. text-transform:none;
  8152. }
  8153. #u1907 {
  8154. border-width:0px;
  8155. position:absolute;
  8156. left:0px;
  8157. top:0px;
  8158. width:0px;
  8159. height:0px;
  8160. }
  8161. #u1908 {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:0px;
  8167. height:0px;
  8168. }
  8169. #u1909_img {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:31px;
  8175. height:30px;
  8176. }
  8177. #u1909 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:1069px;
  8181. top:1422px;
  8182. width:31px;
  8183. height:30px;
  8184. display:flex;
  8185. font-family:'Microsoft YaHei', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:12px;
  8189. color:#FFFFFF;
  8190. }
  8191. #u1909 .text {
  8192. position:absolute;
  8193. align-self:center;
  8194. padding:2px 2px 2px 2px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u1909_text {
  8199. border-width:0px;
  8200. word-wrap:break-word;
  8201. text-transform:none;
  8202. visibility:hidden;
  8203. }
  8204. #u1910_img {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:8px;
  8210. height:14px;
  8211. }
  8212. #u1910 {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:1081px;
  8216. top:1430px;
  8217. width:8px;
  8218. height:14px;
  8219. display:flex;
  8220. font-family:'Microsoft YaHei', sans-serif;
  8221. font-weight:400;
  8222. font-style:normal;
  8223. font-size:12px;
  8224. color:#FFFFFF;
  8225. }
  8226. #u1910 .text {
  8227. position:absolute;
  8228. align-self:center;
  8229. padding:2px 2px 2px 2px;
  8230. box-sizing:border-box;
  8231. width:100%;
  8232. }
  8233. #u1910_text {
  8234. border-width:0px;
  8235. word-wrap:break-word;
  8236. text-transform:none;
  8237. visibility:hidden;
  8238. }
  8239. #u1911 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:0px;
  8245. height:0px;
  8246. }
  8247. #u1912_img {
  8248. border-width:0px;
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:31px;
  8253. height:30px;
  8254. }
  8255. #u1912 {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:1154px;
  8259. top:1422px;
  8260. width:31px;
  8261. height:30px;
  8262. display:flex;
  8263. font-family:'Microsoft YaHei', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:12px;
  8267. color:#FFFFFF;
  8268. }
  8269. #u1912 .text {
  8270. position:absolute;
  8271. align-self:center;
  8272. padding:2px 2px 2px 2px;
  8273. box-sizing:border-box;
  8274. width:100%;
  8275. }
  8276. #u1912_text {
  8277. border-width:0px;
  8278. word-wrap:break-word;
  8279. text-transform:none;
  8280. visibility:hidden;
  8281. }
  8282. #u1913_img {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:0px;
  8286. top:0px;
  8287. width:8px;
  8288. height:14px;
  8289. }
  8290. #u1913 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:1167px;
  8294. top:1430px;
  8295. width:8px;
  8296. height:14px;
  8297. display:flex;
  8298. opacity:0.3;
  8299. font-family:'Microsoft YaHei', sans-serif;
  8300. font-weight:400;
  8301. font-style:normal;
  8302. font-size:12px;
  8303. color:rgba(245, 154, 35, 0.996078431372549);
  8304. }
  8305. #u1913 .text {
  8306. position:absolute;
  8307. align-self:center;
  8308. padding:2px 2px 2px 2px;
  8309. box-sizing:border-box;
  8310. width:100%;
  8311. }
  8312. #u1913_text {
  8313. border-width:0px;
  8314. word-wrap:break-word;
  8315. text-transform:none;
  8316. visibility:hidden;
  8317. }
  8318. #u1914_div {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:0px;
  8322. top:0px;
  8323. width:40px;
  8324. height:21px;
  8325. background:inherit;
  8326. background-color:rgba(255, 255, 255, 0);
  8327. border:none;
  8328. border-radius:15px;
  8329. -moz-box-shadow:none;
  8330. -webkit-box-shadow:none;
  8331. box-shadow:none;
  8332. font-family:'Helvetica', sans-serif;
  8333. font-weight:400;
  8334. font-style:normal;
  8335. font-size:14px;
  8336. }
  8337. #u1914 {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:1106px;
  8341. top:1427px;
  8342. width:40px;
  8343. height:21px;
  8344. display:flex;
  8345. font-family:'Helvetica', sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. font-size:14px;
  8349. }
  8350. #u1914 .text {
  8351. position:absolute;
  8352. align-self:center;
  8353. padding:2px 2px 2px 2px;
  8354. box-sizing:border-box;
  8355. width:100%;
  8356. }
  8357. #u1914_text {
  8358. border-width:0px;
  8359. white-space:nowrap;
  8360. text-transform:none;
  8361. }
  8362. #u1915 {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:0px;
  8366. top:0px;
  8367. width:0px;
  8368. height:0px;
  8369. }
  8370. #u1916_img {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:0px;
  8374. top:0px;
  8375. width:240px;
  8376. height:60px;
  8377. }
  8378. #u1916 {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:1236px;
  8382. top:682px;
  8383. width:240px;
  8384. height:60px;
  8385. display:flex;
  8386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8387. font-weight:400;
  8388. font-style:normal;
  8389. font-size:12px;
  8390. color:#FFFFFF;
  8391. text-align:left;
  8392. }
  8393. #u1916 .text {
  8394. position:absolute;
  8395. align-self:center;
  8396. padding:2px 2px 2px 10px;
  8397. box-sizing:border-box;
  8398. width:100%;
  8399. }
  8400. #u1916_text {
  8401. border-width:0px;
  8402. word-wrap:break-word;
  8403. text-transform:none;
  8404. visibility:hidden;
  8405. }
  8406. #u1917_img {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:0px;
  8410. top:0px;
  8411. width:62px;
  8412. height:60px;
  8413. }
  8414. #u1917 {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:1236px;
  8418. top:682px;
  8419. width:62px;
  8420. height:60px;
  8421. display:flex;
  8422. }
  8423. #u1917 .text {
  8424. position:absolute;
  8425. align-self:center;
  8426. padding:2px 2px 2px 2px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u1917_text {
  8431. border-width:0px;
  8432. word-wrap:break-word;
  8433. text-transform:none;
  8434. visibility:hidden;
  8435. }
  8436. #u1918_div {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:0px;
  8440. top:0px;
  8441. width:53px;
  8442. height:21px;
  8443. background:inherit;
  8444. background-color:rgba(245, 154, 35, 0);
  8445. border:none;
  8446. border-left:0px;
  8447. border-top:0px;
  8448. border-right:0px;
  8449. border-radius:0px;
  8450. border-bottom-right-radius:0px;
  8451. border-bottom-left-radius:0px;
  8452. -moz-box-shadow:none;
  8453. -webkit-box-shadow:none;
  8454. box-shadow:none;
  8455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8456. font-weight:400;
  8457. font-style:normal;
  8458. font-size:12px;
  8459. color:#FFFFFF;
  8460. text-align:left;
  8461. }
  8462. #u1918 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:1303px;
  8466. top:686px;
  8467. width:53px;
  8468. height:21px;
  8469. display:flex;
  8470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:12px;
  8474. color:#FFFFFF;
  8475. text-align:left;
  8476. }
  8477. #u1918 .text {
  8478. position:absolute;
  8479. align-self:center;
  8480. padding:2px 2px 2px 2px;
  8481. box-sizing:border-box;
  8482. width:100%;
  8483. }
  8484. #u1918_text {
  8485. border-width:0px;
  8486. white-space:nowrap;
  8487. text-transform:none;
  8488. }
  8489. #u1919_div {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:0px;
  8493. top:0px;
  8494. width:75px;
  8495. height:32px;
  8496. background:inherit;
  8497. background-color:rgba(245, 154, 35, 0);
  8498. border:none;
  8499. border-left:0px;
  8500. border-top:0px;
  8501. border-right:0px;
  8502. border-radius:0px;
  8503. border-bottom-right-radius:0px;
  8504. border-bottom-left-radius:0px;
  8505. -moz-box-shadow:none;
  8506. -webkit-box-shadow:none;
  8507. box-shadow:none;
  8508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8509. font-weight:400;
  8510. font-style:normal;
  8511. font-size:10px;
  8512. color:#FFFFFF;
  8513. text-align:left;
  8514. }
  8515. #u1919 {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:1303px;
  8519. top:707px;
  8520. width:75px;
  8521. height:32px;
  8522. display:flex;
  8523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:10px;
  8527. color:#FFFFFF;
  8528. text-align:left;
  8529. }
  8530. #u1919 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 2px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u1919_text {
  8538. border-width:0px;
  8539. white-space:nowrap;
  8540. text-transform:none;
  8541. }
  8542. #u1920_div {
  8543. border-width:0px;
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:35px;
  8548. height:13px;
  8549. background:inherit;
  8550. background-color:rgba(217, 0, 27, 1);
  8551. border:none;
  8552. border-radius:40px;
  8553. -moz-box-shadow:none;
  8554. -webkit-box-shadow:none;
  8555. box-shadow:none;
  8556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8557. font-weight:400;
  8558. font-style:normal;
  8559. font-size:8px;
  8560. color:rgba(255, 255, 255, 0.698039215686274);
  8561. }
  8562. #u1920 {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:1356px;
  8566. top:690px;
  8567. width:35px;
  8568. height:13px;
  8569. display:flex;
  8570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8571. font-weight:400;
  8572. font-style:normal;
  8573. font-size:8px;
  8574. color:rgba(255, 255, 255, 0.698039215686274);
  8575. }
  8576. #u1920 .text {
  8577. position:absolute;
  8578. align-self:center;
  8579. padding:0px 0px 2px 0px;
  8580. box-sizing:border-box;
  8581. width:100%;
  8582. }
  8583. #u1920_text {
  8584. border-width:0px;
  8585. word-wrap:break-word;
  8586. text-transform:none;
  8587. }
  8588. #u1921 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:0px;
  8592. top:0px;
  8593. width:0px;
  8594. height:0px;
  8595. }
  8596. #u1922_img {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:0px;
  8600. top:0px;
  8601. width:240px;
  8602. height:60px;
  8603. }
  8604. #u1922 {
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:1242px;
  8608. top:272px;
  8609. width:240px;
  8610. height:60px;
  8611. display:flex;
  8612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8613. font-weight:400;
  8614. font-style:normal;
  8615. font-size:12px;
  8616. color:#FFFFFF;
  8617. text-align:left;
  8618. }
  8619. #u1922 .text {
  8620. position:absolute;
  8621. align-self:center;
  8622. padding:2px 2px 2px 10px;
  8623. box-sizing:border-box;
  8624. width:100%;
  8625. }
  8626. #u1922_text {
  8627. border-width:0px;
  8628. word-wrap:break-word;
  8629. text-transform:none;
  8630. visibility:hidden;
  8631. }
  8632. #u1923_img {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:0px;
  8636. top:0px;
  8637. width:62px;
  8638. height:60px;
  8639. }
  8640. #u1923 {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:1242px;
  8644. top:272px;
  8645. width:62px;
  8646. height:60px;
  8647. display:flex;
  8648. }
  8649. #u1923 .text {
  8650. position:absolute;
  8651. align-self:center;
  8652. padding:2px 2px 2px 2px;
  8653. box-sizing:border-box;
  8654. width:100%;
  8655. }
  8656. #u1923_text {
  8657. border-width:0px;
  8658. word-wrap:break-word;
  8659. text-transform:none;
  8660. visibility:hidden;
  8661. }
  8662. #u1924_div {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:0px;
  8666. top:0px;
  8667. width:41px;
  8668. height:21px;
  8669. background:inherit;
  8670. background-color:rgba(245, 154, 35, 0);
  8671. border:none;
  8672. border-left:0px;
  8673. border-top:0px;
  8674. border-right:0px;
  8675. border-radius:0px;
  8676. border-bottom-right-radius:0px;
  8677. border-bottom-left-radius:0px;
  8678. -moz-box-shadow:none;
  8679. -webkit-box-shadow:none;
  8680. box-shadow:none;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:12px;
  8685. color:#FFFFFF;
  8686. text-align:left;
  8687. }
  8688. #u1924 {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:1309px;
  8692. top:276px;
  8693. width:41px;
  8694. height:21px;
  8695. display:flex;
  8696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:12px;
  8700. color:#FFFFFF;
  8701. text-align:left;
  8702. }
  8703. #u1924 .text {
  8704. position:absolute;
  8705. align-self:center;
  8706. padding:2px 2px 2px 2px;
  8707. box-sizing:border-box;
  8708. width:100%;
  8709. }
  8710. #u1924_text {
  8711. border-width:0px;
  8712. white-space:nowrap;
  8713. text-transform:none;
  8714. }
  8715. #u1925_div {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:75px;
  8721. height:32px;
  8722. background:inherit;
  8723. background-color:rgba(245, 154, 35, 0);
  8724. border:none;
  8725. border-left:0px;
  8726. border-top:0px;
  8727. border-right:0px;
  8728. border-radius:0px;
  8729. border-bottom-right-radius:0px;
  8730. border-bottom-left-radius:0px;
  8731. -moz-box-shadow:none;
  8732. -webkit-box-shadow:none;
  8733. box-shadow:none;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:10px;
  8738. color:#FFFFFF;
  8739. text-align:left;
  8740. }
  8741. #u1925 {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:1309px;
  8745. top:297px;
  8746. width:75px;
  8747. height:32px;
  8748. display:flex;
  8749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8750. font-weight:400;
  8751. font-style:normal;
  8752. font-size:10px;
  8753. color:#FFFFFF;
  8754. text-align:left;
  8755. }
  8756. #u1925 .text {
  8757. position:absolute;
  8758. align-self:center;
  8759. padding:2px 2px 2px 2px;
  8760. box-sizing:border-box;
  8761. width:100%;
  8762. }
  8763. #u1925_text {
  8764. border-width:0px;
  8765. white-space:nowrap;
  8766. text-transform:none;
  8767. }
  8768. #u1926_div {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:24px;
  8774. height:13px;
  8775. background:inherit;
  8776. background-color:rgba(245, 154, 35, 1);
  8777. border:none;
  8778. border-radius:40px;
  8779. -moz-box-shadow:none;
  8780. -webkit-box-shadow:none;
  8781. box-shadow:none;
  8782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8783. font-weight:400;
  8784. font-style:normal;
  8785. font-size:8px;
  8786. color:rgba(255, 255, 255, 0.698039215686274);
  8787. }
  8788. #u1926 {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:1362px;
  8792. top:280px;
  8793. width:24px;
  8794. height:13px;
  8795. display:flex;
  8796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8797. font-weight:400;
  8798. font-style:normal;
  8799. font-size:8px;
  8800. color:rgba(255, 255, 255, 0.698039215686274);
  8801. }
  8802. #u1926 .text {
  8803. position:absolute;
  8804. align-self:center;
  8805. padding:0px 0px 2px 0px;
  8806. box-sizing:border-box;
  8807. width:100%;
  8808. }
  8809. #u1926_text {
  8810. border-width:0px;
  8811. word-wrap:break-word;
  8812. text-transform:none;
  8813. }
  8814. #u1927_div {
  8815. border-width:0px;
  8816. position:absolute;
  8817. left:0px;
  8818. top:0px;
  8819. width:17px;
  8820. height:21px;
  8821. background:inherit;
  8822. background-color:rgba(245, 154, 35, 0);
  8823. border:none;
  8824. border-left:0px;
  8825. border-top:0px;
  8826. border-right:0px;
  8827. border-radius:0px;
  8828. border-bottom-right-radius:0px;
  8829. border-bottom-left-radius:0px;
  8830. -moz-box-shadow:none;
  8831. -webkit-box-shadow:none;
  8832. box-shadow:none;
  8833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8834. font-weight:400;
  8835. font-style:normal;
  8836. font-size:12px;
  8837. color:#00BFBF;
  8838. text-align:left;
  8839. }
  8840. #u1927 {
  8841. border-width:0px;
  8842. position:absolute;
  8843. left:1455px;
  8844. top:272px;
  8845. width:17px;
  8846. height:21px;
  8847. display:flex;
  8848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8849. font-weight:400;
  8850. font-style:normal;
  8851. font-size:12px;
  8852. color:#00BFBF;
  8853. text-align:left;
  8854. }
  8855. #u1927 .text {
  8856. position:absolute;
  8857. align-self:center;
  8858. padding:2px 2px 2px 2px;
  8859. box-sizing:border-box;
  8860. width:100%;
  8861. }
  8862. #u1927_text {
  8863. border-width:0px;
  8864. white-space:nowrap;
  8865. text-transform:none;
  8866. }
  8867. #u1928 {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:0px;
  8871. top:0px;
  8872. width:0px;
  8873. height:0px;
  8874. }
  8875. #u1929_img {
  8876. border-width:0px;
  8877. position:absolute;
  8878. left:0px;
  8879. top:0px;
  8880. width:240px;
  8881. height:60px;
  8882. }
  8883. #u1929 {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:1242px;
  8887. top:342px;
  8888. width:240px;
  8889. height:60px;
  8890. display:flex;
  8891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8892. font-weight:400;
  8893. font-style:normal;
  8894. font-size:12px;
  8895. color:#FFFFFF;
  8896. text-align:left;
  8897. }
  8898. #u1929 .text {
  8899. position:absolute;
  8900. align-self:center;
  8901. padding:2px 2px 2px 10px;
  8902. box-sizing:border-box;
  8903. width:100%;
  8904. }
  8905. #u1929_text {
  8906. border-width:0px;
  8907. word-wrap:break-word;
  8908. text-transform:none;
  8909. visibility:hidden;
  8910. }
  8911. #u1930_img {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:0px;
  8915. top:0px;
  8916. width:62px;
  8917. height:60px;
  8918. }
  8919. #u1930 {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:1242px;
  8923. top:342px;
  8924. width:62px;
  8925. height:60px;
  8926. display:flex;
  8927. }
  8928. #u1930 .text {
  8929. position:absolute;
  8930. align-self:center;
  8931. padding:2px 2px 2px 2px;
  8932. box-sizing:border-box;
  8933. width:100%;
  8934. }
  8935. #u1930_text {
  8936. border-width:0px;
  8937. word-wrap:break-word;
  8938. text-transform:none;
  8939. visibility:hidden;
  8940. }
  8941. #u1931_div {
  8942. border-width:0px;
  8943. position:absolute;
  8944. left:0px;
  8945. top:0px;
  8946. width:41px;
  8947. height:21px;
  8948. background:inherit;
  8949. background-color:rgba(245, 154, 35, 0);
  8950. border:none;
  8951. border-left:0px;
  8952. border-top:0px;
  8953. border-right:0px;
  8954. border-radius:0px;
  8955. border-bottom-right-radius:0px;
  8956. border-bottom-left-radius:0px;
  8957. -moz-box-shadow:none;
  8958. -webkit-box-shadow:none;
  8959. box-shadow:none;
  8960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8961. font-weight:400;
  8962. font-style:normal;
  8963. font-size:12px;
  8964. color:#FFFFFF;
  8965. text-align:left;
  8966. }
  8967. #u1931 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:1309px;
  8971. top:346px;
  8972. width:41px;
  8973. height:21px;
  8974. display:flex;
  8975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:12px;
  8979. color:#FFFFFF;
  8980. text-align:left;
  8981. }
  8982. #u1931 .text {
  8983. position:absolute;
  8984. align-self:center;
  8985. padding:2px 2px 2px 2px;
  8986. box-sizing:border-box;
  8987. width:100%;
  8988. }
  8989. #u1931_text {
  8990. border-width:0px;
  8991. white-space:nowrap;
  8992. text-transform:none;
  8993. }
  8994. #u1932_div {
  8995. border-width:0px;
  8996. position:absolute;
  8997. left:0px;
  8998. top:0px;
  8999. width:75px;
  9000. height:32px;
  9001. background:inherit;
  9002. background-color:rgba(245, 154, 35, 0);
  9003. border:none;
  9004. border-left:0px;
  9005. border-top:0px;
  9006. border-right:0px;
  9007. border-radius:0px;
  9008. border-bottom-right-radius:0px;
  9009. border-bottom-left-radius:0px;
  9010. -moz-box-shadow:none;
  9011. -webkit-box-shadow:none;
  9012. box-shadow:none;
  9013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9014. font-weight:400;
  9015. font-style:normal;
  9016. font-size:10px;
  9017. color:#FFFFFF;
  9018. text-align:left;
  9019. }
  9020. #u1932 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:1309px;
  9024. top:367px;
  9025. width:75px;
  9026. height:32px;
  9027. display:flex;
  9028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:10px;
  9032. color:#FFFFFF;
  9033. text-align:left;
  9034. }
  9035. #u1932 .text {
  9036. position:absolute;
  9037. align-self:center;
  9038. padding:2px 2px 2px 2px;
  9039. box-sizing:border-box;
  9040. width:100%;
  9041. }
  9042. #u1932_text {
  9043. border-width:0px;
  9044. white-space:nowrap;
  9045. text-transform:none;
  9046. }
  9047. #u1933_div {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:0px;
  9051. top:0px;
  9052. width:24px;
  9053. height:13px;
  9054. background:inherit;
  9055. background-color:rgba(245, 154, 35, 1);
  9056. border:none;
  9057. border-radius:40px;
  9058. -moz-box-shadow:none;
  9059. -webkit-box-shadow:none;
  9060. box-shadow:none;
  9061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9062. font-weight:400;
  9063. font-style:normal;
  9064. font-size:8px;
  9065. color:rgba(255, 255, 255, 0.698039215686274);
  9066. }
  9067. #u1933 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:1362px;
  9071. top:350px;
  9072. width:24px;
  9073. height:13px;
  9074. display:flex;
  9075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9076. font-weight:400;
  9077. font-style:normal;
  9078. font-size:8px;
  9079. color:rgba(255, 255, 255, 0.698039215686274);
  9080. }
  9081. #u1933 .text {
  9082. position:absolute;
  9083. align-self:center;
  9084. padding:0px 0px 2px 0px;
  9085. box-sizing:border-box;
  9086. width:100%;
  9087. }
  9088. #u1933_text {
  9089. border-width:0px;
  9090. word-wrap:break-word;
  9091. text-transform:none;
  9092. }
  9093. #u1934_div {
  9094. border-width:0px;
  9095. position:absolute;
  9096. left:0px;
  9097. top:0px;
  9098. width:17px;
  9099. height:21px;
  9100. background:inherit;
  9101. background-color:rgba(245, 154, 35, 0);
  9102. border:none;
  9103. border-left:0px;
  9104. border-top:0px;
  9105. border-right:0px;
  9106. border-radius:0px;
  9107. border-bottom-right-radius:0px;
  9108. border-bottom-left-radius:0px;
  9109. -moz-box-shadow:none;
  9110. -webkit-box-shadow:none;
  9111. box-shadow:none;
  9112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9113. font-weight:400;
  9114. font-style:normal;
  9115. font-size:12px;
  9116. color:#00BFBF;
  9117. text-align:left;
  9118. }
  9119. #u1934 {
  9120. border-width:0px;
  9121. position:absolute;
  9122. left:1455px;
  9123. top:342px;
  9124. width:17px;
  9125. height:21px;
  9126. display:flex;
  9127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9128. font-weight:400;
  9129. font-style:normal;
  9130. font-size:12px;
  9131. color:#00BFBF;
  9132. text-align:left;
  9133. }
  9134. #u1934 .text {
  9135. position:absolute;
  9136. align-self:center;
  9137. padding:2px 2px 2px 2px;
  9138. box-sizing:border-box;
  9139. width:100%;
  9140. }
  9141. #u1934_text {
  9142. border-width:0px;
  9143. white-space:nowrap;
  9144. text-transform:none;
  9145. }
  9146. #u1935 {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:0px;
  9150. top:0px;
  9151. width:0px;
  9152. height:0px;
  9153. }
  9154. #u1936_img {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:0px;
  9158. top:0px;
  9159. width:240px;
  9160. height:60px;
  9161. }
  9162. #u1936 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:1242px;
  9166. top:412px;
  9167. width:240px;
  9168. height:60px;
  9169. display:flex;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:12px;
  9174. color:#FFFFFF;
  9175. text-align:left;
  9176. }
  9177. #u1936 .text {
  9178. position:absolute;
  9179. align-self:center;
  9180. padding:2px 2px 2px 10px;
  9181. box-sizing:border-box;
  9182. width:100%;
  9183. }
  9184. #u1936_text {
  9185. border-width:0px;
  9186. word-wrap:break-word;
  9187. text-transform:none;
  9188. visibility:hidden;
  9189. }
  9190. #u1937_img {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:0px;
  9194. top:0px;
  9195. width:62px;
  9196. height:60px;
  9197. }
  9198. #u1937 {
  9199. border-width:0px;
  9200. position:absolute;
  9201. left:1242px;
  9202. top:412px;
  9203. width:62px;
  9204. height:60px;
  9205. display:flex;
  9206. }
  9207. #u1937 .text {
  9208. position:absolute;
  9209. align-self:center;
  9210. padding:2px 2px 2px 2px;
  9211. box-sizing:border-box;
  9212. width:100%;
  9213. }
  9214. #u1937_text {
  9215. border-width:0px;
  9216. word-wrap:break-word;
  9217. text-transform:none;
  9218. visibility:hidden;
  9219. }
  9220. #u1938_div {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:0px;
  9224. top:0px;
  9225. width:41px;
  9226. height:21px;
  9227. background:inherit;
  9228. background-color:rgba(245, 154, 35, 0);
  9229. border:none;
  9230. border-left:0px;
  9231. border-top:0px;
  9232. border-right:0px;
  9233. border-radius:0px;
  9234. border-bottom-right-radius:0px;
  9235. border-bottom-left-radius:0px;
  9236. -moz-box-shadow:none;
  9237. -webkit-box-shadow:none;
  9238. box-shadow:none;
  9239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9240. font-weight:400;
  9241. font-style:normal;
  9242. font-size:12px;
  9243. color:#FFFFFF;
  9244. text-align:left;
  9245. }
  9246. #u1938 {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:1309px;
  9250. top:416px;
  9251. width:41px;
  9252. height:21px;
  9253. display:flex;
  9254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9255. font-weight:400;
  9256. font-style:normal;
  9257. font-size:12px;
  9258. color:#FFFFFF;
  9259. text-align:left;
  9260. }
  9261. #u1938 .text {
  9262. position:absolute;
  9263. align-self:center;
  9264. padding:2px 2px 2px 2px;
  9265. box-sizing:border-box;
  9266. width:100%;
  9267. }
  9268. #u1938_text {
  9269. border-width:0px;
  9270. white-space:nowrap;
  9271. text-transform:none;
  9272. }
  9273. #u1939_div {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:75px;
  9279. height:32px;
  9280. background:inherit;
  9281. background-color:rgba(245, 154, 35, 0);
  9282. border:none;
  9283. border-left:0px;
  9284. border-top:0px;
  9285. border-right:0px;
  9286. border-radius:0px;
  9287. border-bottom-right-radius:0px;
  9288. border-bottom-left-radius:0px;
  9289. -moz-box-shadow:none;
  9290. -webkit-box-shadow:none;
  9291. box-shadow:none;
  9292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9293. font-weight:400;
  9294. font-style:normal;
  9295. font-size:10px;
  9296. color:#FFFFFF;
  9297. text-align:left;
  9298. }
  9299. #u1939 {
  9300. border-width:0px;
  9301. position:absolute;
  9302. left:1309px;
  9303. top:437px;
  9304. width:75px;
  9305. height:32px;
  9306. display:flex;
  9307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9308. font-weight:400;
  9309. font-style:normal;
  9310. font-size:10px;
  9311. color:#FFFFFF;
  9312. text-align:left;
  9313. }
  9314. #u1939 .text {
  9315. position:absolute;
  9316. align-self:center;
  9317. padding:2px 2px 2px 2px;
  9318. box-sizing:border-box;
  9319. width:100%;
  9320. }
  9321. #u1939_text {
  9322. border-width:0px;
  9323. white-space:nowrap;
  9324. text-transform:none;
  9325. }
  9326. #u1940_div {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:24px;
  9332. height:13px;
  9333. background:inherit;
  9334. background-color:rgba(245, 154, 35, 1);
  9335. border:none;
  9336. border-radius:40px;
  9337. -moz-box-shadow:none;
  9338. -webkit-box-shadow:none;
  9339. box-shadow:none;
  9340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9341. font-weight:400;
  9342. font-style:normal;
  9343. font-size:8px;
  9344. color:rgba(255, 255, 255, 0.698039215686274);
  9345. }
  9346. #u1940 {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:1362px;
  9350. top:420px;
  9351. width:24px;
  9352. height:13px;
  9353. display:flex;
  9354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9355. font-weight:400;
  9356. font-style:normal;
  9357. font-size:8px;
  9358. color:rgba(255, 255, 255, 0.698039215686274);
  9359. }
  9360. #u1940 .text {
  9361. position:absolute;
  9362. align-self:center;
  9363. padding:0px 0px 2px 0px;
  9364. box-sizing:border-box;
  9365. width:100%;
  9366. }
  9367. #u1940_text {
  9368. border-width:0px;
  9369. word-wrap:break-word;
  9370. text-transform:none;
  9371. }
  9372. #u1941_div {
  9373. border-width:0px;
  9374. position:absolute;
  9375. left:0px;
  9376. top:0px;
  9377. width:17px;
  9378. height:21px;
  9379. background:inherit;
  9380. background-color:rgba(245, 154, 35, 0);
  9381. border:none;
  9382. border-left:0px;
  9383. border-top:0px;
  9384. border-right:0px;
  9385. border-radius:0px;
  9386. border-bottom-right-radius:0px;
  9387. border-bottom-left-radius:0px;
  9388. -moz-box-shadow:none;
  9389. -webkit-box-shadow:none;
  9390. box-shadow:none;
  9391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9392. font-weight:400;
  9393. font-style:normal;
  9394. font-size:12px;
  9395. color:#00BFBF;
  9396. text-align:left;
  9397. }
  9398. #u1941 {
  9399. border-width:0px;
  9400. position:absolute;
  9401. left:1455px;
  9402. top:412px;
  9403. width:17px;
  9404. height:21px;
  9405. display:flex;
  9406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9407. font-weight:400;
  9408. font-style:normal;
  9409. font-size:12px;
  9410. color:#00BFBF;
  9411. text-align:left;
  9412. }
  9413. #u1941 .text {
  9414. position:absolute;
  9415. align-self:center;
  9416. padding:2px 2px 2px 2px;
  9417. box-sizing:border-box;
  9418. width:100%;
  9419. }
  9420. #u1941_text {
  9421. border-width:0px;
  9422. white-space:nowrap;
  9423. text-transform:none;
  9424. }
  9425. #u1942 {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:0px;
  9429. top:0px;
  9430. width:0px;
  9431. height:0px;
  9432. }
  9433. #u1943_div {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:0px;
  9437. top:0px;
  9438. width:254px;
  9439. height:82px;
  9440. background:inherit;
  9441. background-color:rgba(245, 154, 35, 0.0980392156862745);
  9442. box-sizing:border-box;
  9443. border-width:1px;
  9444. border-style:solid;
  9445. border-color:rgba(121, 121, 121, 1);
  9446. border-radius:0px;
  9447. -moz-box-shadow:none;
  9448. -webkit-box-shadow:none;
  9449. box-shadow:none;
  9450. }
  9451. #u1943 {
  9452. border-width:0px;
  9453. position:absolute;
  9454. left:348px;
  9455. top:271px;
  9456. width:254px;
  9457. height:82px;
  9458. display:flex;
  9459. }
  9460. #u1943 .text {
  9461. position:absolute;
  9462. align-self:center;
  9463. padding:2px 2px 2px 2px;
  9464. box-sizing:border-box;
  9465. width:100%;
  9466. }
  9467. #u1943_text {
  9468. border-width:0px;
  9469. word-wrap:break-word;
  9470. text-transform:none;
  9471. visibility:hidden;
  9472. }
  9473. #u1944_div {
  9474. border-width:0px;
  9475. position:absolute;
  9476. left:0px;
  9477. top:0px;
  9478. width:31px;
  9479. height:24px;
  9480. background:inherit;
  9481. background-color:rgba(245, 154, 35, 0);
  9482. border:none;
  9483. border-left:0px;
  9484. border-top:0px;
  9485. border-right:0px;
  9486. border-radius:0px;
  9487. border-bottom-right-radius:0px;
  9488. border-bottom-left-radius:0px;
  9489. -moz-box-shadow:none;
  9490. -webkit-box-shadow:none;
  9491. box-shadow:none;
  9492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9493. font-weight:400;
  9494. font-style:normal;
  9495. font-size:14px;
  9496. color:#FFFFFF;
  9497. text-align:left;
  9498. }
  9499. #u1944 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:415px;
  9503. top:278px;
  9504. width:31px;
  9505. height:24px;
  9506. display:flex;
  9507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9508. font-weight:400;
  9509. font-style:normal;
  9510. font-size:14px;
  9511. color:#FFFFFF;
  9512. text-align:left;
  9513. }
  9514. #u1944 .text {
  9515. position:absolute;
  9516. align-self:center;
  9517. padding:2px 2px 2px 0px;
  9518. box-sizing:border-box;
  9519. width:100%;
  9520. }
  9521. #u1944_text {
  9522. border-width:0px;
  9523. white-space:nowrap;
  9524. text-transform:none;
  9525. }
  9526. #u1945_div {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:0px;
  9530. top:0px;
  9531. width:35px;
  9532. height:21px;
  9533. background:inherit;
  9534. background-color:rgba(245, 154, 35, 1);
  9535. border:none;
  9536. border-radius:11px;
  9537. -moz-box-shadow:none;
  9538. -webkit-box-shadow:none;
  9539. box-shadow:none;
  9540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9541. font-weight:400;
  9542. font-style:normal;
  9543. font-size:12px;
  9544. color:#FFFFFF;
  9545. }
  9546. #u1945 {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:458px;
  9550. top:280px;
  9551. width:35px;
  9552. height:21px;
  9553. display:flex;
  9554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9555. font-weight:400;
  9556. font-style:normal;
  9557. font-size:12px;
  9558. color:#FFFFFF;
  9559. }
  9560. #u1945 .text {
  9561. position:absolute;
  9562. align-self:center;
  9563. padding:2px 2px 2px 2px;
  9564. box-sizing:border-box;
  9565. width:100%;
  9566. }
  9567. #u1945_text {
  9568. border-width:0px;
  9569. word-wrap:break-word;
  9570. text-transform:none;
  9571. }
  9572. #u1946_div {
  9573. border-width:0px;
  9574. position:absolute;
  9575. left:0px;
  9576. top:0px;
  9577. width:95px;
  9578. height:21px;
  9579. background:inherit;
  9580. background-color:rgba(245, 154, 35, 0);
  9581. border:none;
  9582. border-left:0px;
  9583. border-top:0px;
  9584. border-right:0px;
  9585. border-radius:0px;
  9586. border-bottom-right-radius:0px;
  9587. border-bottom-left-radius:0px;
  9588. -moz-box-shadow:none;
  9589. -webkit-box-shadow:none;
  9590. box-shadow:none;
  9591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9592. font-weight:400;
  9593. font-style:normal;
  9594. font-size:12px;
  9595. color:#FFFFFF;
  9596. text-align:left;
  9597. }
  9598. #u1946 {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:415px;
  9602. top:309px;
  9603. width:95px;
  9604. height:21px;
  9605. display:flex;
  9606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9607. font-weight:400;
  9608. font-style:normal;
  9609. font-size:12px;
  9610. color:#FFFFFF;
  9611. text-align:left;
  9612. }
  9613. #u1946 .text {
  9614. position:absolute;
  9615. align-self:center;
  9616. padding:2px 2px 2px 0px;
  9617. box-sizing:border-box;
  9618. width:100%;
  9619. }
  9620. #u1946_text {
  9621. border-width:0px;
  9622. white-space:nowrap;
  9623. text-transform:none;
  9624. }
  9625. #u1947_div {
  9626. border-width:0px;
  9627. position:absolute;
  9628. left:0px;
  9629. top:0px;
  9630. width:103px;
  9631. height:18px;
  9632. background:inherit;
  9633. background-color:rgba(245, 154, 35, 0);
  9634. border:none;
  9635. border-left:0px;
  9636. border-top:0px;
  9637. border-right:0px;
  9638. border-radius:0px;
  9639. border-bottom-right-radius:0px;
  9640. border-bottom-left-radius:0px;
  9641. -moz-box-shadow:none;
  9642. -webkit-box-shadow:none;
  9643. box-shadow:none;
  9644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9645. font-weight:400;
  9646. font-style:normal;
  9647. font-size:10px;
  9648. color:#FFFFFF;
  9649. text-align:left;
  9650. }
  9651. #u1947 {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:415px;
  9655. top:330px;
  9656. width:103px;
  9657. height:18px;
  9658. display:flex;
  9659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9660. font-weight:400;
  9661. font-style:normal;
  9662. font-size:10px;
  9663. color:#FFFFFF;
  9664. text-align:left;
  9665. }
  9666. #u1947 .text {
  9667. position:absolute;
  9668. align-self:center;
  9669. padding:2px 2px 2px 0px;
  9670. box-sizing:border-box;
  9671. width:100%;
  9672. }
  9673. #u1947_text {
  9674. border-width:0px;
  9675. white-space:nowrap;
  9676. text-transform:none;
  9677. }
  9678. #u1948_img {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:0px;
  9682. top:0px;
  9683. width:50px;
  9684. height:59px;
  9685. }
  9686. #u1948 {
  9687. border-width:0px;
  9688. position:absolute;
  9689. left:356px;
  9690. top:282px;
  9691. width:50px;
  9692. height:59px;
  9693. display:flex;
  9694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9695. font-weight:400;
  9696. font-style:normal;
  9697. color:#FFFFFF;
  9698. }
  9699. #u1948 .text {
  9700. position:absolute;
  9701. align-self:center;
  9702. padding:2px 2px 2px 2px;
  9703. box-sizing:border-box;
  9704. width:100%;
  9705. }
  9706. #u1948_text {
  9707. border-width:0px;
  9708. word-wrap:break-word;
  9709. text-transform:none;
  9710. }
  9711. #u1949 {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:0px;
  9715. top:0px;
  9716. width:0px;
  9717. height:0px;
  9718. }
  9719. #u1950_div {
  9720. border-width:0px;
  9721. position:absolute;
  9722. left:0px;
  9723. top:0px;
  9724. width:254px;
  9725. height:82px;
  9726. background:inherit;
  9727. background-color:rgba(245, 154, 35, 0.0980392156862745);
  9728. box-sizing:border-box;
  9729. border-width:1px;
  9730. border-style:solid;
  9731. border-color:rgba(121, 121, 121, 1);
  9732. border-radius:0px;
  9733. -moz-box-shadow:none;
  9734. -webkit-box-shadow:none;
  9735. box-shadow:none;
  9736. }
  9737. #u1950 {
  9738. border-width:0px;
  9739. position:absolute;
  9740. left:612px;
  9741. top:271px;
  9742. width:254px;
  9743. height:82px;
  9744. display:flex;
  9745. }
  9746. #u1950 .text {
  9747. position:absolute;
  9748. align-self:center;
  9749. padding:2px 2px 2px 2px;
  9750. box-sizing:border-box;
  9751. width:100%;
  9752. }
  9753. #u1950_text {
  9754. border-width:0px;
  9755. word-wrap:break-word;
  9756. text-transform:none;
  9757. visibility:hidden;
  9758. }
  9759. #u1951_div {
  9760. border-width:0px;
  9761. position:absolute;
  9762. left:0px;
  9763. top:0px;
  9764. width:45px;
  9765. height:24px;
  9766. background:inherit;
  9767. background-color:rgba(245, 154, 35, 0);
  9768. border:none;
  9769. border-left:0px;
  9770. border-top:0px;
  9771. border-right:0px;
  9772. border-radius:0px;
  9773. border-bottom-right-radius:0px;
  9774. border-bottom-left-radius:0px;
  9775. -moz-box-shadow:none;
  9776. -webkit-box-shadow:none;
  9777. box-shadow:none;
  9778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9779. font-weight:400;
  9780. font-style:normal;
  9781. font-size:14px;
  9782. color:#FFFFFF;
  9783. text-align:left;
  9784. }
  9785. #u1951 {
  9786. border-width:0px;
  9787. position:absolute;
  9788. left:679px;
  9789. top:278px;
  9790. width:45px;
  9791. height:24px;
  9792. display:flex;
  9793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9794. font-weight:400;
  9795. font-style:normal;
  9796. font-size:14px;
  9797. color:#FFFFFF;
  9798. text-align:left;
  9799. }
  9800. #u1951 .text {
  9801. position:absolute;
  9802. align-self:center;
  9803. padding:2px 2px 2px 0px;
  9804. box-sizing:border-box;
  9805. width:100%;
  9806. }
  9807. #u1951_text {
  9808. border-width:0px;
  9809. white-space:nowrap;
  9810. text-transform:none;
  9811. }
  9812. #u1952_div {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:0px;
  9816. top:0px;
  9817. width:95px;
  9818. height:21px;
  9819. background:inherit;
  9820. background-color:rgba(245, 154, 35, 0);
  9821. border:none;
  9822. border-left:0px;
  9823. border-top:0px;
  9824. border-right:0px;
  9825. border-radius:0px;
  9826. border-bottom-right-radius:0px;
  9827. border-bottom-left-radius:0px;
  9828. -moz-box-shadow:none;
  9829. -webkit-box-shadow:none;
  9830. box-shadow:none;
  9831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9832. font-weight:400;
  9833. font-style:normal;
  9834. font-size:12px;
  9835. color:#FFFFFF;
  9836. text-align:left;
  9837. }
  9838. #u1952 {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:679px;
  9842. top:309px;
  9843. width:95px;
  9844. height:21px;
  9845. display:flex;
  9846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9847. font-weight:400;
  9848. font-style:normal;
  9849. font-size:12px;
  9850. color:#FFFFFF;
  9851. text-align:left;
  9852. }
  9853. #u1952 .text {
  9854. position:absolute;
  9855. align-self:center;
  9856. padding:2px 2px 2px 0px;
  9857. box-sizing:border-box;
  9858. width:100%;
  9859. }
  9860. #u1952_text {
  9861. border-width:0px;
  9862. white-space:nowrap;
  9863. text-transform:none;
  9864. }
  9865. #u1953_div {
  9866. border-width:0px;
  9867. position:absolute;
  9868. left:0px;
  9869. top:0px;
  9870. width:103px;
  9871. height:18px;
  9872. background:inherit;
  9873. background-color:rgba(245, 154, 35, 0);
  9874. border:none;
  9875. border-left:0px;
  9876. border-top:0px;
  9877. border-right:0px;
  9878. border-radius:0px;
  9879. border-bottom-right-radius:0px;
  9880. border-bottom-left-radius:0px;
  9881. -moz-box-shadow:none;
  9882. -webkit-box-shadow:none;
  9883. box-shadow:none;
  9884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9885. font-weight:400;
  9886. font-style:normal;
  9887. font-size:10px;
  9888. color:#FFFFFF;
  9889. text-align:left;
  9890. }
  9891. #u1953 {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:679px;
  9895. top:330px;
  9896. width:103px;
  9897. height:18px;
  9898. display:flex;
  9899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9900. font-weight:400;
  9901. font-style:normal;
  9902. font-size:10px;
  9903. color:#FFFFFF;
  9904. text-align:left;
  9905. }
  9906. #u1953 .text {
  9907. position:absolute;
  9908. align-self:center;
  9909. padding:2px 2px 2px 0px;
  9910. box-sizing:border-box;
  9911. width:100%;
  9912. }
  9913. #u1953_text {
  9914. border-width:0px;
  9915. white-space:nowrap;
  9916. text-transform:none;
  9917. }
  9918. #u1954_img {
  9919. border-width:0px;
  9920. position:absolute;
  9921. left:0px;
  9922. top:0px;
  9923. width:50px;
  9924. height:59px;
  9925. }
  9926. #u1954 {
  9927. border-width:0px;
  9928. position:absolute;
  9929. left:620px;
  9930. top:282px;
  9931. width:50px;
  9932. height:59px;
  9933. display:flex;
  9934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9935. font-weight:400;
  9936. font-style:normal;
  9937. color:#FFFFFF;
  9938. }
  9939. #u1954 .text {
  9940. position:absolute;
  9941. align-self:center;
  9942. padding:2px 2px 2px 2px;
  9943. box-sizing:border-box;
  9944. width:100%;
  9945. }
  9946. #u1954_text {
  9947. border-width:0px;
  9948. word-wrap:break-word;
  9949. text-transform:none;
  9950. }
  9951. #u1955 {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:0px;
  9955. top:0px;
  9956. width:0px;
  9957. height:0px;
  9958. }
  9959. #u1956_div {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:254px;
  9965. height:82px;
  9966. background:inherit;
  9967. background-color:rgba(245, 154, 35, 0.0980392156862745);
  9968. box-sizing:border-box;
  9969. border-width:1px;
  9970. border-style:solid;
  9971. border-color:rgba(121, 121, 121, 1);
  9972. border-radius:0px;
  9973. -moz-box-shadow:none;
  9974. -webkit-box-shadow:none;
  9975. box-shadow:none;
  9976. }
  9977. #u1956 {
  9978. border-width:0px;
  9979. position:absolute;
  9980. left:876px;
  9981. top:271px;
  9982. width:254px;
  9983. height:82px;
  9984. display:flex;
  9985. }
  9986. #u1956 .text {
  9987. position:absolute;
  9988. align-self:center;
  9989. padding:2px 2px 2px 2px;
  9990. box-sizing:border-box;
  9991. width:100%;
  9992. }
  9993. #u1956_text {
  9994. border-width:0px;
  9995. word-wrap:break-word;
  9996. text-transform:none;
  9997. visibility:hidden;
  9998. }
  9999. #u1957_div {
  10000. border-width:0px;
  10001. position:absolute;
  10002. left:0px;
  10003. top:0px;
  10004. width:31px;
  10005. height:24px;
  10006. background:inherit;
  10007. background-color:rgba(245, 154, 35, 0);
  10008. border:none;
  10009. border-left:0px;
  10010. border-top:0px;
  10011. border-right:0px;
  10012. border-radius:0px;
  10013. border-bottom-right-radius:0px;
  10014. border-bottom-left-radius:0px;
  10015. -moz-box-shadow:none;
  10016. -webkit-box-shadow:none;
  10017. box-shadow:none;
  10018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10019. font-weight:400;
  10020. font-style:normal;
  10021. font-size:14px;
  10022. color:#FFFFFF;
  10023. text-align:left;
  10024. }
  10025. #u1957 {
  10026. border-width:0px;
  10027. position:absolute;
  10028. left:943px;
  10029. top:278px;
  10030. width:31px;
  10031. height:24px;
  10032. display:flex;
  10033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10034. font-weight:400;
  10035. font-style:normal;
  10036. font-size:14px;
  10037. color:#FFFFFF;
  10038. text-align:left;
  10039. }
  10040. #u1957 .text {
  10041. position:absolute;
  10042. align-self:center;
  10043. padding:2px 2px 2px 0px;
  10044. box-sizing:border-box;
  10045. width:100%;
  10046. }
  10047. #u1957_text {
  10048. border-width:0px;
  10049. white-space:nowrap;
  10050. text-transform:none;
  10051. }
  10052. #u1958_div {
  10053. border-width:0px;
  10054. position:absolute;
  10055. left:0px;
  10056. top:0px;
  10057. width:35px;
  10058. height:21px;
  10059. background:inherit;
  10060. background-color:rgba(245, 154, 35, 1);
  10061. border:none;
  10062. border-radius:11px;
  10063. -moz-box-shadow:none;
  10064. -webkit-box-shadow:none;
  10065. box-shadow:none;
  10066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10067. font-weight:400;
  10068. font-style:normal;
  10069. font-size:12px;
  10070. color:#FFFFFF;
  10071. }
  10072. #u1958 {
  10073. border-width:0px;
  10074. position:absolute;
  10075. left:978px;
  10076. top:280px;
  10077. width:35px;
  10078. height:21px;
  10079. display:flex;
  10080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10081. font-weight:400;
  10082. font-style:normal;
  10083. font-size:12px;
  10084. color:#FFFFFF;
  10085. }
  10086. #u1958 .text {
  10087. position:absolute;
  10088. align-self:center;
  10089. padding:2px 2px 2px 2px;
  10090. box-sizing:border-box;
  10091. width:100%;
  10092. }
  10093. #u1958_text {
  10094. border-width:0px;
  10095. word-wrap:break-word;
  10096. text-transform:none;
  10097. }
  10098. #u1959_div {
  10099. border-width:0px;
  10100. position:absolute;
  10101. left:0px;
  10102. top:0px;
  10103. width:71px;
  10104. height:21px;
  10105. background:inherit;
  10106. background-color:rgba(245, 154, 35, 0);
  10107. border:none;
  10108. border-left:0px;
  10109. border-top:0px;
  10110. border-right:0px;
  10111. border-radius:0px;
  10112. border-bottom-right-radius:0px;
  10113. border-bottom-left-radius:0px;
  10114. -moz-box-shadow:none;
  10115. -webkit-box-shadow:none;
  10116. box-shadow:none;
  10117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10118. font-weight:400;
  10119. font-style:normal;
  10120. font-size:12px;
  10121. color:#FFFFFF;
  10122. text-align:left;
  10123. }
  10124. #u1959 {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:943px;
  10128. top:309px;
  10129. width:71px;
  10130. height:21px;
  10131. display:flex;
  10132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10133. font-weight:400;
  10134. font-style:normal;
  10135. font-size:12px;
  10136. color:#FFFFFF;
  10137. text-align:left;
  10138. }
  10139. #u1959 .text {
  10140. position:absolute;
  10141. align-self:center;
  10142. padding:2px 2px 2px 0px;
  10143. box-sizing:border-box;
  10144. width:100%;
  10145. }
  10146. #u1959_text {
  10147. border-width:0px;
  10148. white-space:nowrap;
  10149. text-transform:none;
  10150. }
  10151. #u1960_div {
  10152. border-width:0px;
  10153. position:absolute;
  10154. left:0px;
  10155. top:0px;
  10156. width:103px;
  10157. height:18px;
  10158. background:inherit;
  10159. background-color:rgba(245, 154, 35, 0);
  10160. border:none;
  10161. border-left:0px;
  10162. border-top:0px;
  10163. border-right:0px;
  10164. border-radius:0px;
  10165. border-bottom-right-radius:0px;
  10166. border-bottom-left-radius:0px;
  10167. -moz-box-shadow:none;
  10168. -webkit-box-shadow:none;
  10169. box-shadow:none;
  10170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10171. font-weight:400;
  10172. font-style:normal;
  10173. font-size:10px;
  10174. color:#FFFFFF;
  10175. text-align:left;
  10176. }
  10177. #u1960 {
  10178. border-width:0px;
  10179. position:absolute;
  10180. left:943px;
  10181. top:330px;
  10182. width:103px;
  10183. height:18px;
  10184. display:flex;
  10185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10186. font-weight:400;
  10187. font-style:normal;
  10188. font-size:10px;
  10189. color:#FFFFFF;
  10190. text-align:left;
  10191. }
  10192. #u1960 .text {
  10193. position:absolute;
  10194. align-self:center;
  10195. padding:2px 2px 2px 0px;
  10196. box-sizing:border-box;
  10197. width:100%;
  10198. }
  10199. #u1960_text {
  10200. border-width:0px;
  10201. white-space:nowrap;
  10202. text-transform:none;
  10203. }
  10204. #u1961_img {
  10205. border-width:0px;
  10206. position:absolute;
  10207. left:0px;
  10208. top:0px;
  10209. width:50px;
  10210. height:59px;
  10211. }
  10212. #u1961 {
  10213. border-width:0px;
  10214. position:absolute;
  10215. left:884px;
  10216. top:282px;
  10217. width:50px;
  10218. height:59px;
  10219. display:flex;
  10220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10221. font-weight:400;
  10222. font-style:normal;
  10223. color:#FFFFFF;
  10224. }
  10225. #u1961 .text {
  10226. position:absolute;
  10227. align-self:center;
  10228. padding:2px 2px 2px 2px;
  10229. box-sizing:border-box;
  10230. width:100%;
  10231. }
  10232. #u1961_text {
  10233. border-width:0px;
  10234. word-wrap:break-word;
  10235. text-transform:none;
  10236. }
  10237. #u1962 {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:0px;
  10241. top:0px;
  10242. width:0px;
  10243. height:0px;
  10244. }
  10245. #u1963_div {
  10246. border-width:0px;
  10247. position:absolute;
  10248. left:0px;
  10249. top:0px;
  10250. width:254px;
  10251. height:82px;
  10252. background:inherit;
  10253. background-color:rgba(245, 154, 35, 0.0980392156862745);
  10254. box-sizing:border-box;
  10255. border-width:1px;
  10256. border-style:solid;
  10257. border-color:rgba(121, 121, 121, 1);
  10258. border-radius:0px;
  10259. -moz-box-shadow:none;
  10260. -webkit-box-shadow:none;
  10261. box-shadow:none;
  10262. }
  10263. #u1963 {
  10264. border-width:0px;
  10265. position:absolute;
  10266. left:348px;
  10267. top:363px;
  10268. width:254px;
  10269. height:82px;
  10270. display:flex;
  10271. }
  10272. #u1963 .text {
  10273. position:absolute;
  10274. align-self:center;
  10275. padding:2px 2px 2px 2px;
  10276. box-sizing:border-box;
  10277. width:100%;
  10278. }
  10279. #u1963_text {
  10280. border-width:0px;
  10281. word-wrap:break-word;
  10282. text-transform:none;
  10283. visibility:hidden;
  10284. }
  10285. #u1964_div {
  10286. border-width:0px;
  10287. position:absolute;
  10288. left:0px;
  10289. top:0px;
  10290. width:31px;
  10291. height:24px;
  10292. background:inherit;
  10293. background-color:rgba(245, 154, 35, 0);
  10294. border:none;
  10295. border-left:0px;
  10296. border-top:0px;
  10297. border-right:0px;
  10298. border-radius:0px;
  10299. border-bottom-right-radius:0px;
  10300. border-bottom-left-radius:0px;
  10301. -moz-box-shadow:none;
  10302. -webkit-box-shadow:none;
  10303. box-shadow:none;
  10304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10305. font-weight:400;
  10306. font-style:normal;
  10307. font-size:14px;
  10308. color:#FFFFFF;
  10309. text-align:left;
  10310. }
  10311. #u1964 {
  10312. border-width:0px;
  10313. position:absolute;
  10314. left:415px;
  10315. top:370px;
  10316. width:31px;
  10317. height:24px;
  10318. display:flex;
  10319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10320. font-weight:400;
  10321. font-style:normal;
  10322. font-size:14px;
  10323. color:#FFFFFF;
  10324. text-align:left;
  10325. }
  10326. #u1964 .text {
  10327. position:absolute;
  10328. align-self:center;
  10329. padding:2px 2px 2px 0px;
  10330. box-sizing:border-box;
  10331. width:100%;
  10332. }
  10333. #u1964_text {
  10334. border-width:0px;
  10335. white-space:nowrap;
  10336. text-transform:none;
  10337. }
  10338. #u1965_div {
  10339. border-width:0px;
  10340. position:absolute;
  10341. left:0px;
  10342. top:0px;
  10343. width:35px;
  10344. height:21px;
  10345. background:inherit;
  10346. background-color:rgba(245, 154, 35, 1);
  10347. border:none;
  10348. border-radius:11px;
  10349. -moz-box-shadow:none;
  10350. -webkit-box-shadow:none;
  10351. box-shadow:none;
  10352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10353. font-weight:400;
  10354. font-style:normal;
  10355. font-size:12px;
  10356. color:#FFFFFF;
  10357. }
  10358. #u1965 {
  10359. border-width:0px;
  10360. position:absolute;
  10361. left:458px;
  10362. top:372px;
  10363. width:35px;
  10364. height:21px;
  10365. display:flex;
  10366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10367. font-weight:400;
  10368. font-style:normal;
  10369. font-size:12px;
  10370. color:#FFFFFF;
  10371. }
  10372. #u1965 .text {
  10373. position:absolute;
  10374. align-self:center;
  10375. padding:2px 2px 2px 2px;
  10376. box-sizing:border-box;
  10377. width:100%;
  10378. }
  10379. #u1965_text {
  10380. border-width:0px;
  10381. word-wrap:break-word;
  10382. text-transform:none;
  10383. }
  10384. #u1966_div {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:0px;
  10388. top:0px;
  10389. width:95px;
  10390. height:21px;
  10391. background:inherit;
  10392. background-color:rgba(245, 154, 35, 0);
  10393. border:none;
  10394. border-left:0px;
  10395. border-top:0px;
  10396. border-right:0px;
  10397. border-radius:0px;
  10398. border-bottom-right-radius:0px;
  10399. border-bottom-left-radius:0px;
  10400. -moz-box-shadow:none;
  10401. -webkit-box-shadow:none;
  10402. box-shadow:none;
  10403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10404. font-weight:400;
  10405. font-style:normal;
  10406. font-size:12px;
  10407. color:#FFFFFF;
  10408. text-align:left;
  10409. }
  10410. #u1966 {
  10411. border-width:0px;
  10412. position:absolute;
  10413. left:415px;
  10414. top:401px;
  10415. width:95px;
  10416. height:21px;
  10417. display:flex;
  10418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10419. font-weight:400;
  10420. font-style:normal;
  10421. font-size:12px;
  10422. color:#FFFFFF;
  10423. text-align:left;
  10424. }
  10425. #u1966 .text {
  10426. position:absolute;
  10427. align-self:center;
  10428. padding:2px 2px 2px 0px;
  10429. box-sizing:border-box;
  10430. width:100%;
  10431. }
  10432. #u1966_text {
  10433. border-width:0px;
  10434. white-space:nowrap;
  10435. text-transform:none;
  10436. }
  10437. #u1967_div {
  10438. border-width:0px;
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:103px;
  10443. height:18px;
  10444. background:inherit;
  10445. background-color:rgba(245, 154, 35, 0);
  10446. border:none;
  10447. border-left:0px;
  10448. border-top:0px;
  10449. border-right:0px;
  10450. border-radius:0px;
  10451. border-bottom-right-radius:0px;
  10452. border-bottom-left-radius:0px;
  10453. -moz-box-shadow:none;
  10454. -webkit-box-shadow:none;
  10455. box-shadow:none;
  10456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10457. font-weight:400;
  10458. font-style:normal;
  10459. font-size:10px;
  10460. color:#FFFFFF;
  10461. text-align:left;
  10462. }
  10463. #u1967 {
  10464. border-width:0px;
  10465. position:absolute;
  10466. left:415px;
  10467. top:422px;
  10468. width:103px;
  10469. height:18px;
  10470. display:flex;
  10471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10472. font-weight:400;
  10473. font-style:normal;
  10474. font-size:10px;
  10475. color:#FFFFFF;
  10476. text-align:left;
  10477. }
  10478. #u1967 .text {
  10479. position:absolute;
  10480. align-self:center;
  10481. padding:2px 2px 2px 0px;
  10482. box-sizing:border-box;
  10483. width:100%;
  10484. }
  10485. #u1967_text {
  10486. border-width:0px;
  10487. white-space:nowrap;
  10488. text-transform:none;
  10489. }
  10490. #u1968_img {
  10491. border-width:0px;
  10492. position:absolute;
  10493. left:0px;
  10494. top:0px;
  10495. width:50px;
  10496. height:59px;
  10497. }
  10498. #u1968 {
  10499. border-width:0px;
  10500. position:absolute;
  10501. left:356px;
  10502. top:374px;
  10503. width:50px;
  10504. height:59px;
  10505. display:flex;
  10506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10507. font-weight:400;
  10508. font-style:normal;
  10509. color:#FFFFFF;
  10510. }
  10511. #u1968 .text {
  10512. position:absolute;
  10513. align-self:center;
  10514. padding:2px 2px 2px 2px;
  10515. box-sizing:border-box;
  10516. width:100%;
  10517. }
  10518. #u1968_text {
  10519. border-width:0px;
  10520. word-wrap:break-word;
  10521. text-transform:none;
  10522. }
  10523. #u1969 {
  10524. border-width:0px;
  10525. position:absolute;
  10526. left:0px;
  10527. top:0px;
  10528. width:0px;
  10529. height:0px;
  10530. }
  10531. #u1970_div {
  10532. border-width:0px;
  10533. position:absolute;
  10534. left:0px;
  10535. top:0px;
  10536. width:254px;
  10537. height:82px;
  10538. background:inherit;
  10539. background-color:rgba(245, 154, 35, 0.0980392156862745);
  10540. box-sizing:border-box;
  10541. border-width:1px;
  10542. border-style:solid;
  10543. border-color:rgba(121, 121, 121, 1);
  10544. border-radius:0px;
  10545. -moz-box-shadow:none;
  10546. -webkit-box-shadow:none;
  10547. box-shadow:none;
  10548. }
  10549. #u1970 {
  10550. border-width:0px;
  10551. position:absolute;
  10552. left:612px;
  10553. top:363px;
  10554. width:254px;
  10555. height:82px;
  10556. display:flex;
  10557. }
  10558. #u1970 .text {
  10559. position:absolute;
  10560. align-self:center;
  10561. padding:2px 2px 2px 2px;
  10562. box-sizing:border-box;
  10563. width:100%;
  10564. }
  10565. #u1970_text {
  10566. border-width:0px;
  10567. word-wrap:break-word;
  10568. text-transform:none;
  10569. visibility:hidden;
  10570. }
  10571. #u1971_div {
  10572. border-width:0px;
  10573. position:absolute;
  10574. left:0px;
  10575. top:0px;
  10576. width:45px;
  10577. height:24px;
  10578. background:inherit;
  10579. background-color:rgba(245, 154, 35, 0);
  10580. border:none;
  10581. border-left:0px;
  10582. border-top:0px;
  10583. border-right:0px;
  10584. border-radius:0px;
  10585. border-bottom-right-radius:0px;
  10586. border-bottom-left-radius:0px;
  10587. -moz-box-shadow:none;
  10588. -webkit-box-shadow:none;
  10589. box-shadow:none;
  10590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:14px;
  10594. color:#FFFFFF;
  10595. text-align:left;
  10596. }
  10597. #u1971 {
  10598. border-width:0px;
  10599. position:absolute;
  10600. left:679px;
  10601. top:370px;
  10602. width:45px;
  10603. height:24px;
  10604. display:flex;
  10605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10606. font-weight:400;
  10607. font-style:normal;
  10608. font-size:14px;
  10609. color:#FFFFFF;
  10610. text-align:left;
  10611. }
  10612. #u1971 .text {
  10613. position:absolute;
  10614. align-self:center;
  10615. padding:2px 2px 2px 0px;
  10616. box-sizing:border-box;
  10617. width:100%;
  10618. }
  10619. #u1971_text {
  10620. border-width:0px;
  10621. white-space:nowrap;
  10622. text-transform:none;
  10623. }
  10624. #u1972_div {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:0px;
  10628. top:0px;
  10629. width:95px;
  10630. height:21px;
  10631. background:inherit;
  10632. background-color:rgba(245, 154, 35, 0);
  10633. border:none;
  10634. border-left:0px;
  10635. border-top:0px;
  10636. border-right:0px;
  10637. border-radius:0px;
  10638. border-bottom-right-radius:0px;
  10639. border-bottom-left-radius:0px;
  10640. -moz-box-shadow:none;
  10641. -webkit-box-shadow:none;
  10642. box-shadow:none;
  10643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10644. font-weight:400;
  10645. font-style:normal;
  10646. font-size:12px;
  10647. color:#FFFFFF;
  10648. text-align:left;
  10649. }
  10650. #u1972 {
  10651. border-width:0px;
  10652. position:absolute;
  10653. left:679px;
  10654. top:401px;
  10655. width:95px;
  10656. height:21px;
  10657. display:flex;
  10658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10659. font-weight:400;
  10660. font-style:normal;
  10661. font-size:12px;
  10662. color:#FFFFFF;
  10663. text-align:left;
  10664. }
  10665. #u1972 .text {
  10666. position:absolute;
  10667. align-self:center;
  10668. padding:2px 2px 2px 0px;
  10669. box-sizing:border-box;
  10670. width:100%;
  10671. }
  10672. #u1972_text {
  10673. border-width:0px;
  10674. white-space:nowrap;
  10675. text-transform:none;
  10676. }
  10677. #u1973_div {
  10678. border-width:0px;
  10679. position:absolute;
  10680. left:0px;
  10681. top:0px;
  10682. width:103px;
  10683. height:18px;
  10684. background:inherit;
  10685. background-color:rgba(245, 154, 35, 0);
  10686. border:none;
  10687. border-left:0px;
  10688. border-top:0px;
  10689. border-right:0px;
  10690. border-radius:0px;
  10691. border-bottom-right-radius:0px;
  10692. border-bottom-left-radius:0px;
  10693. -moz-box-shadow:none;
  10694. -webkit-box-shadow:none;
  10695. box-shadow:none;
  10696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10697. font-weight:400;
  10698. font-style:normal;
  10699. font-size:10px;
  10700. color:#FFFFFF;
  10701. text-align:left;
  10702. }
  10703. #u1973 {
  10704. border-width:0px;
  10705. position:absolute;
  10706. left:679px;
  10707. top:422px;
  10708. width:103px;
  10709. height:18px;
  10710. display:flex;
  10711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10712. font-weight:400;
  10713. font-style:normal;
  10714. font-size:10px;
  10715. color:#FFFFFF;
  10716. text-align:left;
  10717. }
  10718. #u1973 .text {
  10719. position:absolute;
  10720. align-self:center;
  10721. padding:2px 2px 2px 0px;
  10722. box-sizing:border-box;
  10723. width:100%;
  10724. }
  10725. #u1973_text {
  10726. border-width:0px;
  10727. white-space:nowrap;
  10728. text-transform:none;
  10729. }
  10730. #u1974_img {
  10731. border-width:0px;
  10732. position:absolute;
  10733. left:0px;
  10734. top:0px;
  10735. width:50px;
  10736. height:59px;
  10737. }
  10738. #u1974 {
  10739. border-width:0px;
  10740. position:absolute;
  10741. left:620px;
  10742. top:374px;
  10743. width:50px;
  10744. height:59px;
  10745. display:flex;
  10746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10747. font-weight:400;
  10748. font-style:normal;
  10749. color:#FFFFFF;
  10750. }
  10751. #u1974 .text {
  10752. position:absolute;
  10753. align-self:center;
  10754. padding:2px 2px 2px 2px;
  10755. box-sizing:border-box;
  10756. width:100%;
  10757. }
  10758. #u1974_text {
  10759. border-width:0px;
  10760. word-wrap:break-word;
  10761. text-transform:none;
  10762. }
  10763. #u1975 {
  10764. border-width:0px;
  10765. position:absolute;
  10766. left:0px;
  10767. top:0px;
  10768. width:0px;
  10769. height:0px;
  10770. }
  10771. #u1976_div {
  10772. border-width:0px;
  10773. position:absolute;
  10774. left:0px;
  10775. top:0px;
  10776. width:254px;
  10777. height:82px;
  10778. background:inherit;
  10779. background-color:rgba(245, 154, 35, 0.0980392156862745);
  10780. box-sizing:border-box;
  10781. border-width:1px;
  10782. border-style:solid;
  10783. border-color:rgba(121, 121, 121, 1);
  10784. border-radius:0px;
  10785. -moz-box-shadow:none;
  10786. -webkit-box-shadow:none;
  10787. box-shadow:none;
  10788. }
  10789. #u1976 {
  10790. border-width:0px;
  10791. position:absolute;
  10792. left:876px;
  10793. top:363px;
  10794. width:254px;
  10795. height:82px;
  10796. display:flex;
  10797. }
  10798. #u1976 .text {
  10799. position:absolute;
  10800. align-self:center;
  10801. padding:2px 2px 2px 2px;
  10802. box-sizing:border-box;
  10803. width:100%;
  10804. }
  10805. #u1976_text {
  10806. border-width:0px;
  10807. word-wrap:break-word;
  10808. text-transform:none;
  10809. visibility:hidden;
  10810. }
  10811. #u1977_div {
  10812. border-width:0px;
  10813. position:absolute;
  10814. left:0px;
  10815. top:0px;
  10816. width:31px;
  10817. height:24px;
  10818. background:inherit;
  10819. background-color:rgba(245, 154, 35, 0);
  10820. border:none;
  10821. border-left:0px;
  10822. border-top:0px;
  10823. border-right:0px;
  10824. border-radius:0px;
  10825. border-bottom-right-radius:0px;
  10826. border-bottom-left-radius:0px;
  10827. -moz-box-shadow:none;
  10828. -webkit-box-shadow:none;
  10829. box-shadow:none;
  10830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10831. font-weight:400;
  10832. font-style:normal;
  10833. font-size:14px;
  10834. color:#FFFFFF;
  10835. text-align:left;
  10836. }
  10837. #u1977 {
  10838. border-width:0px;
  10839. position:absolute;
  10840. left:943px;
  10841. top:370px;
  10842. width:31px;
  10843. height:24px;
  10844. display:flex;
  10845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10846. font-weight:400;
  10847. font-style:normal;
  10848. font-size:14px;
  10849. color:#FFFFFF;
  10850. text-align:left;
  10851. }
  10852. #u1977 .text {
  10853. position:absolute;
  10854. align-self:center;
  10855. padding:2px 2px 2px 0px;
  10856. box-sizing:border-box;
  10857. width:100%;
  10858. }
  10859. #u1977_text {
  10860. border-width:0px;
  10861. white-space:nowrap;
  10862. text-transform:none;
  10863. }
  10864. #u1978_div {
  10865. border-width:0px;
  10866. position:absolute;
  10867. left:0px;
  10868. top:0px;
  10869. width:35px;
  10870. height:21px;
  10871. background:inherit;
  10872. background-color:rgba(245, 154, 35, 1);
  10873. border:none;
  10874. border-radius:11px;
  10875. -moz-box-shadow:none;
  10876. -webkit-box-shadow:none;
  10877. box-shadow:none;
  10878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10879. font-weight:400;
  10880. font-style:normal;
  10881. font-size:12px;
  10882. color:#FFFFFF;
  10883. }
  10884. #u1978 {
  10885. border-width:0px;
  10886. position:absolute;
  10887. left:978px;
  10888. top:372px;
  10889. width:35px;
  10890. height:21px;
  10891. display:flex;
  10892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10893. font-weight:400;
  10894. font-style:normal;
  10895. font-size:12px;
  10896. color:#FFFFFF;
  10897. }
  10898. #u1978 .text {
  10899. position:absolute;
  10900. align-self:center;
  10901. padding:2px 2px 2px 2px;
  10902. box-sizing:border-box;
  10903. width:100%;
  10904. }
  10905. #u1978_text {
  10906. border-width:0px;
  10907. word-wrap:break-word;
  10908. text-transform:none;
  10909. }
  10910. #u1979_div {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:0px;
  10914. top:0px;
  10915. width:71px;
  10916. height:21px;
  10917. background:inherit;
  10918. background-color:rgba(245, 154, 35, 0);
  10919. border:none;
  10920. border-left:0px;
  10921. border-top:0px;
  10922. border-right:0px;
  10923. border-radius:0px;
  10924. border-bottom-right-radius:0px;
  10925. border-bottom-left-radius:0px;
  10926. -moz-box-shadow:none;
  10927. -webkit-box-shadow:none;
  10928. box-shadow:none;
  10929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10930. font-weight:400;
  10931. font-style:normal;
  10932. font-size:12px;
  10933. color:#FFFFFF;
  10934. text-align:left;
  10935. }
  10936. #u1979 {
  10937. border-width:0px;
  10938. position:absolute;
  10939. left:943px;
  10940. top:401px;
  10941. width:71px;
  10942. height:21px;
  10943. display:flex;
  10944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10945. font-weight:400;
  10946. font-style:normal;
  10947. font-size:12px;
  10948. color:#FFFFFF;
  10949. text-align:left;
  10950. }
  10951. #u1979 .text {
  10952. position:absolute;
  10953. align-self:center;
  10954. padding:2px 2px 2px 0px;
  10955. box-sizing:border-box;
  10956. width:100%;
  10957. }
  10958. #u1979_text {
  10959. border-width:0px;
  10960. white-space:nowrap;
  10961. text-transform:none;
  10962. }
  10963. #u1980_div {
  10964. border-width:0px;
  10965. position:absolute;
  10966. left:0px;
  10967. top:0px;
  10968. width:103px;
  10969. height:18px;
  10970. background:inherit;
  10971. background-color:rgba(245, 154, 35, 0);
  10972. border:none;
  10973. border-left:0px;
  10974. border-top:0px;
  10975. border-right:0px;
  10976. border-radius:0px;
  10977. border-bottom-right-radius:0px;
  10978. border-bottom-left-radius:0px;
  10979. -moz-box-shadow:none;
  10980. -webkit-box-shadow:none;
  10981. box-shadow:none;
  10982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10983. font-weight:400;
  10984. font-style:normal;
  10985. font-size:10px;
  10986. color:#FFFFFF;
  10987. text-align:left;
  10988. }
  10989. #u1980 {
  10990. border-width:0px;
  10991. position:absolute;
  10992. left:943px;
  10993. top:422px;
  10994. width:103px;
  10995. height:18px;
  10996. display:flex;
  10997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10998. font-weight:400;
  10999. font-style:normal;
  11000. font-size:10px;
  11001. color:#FFFFFF;
  11002. text-align:left;
  11003. }
  11004. #u1980 .text {
  11005. position:absolute;
  11006. align-self:center;
  11007. padding:2px 2px 2px 0px;
  11008. box-sizing:border-box;
  11009. width:100%;
  11010. }
  11011. #u1980_text {
  11012. border-width:0px;
  11013. white-space:nowrap;
  11014. text-transform:none;
  11015. }
  11016. #u1981_img {
  11017. border-width:0px;
  11018. position:absolute;
  11019. left:0px;
  11020. top:0px;
  11021. width:50px;
  11022. height:59px;
  11023. }
  11024. #u1981 {
  11025. border-width:0px;
  11026. position:absolute;
  11027. left:884px;
  11028. top:374px;
  11029. width:50px;
  11030. height:59px;
  11031. display:flex;
  11032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11033. font-weight:400;
  11034. font-style:normal;
  11035. color:#FFFFFF;
  11036. }
  11037. #u1981 .text {
  11038. position:absolute;
  11039. align-self:center;
  11040. padding:2px 2px 2px 2px;
  11041. box-sizing:border-box;
  11042. width:100%;
  11043. }
  11044. #u1981_text {
  11045. border-width:0px;
  11046. word-wrap:break-word;
  11047. text-transform:none;
  11048. }
  11049. #u1982 {
  11050. border-width:0px;
  11051. position:absolute;
  11052. left:0px;
  11053. top:0px;
  11054. width:0px;
  11055. height:0px;
  11056. }
  11057. #u1983_div {
  11058. border-width:0px;
  11059. position:absolute;
  11060. left:0px;
  11061. top:0px;
  11062. width:254px;
  11063. height:82px;
  11064. background:inherit;
  11065. background-color:rgba(245, 154, 35, 0.0980392156862745);
  11066. box-sizing:border-box;
  11067. border-width:1px;
  11068. border-style:solid;
  11069. border-color:rgba(121, 121, 121, 1);
  11070. border-radius:0px;
  11071. -moz-box-shadow:none;
  11072. -webkit-box-shadow:none;
  11073. box-shadow:none;
  11074. }
  11075. #u1983 {
  11076. border-width:0px;
  11077. position:absolute;
  11078. left:348px;
  11079. top:455px;
  11080. width:254px;
  11081. height:82px;
  11082. display:flex;
  11083. }
  11084. #u1983 .text {
  11085. position:absolute;
  11086. align-self:center;
  11087. padding:2px 2px 2px 2px;
  11088. box-sizing:border-box;
  11089. width:100%;
  11090. }
  11091. #u1983_text {
  11092. border-width:0px;
  11093. word-wrap:break-word;
  11094. text-transform:none;
  11095. visibility:hidden;
  11096. }
  11097. #u1984_div {
  11098. border-width:0px;
  11099. position:absolute;
  11100. left:0px;
  11101. top:0px;
  11102. width:31px;
  11103. height:24px;
  11104. background:inherit;
  11105. background-color:rgba(245, 154, 35, 0);
  11106. border:none;
  11107. border-left:0px;
  11108. border-top:0px;
  11109. border-right:0px;
  11110. border-radius:0px;
  11111. border-bottom-right-radius:0px;
  11112. border-bottom-left-radius:0px;
  11113. -moz-box-shadow:none;
  11114. -webkit-box-shadow:none;
  11115. box-shadow:none;
  11116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11117. font-weight:400;
  11118. font-style:normal;
  11119. font-size:14px;
  11120. color:#FFFFFF;
  11121. text-align:left;
  11122. }
  11123. #u1984 {
  11124. border-width:0px;
  11125. position:absolute;
  11126. left:415px;
  11127. top:462px;
  11128. width:31px;
  11129. height:24px;
  11130. display:flex;
  11131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11132. font-weight:400;
  11133. font-style:normal;
  11134. font-size:14px;
  11135. color:#FFFFFF;
  11136. text-align:left;
  11137. }
  11138. #u1984 .text {
  11139. position:absolute;
  11140. align-self:center;
  11141. padding:2px 2px 2px 0px;
  11142. box-sizing:border-box;
  11143. width:100%;
  11144. }
  11145. #u1984_text {
  11146. border-width:0px;
  11147. white-space:nowrap;
  11148. text-transform:none;
  11149. }
  11150. #u1985_div {
  11151. border-width:0px;
  11152. position:absolute;
  11153. left:0px;
  11154. top:0px;
  11155. width:35px;
  11156. height:21px;
  11157. background:inherit;
  11158. background-color:rgba(245, 154, 35, 1);
  11159. border:none;
  11160. border-radius:11px;
  11161. -moz-box-shadow:none;
  11162. -webkit-box-shadow:none;
  11163. box-shadow:none;
  11164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11165. font-weight:400;
  11166. font-style:normal;
  11167. font-size:12px;
  11168. color:#FFFFFF;
  11169. }
  11170. #u1985 {
  11171. border-width:0px;
  11172. position:absolute;
  11173. left:458px;
  11174. top:464px;
  11175. width:35px;
  11176. height:21px;
  11177. display:flex;
  11178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11179. font-weight:400;
  11180. font-style:normal;
  11181. font-size:12px;
  11182. color:#FFFFFF;
  11183. }
  11184. #u1985 .text {
  11185. position:absolute;
  11186. align-self:center;
  11187. padding:2px 2px 2px 2px;
  11188. box-sizing:border-box;
  11189. width:100%;
  11190. }
  11191. #u1985_text {
  11192. border-width:0px;
  11193. word-wrap:break-word;
  11194. text-transform:none;
  11195. }
  11196. #u1986_div {
  11197. border-width:0px;
  11198. position:absolute;
  11199. left:0px;
  11200. top:0px;
  11201. width:95px;
  11202. height:21px;
  11203. background:inherit;
  11204. background-color:rgba(245, 154, 35, 0);
  11205. border:none;
  11206. border-left:0px;
  11207. border-top:0px;
  11208. border-right:0px;
  11209. border-radius:0px;
  11210. border-bottom-right-radius:0px;
  11211. border-bottom-left-radius:0px;
  11212. -moz-box-shadow:none;
  11213. -webkit-box-shadow:none;
  11214. box-shadow:none;
  11215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11216. font-weight:400;
  11217. font-style:normal;
  11218. font-size:12px;
  11219. color:#FFFFFF;
  11220. text-align:left;
  11221. }
  11222. #u1986 {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:415px;
  11226. top:493px;
  11227. width:95px;
  11228. height:21px;
  11229. display:flex;
  11230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11231. font-weight:400;
  11232. font-style:normal;
  11233. font-size:12px;
  11234. color:#FFFFFF;
  11235. text-align:left;
  11236. }
  11237. #u1986 .text {
  11238. position:absolute;
  11239. align-self:center;
  11240. padding:2px 2px 2px 0px;
  11241. box-sizing:border-box;
  11242. width:100%;
  11243. }
  11244. #u1986_text {
  11245. border-width:0px;
  11246. white-space:nowrap;
  11247. text-transform:none;
  11248. }
  11249. #u1987_div {
  11250. border-width:0px;
  11251. position:absolute;
  11252. left:0px;
  11253. top:0px;
  11254. width:103px;
  11255. height:18px;
  11256. background:inherit;
  11257. background-color:rgba(245, 154, 35, 0);
  11258. border:none;
  11259. border-left:0px;
  11260. border-top:0px;
  11261. border-right:0px;
  11262. border-radius:0px;
  11263. border-bottom-right-radius:0px;
  11264. border-bottom-left-radius:0px;
  11265. -moz-box-shadow:none;
  11266. -webkit-box-shadow:none;
  11267. box-shadow:none;
  11268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11269. font-weight:400;
  11270. font-style:normal;
  11271. font-size:10px;
  11272. color:#FFFFFF;
  11273. text-align:left;
  11274. }
  11275. #u1987 {
  11276. border-width:0px;
  11277. position:absolute;
  11278. left:415px;
  11279. top:514px;
  11280. width:103px;
  11281. height:18px;
  11282. display:flex;
  11283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11284. font-weight:400;
  11285. font-style:normal;
  11286. font-size:10px;
  11287. color:#FFFFFF;
  11288. text-align:left;
  11289. }
  11290. #u1987 .text {
  11291. position:absolute;
  11292. align-self:center;
  11293. padding:2px 2px 2px 0px;
  11294. box-sizing:border-box;
  11295. width:100%;
  11296. }
  11297. #u1987_text {
  11298. border-width:0px;
  11299. white-space:nowrap;
  11300. text-transform:none;
  11301. }
  11302. #u1988_img {
  11303. border-width:0px;
  11304. position:absolute;
  11305. left:0px;
  11306. top:0px;
  11307. width:50px;
  11308. height:59px;
  11309. }
  11310. #u1988 {
  11311. border-width:0px;
  11312. position:absolute;
  11313. left:356px;
  11314. top:466px;
  11315. width:50px;
  11316. height:59px;
  11317. display:flex;
  11318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11319. font-weight:400;
  11320. font-style:normal;
  11321. color:#FFFFFF;
  11322. }
  11323. #u1988 .text {
  11324. position:absolute;
  11325. align-self:center;
  11326. padding:2px 2px 2px 2px;
  11327. box-sizing:border-box;
  11328. width:100%;
  11329. }
  11330. #u1988_text {
  11331. border-width:0px;
  11332. word-wrap:break-word;
  11333. text-transform:none;
  11334. }
  11335. #u1989 {
  11336. border-width:0px;
  11337. position:absolute;
  11338. left:0px;
  11339. top:0px;
  11340. width:0px;
  11341. height:0px;
  11342. }
  11343. #u1990_div {
  11344. border-width:0px;
  11345. position:absolute;
  11346. left:0px;
  11347. top:0px;
  11348. width:254px;
  11349. height:82px;
  11350. background:inherit;
  11351. background-color:rgba(245, 154, 35, 0.0980392156862745);
  11352. box-sizing:border-box;
  11353. border-width:1px;
  11354. border-style:solid;
  11355. border-color:rgba(121, 121, 121, 1);
  11356. border-radius:0px;
  11357. -moz-box-shadow:none;
  11358. -webkit-box-shadow:none;
  11359. box-shadow:none;
  11360. }
  11361. #u1990 {
  11362. border-width:0px;
  11363. position:absolute;
  11364. left:612px;
  11365. top:455px;
  11366. width:254px;
  11367. height:82px;
  11368. display:flex;
  11369. }
  11370. #u1990 .text {
  11371. position:absolute;
  11372. align-self:center;
  11373. padding:2px 2px 2px 2px;
  11374. box-sizing:border-box;
  11375. width:100%;
  11376. }
  11377. #u1990_text {
  11378. border-width:0px;
  11379. word-wrap:break-word;
  11380. text-transform:none;
  11381. visibility:hidden;
  11382. }
  11383. #u1991_div {
  11384. border-width:0px;
  11385. position:absolute;
  11386. left:0px;
  11387. top:0px;
  11388. width:45px;
  11389. height:24px;
  11390. background:inherit;
  11391. background-color:rgba(245, 154, 35, 0);
  11392. border:none;
  11393. border-left:0px;
  11394. border-top:0px;
  11395. border-right:0px;
  11396. border-radius:0px;
  11397. border-bottom-right-radius:0px;
  11398. border-bottom-left-radius:0px;
  11399. -moz-box-shadow:none;
  11400. -webkit-box-shadow:none;
  11401. box-shadow:none;
  11402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11403. font-weight:400;
  11404. font-style:normal;
  11405. font-size:14px;
  11406. color:#FFFFFF;
  11407. text-align:left;
  11408. }
  11409. #u1991 {
  11410. border-width:0px;
  11411. position:absolute;
  11412. left:679px;
  11413. top:462px;
  11414. width:45px;
  11415. height:24px;
  11416. display:flex;
  11417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11418. font-weight:400;
  11419. font-style:normal;
  11420. font-size:14px;
  11421. color:#FFFFFF;
  11422. text-align:left;
  11423. }
  11424. #u1991 .text {
  11425. position:absolute;
  11426. align-self:center;
  11427. padding:2px 2px 2px 0px;
  11428. box-sizing:border-box;
  11429. width:100%;
  11430. }
  11431. #u1991_text {
  11432. border-width:0px;
  11433. white-space:nowrap;
  11434. text-transform:none;
  11435. }
  11436. #u1992_div {
  11437. border-width:0px;
  11438. position:absolute;
  11439. left:0px;
  11440. top:0px;
  11441. width:95px;
  11442. height:21px;
  11443. background:inherit;
  11444. background-color:rgba(245, 154, 35, 0);
  11445. border:none;
  11446. border-left:0px;
  11447. border-top:0px;
  11448. border-right:0px;
  11449. border-radius:0px;
  11450. border-bottom-right-radius:0px;
  11451. border-bottom-left-radius:0px;
  11452. -moz-box-shadow:none;
  11453. -webkit-box-shadow:none;
  11454. box-shadow:none;
  11455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11456. font-weight:400;
  11457. font-style:normal;
  11458. font-size:12px;
  11459. color:#FFFFFF;
  11460. text-align:left;
  11461. }
  11462. #u1992 {
  11463. border-width:0px;
  11464. position:absolute;
  11465. left:679px;
  11466. top:493px;
  11467. width:95px;
  11468. height:21px;
  11469. display:flex;
  11470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11471. font-weight:400;
  11472. font-style:normal;
  11473. font-size:12px;
  11474. color:#FFFFFF;
  11475. text-align:left;
  11476. }
  11477. #u1992 .text {
  11478. position:absolute;
  11479. align-self:center;
  11480. padding:2px 2px 2px 0px;
  11481. box-sizing:border-box;
  11482. width:100%;
  11483. }
  11484. #u1992_text {
  11485. border-width:0px;
  11486. white-space:nowrap;
  11487. text-transform:none;
  11488. }
  11489. #u1993_div {
  11490. border-width:0px;
  11491. position:absolute;
  11492. left:0px;
  11493. top:0px;
  11494. width:103px;
  11495. height:18px;
  11496. background:inherit;
  11497. background-color:rgba(245, 154, 35, 0);
  11498. border:none;
  11499. border-left:0px;
  11500. border-top:0px;
  11501. border-right:0px;
  11502. border-radius:0px;
  11503. border-bottom-right-radius:0px;
  11504. border-bottom-left-radius:0px;
  11505. -moz-box-shadow:none;
  11506. -webkit-box-shadow:none;
  11507. box-shadow:none;
  11508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11509. font-weight:400;
  11510. font-style:normal;
  11511. font-size:10px;
  11512. color:#FFFFFF;
  11513. text-align:left;
  11514. }
  11515. #u1993 {
  11516. border-width:0px;
  11517. position:absolute;
  11518. left:679px;
  11519. top:514px;
  11520. width:103px;
  11521. height:18px;
  11522. display:flex;
  11523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11524. font-weight:400;
  11525. font-style:normal;
  11526. font-size:10px;
  11527. color:#FFFFFF;
  11528. text-align:left;
  11529. }
  11530. #u1993 .text {
  11531. position:absolute;
  11532. align-self:center;
  11533. padding:2px 2px 2px 0px;
  11534. box-sizing:border-box;
  11535. width:100%;
  11536. }
  11537. #u1993_text {
  11538. border-width:0px;
  11539. white-space:nowrap;
  11540. text-transform:none;
  11541. }
  11542. #u1994_img {
  11543. border-width:0px;
  11544. position:absolute;
  11545. left:0px;
  11546. top:0px;
  11547. width:50px;
  11548. height:59px;
  11549. }
  11550. #u1994 {
  11551. border-width:0px;
  11552. position:absolute;
  11553. left:620px;
  11554. top:466px;
  11555. width:50px;
  11556. height:59px;
  11557. display:flex;
  11558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11559. font-weight:400;
  11560. font-style:normal;
  11561. color:#FFFFFF;
  11562. }
  11563. #u1994 .text {
  11564. position:absolute;
  11565. align-self:center;
  11566. padding:2px 2px 2px 2px;
  11567. box-sizing:border-box;
  11568. width:100%;
  11569. }
  11570. #u1994_text {
  11571. border-width:0px;
  11572. word-wrap:break-word;
  11573. text-transform:none;
  11574. }
  11575. #u1995 {
  11576. border-width:0px;
  11577. position:absolute;
  11578. left:0px;
  11579. top:0px;
  11580. width:0px;
  11581. height:0px;
  11582. }
  11583. #u1996_div {
  11584. border-width:0px;
  11585. position:absolute;
  11586. left:0px;
  11587. top:0px;
  11588. width:254px;
  11589. height:82px;
  11590. background:inherit;
  11591. background-color:rgba(245, 154, 35, 0.0980392156862745);
  11592. box-sizing:border-box;
  11593. border-width:1px;
  11594. border-style:solid;
  11595. border-color:rgba(121, 121, 121, 1);
  11596. border-radius:0px;
  11597. -moz-box-shadow:none;
  11598. -webkit-box-shadow:none;
  11599. box-shadow:none;
  11600. }
  11601. #u1996 {
  11602. border-width:0px;
  11603. position:absolute;
  11604. left:876px;
  11605. top:455px;
  11606. width:254px;
  11607. height:82px;
  11608. display:flex;
  11609. }
  11610. #u1996 .text {
  11611. position:absolute;
  11612. align-self:center;
  11613. padding:2px 2px 2px 2px;
  11614. box-sizing:border-box;
  11615. width:100%;
  11616. }
  11617. #u1996_text {
  11618. border-width:0px;
  11619. word-wrap:break-word;
  11620. text-transform:none;
  11621. visibility:hidden;
  11622. }
  11623. #u1997_div {
  11624. border-width:0px;
  11625. position:absolute;
  11626. left:0px;
  11627. top:0px;
  11628. width:31px;
  11629. height:24px;
  11630. background:inherit;
  11631. background-color:rgba(245, 154, 35, 0);
  11632. border:none;
  11633. border-left:0px;
  11634. border-top:0px;
  11635. border-right:0px;
  11636. border-radius:0px;
  11637. border-bottom-right-radius:0px;
  11638. border-bottom-left-radius:0px;
  11639. -moz-box-shadow:none;
  11640. -webkit-box-shadow:none;
  11641. box-shadow:none;
  11642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11643. font-weight:400;
  11644. font-style:normal;
  11645. font-size:14px;
  11646. color:#FFFFFF;
  11647. text-align:left;
  11648. }
  11649. #u1997 {
  11650. border-width:0px;
  11651. position:absolute;
  11652. left:943px;
  11653. top:462px;
  11654. width:31px;
  11655. height:24px;
  11656. display:flex;
  11657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11658. font-weight:400;
  11659. font-style:normal;
  11660. font-size:14px;
  11661. color:#FFFFFF;
  11662. text-align:left;
  11663. }
  11664. #u1997 .text {
  11665. position:absolute;
  11666. align-self:center;
  11667. padding:2px 2px 2px 0px;
  11668. box-sizing:border-box;
  11669. width:100%;
  11670. }
  11671. #u1997_text {
  11672. border-width:0px;
  11673. white-space:nowrap;
  11674. text-transform:none;
  11675. }
  11676. #u1998_div {
  11677. border-width:0px;
  11678. position:absolute;
  11679. left:0px;
  11680. top:0px;
  11681. width:35px;
  11682. height:21px;
  11683. background:inherit;
  11684. background-color:rgba(245, 154, 35, 1);
  11685. border:none;
  11686. border-radius:11px;
  11687. -moz-box-shadow:none;
  11688. -webkit-box-shadow:none;
  11689. box-shadow:none;
  11690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11691. font-weight:400;
  11692. font-style:normal;
  11693. font-size:12px;
  11694. color:#FFFFFF;
  11695. }
  11696. #u1998 {
  11697. border-width:0px;
  11698. position:absolute;
  11699. left:978px;
  11700. top:464px;
  11701. width:35px;
  11702. height:21px;
  11703. display:flex;
  11704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11705. font-weight:400;
  11706. font-style:normal;
  11707. font-size:12px;
  11708. color:#FFFFFF;
  11709. }
  11710. #u1998 .text {
  11711. position:absolute;
  11712. align-self:center;
  11713. padding:2px 2px 2px 2px;
  11714. box-sizing:border-box;
  11715. width:100%;
  11716. }
  11717. #u1998_text {
  11718. border-width:0px;
  11719. word-wrap:break-word;
  11720. text-transform:none;
  11721. }
  11722. #u1999_div {
  11723. border-width:0px;
  11724. position:absolute;
  11725. left:0px;
  11726. top:0px;
  11727. width:71px;
  11728. height:21px;
  11729. background:inherit;
  11730. background-color:rgba(245, 154, 35, 0);
  11731. border:none;
  11732. border-left:0px;
  11733. border-top:0px;
  11734. border-right:0px;
  11735. border-radius:0px;
  11736. border-bottom-right-radius:0px;
  11737. border-bottom-left-radius:0px;
  11738. -moz-box-shadow:none;
  11739. -webkit-box-shadow:none;
  11740. box-shadow:none;
  11741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11742. font-weight:400;
  11743. font-style:normal;
  11744. font-size:12px;
  11745. color:#FFFFFF;
  11746. text-align:left;
  11747. }
  11748. #u1999 {
  11749. border-width:0px;
  11750. position:absolute;
  11751. left:943px;
  11752. top:493px;
  11753. width:71px;
  11754. height:21px;
  11755. display:flex;
  11756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11757. font-weight:400;
  11758. font-style:normal;
  11759. font-size:12px;
  11760. color:#FFFFFF;
  11761. text-align:left;
  11762. }
  11763. #u1999 .text {
  11764. position:absolute;
  11765. align-self:center;
  11766. padding:2px 2px 2px 0px;
  11767. box-sizing:border-box;
  11768. width:100%;
  11769. }
  11770. #u1999_text {
  11771. border-width:0px;
  11772. white-space:nowrap;
  11773. text-transform:none;
  11774. }
  11775. #u2000_div {
  11776. border-width:0px;
  11777. position:absolute;
  11778. left:0px;
  11779. top:0px;
  11780. width:103px;
  11781. height:18px;
  11782. background:inherit;
  11783. background-color:rgba(245, 154, 35, 0);
  11784. border:none;
  11785. border-left:0px;
  11786. border-top:0px;
  11787. border-right:0px;
  11788. border-radius:0px;
  11789. border-bottom-right-radius:0px;
  11790. border-bottom-left-radius:0px;
  11791. -moz-box-shadow:none;
  11792. -webkit-box-shadow:none;
  11793. box-shadow:none;
  11794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11795. font-weight:400;
  11796. font-style:normal;
  11797. font-size:10px;
  11798. color:#FFFFFF;
  11799. text-align:left;
  11800. }
  11801. #u2000 {
  11802. border-width:0px;
  11803. position:absolute;
  11804. left:943px;
  11805. top:514px;
  11806. width:103px;
  11807. height:18px;
  11808. display:flex;
  11809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11810. font-weight:400;
  11811. font-style:normal;
  11812. font-size:10px;
  11813. color:#FFFFFF;
  11814. text-align:left;
  11815. }
  11816. #u2000 .text {
  11817. position:absolute;
  11818. align-self:center;
  11819. padding:2px 2px 2px 0px;
  11820. box-sizing:border-box;
  11821. width:100%;
  11822. }
  11823. #u2000_text {
  11824. border-width:0px;
  11825. white-space:nowrap;
  11826. text-transform:none;
  11827. }
  11828. #u2001_img {
  11829. border-width:0px;
  11830. position:absolute;
  11831. left:0px;
  11832. top:0px;
  11833. width:50px;
  11834. height:59px;
  11835. }
  11836. #u2001 {
  11837. border-width:0px;
  11838. position:absolute;
  11839. left:884px;
  11840. top:466px;
  11841. width:50px;
  11842. height:59px;
  11843. display:flex;
  11844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11845. font-weight:400;
  11846. font-style:normal;
  11847. color:#FFFFFF;
  11848. }
  11849. #u2001 .text {
  11850. position:absolute;
  11851. align-self:center;
  11852. padding:2px 2px 2px 2px;
  11853. box-sizing:border-box;
  11854. width:100%;
  11855. }
  11856. #u2001_text {
  11857. border-width:0px;
  11858. word-wrap:break-word;
  11859. text-transform:none;
  11860. }
  11861. #u2002 {
  11862. border-width:0px;
  11863. position:absolute;
  11864. left:0px;
  11865. top:0px;
  11866. width:0px;
  11867. height:0px;
  11868. }
  11869. #u2003_div {
  11870. border-width:0px;
  11871. position:absolute;
  11872. left:0px;
  11873. top:0px;
  11874. width:254px;
  11875. height:82px;
  11876. background:inherit;
  11877. background-color:rgba(245, 154, 35, 0.0980392156862745);
  11878. box-sizing:border-box;
  11879. border-width:1px;
  11880. border-style:solid;
  11881. border-color:rgba(121, 121, 121, 1);
  11882. border-radius:0px;
  11883. -moz-box-shadow:none;
  11884. -webkit-box-shadow:none;
  11885. box-shadow:none;
  11886. }
  11887. #u2003 {
  11888. border-width:0px;
  11889. position:absolute;
  11890. left:348px;
  11891. top:547px;
  11892. width:254px;
  11893. height:82px;
  11894. display:flex;
  11895. }
  11896. #u2003 .text {
  11897. position:absolute;
  11898. align-self:center;
  11899. padding:2px 2px 2px 2px;
  11900. box-sizing:border-box;
  11901. width:100%;
  11902. }
  11903. #u2003_text {
  11904. border-width:0px;
  11905. word-wrap:break-word;
  11906. text-transform:none;
  11907. visibility:hidden;
  11908. }
  11909. #u2004_div {
  11910. border-width:0px;
  11911. position:absolute;
  11912. left:0px;
  11913. top:0px;
  11914. width:31px;
  11915. height:24px;
  11916. background:inherit;
  11917. background-color:rgba(245, 154, 35, 0);
  11918. border:none;
  11919. border-left:0px;
  11920. border-top:0px;
  11921. border-right:0px;
  11922. border-radius:0px;
  11923. border-bottom-right-radius:0px;
  11924. border-bottom-left-radius:0px;
  11925. -moz-box-shadow:none;
  11926. -webkit-box-shadow:none;
  11927. box-shadow:none;
  11928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11929. font-weight:400;
  11930. font-style:normal;
  11931. font-size:14px;
  11932. color:#FFFFFF;
  11933. text-align:left;
  11934. }
  11935. #u2004 {
  11936. border-width:0px;
  11937. position:absolute;
  11938. left:415px;
  11939. top:554px;
  11940. width:31px;
  11941. height:24px;
  11942. display:flex;
  11943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11944. font-weight:400;
  11945. font-style:normal;
  11946. font-size:14px;
  11947. color:#FFFFFF;
  11948. text-align:left;
  11949. }
  11950. #u2004 .text {
  11951. position:absolute;
  11952. align-self:center;
  11953. padding:2px 2px 2px 0px;
  11954. box-sizing:border-box;
  11955. width:100%;
  11956. }
  11957. #u2004_text {
  11958. border-width:0px;
  11959. white-space:nowrap;
  11960. text-transform:none;
  11961. }
  11962. #u2005_div {
  11963. border-width:0px;
  11964. position:absolute;
  11965. left:0px;
  11966. top:0px;
  11967. width:35px;
  11968. height:21px;
  11969. background:inherit;
  11970. background-color:rgba(245, 154, 35, 1);
  11971. border:none;
  11972. border-radius:11px;
  11973. -moz-box-shadow:none;
  11974. -webkit-box-shadow:none;
  11975. box-shadow:none;
  11976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11977. font-weight:400;
  11978. font-style:normal;
  11979. font-size:12px;
  11980. color:#FFFFFF;
  11981. }
  11982. #u2005 {
  11983. border-width:0px;
  11984. position:absolute;
  11985. left:458px;
  11986. top:556px;
  11987. width:35px;
  11988. height:21px;
  11989. display:flex;
  11990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11991. font-weight:400;
  11992. font-style:normal;
  11993. font-size:12px;
  11994. color:#FFFFFF;
  11995. }
  11996. #u2005 .text {
  11997. position:absolute;
  11998. align-self:center;
  11999. padding:2px 2px 2px 2px;
  12000. box-sizing:border-box;
  12001. width:100%;
  12002. }
  12003. #u2005_text {
  12004. border-width:0px;
  12005. word-wrap:break-word;
  12006. text-transform:none;
  12007. }
  12008. #u2006_div {
  12009. border-width:0px;
  12010. position:absolute;
  12011. left:0px;
  12012. top:0px;
  12013. width:95px;
  12014. height:21px;
  12015. background:inherit;
  12016. background-color:rgba(245, 154, 35, 0);
  12017. border:none;
  12018. border-left:0px;
  12019. border-top:0px;
  12020. border-right:0px;
  12021. border-radius:0px;
  12022. border-bottom-right-radius:0px;
  12023. border-bottom-left-radius:0px;
  12024. -moz-box-shadow:none;
  12025. -webkit-box-shadow:none;
  12026. box-shadow:none;
  12027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12028. font-weight:400;
  12029. font-style:normal;
  12030. font-size:12px;
  12031. color:#FFFFFF;
  12032. text-align:left;
  12033. }
  12034. #u2006 {
  12035. border-width:0px;
  12036. position:absolute;
  12037. left:415px;
  12038. top:585px;
  12039. width:95px;
  12040. height:21px;
  12041. display:flex;
  12042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12043. font-weight:400;
  12044. font-style:normal;
  12045. font-size:12px;
  12046. color:#FFFFFF;
  12047. text-align:left;
  12048. }
  12049. #u2006 .text {
  12050. position:absolute;
  12051. align-self:center;
  12052. padding:2px 2px 2px 0px;
  12053. box-sizing:border-box;
  12054. width:100%;
  12055. }
  12056. #u2006_text {
  12057. border-width:0px;
  12058. white-space:nowrap;
  12059. text-transform:none;
  12060. }
  12061. #u2007_div {
  12062. border-width:0px;
  12063. position:absolute;
  12064. left:0px;
  12065. top:0px;
  12066. width:103px;
  12067. height:18px;
  12068. background:inherit;
  12069. background-color:rgba(245, 154, 35, 0);
  12070. border:none;
  12071. border-left:0px;
  12072. border-top:0px;
  12073. border-right:0px;
  12074. border-radius:0px;
  12075. border-bottom-right-radius:0px;
  12076. border-bottom-left-radius:0px;
  12077. -moz-box-shadow:none;
  12078. -webkit-box-shadow:none;
  12079. box-shadow:none;
  12080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12081. font-weight:400;
  12082. font-style:normal;
  12083. font-size:10px;
  12084. color:#FFFFFF;
  12085. text-align:left;
  12086. }
  12087. #u2007 {
  12088. border-width:0px;
  12089. position:absolute;
  12090. left:415px;
  12091. top:606px;
  12092. width:103px;
  12093. height:18px;
  12094. display:flex;
  12095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12096. font-weight:400;
  12097. font-style:normal;
  12098. font-size:10px;
  12099. color:#FFFFFF;
  12100. text-align:left;
  12101. }
  12102. #u2007 .text {
  12103. position:absolute;
  12104. align-self:center;
  12105. padding:2px 2px 2px 0px;
  12106. box-sizing:border-box;
  12107. width:100%;
  12108. }
  12109. #u2007_text {
  12110. border-width:0px;
  12111. white-space:nowrap;
  12112. text-transform:none;
  12113. }
  12114. #u2008_img {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:50px;
  12120. height:59px;
  12121. }
  12122. #u2008 {
  12123. border-width:0px;
  12124. position:absolute;
  12125. left:356px;
  12126. top:558px;
  12127. width:50px;
  12128. height:59px;
  12129. display:flex;
  12130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12131. font-weight:400;
  12132. font-style:normal;
  12133. color:#FFFFFF;
  12134. }
  12135. #u2008 .text {
  12136. position:absolute;
  12137. align-self:center;
  12138. padding:2px 2px 2px 2px;
  12139. box-sizing:border-box;
  12140. width:100%;
  12141. }
  12142. #u2008_text {
  12143. border-width:0px;
  12144. word-wrap:break-word;
  12145. text-transform:none;
  12146. }
  12147. #u2009 {
  12148. border-width:0px;
  12149. position:absolute;
  12150. left:0px;
  12151. top:0px;
  12152. width:0px;
  12153. height:0px;
  12154. }
  12155. #u2010_div {
  12156. border-width:0px;
  12157. position:absolute;
  12158. left:0px;
  12159. top:0px;
  12160. width:254px;
  12161. height:82px;
  12162. background:inherit;
  12163. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12164. box-sizing:border-box;
  12165. border-width:1px;
  12166. border-style:solid;
  12167. border-color:rgba(121, 121, 121, 1);
  12168. border-radius:0px;
  12169. -moz-box-shadow:none;
  12170. -webkit-box-shadow:none;
  12171. box-shadow:none;
  12172. }
  12173. #u2010 {
  12174. border-width:0px;
  12175. position:absolute;
  12176. left:612px;
  12177. top:547px;
  12178. width:254px;
  12179. height:82px;
  12180. display:flex;
  12181. }
  12182. #u2010 .text {
  12183. position:absolute;
  12184. align-self:center;
  12185. padding:2px 2px 2px 2px;
  12186. box-sizing:border-box;
  12187. width:100%;
  12188. }
  12189. #u2010_text {
  12190. border-width:0px;
  12191. word-wrap:break-word;
  12192. text-transform:none;
  12193. visibility:hidden;
  12194. }
  12195. #u2011_div {
  12196. border-width:0px;
  12197. position:absolute;
  12198. left:0px;
  12199. top:0px;
  12200. width:45px;
  12201. height:24px;
  12202. background:inherit;
  12203. background-color:rgba(245, 154, 35, 0);
  12204. border:none;
  12205. border-left:0px;
  12206. border-top:0px;
  12207. border-right:0px;
  12208. border-radius:0px;
  12209. border-bottom-right-radius:0px;
  12210. border-bottom-left-radius:0px;
  12211. -moz-box-shadow:none;
  12212. -webkit-box-shadow:none;
  12213. box-shadow:none;
  12214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12215. font-weight:400;
  12216. font-style:normal;
  12217. font-size:14px;
  12218. color:#FFFFFF;
  12219. text-align:left;
  12220. }
  12221. #u2011 {
  12222. border-width:0px;
  12223. position:absolute;
  12224. left:679px;
  12225. top:554px;
  12226. width:45px;
  12227. height:24px;
  12228. display:flex;
  12229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12230. font-weight:400;
  12231. font-style:normal;
  12232. font-size:14px;
  12233. color:#FFFFFF;
  12234. text-align:left;
  12235. }
  12236. #u2011 .text {
  12237. position:absolute;
  12238. align-self:center;
  12239. padding:2px 2px 2px 0px;
  12240. box-sizing:border-box;
  12241. width:100%;
  12242. }
  12243. #u2011_text {
  12244. border-width:0px;
  12245. white-space:nowrap;
  12246. text-transform:none;
  12247. }
  12248. #u2012_div {
  12249. border-width:0px;
  12250. position:absolute;
  12251. left:0px;
  12252. top:0px;
  12253. width:95px;
  12254. height:21px;
  12255. background:inherit;
  12256. background-color:rgba(245, 154, 35, 0);
  12257. border:none;
  12258. border-left:0px;
  12259. border-top:0px;
  12260. border-right:0px;
  12261. border-radius:0px;
  12262. border-bottom-right-radius:0px;
  12263. border-bottom-left-radius:0px;
  12264. -moz-box-shadow:none;
  12265. -webkit-box-shadow:none;
  12266. box-shadow:none;
  12267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12268. font-weight:400;
  12269. font-style:normal;
  12270. font-size:12px;
  12271. color:#FFFFFF;
  12272. text-align:left;
  12273. }
  12274. #u2012 {
  12275. border-width:0px;
  12276. position:absolute;
  12277. left:679px;
  12278. top:585px;
  12279. width:95px;
  12280. height:21px;
  12281. display:flex;
  12282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12283. font-weight:400;
  12284. font-style:normal;
  12285. font-size:12px;
  12286. color:#FFFFFF;
  12287. text-align:left;
  12288. }
  12289. #u2012 .text {
  12290. position:absolute;
  12291. align-self:center;
  12292. padding:2px 2px 2px 0px;
  12293. box-sizing:border-box;
  12294. width:100%;
  12295. }
  12296. #u2012_text {
  12297. border-width:0px;
  12298. white-space:nowrap;
  12299. text-transform:none;
  12300. }
  12301. #u2013_div {
  12302. border-width:0px;
  12303. position:absolute;
  12304. left:0px;
  12305. top:0px;
  12306. width:103px;
  12307. height:18px;
  12308. background:inherit;
  12309. background-color:rgba(245, 154, 35, 0);
  12310. border:none;
  12311. border-left:0px;
  12312. border-top:0px;
  12313. border-right:0px;
  12314. border-radius:0px;
  12315. border-bottom-right-radius:0px;
  12316. border-bottom-left-radius:0px;
  12317. -moz-box-shadow:none;
  12318. -webkit-box-shadow:none;
  12319. box-shadow:none;
  12320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12321. font-weight:400;
  12322. font-style:normal;
  12323. font-size:10px;
  12324. color:#FFFFFF;
  12325. text-align:left;
  12326. }
  12327. #u2013 {
  12328. border-width:0px;
  12329. position:absolute;
  12330. left:679px;
  12331. top:606px;
  12332. width:103px;
  12333. height:18px;
  12334. display:flex;
  12335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12336. font-weight:400;
  12337. font-style:normal;
  12338. font-size:10px;
  12339. color:#FFFFFF;
  12340. text-align:left;
  12341. }
  12342. #u2013 .text {
  12343. position:absolute;
  12344. align-self:center;
  12345. padding:2px 2px 2px 0px;
  12346. box-sizing:border-box;
  12347. width:100%;
  12348. }
  12349. #u2013_text {
  12350. border-width:0px;
  12351. white-space:nowrap;
  12352. text-transform:none;
  12353. }
  12354. #u2014_img {
  12355. border-width:0px;
  12356. position:absolute;
  12357. left:0px;
  12358. top:0px;
  12359. width:50px;
  12360. height:59px;
  12361. }
  12362. #u2014 {
  12363. border-width:0px;
  12364. position:absolute;
  12365. left:620px;
  12366. top:558px;
  12367. width:50px;
  12368. height:59px;
  12369. display:flex;
  12370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12371. font-weight:400;
  12372. font-style:normal;
  12373. color:#FFFFFF;
  12374. }
  12375. #u2014 .text {
  12376. position:absolute;
  12377. align-self:center;
  12378. padding:2px 2px 2px 2px;
  12379. box-sizing:border-box;
  12380. width:100%;
  12381. }
  12382. #u2014_text {
  12383. border-width:0px;
  12384. word-wrap:break-word;
  12385. text-transform:none;
  12386. }
  12387. #u2015 {
  12388. border-width:0px;
  12389. position:absolute;
  12390. left:0px;
  12391. top:0px;
  12392. width:0px;
  12393. height:0px;
  12394. }
  12395. #u2016_div {
  12396. border-width:0px;
  12397. position:absolute;
  12398. left:0px;
  12399. top:0px;
  12400. width:254px;
  12401. height:82px;
  12402. background:inherit;
  12403. background-color:rgba(245, 154, 35, 0.0980392156862745);
  12404. box-sizing:border-box;
  12405. border-width:1px;
  12406. border-style:solid;
  12407. border-color:rgba(121, 121, 121, 1);
  12408. border-radius:0px;
  12409. -moz-box-shadow:none;
  12410. -webkit-box-shadow:none;
  12411. box-shadow:none;
  12412. }
  12413. #u2016 {
  12414. border-width:0px;
  12415. position:absolute;
  12416. left:876px;
  12417. top:547px;
  12418. width:254px;
  12419. height:82px;
  12420. display:flex;
  12421. }
  12422. #u2016 .text {
  12423. position:absolute;
  12424. align-self:center;
  12425. padding:2px 2px 2px 2px;
  12426. box-sizing:border-box;
  12427. width:100%;
  12428. }
  12429. #u2016_text {
  12430. border-width:0px;
  12431. word-wrap:break-word;
  12432. text-transform:none;
  12433. visibility:hidden;
  12434. }
  12435. #u2017_div {
  12436. border-width:0px;
  12437. position:absolute;
  12438. left:0px;
  12439. top:0px;
  12440. width:31px;
  12441. height:24px;
  12442. background:inherit;
  12443. background-color:rgba(245, 154, 35, 0);
  12444. border:none;
  12445. border-left:0px;
  12446. border-top:0px;
  12447. border-right:0px;
  12448. border-radius:0px;
  12449. border-bottom-right-radius:0px;
  12450. border-bottom-left-radius:0px;
  12451. -moz-box-shadow:none;
  12452. -webkit-box-shadow:none;
  12453. box-shadow:none;
  12454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12455. font-weight:400;
  12456. font-style:normal;
  12457. font-size:14px;
  12458. color:#FFFFFF;
  12459. text-align:left;
  12460. }
  12461. #u2017 {
  12462. border-width:0px;
  12463. position:absolute;
  12464. left:943px;
  12465. top:554px;
  12466. width:31px;
  12467. height:24px;
  12468. display:flex;
  12469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12470. font-weight:400;
  12471. font-style:normal;
  12472. font-size:14px;
  12473. color:#FFFFFF;
  12474. text-align:left;
  12475. }
  12476. #u2017 .text {
  12477. position:absolute;
  12478. align-self:center;
  12479. padding:2px 2px 2px 0px;
  12480. box-sizing:border-box;
  12481. width:100%;
  12482. }
  12483. #u2017_text {
  12484. border-width:0px;
  12485. white-space:nowrap;
  12486. text-transform:none;
  12487. }
  12488. #u2018_div {
  12489. border-width:0px;
  12490. position:absolute;
  12491. left:0px;
  12492. top:0px;
  12493. width:35px;
  12494. height:21px;
  12495. background:inherit;
  12496. background-color:rgba(245, 154, 35, 1);
  12497. border:none;
  12498. border-radius:11px;
  12499. -moz-box-shadow:none;
  12500. -webkit-box-shadow:none;
  12501. box-shadow:none;
  12502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12503. font-weight:400;
  12504. font-style:normal;
  12505. font-size:12px;
  12506. color:#FFFFFF;
  12507. }
  12508. #u2018 {
  12509. border-width:0px;
  12510. position:absolute;
  12511. left:978px;
  12512. top:556px;
  12513. width:35px;
  12514. height:21px;
  12515. display:flex;
  12516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12517. font-weight:400;
  12518. font-style:normal;
  12519. font-size:12px;
  12520. color:#FFFFFF;
  12521. }
  12522. #u2018 .text {
  12523. position:absolute;
  12524. align-self:center;
  12525. padding:2px 2px 2px 2px;
  12526. box-sizing:border-box;
  12527. width:100%;
  12528. }
  12529. #u2018_text {
  12530. border-width:0px;
  12531. word-wrap:break-word;
  12532. text-transform:none;
  12533. }
  12534. #u2019_div {
  12535. border-width:0px;
  12536. position:absolute;
  12537. left:0px;
  12538. top:0px;
  12539. width:71px;
  12540. height:21px;
  12541. background:inherit;
  12542. background-color:rgba(245, 154, 35, 0);
  12543. border:none;
  12544. border-left:0px;
  12545. border-top:0px;
  12546. border-right:0px;
  12547. border-radius:0px;
  12548. border-bottom-right-radius:0px;
  12549. border-bottom-left-radius:0px;
  12550. -moz-box-shadow:none;
  12551. -webkit-box-shadow:none;
  12552. box-shadow:none;
  12553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12554. font-weight:400;
  12555. font-style:normal;
  12556. font-size:12px;
  12557. color:#FFFFFF;
  12558. text-align:left;
  12559. }
  12560. #u2019 {
  12561. border-width:0px;
  12562. position:absolute;
  12563. left:943px;
  12564. top:585px;
  12565. width:71px;
  12566. height:21px;
  12567. display:flex;
  12568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12569. font-weight:400;
  12570. font-style:normal;
  12571. font-size:12px;
  12572. color:#FFFFFF;
  12573. text-align:left;
  12574. }
  12575. #u2019 .text {
  12576. position:absolute;
  12577. align-self:center;
  12578. padding:2px 2px 2px 0px;
  12579. box-sizing:border-box;
  12580. width:100%;
  12581. }
  12582. #u2019_text {
  12583. border-width:0px;
  12584. white-space:nowrap;
  12585. text-transform:none;
  12586. }
  12587. #u2020_div {
  12588. border-width:0px;
  12589. position:absolute;
  12590. left:0px;
  12591. top:0px;
  12592. width:103px;
  12593. height:18px;
  12594. background:inherit;
  12595. background-color:rgba(245, 154, 35, 0);
  12596. border:none;
  12597. border-left:0px;
  12598. border-top:0px;
  12599. border-right:0px;
  12600. border-radius:0px;
  12601. border-bottom-right-radius:0px;
  12602. border-bottom-left-radius:0px;
  12603. -moz-box-shadow:none;
  12604. -webkit-box-shadow:none;
  12605. box-shadow:none;
  12606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12607. font-weight:400;
  12608. font-style:normal;
  12609. font-size:10px;
  12610. color:#FFFFFF;
  12611. text-align:left;
  12612. }
  12613. #u2020 {
  12614. border-width:0px;
  12615. position:absolute;
  12616. left:943px;
  12617. top:606px;
  12618. width:103px;
  12619. height:18px;
  12620. display:flex;
  12621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12622. font-weight:400;
  12623. font-style:normal;
  12624. font-size:10px;
  12625. color:#FFFFFF;
  12626. text-align:left;
  12627. }
  12628. #u2020 .text {
  12629. position:absolute;
  12630. align-self:center;
  12631. padding:2px 2px 2px 0px;
  12632. box-sizing:border-box;
  12633. width:100%;
  12634. }
  12635. #u2020_text {
  12636. border-width:0px;
  12637. white-space:nowrap;
  12638. text-transform:none;
  12639. }
  12640. #u2021_img {
  12641. border-width:0px;
  12642. position:absolute;
  12643. left:0px;
  12644. top:0px;
  12645. width:50px;
  12646. height:59px;
  12647. }
  12648. #u2021 {
  12649. border-width:0px;
  12650. position:absolute;
  12651. left:884px;
  12652. top:558px;
  12653. width:50px;
  12654. height:59px;
  12655. display:flex;
  12656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12657. font-weight:400;
  12658. font-style:normal;
  12659. color:#FFFFFF;
  12660. }
  12661. #u2021 .text {
  12662. position:absolute;
  12663. align-self:center;
  12664. padding:2px 2px 2px 2px;
  12665. box-sizing:border-box;
  12666. width:100%;
  12667. }
  12668. #u2021_text {
  12669. border-width:0px;
  12670. word-wrap:break-word;
  12671. text-transform:none;
  12672. }