styles.css 152 KB

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