styles.css 126 KB

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