styles.css 218 KB

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