styles.css 127 KB

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