styles.css 161 KB

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