styles.css 186 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1979px;
  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. #u3839_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1510px;
  25. height:858px;
  26. }
  27. #u3839 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1510px;
  33. height:858px;
  34. display:flex;
  35. }
  36. #u3839 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u3839_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u3840 {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:0px;
  55. height:0px;
  56. }
  57. #u3841 {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:0px;
  63. height:0px;
  64. }
  65. #u3842_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. #u3842 {
  86. border-width:0px;
  87. position:absolute;
  88. left:497px;
  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. #u3842 .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. #u3842_text {
  107. border-width:0px;
  108. white-space:nowrap;
  109. text-transform:none;
  110. }
  111. #u3843_img {
  112. border-width:0px;
  113. position:absolute;
  114. left:0px;
  115. top:0px;
  116. width:33px;
  117. height:39px;
  118. }
  119. #u3843 {
  120. border-width:0px;
  121. position:absolute;
  122. left:509px;
  123. top:790px;
  124. width:33px;
  125. height:39px;
  126. display:flex;
  127. color:#FFFFFF;
  128. }
  129. #u3843 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u3843_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. }
  141. #u3844 {
  142. border-width:0px;
  143. position:absolute;
  144. left:0px;
  145. top:0px;
  146. width:0px;
  147. height:0px;
  148. }
  149. #u3845_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. #u3845 {
  170. border-width:0px;
  171. position:absolute;
  172. left:573px;
  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. #u3845 .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. #u3845_text {
  191. border-width:0px;
  192. white-space:nowrap;
  193. text-transform:none;
  194. }
  195. #u3846_img {
  196. border-width:0px;
  197. position:absolute;
  198. left:0px;
  199. top:0px;
  200. width:33px;
  201. height:39px;
  202. }
  203. #u3846 {
  204. border-width:0px;
  205. position:absolute;
  206. left:585px;
  207. top:790px;
  208. width:33px;
  209. height:39px;
  210. display:flex;
  211. color:#FFFFFF;
  212. }
  213. #u3846 .text {
  214. position:absolute;
  215. align-self:center;
  216. padding:2px 2px 2px 2px;
  217. box-sizing:border-box;
  218. width:100%;
  219. }
  220. #u3846_text {
  221. border-width:0px;
  222. word-wrap:break-word;
  223. text-transform:none;
  224. }
  225. #u3847 {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:0px;
  231. height:0px;
  232. }
  233. #u3848_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. #u3848 {
  254. border-width:0px;
  255. position:absolute;
  256. left:423px;
  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. #u3848 .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. #u3848_text {
  275. border-width:0px;
  276. white-space:nowrap;
  277. text-transform:none;
  278. }
  279. #u3849_img {
  280. border-width:0px;
  281. position:absolute;
  282. left:0px;
  283. top:0px;
  284. width:33px;
  285. height:39px;
  286. }
  287. #u3849 {
  288. border-width:0px;
  289. position:absolute;
  290. left:435px;
  291. top:790px;
  292. width:33px;
  293. height:39px;
  294. display:flex;
  295. color:#FFFFFF;
  296. }
  297. #u3849 .text {
  298. position:absolute;
  299. align-self:center;
  300. padding:2px 2px 2px 2px;
  301. box-sizing:border-box;
  302. width:100%;
  303. }
  304. #u3849_text {
  305. border-width:0px;
  306. word-wrap:break-word;
  307. text-transform:none;
  308. }
  309. #u3850_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. #u3850 {
  330. border-width:0px;
  331. position:absolute;
  332. left:423px;
  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. #u3850 .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. #u3850_text {
  351. border-width:0px;
  352. word-wrap:break-word;
  353. text-transform:none;
  354. }
  355. #u3851 {
  356. border-width:0px;
  357. position:absolute;
  358. left:0px;
  359. top:0px;
  360. width:0px;
  361. height:0px;
  362. }
  363. #u3852_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. #u3852 {
  384. border-width:0px;
  385. position:absolute;
  386. left:651px;
  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. #u3852 .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. #u3852_text {
  405. border-width:0px;
  406. white-space:nowrap;
  407. text-transform:none;
  408. }
  409. #u3853_img {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:33px;
  415. height:39px;
  416. }
  417. #u3853 {
  418. border-width:0px;
  419. position:absolute;
  420. left:663px;
  421. top:790px;
  422. width:33px;
  423. height:39px;
  424. display:flex;
  425. color:#FFFFFF;
  426. }
  427. #u3853 .text {
  428. position:absolute;
  429. align-self:center;
  430. padding:2px 2px 2px 2px;
  431. box-sizing:border-box;
  432. width:100%;
  433. }
  434. #u3853_text {
  435. border-width:0px;
  436. word-wrap:break-word;
  437. text-transform:none;
  438. }
  439. #u3854 {
  440. border-width:0px;
  441. position:absolute;
  442. left:0px;
  443. top:0px;
  444. width:0px;
  445. height:0px;
  446. }
  447. #u3855_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. #u3855 {
  468. border-width:0px;
  469. position:absolute;
  470. left:799px;
  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. #u3855 .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. #u3855_text {
  489. border-width:0px;
  490. white-space:nowrap;
  491. text-transform:none;
  492. }
  493. #u3856_img {
  494. border-width:0px;
  495. position:absolute;
  496. left:0px;
  497. top:0px;
  498. width:33px;
  499. height:39px;
  500. }
  501. #u3856 {
  502. border-width:0px;
  503. position:absolute;
  504. left:811px;
  505. top:790px;
  506. width:33px;
  507. height:39px;
  508. display:flex;
  509. color:#FFFFFF;
  510. }
  511. #u3856 .text {
  512. position:absolute;
  513. align-self:center;
  514. padding:2px 2px 2px 2px;
  515. box-sizing:border-box;
  516. width:100%;
  517. }
  518. #u3856_text {
  519. border-width:0px;
  520. word-wrap:break-word;
  521. text-transform:none;
  522. }
  523. #u3857 {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:0px;
  529. height:0px;
  530. }
  531. #u3858_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. #u3858 {
  552. border-width:0px;
  553. position:absolute;
  554. left:874px;
  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. #u3858 .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. #u3858_text {
  573. border-width:0px;
  574. white-space:nowrap;
  575. text-transform:none;
  576. }
  577. #u3859_img {
  578. border-width:0px;
  579. position:absolute;
  580. left:0px;
  581. top:0px;
  582. width:33px;
  583. height:39px;
  584. }
  585. #u3859 {
  586. border-width:0px;
  587. position:absolute;
  588. left:886px;
  589. top:790px;
  590. width:33px;
  591. height:39px;
  592. display:flex;
  593. color:#FFFFFF;
  594. }
  595. #u3859 .text {
  596. position:absolute;
  597. align-self:center;
  598. padding:2px 2px 2px 2px;
  599. box-sizing:border-box;
  600. width:100%;
  601. }
  602. #u3859_text {
  603. border-width:0px;
  604. word-wrap:break-word;
  605. text-transform:none;
  606. }
  607. #u3860 {
  608. border-width:0px;
  609. position:absolute;
  610. left:0px;
  611. top:0px;
  612. width:0px;
  613. height:0px;
  614. }
  615. #u3861_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. #u3861 {
  636. border-width:0px;
  637. position:absolute;
  638. left:726px;
  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. #u3861 .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. #u3861_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u3862_img {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:33px;
  667. height:39px;
  668. }
  669. #u3862 {
  670. border-width:0px;
  671. position:absolute;
  672. left:737px;
  673. top:790px;
  674. width:33px;
  675. height:39px;
  676. display:flex;
  677. color:#FFFFFF;
  678. }
  679. #u3862 .text {
  680. position:absolute;
  681. align-self:center;
  682. padding:2px 2px 2px 2px;
  683. box-sizing:border-box;
  684. width:100%;
  685. }
  686. #u3862_text {
  687. border-width:0px;
  688. word-wrap:break-word;
  689. text-transform:none;
  690. }
  691. #u3863 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u3864_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. #u3864 {
  720. border-width:0px;
  721. position:absolute;
  722. left:947px;
  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. #u3864 .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. #u3864_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u3865_img {
  746. border-width:0px;
  747. position:absolute;
  748. left:0px;
  749. top:0px;
  750. width:33px;
  751. height:39px;
  752. }
  753. #u3865 {
  754. border-width:0px;
  755. position:absolute;
  756. left:960px;
  757. top:790px;
  758. width:33px;
  759. height:39px;
  760. display:flex;
  761. color:#FFFFFF;
  762. }
  763. #u3865 .text {
  764. position:absolute;
  765. align-self:center;
  766. padding:2px 2px 2px 2px;
  767. box-sizing:border-box;
  768. width:100%;
  769. }
  770. #u3865_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. }
  775. #u3866 {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:0px;
  781. height:0px;
  782. }
  783. #u3867_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. #u3867 {
  805. border-width:0px;
  806. position:absolute;
  807. left:1019px;
  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. #u3867 .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. #u3867_text {
  827. border-width:0px;
  828. word-wrap:break-word;
  829. text-transform:none;
  830. }
  831. #u3868_img {
  832. border-width:0px;
  833. position:absolute;
  834. left:0px;
  835. top:0px;
  836. width:33px;
  837. height:39px;
  838. }
  839. #u3868 {
  840. border-width:0px;
  841. position:absolute;
  842. left:1033px;
  843. top:790px;
  844. width:33px;
  845. height:39px;
  846. display:flex;
  847. color:#FFFFFF;
  848. }
  849. #u3868 .text {
  850. position:absolute;
  851. align-self:center;
  852. padding:2px 2px 2px 2px;
  853. box-sizing:border-box;
  854. width:100%;
  855. }
  856. #u3868_text {
  857. border-width:0px;
  858. word-wrap:break-word;
  859. text-transform:none;
  860. }
  861. #u3869 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u3870_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:80px;
  875. height:30px;
  876. background:inherit;
  877. background-color:rgba(245, 154, 35, 1);
  878. box-sizing:border-box;
  879. border-width:1px;
  880. border-style:solid;
  881. border-color:rgba(245, 154, 35, 1);
  882. border-radius:4px;
  883. border-top-right-radius:0px;
  884. border-bottom-right-radius:0px;
  885. -moz-box-shadow:none;
  886. -webkit-box-shadow:none;
  887. box-shadow:none;
  888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  889. font-weight:400;
  890. font-style:normal;
  891. font-size:15px;
  892. color:#FFFFFF;
  893. }
  894. #u3870 {
  895. border-width:0px;
  896. position:absolute;
  897. left:606px;
  898. top:82px;
  899. width:80px;
  900. height:30px;
  901. display:flex;
  902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  903. font-weight:400;
  904. font-style:normal;
  905. font-size:15px;
  906. color:#FFFFFF;
  907. }
  908. #u3870 .text {
  909. position:absolute;
  910. align-self:center;
  911. padding:2px 2px 2px 2px;
  912. box-sizing:border-box;
  913. width:100%;
  914. }
  915. #u3870_text {
  916. border-width:0px;
  917. word-wrap:break-word;
  918. text-transform:none;
  919. }
  920. #u3871_div {
  921. border-width:0px;
  922. position:absolute;
  923. left:0px;
  924. top:0px;
  925. width:80px;
  926. height:30px;
  927. background:inherit;
  928. background-color:rgba(245, 154, 35, 0.0980392156862745);
  929. box-sizing:border-box;
  930. border-width:1px;
  931. border-style:solid;
  932. border-color:rgba(245, 154, 35, 1);
  933. border-radius:0px;
  934. border-top-right-radius:0px;
  935. border-bottom-right-radius:0px;
  936. -moz-box-shadow:none;
  937. -webkit-box-shadow:none;
  938. box-shadow:none;
  939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  940. font-weight:400;
  941. font-style:normal;
  942. font-size:15px;
  943. color:#FFFFFF;
  944. }
  945. #u3871 {
  946. border-width:0px;
  947. position:absolute;
  948. left:686px;
  949. top:82px;
  950. width:80px;
  951. height:30px;
  952. display:flex;
  953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  954. font-weight:400;
  955. font-style:normal;
  956. font-size:15px;
  957. color:#FFFFFF;
  958. }
  959. #u3871 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:2px 2px 2px 2px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u3871_text {
  967. border-width:0px;
  968. word-wrap:break-word;
  969. text-transform:none;
  970. }
  971. #u3872_div {
  972. border-width:0px;
  973. position:absolute;
  974. left:0px;
  975. top:0px;
  976. width:80px;
  977. height:30px;
  978. background:inherit;
  979. background-color:rgba(245, 154, 35, 0.0980392156862745);
  980. box-sizing:border-box;
  981. border-width:1px;
  982. border-style:solid;
  983. border-color:rgba(245, 154, 35, 1);
  984. border-radius:0px;
  985. border-top-right-radius:0px;
  986. border-bottom-right-radius:0px;
  987. -moz-box-shadow:none;
  988. -webkit-box-shadow:none;
  989. box-shadow:none;
  990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  991. font-weight:400;
  992. font-style:normal;
  993. font-size:15px;
  994. color:#FFFFFF;
  995. }
  996. #u3872 {
  997. border-width:0px;
  998. position:absolute;
  999. left:766px;
  1000. top:82px;
  1001. width:80px;
  1002. height:30px;
  1003. display:flex;
  1004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1005. font-weight:400;
  1006. font-style:normal;
  1007. font-size:15px;
  1008. color:#FFFFFF;
  1009. }
  1010. #u3872 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:2px 2px 2px 2px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u3872_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. }
  1022. #u3873_div {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:0px;
  1026. top:0px;
  1027. width:240px;
  1028. height:40px;
  1029. background:inherit;
  1030. background-color:rgba(245, 154, 35, 0.2);
  1031. box-sizing:border-box;
  1032. border-width:2px;
  1033. border-style:solid;
  1034. border-color:rgba(245, 154, 35, 1);
  1035. border-left:0px;
  1036. border-top:0px;
  1037. border-right:0px;
  1038. border-radius:0px;
  1039. border-bottom-right-radius:0px;
  1040. border-bottom-left-radius:0px;
  1041. -moz-box-shadow:none;
  1042. -webkit-box-shadow:none;
  1043. box-shadow:none;
  1044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1045. font-weight:400;
  1046. font-style:normal;
  1047. font-size:18px;
  1048. color:#FFFFFF;
  1049. text-align:left;
  1050. }
  1051. #u3873 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:31px;
  1055. top:137px;
  1056. width:240px;
  1057. height:40px;
  1058. display:flex;
  1059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1060. font-weight:400;
  1061. font-style:normal;
  1062. font-size:18px;
  1063. color:#FFFFFF;
  1064. text-align:left;
  1065. }
  1066. #u3873 .text {
  1067. position:absolute;
  1068. align-self:center;
  1069. padding:2px 2px 2px 10px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u3873_text {
  1074. border-width:0px;
  1075. word-wrap:break-word;
  1076. text-transform:none;
  1077. }
  1078. #u3874 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:0px;
  1084. height:0px;
  1085. }
  1086. #u3875_img {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:-5px;
  1090. top:-5px;
  1091. width:30px;
  1092. height:40px;
  1093. }
  1094. #u3875 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:522px;
  1098. top:360px;
  1099. width:20px;
  1100. height:30px;
  1101. display:flex;
  1102. }
  1103. #u3875 .text {
  1104. position:absolute;
  1105. align-self:center;
  1106. padding:2px 2px 2px 2px;
  1107. box-sizing:border-box;
  1108. width:100%;
  1109. }
  1110. #u3875_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u3876_img {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:-5px;
  1120. top:-5px;
  1121. width:30px;
  1122. height:40px;
  1123. }
  1124. #u3876 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:587px;
  1128. top:443px;
  1129. width:20px;
  1130. height:30px;
  1131. display:flex;
  1132. }
  1133. #u3876 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u3876_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. visibility:hidden;
  1145. }
  1146. #u3877_img {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:-5px;
  1150. top:-5px;
  1151. width:30px;
  1152. height:40px;
  1153. }
  1154. #u3877 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:415px;
  1158. top:454px;
  1159. width:20px;
  1160. height:30px;
  1161. display:flex;
  1162. }
  1163. #u3877 .text {
  1164. position:absolute;
  1165. align-self:center;
  1166. padding:2px 2px 2px 2px;
  1167. box-sizing:border-box;
  1168. width:100%;
  1169. }
  1170. #u3877_text {
  1171. border-width:0px;
  1172. word-wrap:break-word;
  1173. text-transform:none;
  1174. visibility:hidden;
  1175. }
  1176. #u3878_img {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:-5px;
  1180. top:-5px;
  1181. width:30px;
  1182. height:40px;
  1183. }
  1184. #u3878 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:358px;
  1188. top:446px;
  1189. width:20px;
  1190. height:30px;
  1191. display:flex;
  1192. }
  1193. #u3878 .text {
  1194. position:absolute;
  1195. align-self:center;
  1196. padding:2px 2px 2px 2px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u3878_text {
  1201. border-width:0px;
  1202. word-wrap:break-word;
  1203. text-transform:none;
  1204. visibility:hidden;
  1205. }
  1206. #u3879_img {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:-5px;
  1210. top:-5px;
  1211. width:30px;
  1212. height:40px;
  1213. }
  1214. #u3879 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:358px;
  1218. top:377px;
  1219. width:20px;
  1220. height:30px;
  1221. display:flex;
  1222. }
  1223. #u3879 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u3879_text {
  1231. border-width:0px;
  1232. word-wrap:break-word;
  1233. text-transform:none;
  1234. visibility:hidden;
  1235. }
  1236. #u3880_img {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:-5px;
  1240. top:-5px;
  1241. width:30px;
  1242. height:40px;
  1243. }
  1244. #u3880 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:782px;
  1248. top:341px;
  1249. width:20px;
  1250. height:30px;
  1251. display:flex;
  1252. }
  1253. #u3880 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 2px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u3880_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. visibility:hidden;
  1265. }
  1266. #u3881_img {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:-5px;
  1270. top:-5px;
  1271. width:30px;
  1272. height:40px;
  1273. }
  1274. #u3881 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:701px;
  1278. top:409px;
  1279. width:20px;
  1280. height:30px;
  1281. display:flex;
  1282. }
  1283. #u3881 .text {
  1284. position:absolute;
  1285. align-self:center;
  1286. padding:2px 2px 2px 2px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u3881_text {
  1291. border-width:0px;
  1292. word-wrap:break-word;
  1293. text-transform:none;
  1294. visibility:hidden;
  1295. }
  1296. #u3882_img {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:-5px;
  1300. top:-5px;
  1301. width:30px;
  1302. height:40px;
  1303. }
  1304. #u3882 {
  1305. border-width:0px;
  1306. position:absolute;
  1307. left:698px;
  1308. top:496px;
  1309. width:20px;
  1310. height:30px;
  1311. display:flex;
  1312. }
  1313. #u3882 .text {
  1314. position:absolute;
  1315. align-self:center;
  1316. padding:2px 2px 2px 2px;
  1317. box-sizing:border-box;
  1318. width:100%;
  1319. }
  1320. #u3882_text {
  1321. border-width:0px;
  1322. word-wrap:break-word;
  1323. text-transform:none;
  1324. visibility:hidden;
  1325. }
  1326. #u3883_img {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:-5px;
  1330. top:-5px;
  1331. width:30px;
  1332. height:40px;
  1333. }
  1334. #u3883 {
  1335. border-width:0px;
  1336. position:absolute;
  1337. left:820px;
  1338. top:487px;
  1339. width:20px;
  1340. height:30px;
  1341. display:flex;
  1342. }
  1343. #u3883 .text {
  1344. position:absolute;
  1345. align-self:center;
  1346. padding:2px 2px 2px 2px;
  1347. box-sizing:border-box;
  1348. width:100%;
  1349. }
  1350. #u3883_text {
  1351. border-width:0px;
  1352. word-wrap:break-word;
  1353. text-transform:none;
  1354. visibility:hidden;
  1355. }
  1356. #u3884_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:-5px;
  1360. top:-5px;
  1361. width:30px;
  1362. height:40px;
  1363. }
  1364. #u3884 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:918px;
  1368. top:336px;
  1369. width:20px;
  1370. height:30px;
  1371. display:flex;
  1372. }
  1373. #u3884 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u3884_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u3885_img {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:-5px;
  1390. top:-5px;
  1391. width:30px;
  1392. height:40px;
  1393. }
  1394. #u3885 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:870px;
  1398. top:316px;
  1399. width:20px;
  1400. height:30px;
  1401. display:flex;
  1402. }
  1403. #u3885 .text {
  1404. position:absolute;
  1405. align-self:center;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u3885_text {
  1411. border-width:0px;
  1412. word-wrap:break-word;
  1413. text-transform:none;
  1414. visibility:hidden;
  1415. }
  1416. #u3886_img {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:-5px;
  1420. top:-5px;
  1421. width:30px;
  1422. height:40px;
  1423. }
  1424. #u3886 {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:865px;
  1428. top:351px;
  1429. width:20px;
  1430. height:30px;
  1431. display:flex;
  1432. }
  1433. #u3886 .text {
  1434. position:absolute;
  1435. align-self:center;
  1436. padding:2px 2px 2px 2px;
  1437. box-sizing:border-box;
  1438. width:100%;
  1439. }
  1440. #u3886_text {
  1441. border-width:0px;
  1442. word-wrap:break-word;
  1443. text-transform:none;
  1444. visibility:hidden;
  1445. }
  1446. #u3887_img {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:-5px;
  1450. top:-5px;
  1451. width:30px;
  1452. height:40px;
  1453. }
  1454. #u3887 {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:820px;
  1458. top:351px;
  1459. width:20px;
  1460. height:30px;
  1461. display:flex;
  1462. }
  1463. #u3887 .text {
  1464. position:absolute;
  1465. align-self:center;
  1466. padding:2px 2px 2px 2px;
  1467. box-sizing:border-box;
  1468. width:100%;
  1469. }
  1470. #u3887_text {
  1471. border-width:0px;
  1472. word-wrap:break-word;
  1473. text-transform:none;
  1474. visibility:hidden;
  1475. }
  1476. #u3888_img {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:-5px;
  1480. top:-5px;
  1481. width:30px;
  1482. height:40px;
  1483. }
  1484. #u3888 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:776px;
  1488. top:336px;
  1489. width:20px;
  1490. height:30px;
  1491. display:flex;
  1492. }
  1493. #u3888 .text {
  1494. position:absolute;
  1495. align-self:center;
  1496. padding:2px 2px 2px 2px;
  1497. box-sizing:border-box;
  1498. width:100%;
  1499. }
  1500. #u3888_text {
  1501. border-width:0px;
  1502. word-wrap:break-word;
  1503. text-transform:none;
  1504. visibility:hidden;
  1505. }
  1506. #u3889_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:-5px;
  1510. top:-5px;
  1511. width:30px;
  1512. height:40px;
  1513. }
  1514. #u3889 {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:951px;
  1518. top:409px;
  1519. width:20px;
  1520. height:30px;
  1521. display:flex;
  1522. }
  1523. #u3889 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:2px 2px 2px 2px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u3889_text {
  1531. border-width:0px;
  1532. word-wrap:break-word;
  1533. text-transform:none;
  1534. visibility:hidden;
  1535. }
  1536. #u3890_img {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:-5px;
  1540. top:-5px;
  1541. width:30px;
  1542. height:40px;
  1543. }
  1544. #u3890 {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:936px;
  1548. top:576px;
  1549. width:20px;
  1550. height:30px;
  1551. display:flex;
  1552. }
  1553. #u3890 .text {
  1554. position:absolute;
  1555. align-self:center;
  1556. padding:2px 2px 2px 2px;
  1557. box-sizing:border-box;
  1558. width:100%;
  1559. }
  1560. #u3890_text {
  1561. border-width:0px;
  1562. word-wrap:break-word;
  1563. text-transform:none;
  1564. visibility:hidden;
  1565. }
  1566. #u3891_img {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:-5px;
  1570. top:-5px;
  1571. width:30px;
  1572. height:40px;
  1573. }
  1574. #u3891 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:708px;
  1578. top:481px;
  1579. width:20px;
  1580. height:30px;
  1581. display:flex;
  1582. }
  1583. #u3891 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 2px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u3891_text {
  1591. border-width:0px;
  1592. word-wrap:break-word;
  1593. text-transform:none;
  1594. visibility:hidden;
  1595. }
  1596. #u3892_img {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:-5px;
  1600. top:-5px;
  1601. width:30px;
  1602. height:40px;
  1603. }
  1604. #u3892 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:830px;
  1608. top:591px;
  1609. width:20px;
  1610. height:30px;
  1611. display:flex;
  1612. }
  1613. #u3892 .text {
  1614. position:absolute;
  1615. align-self:center;
  1616. padding:2px 2px 2px 2px;
  1617. box-sizing:border-box;
  1618. width:100%;
  1619. }
  1620. #u3892_text {
  1621. border-width:0px;
  1622. word-wrap:break-word;
  1623. text-transform:none;
  1624. visibility:hidden;
  1625. }
  1626. #u3893_img {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:-5px;
  1630. top:-5px;
  1631. width:30px;
  1632. height:40px;
  1633. }
  1634. #u3893 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:903px;
  1638. top:686px;
  1639. width:20px;
  1640. height:30px;
  1641. display:flex;
  1642. }
  1643. #u3893 .text {
  1644. position:absolute;
  1645. align-self:center;
  1646. padding:2px 2px 2px 2px;
  1647. box-sizing:border-box;
  1648. width:100%;
  1649. }
  1650. #u3893_text {
  1651. border-width:0px;
  1652. word-wrap:break-word;
  1653. text-transform:none;
  1654. visibility:hidden;
  1655. }
  1656. #u3894_img {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:-5px;
  1660. top:-5px;
  1661. width:30px;
  1662. height:40px;
  1663. }
  1664. #u3894 {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:1095px;
  1668. top:394px;
  1669. width:20px;
  1670. height:30px;
  1671. display:flex;
  1672. }
  1673. #u3894 .text {
  1674. position:absolute;
  1675. align-self:center;
  1676. padding:2px 2px 2px 2px;
  1677. box-sizing:border-box;
  1678. width:100%;
  1679. }
  1680. #u3894_text {
  1681. border-width:0px;
  1682. word-wrap:break-word;
  1683. text-transform:none;
  1684. visibility:hidden;
  1685. }
  1686. #u3895 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:0px;
  1692. height:0px;
  1693. }
  1694. #u3896_img {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:-5px;
  1698. top:-5px;
  1699. width:30px;
  1700. height:40px;
  1701. }
  1702. #u3896 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:503px;
  1706. top:438px;
  1707. width:20px;
  1708. height:30px;
  1709. display:flex;
  1710. }
  1711. #u3896 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 2px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u3896_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. visibility:hidden;
  1723. }
  1724. #u3897 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:0px;
  1730. height:0px;
  1731. }
  1732. #u3898_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:57px;
  1738. height:13px;
  1739. background:inherit;
  1740. background-color:rgba(217, 0, 27, 1);
  1741. border:none;
  1742. border-radius:4px;
  1743. -moz-box-shadow:none;
  1744. -webkit-box-shadow:none;
  1745. box-shadow:none;
  1746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:7px;
  1750. color:#FFFFFF;
  1751. text-align:left;
  1752. }
  1753. #u3898 {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:519px;
  1757. top:423px;
  1758. width:57px;
  1759. height:13px;
  1760. display:flex;
  1761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1762. font-weight:400;
  1763. font-style:normal;
  1764. font-size:7px;
  1765. color:#FFFFFF;
  1766. text-align:left;
  1767. }
  1768. #u3898 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 20px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u3898_text {
  1776. border-width:0px;
  1777. word-wrap:break-word;
  1778. text-transform:none;
  1779. }
  1780. #u3899_img {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:9px;
  1786. height:8px;
  1787. }
  1788. #u3899 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:524px;
  1792. top:425px;
  1793. width:9px;
  1794. height:8px;
  1795. display:flex;
  1796. }
  1797. #u3899 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 2px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u3899_text {
  1805. border-width:0px;
  1806. word-wrap:break-word;
  1807. text-transform:none;
  1808. visibility:hidden;
  1809. }
  1810. #u3900_div {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:240px;
  1816. height:40px;
  1817. background:inherit;
  1818. background-color:rgba(245, 154, 35, 0.2);
  1819. box-sizing:border-box;
  1820. border-width:2px;
  1821. border-style:solid;
  1822. border-color:rgba(245, 154, 35, 1);
  1823. border-left:0px;
  1824. border-top:0px;
  1825. border-right:0px;
  1826. border-radius:0px;
  1827. border-bottom-right-radius:0px;
  1828. border-bottom-left-radius:0px;
  1829. -moz-box-shadow:none;
  1830. -webkit-box-shadow:none;
  1831. box-shadow:none;
  1832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:18px;
  1836. color:#FFFFFF;
  1837. text-align:left;
  1838. }
  1839. #u3900 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:1236px;
  1843. top:109px;
  1844. width:240px;
  1845. height:40px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:18px;
  1851. color:#FFFFFF;
  1852. text-align:left;
  1853. }
  1854. #u3900 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 10px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u3900_text {
  1862. border-width:0px;
  1863. word-wrap:break-word;
  1864. text-transform:none;
  1865. }
  1866. #u3901_img {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:80px;
  1872. height:80px;
  1873. }
  1874. #u3901 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:1246px;
  1878. top:169px;
  1879. width:80px;
  1880. height:80px;
  1881. display:flex;
  1882. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1883. font-style:normal;
  1884. color:#FFFFFF;
  1885. }
  1886. #u3901 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u3901_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. }
  1898. #u3902_div {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:0px;
  1902. top:0px;
  1903. width:82px;
  1904. height:64px;
  1905. background:inherit;
  1906. background-color:rgba(255, 255, 255, 0);
  1907. border:none;
  1908. border-radius:0px;
  1909. -moz-box-shadow:none;
  1910. -webkit-box-shadow:none;
  1911. box-shadow:none;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:12px;
  1916. color:rgba(255, 255, 255, 0.698039215686274);
  1917. text-align:left;
  1918. line-height:30px;
  1919. }
  1920. #u3902 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:1386px;
  1924. top:177px;
  1925. width:82px;
  1926. height:64px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. color:rgba(255, 255, 255, 0.698039215686274);
  1933. text-align:left;
  1934. line-height:30px;
  1935. }
  1936. #u3902 .text {
  1937. position:absolute;
  1938. align-self:center;
  1939. padding:2px 2px 2px 2px;
  1940. box-sizing:border-box;
  1941. width:100%;
  1942. }
  1943. #u3902_text {
  1944. border-width:0px;
  1945. white-space:nowrap;
  1946. text-transform:none;
  1947. }
  1948. #u3903_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:90px;
  1954. height:21px;
  1955. background:inherit;
  1956. background-color:rgba(245, 154, 35, 1);
  1957. border:none;
  1958. border-radius:40px;
  1959. -moz-box-shadow:none;
  1960. -webkit-box-shadow:none;
  1961. box-shadow:none;
  1962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1963. font-weight:400;
  1964. font-style:normal;
  1965. font-size:12px;
  1966. color:rgba(255, 255, 255, 0.698039215686274);
  1967. }
  1968. #u3903 {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:1296px;
  1972. top:159px;
  1973. width:90px;
  1974. height:21px;
  1975. display:flex;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. color:rgba(255, 255, 255, 0.698039215686274);
  1981. }
  1982. #u3903 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u3903_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. }
  1994. #u3904_div {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:4px;
  2000. height:100px;
  2001. background:inherit;
  2002. background-color:rgba(255, 255, 255, 0.803921568627451);
  2003. border:none;
  2004. border-radius:2px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-size:12px;
  2009. }
  2010. #u3904 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:1493px;
  2014. top:423px;
  2015. width:4px;
  2016. height:100px;
  2017. display:flex;
  2018. font-size:12px;
  2019. }
  2020. #u3904 .text {
  2021. position:absolute;
  2022. align-self:center;
  2023. padding:2px 2px 2px 2px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u3904_text {
  2028. border-width:0px;
  2029. word-wrap:break-word;
  2030. text-transform:none;
  2031. visibility:hidden;
  2032. }
  2033. #u3905_img {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:96px;
  2039. height:96px;
  2040. }
  2041. #u3905 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:45px;
  2045. top:197px;
  2046. width:96px;
  2047. height:96px;
  2048. display:flex;
  2049. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2050. font-style:normal;
  2051. color:#FFFFFF;
  2052. }
  2053. #u3905 .text {
  2054. position:absolute;
  2055. align-self:center;
  2056. padding:2px 2px 2px 2px;
  2057. box-sizing:border-box;
  2058. width:100%;
  2059. }
  2060. #u3905_text {
  2061. border-width:0px;
  2062. word-wrap:break-word;
  2063. text-transform:none;
  2064. }
  2065. #u3906_div {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:70px;
  2071. height:94px;
  2072. background:inherit;
  2073. background-color:rgba(255, 255, 255, 0);
  2074. border:none;
  2075. border-radius:0px;
  2076. -moz-box-shadow:none;
  2077. -webkit-box-shadow:none;
  2078. box-shadow:none;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:12px;
  2083. color:rgba(255, 255, 255, 0.698039215686274);
  2084. text-align:left;
  2085. line-height:30px;
  2086. }
  2087. #u3906 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:161px;
  2091. top:197px;
  2092. width:70px;
  2093. height:94px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:12px;
  2099. color:rgba(255, 255, 255, 0.698039215686274);
  2100. text-align:left;
  2101. line-height:30px;
  2102. }
  2103. #u3906 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 2px 2px 2px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u3906_text {
  2111. border-width:0px;
  2112. white-space:nowrap;
  2113. text-transform:none;
  2114. }
  2115. #u3907 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:0px;
  2121. height:0px;
  2122. }
  2123. #u3908_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:253px;
  2129. height:22px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 0.152941176470588);
  2132. border:none;
  2133. border-radius:0px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. font-size:12px;
  2138. }
  2139. #u3908 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:1234px;
  2143. top:396px;
  2144. width:253px;
  2145. height:22px;
  2146. display:flex;
  2147. font-size:12px;
  2148. }
  2149. #u3908 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u3908_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u3909_div {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:53px;
  2168. height:21px;
  2169. background:inherit;
  2170. background-color:rgba(255, 255, 255, 0);
  2171. border:none;
  2172. border-radius:0px;
  2173. -moz-box-shadow:none;
  2174. -webkit-box-shadow:none;
  2175. box-shadow:none;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:rgba(242, 242, 242, 0.698039215686274);
  2181. text-align:left;
  2182. }
  2183. #u3909 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:1244px;
  2187. top:396px;
  2188. width:53px;
  2189. height:21px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:rgba(242, 242, 242, 0.698039215686274);
  2196. text-align:left;
  2197. }
  2198. #u3909 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 2px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u3909_text {
  2206. border-width:0px;
  2207. white-space:nowrap;
  2208. text-transform:none;
  2209. }
  2210. #u3910_div {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:41px;
  2216. height:21px;
  2217. background:inherit;
  2218. background-color:rgba(255, 255, 255, 0);
  2219. border:none;
  2220. border-radius:0px;
  2221. -moz-box-shadow:none;
  2222. -webkit-box-shadow:none;
  2223. box-shadow:none;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:12px;
  2228. color:rgba(242, 242, 242, 0.698039215686274);
  2229. text-align:left;
  2230. }
  2231. #u3910 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:1381px;
  2235. top:396px;
  2236. width:41px;
  2237. height:21px;
  2238. display:flex;
  2239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:12px;
  2243. color:rgba(242, 242, 242, 0.698039215686274);
  2244. text-align:left;
  2245. }
  2246. #u3910 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u3910_text {
  2254. border-width:0px;
  2255. white-space:nowrap;
  2256. text-transform:none;
  2257. }
  2258. #u3911_div {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:29px;
  2264. height:21px;
  2265. background:inherit;
  2266. background-color:rgba(255, 255, 255, 0);
  2267. border:none;
  2268. border-radius:0px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:12px;
  2276. color:rgba(242, 242, 242, 0.698039215686274);
  2277. text-align:left;
  2278. }
  2279. #u3911 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:1326px;
  2283. top:396px;
  2284. width:29px;
  2285. height:21px;
  2286. display:flex;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:12px;
  2291. color:rgba(242, 242, 242, 0.698039215686274);
  2292. text-align:left;
  2293. }
  2294. #u3911 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 2px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u3911_text {
  2302. border-width:0px;
  2303. white-space:nowrap;
  2304. text-transform:none;
  2305. }
  2306. #u3912_div {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:41px;
  2312. height:21px;
  2313. background:inherit;
  2314. background-color:rgba(255, 255, 255, 0);
  2315. border:none;
  2316. border-radius:0px;
  2317. -moz-box-shadow:none;
  2318. -webkit-box-shadow:none;
  2319. box-shadow:none;
  2320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:12px;
  2324. color:rgba(242, 242, 242, 0.698039215686274);
  2325. text-align:left;
  2326. }
  2327. #u3912 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:1436px;
  2331. top:396px;
  2332. width:41px;
  2333. height:21px;
  2334. display:flex;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:12px;
  2339. color:rgba(242, 242, 242, 0.698039215686274);
  2340. text-align:left;
  2341. }
  2342. #u3912 .text {
  2343. position:absolute;
  2344. align-self:center;
  2345. padding:2px 2px 2px 2px;
  2346. box-sizing:border-box;
  2347. width:100%;
  2348. }
  2349. #u3912_text {
  2350. border-width:0px;
  2351. white-space:nowrap;
  2352. text-transform:none;
  2353. }
  2354. #u3913 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:0px;
  2360. height:0px;
  2361. }
  2362. #u3914_div {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:0px;
  2366. top:0px;
  2367. width:240px;
  2368. height:23px;
  2369. background:inherit;
  2370. background-color:rgba(255, 255, 255, 0);
  2371. border:none;
  2372. border-radius:0px;
  2373. -moz-box-shadow:none;
  2374. -webkit-box-shadow:none;
  2375. box-shadow:none;
  2376. font-size:12px;
  2377. }
  2378. #u3914 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:1241px;
  2382. top:422px;
  2383. width:240px;
  2384. height:23px;
  2385. display:flex;
  2386. font-size:12px;
  2387. }
  2388. #u3914 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 2px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u3914_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u3915_div {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:53px;
  2407. height:21px;
  2408. background:inherit;
  2409. background-color:rgba(255, 255, 255, 0);
  2410. border:none;
  2411. border-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:12px;
  2419. color:rgba(255, 255, 255, 0.698039215686274);
  2420. text-align:left;
  2421. }
  2422. #u3915 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:1241px;
  2426. top:423px;
  2427. width:53px;
  2428. height:21px;
  2429. display:flex;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. color:rgba(255, 255, 255, 0.698039215686274);
  2435. text-align:left;
  2436. }
  2437. #u3915 .text {
  2438. position:absolute;
  2439. align-self:center;
  2440. padding:2px 2px 2px 2px;
  2441. box-sizing:border-box;
  2442. width:100%;
  2443. }
  2444. #u3915_text {
  2445. border-width:0px;
  2446. white-space:nowrap;
  2447. text-transform:none;
  2448. }
  2449. #u3916_div {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:19px;
  2455. height:21px;
  2456. background:inherit;
  2457. background-color:rgba(255, 255, 255, 0);
  2458. border:none;
  2459. border-radius:0px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#FFFFFF;
  2468. text-align:left;
  2469. }
  2470. #u3916 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:1327px;
  2474. top:423px;
  2475. width:19px;
  2476. height:21px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. color:#FFFFFF;
  2483. text-align:left;
  2484. }
  2485. #u3916 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 2px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u3916_text {
  2493. border-width:0px;
  2494. white-space:nowrap;
  2495. text-transform:none;
  2496. }
  2497. #u3917_div {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:49px;
  2503. height:21px;
  2504. background:inherit;
  2505. background-color:rgba(255, 255, 255, 0);
  2506. border:none;
  2507. border-radius:0px;
  2508. -moz-box-shadow:none;
  2509. -webkit-box-shadow:none;
  2510. box-shadow:none;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:12px;
  2515. color:#FFFFFF;
  2516. text-align:left;
  2517. }
  2518. #u3917 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:1436px;
  2522. top:423px;
  2523. width:49px;
  2524. height:21px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:12px;
  2530. color:#FFFFFF;
  2531. text-align:left;
  2532. }
  2533. #u3917 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 2px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u3917_text {
  2541. border-width:0px;
  2542. white-space:nowrap;
  2543. text-transform:none;
  2544. }
  2545. #u3918_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:19px;
  2551. height:21px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-radius:0px;
  2556. -moz-box-shadow:none;
  2557. -webkit-box-shadow:none;
  2558. box-shadow:none;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. color:#FFFFFF;
  2564. text-align:left;
  2565. }
  2566. #u3918 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:1392px;
  2570. top:423px;
  2571. width:19px;
  2572. height:21px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:12px;
  2578. color:#FFFFFF;
  2579. text-align:left;
  2580. }
  2581. #u3918 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u3918_text {
  2589. border-width:0px;
  2590. white-space:nowrap;
  2591. text-transform:none;
  2592. }
  2593. #u3919_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:41px;
  2599. height:124px;
  2600. background:inherit;
  2601. background-color:rgba(255, 255, 255, 0);
  2602. border:none;
  2603. border-radius:0px;
  2604. -moz-box-shadow:none;
  2605. -webkit-box-shadow:none;
  2606. box-shadow:none;
  2607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2608. font-weight:400;
  2609. font-style:normal;
  2610. font-size:12px;
  2611. color:rgba(255, 255, 255, 0.698039215686274);
  2612. text-align:left;
  2613. line-height:40px;
  2614. }
  2615. #u3919 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:43px;
  2619. top:396px;
  2620. width:41px;
  2621. height:124px;
  2622. display:flex;
  2623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:12px;
  2627. color:rgba(255, 255, 255, 0.698039215686274);
  2628. text-align:left;
  2629. line-height:40px;
  2630. }
  2631. #u3919 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u3919_text {
  2639. border-width:0px;
  2640. white-space:nowrap;
  2641. text-transform:none;
  2642. }
  2643. #u3920 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:0px;
  2649. height:0px;
  2650. }
  2651. #u3921_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:240px;
  2657. height:30px;
  2658. }
  2659. #u3921 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:33px;
  2663. top:316px;
  2664. width:240px;
  2665. height:30px;
  2666. display:flex;
  2667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:12px;
  2671. color:#FFFFFF;
  2672. text-align:left;
  2673. }
  2674. #u3921 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 2px 2px 10px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u3921_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u3922_div {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:85px;
  2693. height:17px;
  2694. background:inherit;
  2695. background-color:rgba(255, 255, 255, 0);
  2696. border:none;
  2697. border-radius:0px;
  2698. -moz-box-shadow:none;
  2699. -webkit-box-shadow:none;
  2700. box-shadow:none;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:12px;
  2705. color:#FFFFFF;
  2706. }
  2707. #u3922 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:43px;
  2711. top:321px;
  2712. width:85px;
  2713. height:17px;
  2714. display:flex;
  2715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:12px;
  2719. color:#FFFFFF;
  2720. }
  2721. #u3922 .text {
  2722. position:absolute;
  2723. align-self:flex-start;
  2724. padding:0px 0px 0px 0px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u3922_text {
  2729. border-width:0px;
  2730. white-space:nowrap;
  2731. text-transform:none;
  2732. }
  2733. #u3923_div {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:47px;
  2739. height:124px;
  2740. background:inherit;
  2741. background-color:rgba(255, 255, 255, 0);
  2742. border:none;
  2743. border-radius:0px;
  2744. -moz-box-shadow:none;
  2745. -webkit-box-shadow:none;
  2746. box-shadow:none;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:12px;
  2751. color:rgba(255, 255, 255, 0.698039215686274);
  2752. text-align:right;
  2753. line-height:40px;
  2754. }
  2755. #u3923 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:207px;
  2759. top:396px;
  2760. width:47px;
  2761. height:124px;
  2762. display:flex;
  2763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2764. font-weight:400;
  2765. font-style:normal;
  2766. font-size:12px;
  2767. color:rgba(255, 255, 255, 0.698039215686274);
  2768. text-align:right;
  2769. line-height:40px;
  2770. }
  2771. #u3923 .text {
  2772. position:absolute;
  2773. align-self:center;
  2774. padding:2px 2px 2px 2px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u3923_text {
  2779. border-width:0px;
  2780. white-space:nowrap;
  2781. text-transform:none;
  2782. }
  2783. #u3924_div {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:39px;
  2789. height:124px;
  2790. background:inherit;
  2791. background-color:rgba(255, 255, 255, 0);
  2792. border:none;
  2793. border-radius:0px;
  2794. -moz-box-shadow:none;
  2795. -webkit-box-shadow:none;
  2796. box-shadow:none;
  2797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2798. font-weight:400;
  2799. font-style:normal;
  2800. font-size:12px;
  2801. color:rgba(255, 255, 255, 0.698039215686274);
  2802. text-align:right;
  2803. line-height:40px;
  2804. }
  2805. #u3924 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:160px;
  2809. top:396px;
  2810. width:39px;
  2811. height:124px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:rgba(255, 255, 255, 0.698039215686274);
  2818. text-align:right;
  2819. line-height:40px;
  2820. }
  2821. #u3924 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 2px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u3924_text {
  2829. border-width:0px;
  2830. white-space:nowrap;
  2831. text-transform:none;
  2832. }
  2833. #u3925_div {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:53px;
  2839. height:30px;
  2840. background:inherit;
  2841. background-color:rgba(245, 154, 35, 0);
  2842. box-sizing:border-box;
  2843. border-width:2px;
  2844. border-style:solid;
  2845. border-color:rgba(245, 154, 35, 1);
  2846. border-left:0px;
  2847. border-top:0px;
  2848. border-right:0px;
  2849. border-radius:0px;
  2850. border-bottom-right-radius:0px;
  2851. border-bottom-left-radius:0px;
  2852. -moz-box-shadow:none;
  2853. -webkit-box-shadow:none;
  2854. box-shadow:none;
  2855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:12px;
  2859. color:#FFFFFF;
  2860. text-align:left;
  2861. }
  2862. #u3925 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:43px;
  2866. top:356px;
  2867. width:53px;
  2868. height:30px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:12px;
  2874. color:#FFFFFF;
  2875. text-align:left;
  2876. }
  2877. #u3925 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 2px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u3925_text {
  2885. border-width:0px;
  2886. white-space:nowrap;
  2887. text-transform:none;
  2888. }
  2889. #u3926_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:53px;
  2895. height:30px;
  2896. background:inherit;
  2897. background-color:rgba(245, 154, 35, 0);
  2898. border:none;
  2899. border-left:0px;
  2900. border-top:0px;
  2901. border-right:0px;
  2902. border-radius:0px;
  2903. border-bottom-right-radius:0px;
  2904. border-bottom-left-radius:0px;
  2905. -moz-box-shadow:none;
  2906. -webkit-box-shadow:none;
  2907. box-shadow:none;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. color:#FFFFFF;
  2913. text-align:left;
  2914. }
  2915. #u3926 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:106px;
  2919. top:356px;
  2920. width:53px;
  2921. height:30px;
  2922. display:flex;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. color:#FFFFFF;
  2928. text-align:left;
  2929. }
  2930. #u3926 .text {
  2931. position:absolute;
  2932. align-self:center;
  2933. padding:2px 2px 2px 2px;
  2934. box-sizing:border-box;
  2935. width:100%;
  2936. }
  2937. #u3926_text {
  2938. border-width:0px;
  2939. white-space:nowrap;
  2940. text-transform:none;
  2941. }
  2942. #u3927_div {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:53px;
  2948. height:30px;
  2949. background:inherit;
  2950. background-color:rgba(245, 154, 35, 0);
  2951. border:none;
  2952. border-left:0px;
  2953. border-top:0px;
  2954. border-right:0px;
  2955. border-radius:0px;
  2956. border-bottom-right-radius:0px;
  2957. border-bottom-left-radius:0px;
  2958. -moz-box-shadow:none;
  2959. -webkit-box-shadow:none;
  2960. box-shadow:none;
  2961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:12px;
  2965. color:#FFFFFF;
  2966. text-align:left;
  2967. }
  2968. #u3927 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:169px;
  2972. top:356px;
  2973. width:53px;
  2974. height:30px;
  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:#FFFFFF;
  2981. text-align:left;
  2982. }
  2983. #u3927 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 2px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u3927_text {
  2991. border-width:0px;
  2992. white-space:nowrap;
  2993. text-transform:none;
  2994. }
  2995. #u3928 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:0px;
  3001. height:0px;
  3002. }
  3003. #u3929_div {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:440px;
  3009. height:300px;
  3010. background:inherit;
  3011. background-color:rgba(95, 72, 47, 1);
  3012. box-sizing:border-box;
  3013. border-width:2px;
  3014. border-style:solid;
  3015. border-color:rgba(245, 154, 35, 1);
  3016. border-radius:10px;
  3017. -moz-box-shadow:none;
  3018. -webkit-box-shadow:none;
  3019. box-shadow:none;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:12px;
  3024. color:#FFFFFF;
  3025. text-align:left;
  3026. }
  3027. #u3929 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:1539px;
  3031. top:30px;
  3032. width:440px;
  3033. height:300px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:12px;
  3039. color:#FFFFFF;
  3040. text-align:left;
  3041. }
  3042. #u3929 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 10px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u3929_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u3930 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:0px;
  3061. height:0px;
  3062. }
  3063. #u3931_div {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:440px;
  3069. height:40px;
  3070. background:inherit;
  3071. background-color:rgba(221, 142, 35, 1);
  3072. box-sizing:border-box;
  3073. border-width:2px;
  3074. border-style:solid;
  3075. border-color:rgba(245, 154, 35, 1);
  3076. border-radius:10px;
  3077. border-bottom-right-radius:0px;
  3078. border-bottom-left-radius:0px;
  3079. -moz-box-shadow:none;
  3080. -webkit-box-shadow:none;
  3081. box-shadow:none;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. color:#FFFFFF;
  3087. text-align:left;
  3088. }
  3089. #u3931 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:1539px;
  3093. top:30px;
  3094. width:440px;
  3095. height:40px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#FFFFFF;
  3102. text-align:left;
  3103. }
  3104. #u3931 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 2px 2px 10px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u3931_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. visibility:hidden;
  3116. }
  3117. #u3932_div {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:77px;
  3123. height:29px;
  3124. background:inherit;
  3125. background-color:rgba(245, 154, 35, 0);
  3126. border:none;
  3127. border-left:0px;
  3128. border-top:0px;
  3129. border-right:0px;
  3130. border-radius:0px;
  3131. border-bottom-right-radius:0px;
  3132. border-bottom-left-radius:0px;
  3133. -moz-box-shadow:none;
  3134. -webkit-box-shadow:none;
  3135. box-shadow:none;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:18px;
  3140. color:#FFFFFF;
  3141. text-align:left;
  3142. }
  3143. #u3932 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:1559px;
  3147. top:35px;
  3148. width:77px;
  3149. height:29px;
  3150. display:flex;
  3151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3152. font-weight:400;
  3153. font-style:normal;
  3154. font-size:18px;
  3155. color:#FFFFFF;
  3156. text-align:left;
  3157. }
  3158. #u3932 .text {
  3159. position:absolute;
  3160. align-self:center;
  3161. padding:2px 2px 2px 2px;
  3162. box-sizing:border-box;
  3163. width:100%;
  3164. }
  3165. #u3932_text {
  3166. border-width:0px;
  3167. white-space:nowrap;
  3168. text-transform:none;
  3169. }
  3170. #u3933_div {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:41px;
  3176. height:29px;
  3177. background:inherit;
  3178. background-color:rgba(245, 154, 35, 0);
  3179. border:none;
  3180. border-left:0px;
  3181. border-top:0px;
  3182. border-right:0px;
  3183. border-radius:0px;
  3184. border-bottom-right-radius:0px;
  3185. border-bottom-left-radius:0px;
  3186. -moz-box-shadow:none;
  3187. -webkit-box-shadow:none;
  3188. box-shadow:none;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:18px;
  3193. color:#FFFFFF;
  3194. text-align:left;
  3195. }
  3196. #u3933 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:1916px;
  3200. top:35px;
  3201. width:41px;
  3202. height:29px;
  3203. display:flex;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:18px;
  3208. color:#FFFFFF;
  3209. text-align:left;
  3210. }
  3211. #u3933 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u3933_text {
  3219. border-width:0px;
  3220. white-space:nowrap;
  3221. text-transform:none;
  3222. }
  3223. #u3934_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:180px;
  3229. height:180px;
  3230. }
  3231. #u3934 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:1559px;
  3235. top:90px;
  3236. width:180px;
  3237. height:180px;
  3238. display:flex;
  3239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. }
  3243. #u3934 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 2px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u3934_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. }
  3255. #u3935_div {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:149px;
  3261. height:34px;
  3262. background:inherit;
  3263. background-color:rgba(245, 154, 35, 0);
  3264. border:none;
  3265. border-left:0px;
  3266. border-top:0px;
  3267. border-right:0px;
  3268. border-radius:0px;
  3269. border-bottom-right-radius:0px;
  3270. border-bottom-left-radius:0px;
  3271. -moz-box-shadow:none;
  3272. -webkit-box-shadow:none;
  3273. box-shadow:none;
  3274. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3275. font-weight:500;
  3276. font-style:normal;
  3277. font-size:18px;
  3278. color:#FFFFFF;
  3279. text-align:left;
  3280. line-height:30px;
  3281. }
  3282. #u3935 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:1759px;
  3286. top:90px;
  3287. width:149px;
  3288. height:34px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3291. font-weight:500;
  3292. font-style:normal;
  3293. font-size:18px;
  3294. color:#FFFFFF;
  3295. text-align:left;
  3296. line-height:30px;
  3297. }
  3298. #u3935 .text {
  3299. position:absolute;
  3300. align-self:flex-start;
  3301. padding:2px 2px 2px 2px;
  3302. box-sizing:border-box;
  3303. width:100%;
  3304. }
  3305. #u3935_text {
  3306. border-width:0px;
  3307. white-space:nowrap;
  3308. text-transform:none;
  3309. }
  3310. #u3936_div {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:60px;
  3316. height:30px;
  3317. background:inherit;
  3318. background-color:rgba(245, 154, 35, 1);
  3319. box-sizing:border-box;
  3320. border-width:1px;
  3321. border-style:solid;
  3322. border-color:rgba(245, 154, 35, 1);
  3323. border-radius:4px;
  3324. -moz-box-shadow:none;
  3325. -webkit-box-shadow:none;
  3326. box-shadow:none;
  3327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3328. font-weight:400;
  3329. font-style:normal;
  3330. font-size:14px;
  3331. color:#FFFFFF;
  3332. }
  3333. #u3936 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:1896px;
  3337. top:277px;
  3338. width:60px;
  3339. height:30px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:14px;
  3345. color:#FFFFFF;
  3346. }
  3347. #u3936 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 2px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u3936_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. }
  3359. #u3937_div {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:174px;
  3365. height:20px;
  3366. background:inherit;
  3367. background-color:rgba(245, 154, 35, 0);
  3368. border:none;
  3369. border-left:0px;
  3370. border-top:0px;
  3371. border-right:0px;
  3372. border-radius:0px;
  3373. border-bottom-right-radius:0px;
  3374. border-bottom-left-radius:0px;
  3375. -moz-box-shadow:none;
  3376. -webkit-box-shadow:none;
  3377. box-shadow:none;
  3378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:11px;
  3382. color:#FFFFFF;
  3383. text-align:left;
  3384. }
  3385. #u3937 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:1759px;
  3389. top:233px;
  3390. width:174px;
  3391. height:20px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:11px;
  3397. color:#FFFFFF;
  3398. text-align:left;
  3399. }
  3400. #u3937 .text {
  3401. position:absolute;
  3402. align-self:flex-start;
  3403. padding:2px 2px 2px 2px;
  3404. box-sizing:border-box;
  3405. width:100%;
  3406. }
  3407. #u3937_text {
  3408. border-width:0px;
  3409. white-space:nowrap;
  3410. text-transform:none;
  3411. }
  3412. #u3938 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:0px;
  3418. height:0px;
  3419. }
  3420. #u3939_div {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:202px;
  3426. height:30px;
  3427. background:inherit;
  3428. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3429. border:none;
  3430. border-radius:0px;
  3431. -moz-box-shadow:none;
  3432. -webkit-box-shadow:none;
  3433. box-shadow:none;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. color:rgba(255, 255, 255, 0.698039215686274);
  3439. }
  3440. #u3939 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:1759px;
  3444. top:134px;
  3445. width:202px;
  3446. height:30px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:12px;
  3452. color:rgba(255, 255, 255, 0.698039215686274);
  3453. }
  3454. #u3939 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 2px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u3939_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u3940_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:61px;
  3473. height:24px;
  3474. background:inherit;
  3475. background-color:rgba(245, 154, 35, 0);
  3476. border:none;
  3477. border-left:0px;
  3478. border-top:0px;
  3479. border-right:0px;
  3480. border-radius:0px;
  3481. border-bottom-right-radius:0px;
  3482. border-bottom-left-radius:0px;
  3483. -moz-box-shadow:none;
  3484. -webkit-box-shadow:none;
  3485. box-shadow:none;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:14px;
  3490. color:#FFFFFF;
  3491. text-align:left;
  3492. }
  3493. #u3940 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:1769px;
  3497. top:137px;
  3498. width:61px;
  3499. height:24px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:14px;
  3505. color:#FFFFFF;
  3506. text-align:left;
  3507. }
  3508. #u3940 .text {
  3509. position:absolute;
  3510. align-self:flex-start;
  3511. padding:2px 2px 2px 2px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u3940_text {
  3516. border-width:0px;
  3517. white-space:nowrap;
  3518. text-transform:none;
  3519. }
  3520. #u3941_div {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:61px;
  3526. height:24px;
  3527. background:inherit;
  3528. background-color:rgba(245, 154, 35, 0);
  3529. border:none;
  3530. border-left:0px;
  3531. border-top:0px;
  3532. border-right:0px;
  3533. border-radius:0px;
  3534. border-bottom-right-radius:0px;
  3535. border-bottom-left-radius:0px;
  3536. -moz-box-shadow:none;
  3537. -webkit-box-shadow:none;
  3538. box-shadow:none;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:14px;
  3543. color:#FFFFFF;
  3544. text-align:left;
  3545. }
  3546. #u3941 {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:1839px;
  3550. top:137px;
  3551. width:61px;
  3552. height:24px;
  3553. display:flex;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:14px;
  3558. color:#FFFFFF;
  3559. text-align:left;
  3560. }
  3561. #u3941 .text {
  3562. position:absolute;
  3563. align-self:flex-start;
  3564. padding:2px 2px 2px 2px;
  3565. box-sizing:border-box;
  3566. width:100%;
  3567. }
  3568. #u3941_text {
  3569. border-width:0px;
  3570. white-space:nowrap;
  3571. text-transform:none;
  3572. }
  3573. #u3942 {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:0px;
  3579. height:0px;
  3580. }
  3581. #u3943_div {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:202px;
  3587. height:30px;
  3588. background:inherit;
  3589. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3590. border:none;
  3591. border-radius:0px;
  3592. -moz-box-shadow:none;
  3593. -webkit-box-shadow:none;
  3594. box-shadow:none;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. color:rgba(255, 255, 255, 0.698039215686274);
  3600. }
  3601. #u3943 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:1759px;
  3605. top:165px;
  3606. width:202px;
  3607. height:30px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:rgba(255, 255, 255, 0.698039215686274);
  3614. }
  3615. #u3943 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 2px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u3943_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u3944_div {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:61px;
  3634. height:24px;
  3635. background:inherit;
  3636. background-color:rgba(245, 154, 35, 0);
  3637. border:none;
  3638. border-left:0px;
  3639. border-top:0px;
  3640. border-right:0px;
  3641. border-radius:0px;
  3642. border-bottom-right-radius:0px;
  3643. border-bottom-left-radius:0px;
  3644. -moz-box-shadow:none;
  3645. -webkit-box-shadow:none;
  3646. box-shadow:none;
  3647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:14px;
  3651. color:#FFFFFF;
  3652. text-align:left;
  3653. }
  3654. #u3944 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:1769px;
  3658. top:168px;
  3659. width:61px;
  3660. height:24px;
  3661. display:flex;
  3662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. font-size:14px;
  3666. color:#FFFFFF;
  3667. text-align:left;
  3668. }
  3669. #u3944 .text {
  3670. position:absolute;
  3671. align-self:flex-start;
  3672. padding:2px 2px 2px 2px;
  3673. box-sizing:border-box;
  3674. width:100%;
  3675. }
  3676. #u3944_text {
  3677. border-width:0px;
  3678. white-space:nowrap;
  3679. text-transform:none;
  3680. }
  3681. #u3945_div {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:103px;
  3687. height:24px;
  3688. background:inherit;
  3689. background-color:rgba(245, 154, 35, 0);
  3690. border:none;
  3691. border-left:0px;
  3692. border-top:0px;
  3693. border-right:0px;
  3694. border-radius:0px;
  3695. border-bottom-right-radius:0px;
  3696. border-bottom-left-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:14px;
  3704. color:#FFFFFF;
  3705. text-align:left;
  3706. }
  3707. #u3945 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:1842px;
  3711. top:168px;
  3712. width:103px;
  3713. height:24px;
  3714. display:flex;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:14px;
  3719. color:#FFFFFF;
  3720. text-align:left;
  3721. }
  3722. #u3945 .text {
  3723. position:absolute;
  3724. align-self:flex-start;
  3725. padding:2px 2px 2px 2px;
  3726. box-sizing:border-box;
  3727. width:100%;
  3728. }
  3729. #u3945_text {
  3730. border-width:0px;
  3731. white-space:nowrap;
  3732. text-transform:none;
  3733. }
  3734. #u3946 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:0px;
  3740. height:0px;
  3741. }
  3742. #u3947_div {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:202px;
  3748. height:30px;
  3749. background:inherit;
  3750. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3751. border:none;
  3752. border-radius:0px;
  3753. -moz-box-shadow:none;
  3754. -webkit-box-shadow:none;
  3755. box-shadow:none;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:12px;
  3760. color:rgba(255, 255, 255, 0.698039215686274);
  3761. }
  3762. #u3947 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:1759px;
  3766. top:196px;
  3767. width:202px;
  3768. height:30px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:12px;
  3774. color:rgba(255, 255, 255, 0.698039215686274);
  3775. }
  3776. #u3947 .text {
  3777. position:absolute;
  3778. align-self:center;
  3779. padding:2px 2px 2px 2px;
  3780. box-sizing:border-box;
  3781. width:100%;
  3782. }
  3783. #u3947_text {
  3784. border-width:0px;
  3785. word-wrap:break-word;
  3786. text-transform:none;
  3787. visibility:hidden;
  3788. }
  3789. #u3948_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:61px;
  3795. height:24px;
  3796. background:inherit;
  3797. background-color:rgba(245, 154, 35, 0);
  3798. border:none;
  3799. border-left:0px;
  3800. border-top:0px;
  3801. border-right:0px;
  3802. border-radius:0px;
  3803. border-bottom-right-radius:0px;
  3804. border-bottom-left-radius:0px;
  3805. -moz-box-shadow:none;
  3806. -webkit-box-shadow:none;
  3807. box-shadow:none;
  3808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3809. font-weight:400;
  3810. font-style:normal;
  3811. font-size:14px;
  3812. color:#FFFFFF;
  3813. text-align:left;
  3814. }
  3815. #u3948 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:1769px;
  3819. top:199px;
  3820. width:61px;
  3821. height:24px;
  3822. display:flex;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:14px;
  3827. color:#FFFFFF;
  3828. text-align:left;
  3829. }
  3830. #u3948 .text {
  3831. position:absolute;
  3832. align-self:flex-start;
  3833. padding:2px 2px 2px 2px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u3948_text {
  3838. border-width:0px;
  3839. white-space:nowrap;
  3840. text-transform:none;
  3841. }
  3842. #u3949_div {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:95px;
  3848. height:24px;
  3849. background:inherit;
  3850. background-color:rgba(245, 154, 35, 0);
  3851. border:none;
  3852. border-left:0px;
  3853. border-top:0px;
  3854. border-right:0px;
  3855. border-radius:0px;
  3856. border-bottom-right-radius:0px;
  3857. border-bottom-left-radius:0px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:14px;
  3865. color:#FFFFFF;
  3866. text-align:left;
  3867. }
  3868. #u3949 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:1840px;
  3872. top:199px;
  3873. width:95px;
  3874. height:24px;
  3875. display:flex;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:14px;
  3880. color:#FFFFFF;
  3881. text-align:left;
  3882. }
  3883. #u3949 .text {
  3884. position:absolute;
  3885. align-self:flex-start;
  3886. padding:2px 2px 2px 2px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u3949_text {
  3891. border-width:0px;
  3892. white-space:nowrap;
  3893. text-transform:none;
  3894. }
  3895. #u3950 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:0px;
  3901. height:0px;
  3902. }
  3903. #u3951_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:440px;
  3909. height:300px;
  3910. background:inherit;
  3911. background-color:rgba(95, 72, 47, 1);
  3912. box-sizing:border-box;
  3913. border-width:2px;
  3914. border-style:solid;
  3915. border-color:rgba(245, 154, 35, 1);
  3916. border-radius:10px;
  3917. -moz-box-shadow:none;
  3918. -webkit-box-shadow:none;
  3919. box-shadow:none;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#FFFFFF;
  3925. text-align:left;
  3926. }
  3927. #u3951 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:1539px;
  3931. top:345px;
  3932. width:440px;
  3933. height:300px;
  3934. display:flex;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:12px;
  3939. color:#FFFFFF;
  3940. text-align:left;
  3941. }
  3942. #u3951 .text {
  3943. position:absolute;
  3944. align-self:center;
  3945. padding:2px 2px 2px 10px;
  3946. box-sizing:border-box;
  3947. width:100%;
  3948. }
  3949. #u3951_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u3952 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:0px;
  3961. height:0px;
  3962. }
  3963. #u3953_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:440px;
  3969. height:40px;
  3970. background:inherit;
  3971. background-color:rgba(221, 142, 35, 1);
  3972. box-sizing:border-box;
  3973. border-width:2px;
  3974. border-style:solid;
  3975. border-color:rgba(245, 154, 35, 1);
  3976. border-radius:10px;
  3977. border-bottom-right-radius:0px;
  3978. border-bottom-left-radius:0px;
  3979. -moz-box-shadow:none;
  3980. -webkit-box-shadow:none;
  3981. box-shadow:none;
  3982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:12px;
  3986. color:#FFFFFF;
  3987. text-align:left;
  3988. }
  3989. #u3953 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:1539px;
  3993. top:345px;
  3994. width:440px;
  3995. height:40px;
  3996. display:flex;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:12px;
  4001. color:#FFFFFF;
  4002. text-align:left;
  4003. }
  4004. #u3953 .text {
  4005. position:absolute;
  4006. align-self:center;
  4007. padding:2px 2px 2px 10px;
  4008. box-sizing:border-box;
  4009. width:100%;
  4010. }
  4011. #u3953_text {
  4012. border-width:0px;
  4013. word-wrap:break-word;
  4014. text-transform:none;
  4015. visibility:hidden;
  4016. }
  4017. #u3954_div {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:77px;
  4023. height:29px;
  4024. background:inherit;
  4025. background-color:rgba(245, 154, 35, 0);
  4026. border:none;
  4027. border-left:0px;
  4028. border-top:0px;
  4029. border-right:0px;
  4030. border-radius:0px;
  4031. border-bottom-right-radius:0px;
  4032. border-bottom-left-radius:0px;
  4033. -moz-box-shadow:none;
  4034. -webkit-box-shadow:none;
  4035. box-shadow:none;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:18px;
  4040. color:#FFFFFF;
  4041. text-align:left;
  4042. }
  4043. #u3954 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:1559px;
  4047. top:350px;
  4048. width:77px;
  4049. height:29px;
  4050. display:flex;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:18px;
  4055. color:#FFFFFF;
  4056. text-align:left;
  4057. }
  4058. #u3954 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u3954_text {
  4066. border-width:0px;
  4067. white-space:nowrap;
  4068. text-transform:none;
  4069. }
  4070. #u3955_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:41px;
  4076. height:29px;
  4077. background:inherit;
  4078. background-color:rgba(245, 154, 35, 0);
  4079. border:none;
  4080. border-left:0px;
  4081. border-top:0px;
  4082. border-right:0px;
  4083. border-radius:0px;
  4084. border-bottom-right-radius:0px;
  4085. border-bottom-left-radius:0px;
  4086. -moz-box-shadow:none;
  4087. -webkit-box-shadow:none;
  4088. box-shadow:none;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:18px;
  4093. color:#FFFFFF;
  4094. text-align:left;
  4095. }
  4096. #u3955 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:1916px;
  4100. top:350px;
  4101. width:41px;
  4102. height:29px;
  4103. display:flex;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:18px;
  4108. color:#FFFFFF;
  4109. text-align:left;
  4110. }
  4111. #u3955 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 2px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u3955_text {
  4119. border-width:0px;
  4120. white-space:nowrap;
  4121. text-transform:none;
  4122. }
  4123. #u3956_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:180px;
  4129. height:180px;
  4130. }
  4131. #u3956 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1559px;
  4135. top:405px;
  4136. width:180px;
  4137. height:180px;
  4138. display:flex;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. }
  4143. #u3956 .text {
  4144. position:absolute;
  4145. align-self:center;
  4146. padding:2px 2px 2px 2px;
  4147. box-sizing:border-box;
  4148. width:100%;
  4149. }
  4150. #u3956_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. visibility:hidden;
  4155. }
  4156. #u3957_div {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:149px;
  4162. height:34px;
  4163. background:inherit;
  4164. background-color:rgba(245, 154, 35, 0);
  4165. border:none;
  4166. border-left:0px;
  4167. border-top:0px;
  4168. border-right:0px;
  4169. border-radius:0px;
  4170. border-bottom-right-radius:0px;
  4171. border-bottom-left-radius:0px;
  4172. -moz-box-shadow:none;
  4173. -webkit-box-shadow:none;
  4174. box-shadow:none;
  4175. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4176. font-weight:500;
  4177. font-style:normal;
  4178. font-size:18px;
  4179. color:#FFFFFF;
  4180. text-align:left;
  4181. line-height:30px;
  4182. }
  4183. #u3957 {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:1759px;
  4187. top:405px;
  4188. width:149px;
  4189. height:34px;
  4190. display:flex;
  4191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4192. font-weight:500;
  4193. font-style:normal;
  4194. font-size:18px;
  4195. color:#FFFFFF;
  4196. text-align:left;
  4197. line-height:30px;
  4198. }
  4199. #u3957 .text {
  4200. position:absolute;
  4201. align-self:flex-start;
  4202. padding:2px 2px 2px 2px;
  4203. box-sizing:border-box;
  4204. width:100%;
  4205. }
  4206. #u3957_text {
  4207. border-width:0px;
  4208. white-space:nowrap;
  4209. text-transform:none;
  4210. }
  4211. #u3958_img {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:27px;
  4217. height:27px;
  4218. }
  4219. #u3958 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:1636px;
  4223. top:482px;
  4224. width:27px;
  4225. height:27px;
  4226. display:flex;
  4227. }
  4228. #u3958 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 2px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u3958_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u3959_div {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:174px;
  4247. height:20px;
  4248. background:inherit;
  4249. background-color:rgba(245, 154, 35, 0);
  4250. border:none;
  4251. border-left:0px;
  4252. border-top:0px;
  4253. border-right:0px;
  4254. border-radius:0px;
  4255. border-bottom-right-radius:0px;
  4256. border-bottom-left-radius:0px;
  4257. -moz-box-shadow:none;
  4258. -webkit-box-shadow:none;
  4259. box-shadow:none;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:11px;
  4264. color:#FFFFFF;
  4265. text-align:left;
  4266. }
  4267. #u3959 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:1759px;
  4271. top:548px;
  4272. width:174px;
  4273. height:20px;
  4274. display:flex;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:11px;
  4279. color:#FFFFFF;
  4280. text-align:left;
  4281. }
  4282. #u3959 .text {
  4283. position:absolute;
  4284. align-self:flex-start;
  4285. padding:2px 2px 2px 2px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u3959_text {
  4290. border-width:0px;
  4291. white-space:nowrap;
  4292. text-transform:none;
  4293. }
  4294. #u3960 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:0px;
  4300. height:0px;
  4301. }
  4302. #u3961_div {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:202px;
  4308. height:30px;
  4309. background:inherit;
  4310. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4311. border:none;
  4312. border-radius:0px;
  4313. -moz-box-shadow:none;
  4314. -webkit-box-shadow:none;
  4315. box-shadow:none;
  4316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:12px;
  4320. color:rgba(255, 255, 255, 0.698039215686274);
  4321. }
  4322. #u3961 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:1759px;
  4326. top:449px;
  4327. width:202px;
  4328. height:30px;
  4329. display:flex;
  4330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4331. font-weight:400;
  4332. font-style:normal;
  4333. font-size:12px;
  4334. color:rgba(255, 255, 255, 0.698039215686274);
  4335. }
  4336. #u3961 .text {
  4337. position:absolute;
  4338. align-self:center;
  4339. padding:2px 2px 2px 2px;
  4340. box-sizing:border-box;
  4341. width:100%;
  4342. }
  4343. #u3961_text {
  4344. border-width:0px;
  4345. word-wrap:break-word;
  4346. text-transform:none;
  4347. visibility:hidden;
  4348. }
  4349. #u3962_div {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:61px;
  4355. height:24px;
  4356. background:inherit;
  4357. background-color:rgba(245, 154, 35, 0);
  4358. border:none;
  4359. border-left:0px;
  4360. border-top:0px;
  4361. border-right:0px;
  4362. border-radius:0px;
  4363. border-bottom-right-radius:0px;
  4364. border-bottom-left-radius:0px;
  4365. -moz-box-shadow:none;
  4366. -webkit-box-shadow:none;
  4367. box-shadow:none;
  4368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4369. font-weight:400;
  4370. font-style:normal;
  4371. font-size:14px;
  4372. color:#FFFFFF;
  4373. text-align:left;
  4374. }
  4375. #u3962 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:1769px;
  4379. top:452px;
  4380. width:61px;
  4381. height:24px;
  4382. display:flex;
  4383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4384. font-weight:400;
  4385. font-style:normal;
  4386. font-size:14px;
  4387. color:#FFFFFF;
  4388. text-align:left;
  4389. }
  4390. #u3962 .text {
  4391. position:absolute;
  4392. align-self:flex-start;
  4393. padding:2px 2px 2px 2px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u3962_text {
  4398. border-width:0px;
  4399. white-space:nowrap;
  4400. text-transform:none;
  4401. }
  4402. #u3963_div {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:61px;
  4408. height:24px;
  4409. background:inherit;
  4410. background-color:rgba(245, 154, 35, 0);
  4411. border:none;
  4412. border-left:0px;
  4413. border-top:0px;
  4414. border-right:0px;
  4415. border-radius:0px;
  4416. border-bottom-right-radius:0px;
  4417. border-bottom-left-radius:0px;
  4418. -moz-box-shadow:none;
  4419. -webkit-box-shadow:none;
  4420. box-shadow:none;
  4421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4422. font-weight:400;
  4423. font-style:normal;
  4424. font-size:14px;
  4425. color:#FFFFFF;
  4426. text-align:left;
  4427. }
  4428. #u3963 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:1839px;
  4432. top:452px;
  4433. width:61px;
  4434. height:24px;
  4435. display:flex;
  4436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:14px;
  4440. color:#FFFFFF;
  4441. text-align:left;
  4442. }
  4443. #u3963 .text {
  4444. position:absolute;
  4445. align-self:flex-start;
  4446. padding:2px 2px 2px 2px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u3963_text {
  4451. border-width:0px;
  4452. white-space:nowrap;
  4453. text-transform:none;
  4454. }
  4455. #u3964 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:0px;
  4461. height:0px;
  4462. }
  4463. #u3965_div {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:202px;
  4469. height:30px;
  4470. background:inherit;
  4471. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4472. border:none;
  4473. border-radius:0px;
  4474. -moz-box-shadow:none;
  4475. -webkit-box-shadow:none;
  4476. box-shadow:none;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:12px;
  4481. color:rgba(255, 255, 255, 0.698039215686274);
  4482. }
  4483. #u3965 {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:1759px;
  4487. top:480px;
  4488. width:202px;
  4489. height:30px;
  4490. display:flex;
  4491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4492. font-weight:400;
  4493. font-style:normal;
  4494. font-size:12px;
  4495. color:rgba(255, 255, 255, 0.698039215686274);
  4496. }
  4497. #u3965 .text {
  4498. position:absolute;
  4499. align-self:center;
  4500. padding:2px 2px 2px 2px;
  4501. box-sizing:border-box;
  4502. width:100%;
  4503. }
  4504. #u3965_text {
  4505. border-width:0px;
  4506. word-wrap:break-word;
  4507. text-transform:none;
  4508. visibility:hidden;
  4509. }
  4510. #u3966_div {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:0px;
  4514. top:0px;
  4515. width:61px;
  4516. height:24px;
  4517. background:inherit;
  4518. background-color:rgba(245, 154, 35, 0);
  4519. border:none;
  4520. border-left:0px;
  4521. border-top:0px;
  4522. border-right:0px;
  4523. border-radius:0px;
  4524. border-bottom-right-radius:0px;
  4525. border-bottom-left-radius:0px;
  4526. -moz-box-shadow:none;
  4527. -webkit-box-shadow:none;
  4528. box-shadow:none;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:14px;
  4533. color:#FFFFFF;
  4534. text-align:left;
  4535. }
  4536. #u3966 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:1769px;
  4540. top:483px;
  4541. width:61px;
  4542. height:24px;
  4543. display:flex;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:14px;
  4548. color:#FFFFFF;
  4549. text-align:left;
  4550. }
  4551. #u3966 .text {
  4552. position:absolute;
  4553. align-self:flex-start;
  4554. padding:2px 2px 2px 2px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u3966_text {
  4559. border-width:0px;
  4560. white-space:nowrap;
  4561. text-transform:none;
  4562. }
  4563. #u3967_div {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:46px;
  4569. height:24px;
  4570. background:inherit;
  4571. background-color:rgba(245, 154, 35, 0);
  4572. border:none;
  4573. border-left:0px;
  4574. border-top:0px;
  4575. border-right:0px;
  4576. border-radius:0px;
  4577. border-bottom-right-radius:0px;
  4578. border-bottom-left-radius:0px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. color:#FFFFFF;
  4587. text-align:left;
  4588. }
  4589. #u3967 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:1842px;
  4593. top:483px;
  4594. width:46px;
  4595. height:24px;
  4596. display:flex;
  4597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4598. font-weight:400;
  4599. font-style:normal;
  4600. font-size:14px;
  4601. color:#FFFFFF;
  4602. text-align:left;
  4603. }
  4604. #u3967 .text {
  4605. position:absolute;
  4606. align-self:flex-start;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u3967_text {
  4612. border-width:0px;
  4613. white-space:nowrap;
  4614. text-transform:none;
  4615. }
  4616. #u3968 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:0px;
  4622. height:0px;
  4623. }
  4624. #u3969_div {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:202px;
  4630. height:30px;
  4631. background:inherit;
  4632. background-color:rgba(255, 255, 255, 0.0980392156862745);
  4633. border:none;
  4634. border-radius:0px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. color:rgba(255, 255, 255, 0.698039215686274);
  4643. }
  4644. #u3969 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:1759px;
  4648. top:511px;
  4649. width:202px;
  4650. height:30px;
  4651. display:flex;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:12px;
  4656. color:rgba(255, 255, 255, 0.698039215686274);
  4657. }
  4658. #u3969 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 2px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u3969_text {
  4666. border-width:0px;
  4667. word-wrap:break-word;
  4668. text-transform:none;
  4669. visibility:hidden;
  4670. }
  4671. #u3970_div {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:61px;
  4677. height:24px;
  4678. background:inherit;
  4679. background-color:rgba(245, 154, 35, 0);
  4680. border:none;
  4681. border-left:0px;
  4682. border-top:0px;
  4683. border-right:0px;
  4684. border-radius:0px;
  4685. border-bottom-right-radius:0px;
  4686. border-bottom-left-radius:0px;
  4687. -moz-box-shadow:none;
  4688. -webkit-box-shadow:none;
  4689. box-shadow:none;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:14px;
  4694. color:#FFFFFF;
  4695. text-align:left;
  4696. }
  4697. #u3970 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:1769px;
  4701. top:514px;
  4702. width:61px;
  4703. height:24px;
  4704. display:flex;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. color:#FFFFFF;
  4710. text-align:left;
  4711. }
  4712. #u3970 .text {
  4713. position:absolute;
  4714. align-self:flex-start;
  4715. padding:2px 2px 2px 2px;
  4716. box-sizing:border-box;
  4717. width:100%;
  4718. }
  4719. #u3970_text {
  4720. border-width:0px;
  4721. white-space:nowrap;
  4722. text-transform:none;
  4723. }
  4724. #u3971_div {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:0px;
  4728. top:0px;
  4729. width:95px;
  4730. height:24px;
  4731. background:inherit;
  4732. background-color:rgba(245, 154, 35, 0);
  4733. border:none;
  4734. border-left:0px;
  4735. border-top:0px;
  4736. border-right:0px;
  4737. border-radius:0px;
  4738. border-bottom-right-radius:0px;
  4739. border-bottom-left-radius:0px;
  4740. -moz-box-shadow:none;
  4741. -webkit-box-shadow:none;
  4742. box-shadow:none;
  4743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:14px;
  4747. color:#FFFFFF;
  4748. text-align:left;
  4749. }
  4750. #u3971 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:1840px;
  4754. top:514px;
  4755. width:95px;
  4756. height:24px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:14px;
  4762. color:#FFFFFF;
  4763. text-align:left;
  4764. }
  4765. #u3971 .text {
  4766. position:absolute;
  4767. align-self:flex-start;
  4768. padding:2px 2px 2px 2px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u3971_text {
  4773. border-width:0px;
  4774. white-space:nowrap;
  4775. text-transform:none;
  4776. }
  4777. #u3972_div {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:60px;
  4783. height:30px;
  4784. background:inherit;
  4785. background-color:rgba(245, 154, 35, 1);
  4786. box-sizing:border-box;
  4787. border-width:1px;
  4788. border-style:solid;
  4789. border-color:rgba(245, 154, 35, 1);
  4790. border-radius:4px;
  4791. -moz-box-shadow:none;
  4792. -webkit-box-shadow:none;
  4793. box-shadow:none;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:14px;
  4798. color:#FFFFFF;
  4799. }
  4800. #u3972 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:1898px;
  4804. top:595px;
  4805. width:60px;
  4806. height:30px;
  4807. display:flex;
  4808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4809. font-weight:400;
  4810. font-style:normal;
  4811. font-size:14px;
  4812. color:#FFFFFF;
  4813. }
  4814. #u3972 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 2px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u3972_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. }
  4826. #u3973 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:0px;
  4832. height:0px;
  4833. }
  4834. #u3974_div {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:100px;
  4840. height:100px;
  4841. background:inherit;
  4842. background-color:rgba(255, 255, 255, 1);
  4843. box-sizing:border-box;
  4844. border-width:1px;
  4845. border-style:solid;
  4846. border-color:rgba(242, 242, 242, 1);
  4847. border-radius:3px;
  4848. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4849. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4850. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  4851. }
  4852. #u3974 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:1628px;
  4856. top:455px;
  4857. width:100px;
  4858. height:100px;
  4859. display:flex;
  4860. }
  4861. #u3974 .text {
  4862. position:absolute;
  4863. align-self:center;
  4864. padding:2px 2px 2px 2px;
  4865. box-sizing:border-box;
  4866. width:100%;
  4867. }
  4868. #u3974_text {
  4869. border-width:0px;
  4870. word-wrap:break-word;
  4871. text-transform:none;
  4872. visibility:hidden;
  4873. }
  4874. #u3975_div {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:0px;
  4878. top:0px;
  4879. width:83px;
  4880. height:40px;
  4881. background:inherit;
  4882. background-color:rgba(255, 255, 255, 1);
  4883. box-sizing:border-box;
  4884. border-width:1px;
  4885. border-style:solid;
  4886. border-color:rgba(242, 242, 242, 1);
  4887. border-left:0px;
  4888. border-top:0px;
  4889. border-right:0px;
  4890. border-radius:4px;
  4891. border-bottom-right-radius:0px;
  4892. border-bottom-left-radius:0px;
  4893. -moz-box-shadow:none;
  4894. -webkit-box-shadow:none;
  4895. box-shadow:none;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:14px;
  4900. }
  4901. #u3975 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:1636px;
  4905. top:466px;
  4906. width:83px;
  4907. height:40px;
  4908. display:flex;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. }
  4914. #u3975 .text {
  4915. position:absolute;
  4916. align-self:center;
  4917. padding:5px 0px 5px 0px;
  4918. box-sizing:border-box;
  4919. width:100%;
  4920. }
  4921. #u3975_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. }
  4926. #u3976_div {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:83px;
  4932. height:40px;
  4933. background:inherit;
  4934. background-color:rgba(255, 255, 255, 1);
  4935. border:none;
  4936. border-left:0px;
  4937. border-top:0px;
  4938. border-right:0px;
  4939. border-radius:4px;
  4940. border-bottom-right-radius:0px;
  4941. border-bottom-left-radius:0px;
  4942. -moz-box-shadow:none;
  4943. -webkit-box-shadow:none;
  4944. box-shadow:none;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:14px;
  4949. }
  4950. #u3976 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:1636px;
  4954. top:506px;
  4955. width:83px;
  4956. height:40px;
  4957. display:flex;
  4958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4959. font-weight:400;
  4960. font-style:normal;
  4961. font-size:14px;
  4962. }
  4963. #u3976 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:5px 0px 5px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u3976_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. }
  4975. #u3977_input {
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:73px;
  4980. height:22px;
  4981. padding:2px 2px 2px 2px;
  4982. font-family:'ArialMT', 'Arial', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:12px;
  4986. letter-spacing:normal;
  4987. color:#333333;
  4988. vertical-align:none;
  4989. text-align:left;
  4990. text-transform:none;
  4991. background-color:transparent;
  4992. border-color:transparent;
  4993. }
  4994. #u3977_input.disabled {
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:73px;
  4999. height:22px;
  5000. padding:2px 2px 2px 2px;
  5001. font-family:'ArialMT', 'Arial', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:12px;
  5005. letter-spacing:normal;
  5006. color:#333333;
  5007. vertical-align:none;
  5008. text-align:left;
  5009. text-transform:none;
  5010. background-color:transparent;
  5011. border-color:transparent;
  5012. }
  5013. #u3977_div {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:73px;
  5019. height:22px;
  5020. background:inherit;
  5021. background-color:rgba(255, 255, 255, 0);
  5022. border:none;
  5023. border-radius:0px;
  5024. -moz-box-shadow:none;
  5025. -webkit-box-shadow:none;
  5026. box-shadow:none;
  5027. font-size:12px;
  5028. color:#333333;
  5029. }
  5030. #u3977 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:1666px;
  5034. top:563px;
  5035. width:73px;
  5036. height:22px;
  5037. display:flex;
  5038. font-size:12px;
  5039. color:#333333;
  5040. }
  5041. #u3977 .text {
  5042. position:absolute;
  5043. align-self:flex-start;
  5044. padding:2px 2px 2px 2px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u3977_div.disabled {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:73px;
  5054. height:22px;
  5055. background:inherit;
  5056. background-color:rgba(240, 240, 240, 1);
  5057. border:none;
  5058. border-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-size:12px;
  5063. color:#333333;
  5064. }
  5065. #u3977.disabled {
  5066. }
  5067. .u3977_input_option {
  5068. font-size:12px;
  5069. }
  5070. #u3978_input {
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:73px;
  5075. height:22px;
  5076. padding:2px 2px 2px 2px;
  5077. font-family:'ArialMT', 'Arial', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:12px;
  5081. letter-spacing:normal;
  5082. color:#333333;
  5083. vertical-align:none;
  5084. text-align:left;
  5085. text-transform:none;
  5086. background-color:transparent;
  5087. border-color:transparent;
  5088. }
  5089. #u3978_input.disabled {
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:73px;
  5094. height:22px;
  5095. padding:2px 2px 2px 2px;
  5096. font-family:'ArialMT', 'Arial', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:12px;
  5100. letter-spacing:normal;
  5101. color:#333333;
  5102. vertical-align:none;
  5103. text-align:left;
  5104. text-transform:none;
  5105. background-color:transparent;
  5106. border-color:transparent;
  5107. }
  5108. #u3978_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:73px;
  5114. height:22px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 0);
  5117. border:none;
  5118. border-radius:0px;
  5119. -moz-box-shadow:none;
  5120. -webkit-box-shadow:none;
  5121. box-shadow:none;
  5122. font-size:12px;
  5123. color:#333333;
  5124. }
  5125. #u3978 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:1589px;
  5129. top:563px;
  5130. width:73px;
  5131. height:22px;
  5132. display:flex;
  5133. font-size:12px;
  5134. color:#333333;
  5135. }
  5136. #u3978 .text {
  5137. position:absolute;
  5138. align-self:flex-start;
  5139. padding:2px 2px 2px 2px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u3978_div.disabled {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:73px;
  5149. height:22px;
  5150. background:inherit;
  5151. background-color:rgba(240, 240, 240, 1);
  5152. border:none;
  5153. border-radius:0px;
  5154. -moz-box-shadow:none;
  5155. -webkit-box-shadow:none;
  5156. box-shadow:none;
  5157. font-size:12px;
  5158. color:#333333;
  5159. }
  5160. #u3978.disabled {
  5161. }
  5162. .u3978_input_option {
  5163. font-size:12px;
  5164. }
  5165. #u3979 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:0px;
  5171. height:0px;
  5172. }
  5173. #u3980_div {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:440px;
  5179. height:300px;
  5180. background:inherit;
  5181. background-color:rgba(95, 72, 47, 1);
  5182. box-sizing:border-box;
  5183. border-width:2px;
  5184. border-style:solid;
  5185. border-color:rgba(245, 154, 35, 1);
  5186. border-radius:10px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. color:#FFFFFF;
  5195. text-align:left;
  5196. }
  5197. #u3980 {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:1539px;
  5201. top:660px;
  5202. width:440px;
  5203. height:300px;
  5204. display:flex;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:12px;
  5209. color:#FFFFFF;
  5210. text-align:left;
  5211. }
  5212. #u3980 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 10px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u3980_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. visibility:hidden;
  5224. }
  5225. #u3981 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:0px;
  5231. height:0px;
  5232. }
  5233. #u3982_div {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:440px;
  5239. height:40px;
  5240. background:inherit;
  5241. background-color:rgba(221, 142, 35, 1);
  5242. box-sizing:border-box;
  5243. border-width:2px;
  5244. border-style:solid;
  5245. border-color:rgba(245, 154, 35, 1);
  5246. border-radius:10px;
  5247. border-bottom-right-radius:0px;
  5248. border-bottom-left-radius:0px;
  5249. -moz-box-shadow:none;
  5250. -webkit-box-shadow:none;
  5251. box-shadow:none;
  5252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5253. font-weight:400;
  5254. font-style:normal;
  5255. font-size:12px;
  5256. color:#FFFFFF;
  5257. text-align:left;
  5258. }
  5259. #u3982 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:1539px;
  5263. top:660px;
  5264. width:440px;
  5265. height:40px;
  5266. display:flex;
  5267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:12px;
  5271. color:#FFFFFF;
  5272. text-align:left;
  5273. }
  5274. #u3982 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 2px 2px 10px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u3982_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u3983_div {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:77px;
  5293. height:29px;
  5294. background:inherit;
  5295. background-color:rgba(245, 154, 35, 0);
  5296. border:none;
  5297. border-left:0px;
  5298. border-top:0px;
  5299. border-right:0px;
  5300. border-radius:0px;
  5301. border-bottom-right-radius:0px;
  5302. border-bottom-left-radius:0px;
  5303. -moz-box-shadow:none;
  5304. -webkit-box-shadow:none;
  5305. box-shadow:none;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:18px;
  5310. color:#FFFFFF;
  5311. text-align:left;
  5312. }
  5313. #u3983 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:1559px;
  5317. top:665px;
  5318. width:77px;
  5319. height:29px;
  5320. display:flex;
  5321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5322. font-weight:400;
  5323. font-style:normal;
  5324. font-size:18px;
  5325. color:#FFFFFF;
  5326. text-align:left;
  5327. }
  5328. #u3983 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 2px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u3983_text {
  5336. border-width:0px;
  5337. white-space:nowrap;
  5338. text-transform:none;
  5339. }
  5340. #u3984_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:41px;
  5346. height:29px;
  5347. background:inherit;
  5348. background-color:rgba(245, 154, 35, 0);
  5349. border:none;
  5350. border-left:0px;
  5351. border-top:0px;
  5352. border-right:0px;
  5353. border-radius:0px;
  5354. border-bottom-right-radius:0px;
  5355. border-bottom-left-radius:0px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:18px;
  5363. color:#FFFFFF;
  5364. text-align:left;
  5365. }
  5366. #u3984 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:1916px;
  5370. top:665px;
  5371. width:41px;
  5372. height:29px;
  5373. display:flex;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:18px;
  5378. color:#FFFFFF;
  5379. text-align:left;
  5380. }
  5381. #u3984 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 2px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u3984_text {
  5389. border-width:0px;
  5390. white-space:nowrap;
  5391. text-transform:none;
  5392. }
  5393. #u3985_img {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:180px;
  5399. height:180px;
  5400. }
  5401. #u3985 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:1559px;
  5405. top:720px;
  5406. width:180px;
  5407. height:180px;
  5408. display:flex;
  5409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. }
  5413. #u3985 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 2px 2px 2px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u3985_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. }
  5425. #u3986_div {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:149px;
  5431. height:34px;
  5432. background:inherit;
  5433. background-color:rgba(245, 154, 35, 0);
  5434. border:none;
  5435. border-left:0px;
  5436. border-top:0px;
  5437. border-right:0px;
  5438. border-radius:0px;
  5439. border-bottom-right-radius:0px;
  5440. border-bottom-left-radius:0px;
  5441. -moz-box-shadow:none;
  5442. -webkit-box-shadow:none;
  5443. box-shadow:none;
  5444. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5445. font-weight:500;
  5446. font-style:normal;
  5447. font-size:18px;
  5448. color:#FFFFFF;
  5449. text-align:left;
  5450. line-height:30px;
  5451. }
  5452. #u3986 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:1759px;
  5456. top:720px;
  5457. width:149px;
  5458. height:34px;
  5459. display:flex;
  5460. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5461. font-weight:500;
  5462. font-style:normal;
  5463. font-size:18px;
  5464. color:#FFFFFF;
  5465. text-align:left;
  5466. line-height:30px;
  5467. }
  5468. #u3986 .text {
  5469. position:absolute;
  5470. align-self:flex-start;
  5471. padding:2px 2px 2px 2px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u3986_text {
  5476. border-width:0px;
  5477. white-space:nowrap;
  5478. text-transform:none;
  5479. }
  5480. #u3987_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:27px;
  5486. height:20px;
  5487. background:inherit;
  5488. background-color:rgba(245, 154, 35, 0);
  5489. border:none;
  5490. border-left:0px;
  5491. border-top:0px;
  5492. border-right:0px;
  5493. border-radius:0px;
  5494. border-bottom-right-radius:0px;
  5495. border-bottom-left-radius:0px;
  5496. -moz-box-shadow:none;
  5497. -webkit-box-shadow:none;
  5498. box-shadow:none;
  5499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:11px;
  5503. color:#FFFFFF;
  5504. text-align:left;
  5505. }
  5506. #u3987 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:1760px;
  5510. top:753px;
  5511. width:27px;
  5512. height:20px;
  5513. display:flex;
  5514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:11px;
  5518. color:#FFFFFF;
  5519. text-align:left;
  5520. }
  5521. #u3987 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:2px 2px 2px 2px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u3987_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u3988_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:71px;
  5539. height:20px;
  5540. background:inherit;
  5541. background-color:rgba(245, 154, 35, 0);
  5542. border:none;
  5543. border-left:0px;
  5544. border-top:0px;
  5545. border-right:0px;
  5546. border-radius:0px;
  5547. border-bottom-right-radius:0px;
  5548. border-bottom-left-radius:0px;
  5549. -moz-box-shadow:none;
  5550. -webkit-box-shadow:none;
  5551. box-shadow:none;
  5552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:11px;
  5556. color:#FFFFFF;
  5557. text-align:left;
  5558. }
  5559. #u3988 {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:1799px;
  5563. top:753px;
  5564. width:71px;
  5565. height:20px;
  5566. display:flex;
  5567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:11px;
  5571. color:#FFFFFF;
  5572. text-align:left;
  5573. }
  5574. #u3988 .text {
  5575. position:absolute;
  5576. align-self:flex-start;
  5577. padding:2px 2px 2px 2px;
  5578. box-sizing:border-box;
  5579. width:100%;
  5580. }
  5581. #u3988_text {
  5582. border-width:0px;
  5583. white-space:nowrap;
  5584. text-transform:none;
  5585. }
  5586. #u3989_div {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:174px;
  5592. height:20px;
  5593. background:inherit;
  5594. background-color:rgba(245, 154, 35, 0);
  5595. border:none;
  5596. border-left:0px;
  5597. border-top:0px;
  5598. border-right:0px;
  5599. border-radius:0px;
  5600. border-bottom-right-radius:0px;
  5601. border-bottom-left-radius:0px;
  5602. -moz-box-shadow:none;
  5603. -webkit-box-shadow:none;
  5604. box-shadow:none;
  5605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5606. font-weight:400;
  5607. font-style:normal;
  5608. font-size:11px;
  5609. color:#FFFFFF;
  5610. text-align:left;
  5611. }
  5612. #u3989 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:1760px;
  5616. top:879px;
  5617. width:174px;
  5618. height:20px;
  5619. display:flex;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:11px;
  5624. color:#FFFFFF;
  5625. text-align:left;
  5626. }
  5627. #u3989 .text {
  5628. position:absolute;
  5629. align-self:flex-start;
  5630. padding:2px 2px 2px 2px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u3989_text {
  5635. border-width:0px;
  5636. white-space:nowrap;
  5637. text-transform:none;
  5638. }
  5639. #u3990 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:0px;
  5645. height:0px;
  5646. }
  5647. #u3991_div {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:202px;
  5653. height:30px;
  5654. background:inherit;
  5655. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5656. border:none;
  5657. border-radius:0px;
  5658. -moz-box-shadow:none;
  5659. -webkit-box-shadow:none;
  5660. box-shadow:none;
  5661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:12px;
  5665. color:rgba(255, 255, 255, 0.698039215686274);
  5666. }
  5667. #u3991 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:1760px;
  5671. top:780px;
  5672. width:202px;
  5673. height:30px;
  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:rgba(255, 255, 255, 0.698039215686274);
  5680. }
  5681. #u3991 .text {
  5682. position:absolute;
  5683. align-self:center;
  5684. padding:2px 2px 2px 2px;
  5685. box-sizing:border-box;
  5686. width:100%;
  5687. }
  5688. #u3991_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. visibility:hidden;
  5693. }
  5694. #u3992_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:67px;
  5700. height:24px;
  5701. background:inherit;
  5702. background-color:rgba(245, 154, 35, 0);
  5703. border:none;
  5704. border-left:0px;
  5705. border-top:0px;
  5706. border-right:0px;
  5707. border-radius:0px;
  5708. border-bottom-right-radius:0px;
  5709. border-bottom-left-radius:0px;
  5710. -moz-box-shadow:none;
  5711. -webkit-box-shadow:none;
  5712. box-shadow:none;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:14px;
  5717. color:#FFFFFF;
  5718. text-align:left;
  5719. }
  5720. #u3992 {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:1770px;
  5724. top:783px;
  5725. width:67px;
  5726. height:24px;
  5727. display:flex;
  5728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:14px;
  5732. color:#FFFFFF;
  5733. text-align:left;
  5734. }
  5735. #u3992 .text {
  5736. position:absolute;
  5737. align-self:flex-start;
  5738. padding:2px 2px 2px 2px;
  5739. box-sizing:border-box;
  5740. width:100%;
  5741. }
  5742. #u3992_text {
  5743. border-width:0px;
  5744. white-space:nowrap;
  5745. text-transform:none;
  5746. }
  5747. #u3993_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:50px;
  5753. height:24px;
  5754. background:inherit;
  5755. background-color:rgba(245, 154, 35, 0);
  5756. border:none;
  5757. border-left:0px;
  5758. border-top:0px;
  5759. border-right:0px;
  5760. border-radius:0px;
  5761. border-bottom-right-radius:0px;
  5762. border-bottom-left-radius:0px;
  5763. -moz-box-shadow:none;
  5764. -webkit-box-shadow:none;
  5765. box-shadow:none;
  5766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:14px;
  5770. color:#FFFFFF;
  5771. text-align:right;
  5772. }
  5773. #u3993 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:1903px;
  5777. top:783px;
  5778. width:50px;
  5779. height:24px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:14px;
  5785. color:#FFFFFF;
  5786. text-align:right;
  5787. }
  5788. #u3993 .text {
  5789. position:absolute;
  5790. align-self:flex-start;
  5791. padding:2px 2px 2px 2px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u3993_text {
  5796. border-width:0px;
  5797. white-space:nowrap;
  5798. text-transform:none;
  5799. }
  5800. #u3994 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:0px;
  5806. height:0px;
  5807. }
  5808. #u3995_div {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:202px;
  5814. height:30px;
  5815. background:inherit;
  5816. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5817. border:none;
  5818. border-radius:0px;
  5819. -moz-box-shadow:none;
  5820. -webkit-box-shadow:none;
  5821. box-shadow:none;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:12px;
  5826. color:rgba(255, 255, 255, 0.698039215686274);
  5827. }
  5828. #u3995 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1760px;
  5832. top:811px;
  5833. width:202px;
  5834. height:30px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. color:rgba(255, 255, 255, 0.698039215686274);
  5841. }
  5842. #u3995 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:2px 2px 2px 2px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u3995_text {
  5850. border-width:0px;
  5851. word-wrap:break-word;
  5852. text-transform:none;
  5853. visibility:hidden;
  5854. }
  5855. #u3996_div {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:69px;
  5861. height:24px;
  5862. background:inherit;
  5863. background-color:rgba(245, 154, 35, 0);
  5864. border:none;
  5865. border-left:0px;
  5866. border-top:0px;
  5867. border-right:0px;
  5868. border-radius:0px;
  5869. border-bottom-right-radius:0px;
  5870. border-bottom-left-radius:0px;
  5871. -moz-box-shadow:none;
  5872. -webkit-box-shadow:none;
  5873. box-shadow:none;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:14px;
  5878. color:#FFFFFF;
  5879. text-align:left;
  5880. }
  5881. #u3996 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:1770px;
  5885. top:814px;
  5886. width:69px;
  5887. height:24px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:14px;
  5893. color:#FFFFFF;
  5894. text-align:left;
  5895. }
  5896. #u3996 .text {
  5897. position:absolute;
  5898. align-self:flex-start;
  5899. padding:2px 2px 2px 2px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u3996_text {
  5904. border-width:0px;
  5905. white-space:nowrap;
  5906. text-transform:none;
  5907. }
  5908. #u3997_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:45px;
  5914. height:24px;
  5915. background:inherit;
  5916. background-color:rgba(245, 154, 35, 0);
  5917. border:none;
  5918. border-left:0px;
  5919. border-top:0px;
  5920. border-right:0px;
  5921. border-radius:0px;
  5922. border-bottom-right-radius:0px;
  5923. border-bottom-left-radius:0px;
  5924. -moz-box-shadow:none;
  5925. -webkit-box-shadow:none;
  5926. box-shadow:none;
  5927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:14px;
  5931. color:#FFFFFF;
  5932. text-align:right;
  5933. }
  5934. #u3997 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:1908px;
  5938. top:814px;
  5939. width:45px;
  5940. height:24px;
  5941. display:flex;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. color:#FFFFFF;
  5947. text-align:right;
  5948. }
  5949. #u3997 .text {
  5950. position:absolute;
  5951. align-self:flex-start;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u3997_text {
  5957. border-width:0px;
  5958. white-space:nowrap;
  5959. text-transform:none;
  5960. }
  5961. #u3998 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:0px;
  5967. height:0px;
  5968. }
  5969. #u3999_div {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:202px;
  5975. height:30px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 0.0980392156862745);
  5978. border:none;
  5979. border-radius:0px;
  5980. -moz-box-shadow:none;
  5981. -webkit-box-shadow:none;
  5982. box-shadow:none;
  5983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:12px;
  5987. color:rgba(255, 255, 255, 0.698039215686274);
  5988. }
  5989. #u3999 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:1760px;
  5993. top:842px;
  5994. width:202px;
  5995. height:30px;
  5996. display:flex;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:12px;
  6001. color:rgba(255, 255, 255, 0.698039215686274);
  6002. }
  6003. #u3999 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:2px 2px 2px 2px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u3999_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. visibility:hidden;
  6015. }
  6016. #u4000_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:69px;
  6022. height:24px;
  6023. background:inherit;
  6024. background-color:rgba(245, 154, 35, 0);
  6025. border:none;
  6026. border-left:0px;
  6027. border-top:0px;
  6028. border-right:0px;
  6029. border-radius:0px;
  6030. border-bottom-right-radius:0px;
  6031. border-bottom-left-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:14px;
  6039. color:#FFFFFF;
  6040. text-align:left;
  6041. }
  6042. #u4000 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:1770px;
  6046. top:845px;
  6047. width:69px;
  6048. height:24px;
  6049. display:flex;
  6050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6051. font-weight:400;
  6052. font-style:normal;
  6053. font-size:14px;
  6054. color:#FFFFFF;
  6055. text-align:left;
  6056. }
  6057. #u4000 .text {
  6058. position:absolute;
  6059. align-self:flex-start;
  6060. padding:2px 2px 2px 2px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u4000_text {
  6065. border-width:0px;
  6066. white-space:nowrap;
  6067. text-transform:none;
  6068. }
  6069. #u4001_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:44px;
  6075. height:24px;
  6076. background:inherit;
  6077. background-color:rgba(245, 154, 35, 0);
  6078. border:none;
  6079. border-left:0px;
  6080. border-top:0px;
  6081. border-right:0px;
  6082. border-radius:0px;
  6083. border-bottom-right-radius:0px;
  6084. border-bottom-left-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6089. font-weight:400;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. color:#FFFFFF;
  6093. text-align:right;
  6094. }
  6095. #u4001 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:1909px;
  6099. top:845px;
  6100. width:44px;
  6101. height:24px;
  6102. display:flex;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:14px;
  6107. color:#FFFFFF;
  6108. text-align:right;
  6109. }
  6110. #u4001 .text {
  6111. position:absolute;
  6112. align-self:flex-start;
  6113. padding:2px 2px 2px 2px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u4001_text {
  6118. border-width:0px;
  6119. white-space:nowrap;
  6120. text-transform:none;
  6121. }
  6122. #u4002_div {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:60px;
  6128. height:30px;
  6129. background:inherit;
  6130. background-color:rgba(245, 154, 35, 1);
  6131. box-sizing:border-box;
  6132. border-width:1px;
  6133. border-style:solid;
  6134. border-color:rgba(245, 154, 35, 1);
  6135. border-radius:4px;
  6136. -moz-box-shadow:none;
  6137. -webkit-box-shadow:none;
  6138. box-shadow:none;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:14px;
  6143. color:#FFFFFF;
  6144. }
  6145. #u4002 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:1897px;
  6149. top:910px;
  6150. width:60px;
  6151. height:30px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. font-size:14px;
  6157. color:#FFFFFF;
  6158. }
  6159. #u4002 .text {
  6160. position:absolute;
  6161. align-self:center;
  6162. padding:2px 2px 2px 2px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u4002_text {
  6167. border-width:0px;
  6168. word-wrap:break-word;
  6169. text-transform:none;
  6170. }
  6171. #u4003 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:0px;
  6177. height:0px;
  6178. }
  6179. #u4004_img {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:231px;
  6185. height:167px;
  6186. }
  6187. #u4004 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:33px;
  6191. top:521px;
  6192. width:231px;
  6193. height:167px;
  6194. display:flex;
  6195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6196. font-weight:400;
  6197. font-style:normal;
  6198. font-size:12px;
  6199. color:#FFFFFF;
  6200. text-align:left;
  6201. }
  6202. #u4004 .text {
  6203. position:absolute;
  6204. align-self:center;
  6205. padding:2px 2px 2px 10px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u4004_text {
  6210. border-width:0px;
  6211. word-wrap:break-word;
  6212. text-transform:none;
  6213. visibility:hidden;
  6214. }
  6215. #u4005 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:0px;
  6221. height:0px;
  6222. }
  6223. #u4006_div {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:61px;
  6229. height:17px;
  6230. background:inherit;
  6231. background-color:rgba(255, 255, 255, 0);
  6232. border:none;
  6233. border-radius:0px;
  6234. -moz-box-shadow:none;
  6235. -webkit-box-shadow:none;
  6236. box-shadow:none;
  6237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:12px;
  6241. color:#FFFFFF;
  6242. }
  6243. #u4006 {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:86px;
  6247. top:530px;
  6248. width:61px;
  6249. height:17px;
  6250. display:flex;
  6251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:12px;
  6255. color:#FFFFFF;
  6256. }
  6257. #u4006 .text {
  6258. position:absolute;
  6259. align-self:flex-start;
  6260. padding:0px 0px 0px 0px;
  6261. box-sizing:border-box;
  6262. width:100%;
  6263. }
  6264. #u4006_text {
  6265. border-width:0px;
  6266. white-space:nowrap;
  6267. text-transform:none;
  6268. }
  6269. #u4007_img {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:38px;
  6275. height:37px;
  6276. }
  6277. #u4007 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:42px;
  6281. top:533px;
  6282. width:38px;
  6283. height:37px;
  6284. display:flex;
  6285. }
  6286. #u4007 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:2px 2px 2px 2px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u4007_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. visibility:hidden;
  6298. }
  6299. #u4008_div {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:27px;
  6305. height:17px;
  6306. background:inherit;
  6307. background-color:rgba(255, 255, 255, 0);
  6308. border:none;
  6309. border-radius:0px;
  6310. -moz-box-shadow:none;
  6311. -webkit-box-shadow:none;
  6312. box-shadow:none;
  6313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:12px;
  6317. color:#FFFFFF;
  6318. }
  6319. #u4008 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:86px;
  6323. top:555px;
  6324. width:27px;
  6325. height:17px;
  6326. display:flex;
  6327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:12px;
  6331. color:#FFFFFF;
  6332. }
  6333. #u4008 .text {
  6334. position:absolute;
  6335. align-self:flex-start;
  6336. padding:0px 0px 0px 0px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u4008_text {
  6341. border-width:0px;
  6342. white-space:nowrap;
  6343. text-transform:none;
  6344. }
  6345. #u4009 {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:0px;
  6351. height:0px;
  6352. }
  6353. #u4010_div {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:49px;
  6359. height:17px;
  6360. background:inherit;
  6361. background-color:rgba(255, 255, 255, 0);
  6362. border:none;
  6363. border-radius:0px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:12px;
  6371. color:#FFFFFF;
  6372. }
  6373. #u4010 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:206px;
  6377. top:530px;
  6378. width:49px;
  6379. height:17px;
  6380. display:flex;
  6381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6382. font-weight:400;
  6383. font-style:normal;
  6384. font-size:12px;
  6385. color:#FFFFFF;
  6386. }
  6387. #u4010 .text {
  6388. position:absolute;
  6389. align-self:flex-start;
  6390. padding:0px 0px 0px 0px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u4010_text {
  6395. border-width:0px;
  6396. white-space:nowrap;
  6397. text-transform:none;
  6398. }
  6399. #u4011_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:38px;
  6405. height:37px;
  6406. }
  6407. #u4011 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:162px;
  6411. top:533px;
  6412. width:38px;
  6413. height:37px;
  6414. display:flex;
  6415. }
  6416. #u4011 .text {
  6417. position:absolute;
  6418. align-self:center;
  6419. padding:2px 2px 2px 2px;
  6420. box-sizing:border-box;
  6421. width:100%;
  6422. }
  6423. #u4011_text {
  6424. border-width:0px;
  6425. word-wrap:break-word;
  6426. text-transform:none;
  6427. visibility:hidden;
  6428. }
  6429. #u4012_div {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:0px;
  6433. top:0px;
  6434. width:27px;
  6435. height:17px;
  6436. background:inherit;
  6437. background-color:rgba(255, 255, 255, 0);
  6438. border:none;
  6439. border-radius:0px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:12px;
  6447. color:#FFFFFF;
  6448. }
  6449. #u4012 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:206px;
  6453. top:555px;
  6454. width:27px;
  6455. height:17px;
  6456. display:flex;
  6457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:12px;
  6461. color:#FFFFFF;
  6462. }
  6463. #u4012 .text {
  6464. position:absolute;
  6465. align-self:flex-start;
  6466. padding:0px 0px 0px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u4012_text {
  6471. border-width:0px;
  6472. white-space:nowrap;
  6473. text-transform:none;
  6474. }
  6475. #u4013 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:0px;
  6481. height:0px;
  6482. }
  6483. #u4014_div {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:49px;
  6489. height:17px;
  6490. background:inherit;
  6491. background-color:rgba(255, 255, 255, 0);
  6492. border:none;
  6493. border-radius:0px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. color:#FFFFFF;
  6502. }
  6503. #u4014 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:86px;
  6507. top:582px;
  6508. width:49px;
  6509. height:17px;
  6510. display:flex;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:12px;
  6515. color:#FFFFFF;
  6516. }
  6517. #u4014 .text {
  6518. position:absolute;
  6519. align-self:flex-start;
  6520. padding:0px 0px 0px 0px;
  6521. box-sizing:border-box;
  6522. width:100%;
  6523. }
  6524. #u4014_text {
  6525. border-width:0px;
  6526. white-space:nowrap;
  6527. text-transform:none;
  6528. }
  6529. #u4015_img {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:38px;
  6535. height:37px;
  6536. }
  6537. #u4015 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:42px;
  6541. top:585px;
  6542. width:38px;
  6543. height:37px;
  6544. display:flex;
  6545. }
  6546. #u4015 .text {
  6547. position:absolute;
  6548. align-self:center;
  6549. padding:2px 2px 2px 2px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u4015_text {
  6554. border-width:0px;
  6555. word-wrap:break-word;
  6556. text-transform:none;
  6557. visibility:hidden;
  6558. }
  6559. #u4016_div {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:27px;
  6565. height:17px;
  6566. background:inherit;
  6567. background-color:rgba(255, 255, 255, 0);
  6568. border:none;
  6569. border-radius:0px;
  6570. -moz-box-shadow:none;
  6571. -webkit-box-shadow:none;
  6572. box-shadow:none;
  6573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:12px;
  6577. color:#FFFFFF;
  6578. }
  6579. #u4016 {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:86px;
  6583. top:607px;
  6584. width:27px;
  6585. height:17px;
  6586. display:flex;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:12px;
  6591. color:#FFFFFF;
  6592. }
  6593. #u4016 .text {
  6594. position:absolute;
  6595. align-self:flex-start;
  6596. padding:0px 0px 0px 0px;
  6597. box-sizing:border-box;
  6598. width:100%;
  6599. }
  6600. #u4016_text {
  6601. border-width:0px;
  6602. white-space:nowrap;
  6603. text-transform:none;
  6604. }
  6605. #u4017 {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:0px;
  6611. height:0px;
  6612. }
  6613. #u4018_div {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:0px;
  6617. top:0px;
  6618. width:49px;
  6619. height:17px;
  6620. background:inherit;
  6621. background-color:rgba(255, 255, 255, 0);
  6622. border:none;
  6623. border-radius:0px;
  6624. -moz-box-shadow:none;
  6625. -webkit-box-shadow:none;
  6626. box-shadow:none;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:12px;
  6631. color:#FFFFFF;
  6632. }
  6633. #u4018 {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:206px;
  6637. top:582px;
  6638. width:49px;
  6639. height:17px;
  6640. display:flex;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. font-size:12px;
  6645. color:#FFFFFF;
  6646. }
  6647. #u4018 .text {
  6648. position:absolute;
  6649. align-self:flex-start;
  6650. padding:0px 0px 0px 0px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u4018_text {
  6655. border-width:0px;
  6656. white-space:nowrap;
  6657. text-transform:none;
  6658. }
  6659. #u4019_img {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:38px;
  6665. height:37px;
  6666. }
  6667. #u4019 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:162px;
  6671. top:585px;
  6672. width:38px;
  6673. height:37px;
  6674. display:flex;
  6675. }
  6676. #u4019 .text {
  6677. position:absolute;
  6678. align-self:center;
  6679. padding:2px 2px 2px 2px;
  6680. box-sizing:border-box;
  6681. width:100%;
  6682. }
  6683. #u4019_text {
  6684. border-width:0px;
  6685. word-wrap:break-word;
  6686. text-transform:none;
  6687. visibility:hidden;
  6688. }
  6689. #u4020_div {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:27px;
  6695. height:17px;
  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:#FFFFFF;
  6708. }
  6709. #u4020 {
  6710. border-width:0px;
  6711. position:absolute;
  6712. left:206px;
  6713. top:607px;
  6714. width:27px;
  6715. height:17px;
  6716. display:flex;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:12px;
  6721. color:#FFFFFF;
  6722. }
  6723. #u4020 .text {
  6724. position:absolute;
  6725. align-self:flex-start;
  6726. padding:0px 0px 0px 0px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u4020_text {
  6731. border-width:0px;
  6732. white-space:nowrap;
  6733. text-transform:none;
  6734. }
  6735. #u4021 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:0px;
  6741. height:0px;
  6742. }
  6743. #u4022_div {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:49px;
  6749. height:17px;
  6750. background:inherit;
  6751. background-color:rgba(255, 255, 255, 0);
  6752. border:none;
  6753. border-radius:0px;
  6754. -moz-box-shadow:none;
  6755. -webkit-box-shadow:none;
  6756. box-shadow:none;
  6757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6758. font-weight:400;
  6759. font-style:normal;
  6760. font-size:12px;
  6761. color:#FFFFFF;
  6762. }
  6763. #u4022 {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:86px;
  6767. top:634px;
  6768. width:49px;
  6769. height:17px;
  6770. display:flex;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:12px;
  6775. color:#FFFFFF;
  6776. }
  6777. #u4022 .text {
  6778. position:absolute;
  6779. align-self:flex-start;
  6780. padding:0px 0px 0px 0px;
  6781. box-sizing:border-box;
  6782. width:100%;
  6783. }
  6784. #u4022_text {
  6785. border-width:0px;
  6786. white-space:nowrap;
  6787. text-transform:none;
  6788. }
  6789. #u4023_img {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:0px;
  6793. top:0px;
  6794. width:38px;
  6795. height:37px;
  6796. }
  6797. #u4023 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:42px;
  6801. top:637px;
  6802. width:38px;
  6803. height:37px;
  6804. display:flex;
  6805. }
  6806. #u4023 .text {
  6807. position:absolute;
  6808. align-self:center;
  6809. padding:2px 2px 2px 2px;
  6810. box-sizing:border-box;
  6811. width:100%;
  6812. }
  6813. #u4023_text {
  6814. border-width:0px;
  6815. word-wrap:break-word;
  6816. text-transform:none;
  6817. visibility:hidden;
  6818. }
  6819. #u4024_div {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:27px;
  6825. height:17px;
  6826. background:inherit;
  6827. background-color:rgba(255, 255, 255, 0);
  6828. border:none;
  6829. border-radius:0px;
  6830. -moz-box-shadow:none;
  6831. -webkit-box-shadow:none;
  6832. box-shadow:none;
  6833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:12px;
  6837. color:#FFFFFF;
  6838. }
  6839. #u4024 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:86px;
  6843. top:659px;
  6844. width:27px;
  6845. height:17px;
  6846. display:flex;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:12px;
  6851. color:#FFFFFF;
  6852. }
  6853. #u4024 .text {
  6854. position:absolute;
  6855. align-self:flex-start;
  6856. padding:0px 0px 0px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u4024_text {
  6861. border-width:0px;
  6862. white-space:nowrap;
  6863. text-transform:none;
  6864. }
  6865. #u4025 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:0px;
  6871. height:0px;
  6872. }
  6873. #u4026_div {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:48px;
  6879. height:17px;
  6880. background:inherit;
  6881. background-color:rgba(255, 255, 255, 0);
  6882. border:none;
  6883. border-radius:0px;
  6884. -moz-box-shadow:none;
  6885. -webkit-box-shadow:none;
  6886. box-shadow:none;
  6887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6888. font-weight:400;
  6889. font-style:normal;
  6890. font-size:12px;
  6891. color:#FFFFFF;
  6892. }
  6893. #u4026 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:206px;
  6897. top:634px;
  6898. width:48px;
  6899. height:17px;
  6900. display:flex;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:12px;
  6905. color:#FFFFFF;
  6906. }
  6907. #u4026 .text {
  6908. position:absolute;
  6909. align-self:flex-start;
  6910. padding:0px 0px 0px 0px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u4026_text {
  6915. border-width:0px;
  6916. white-space:nowrap;
  6917. text-transform:none;
  6918. }
  6919. #u4027_img {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:38px;
  6925. height:37px;
  6926. }
  6927. #u4027 {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:162px;
  6931. top:637px;
  6932. width:38px;
  6933. height:37px;
  6934. display:flex;
  6935. }
  6936. #u4027 .text {
  6937. position:absolute;
  6938. align-self:center;
  6939. padding:2px 2px 2px 2px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u4027_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. visibility:hidden;
  6948. }
  6949. #u4028_div {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:0px;
  6953. top:0px;
  6954. width:27px;
  6955. height:17px;
  6956. background:inherit;
  6957. background-color:rgba(255, 255, 255, 0);
  6958. border:none;
  6959. border-radius:0px;
  6960. -moz-box-shadow:none;
  6961. -webkit-box-shadow:none;
  6962. box-shadow:none;
  6963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:12px;
  6967. color:#FFFFFF;
  6968. }
  6969. #u4028 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:206px;
  6973. top:659px;
  6974. width:27px;
  6975. height:17px;
  6976. display:flex;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. font-size:12px;
  6981. color:#FFFFFF;
  6982. }
  6983. #u4028 .text {
  6984. position:absolute;
  6985. align-self:flex-start;
  6986. padding:0px 0px 0px 0px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u4028_text {
  6991. border-width:0px;
  6992. white-space:nowrap;
  6993. text-transform:none;
  6994. }
  6995. #u4029 {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:0px;
  7001. height:0px;
  7002. }
  7003. #u4030_div {
  7004. border-width:0px;
  7005. position:absolute;
  7006. left:0px;
  7007. top:0px;
  7008. width:240px;
  7009. height:23px;
  7010. background:inherit;
  7011. background-color:rgba(255, 255, 255, 0);
  7012. border:none;
  7013. border-radius:0px;
  7014. -moz-box-shadow:none;
  7015. -webkit-box-shadow:none;
  7016. box-shadow:none;
  7017. font-size:12px;
  7018. }
  7019. #u4030 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:1241px;
  7023. top:446px;
  7024. width:240px;
  7025. height:23px;
  7026. display:flex;
  7027. font-size:12px;
  7028. }
  7029. #u4030 .text {
  7030. position:absolute;
  7031. align-self:center;
  7032. padding:2px 2px 2px 2px;
  7033. box-sizing:border-box;
  7034. width:100%;
  7035. }
  7036. #u4030_text {
  7037. border-width:0px;
  7038. word-wrap:break-word;
  7039. text-transform:none;
  7040. visibility:hidden;
  7041. }
  7042. #u4031_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:65px;
  7048. height:21px;
  7049. background:inherit;
  7050. background-color:rgba(255, 255, 255, 0);
  7051. border:none;
  7052. border-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:12px;
  7060. color:rgba(255, 255, 255, 0.698039215686274);
  7061. text-align:left;
  7062. }
  7063. #u4031 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1241px;
  7067. top:447px;
  7068. width:65px;
  7069. height:21px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:12px;
  7075. color:rgba(255, 255, 255, 0.698039215686274);
  7076. text-align:left;
  7077. }
  7078. #u4031 .text {
  7079. position:absolute;
  7080. align-self:center;
  7081. padding:2px 2px 2px 2px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u4031_text {
  7086. border-width:0px;
  7087. white-space:nowrap;
  7088. text-transform:none;
  7089. }
  7090. #u4032_div {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:0px;
  7094. top:0px;
  7095. width:19px;
  7096. height:21px;
  7097. background:inherit;
  7098. background-color:rgba(255, 255, 255, 0);
  7099. border:none;
  7100. border-radius:0px;
  7101. -moz-box-shadow:none;
  7102. -webkit-box-shadow:none;
  7103. box-shadow:none;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:12px;
  7108. color:#FFFFFF;
  7109. text-align:left;
  7110. }
  7111. #u4032 {
  7112. border-width:0px;
  7113. position:absolute;
  7114. left:1327px;
  7115. top:447px;
  7116. width:19px;
  7117. height:21px;
  7118. display:flex;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:12px;
  7123. color:#FFFFFF;
  7124. text-align:left;
  7125. }
  7126. #u4032 .text {
  7127. position:absolute;
  7128. align-self:center;
  7129. padding:2px 2px 2px 2px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u4032_text {
  7134. border-width:0px;
  7135. white-space:nowrap;
  7136. text-transform:none;
  7137. }
  7138. #u4033_div {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:49px;
  7144. height:21px;
  7145. background:inherit;
  7146. background-color:rgba(255, 255, 255, 0);
  7147. border:none;
  7148. border-radius:0px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:12px;
  7156. color:#FFFFFF;
  7157. text-align:left;
  7158. }
  7159. #u4033 {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:1436px;
  7163. top:447px;
  7164. width:49px;
  7165. height:21px;
  7166. display:flex;
  7167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7168. font-weight:400;
  7169. font-style:normal;
  7170. font-size:12px;
  7171. color:#FFFFFF;
  7172. text-align:left;
  7173. }
  7174. #u4033 .text {
  7175. position:absolute;
  7176. align-self:center;
  7177. padding:2px 2px 2px 2px;
  7178. box-sizing:border-box;
  7179. width:100%;
  7180. }
  7181. #u4033_text {
  7182. border-width:0px;
  7183. white-space:nowrap;
  7184. text-transform:none;
  7185. }
  7186. #u4034_div {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:19px;
  7192. height:21px;
  7193. background:inherit;
  7194. background-color:rgba(255, 255, 255, 0);
  7195. border:none;
  7196. border-radius:0px;
  7197. -moz-box-shadow:none;
  7198. -webkit-box-shadow:none;
  7199. box-shadow:none;
  7200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7201. font-weight:400;
  7202. font-style:normal;
  7203. font-size:12px;
  7204. color:#FFFFFF;
  7205. text-align:left;
  7206. }
  7207. #u4034 {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:1392px;
  7211. top:447px;
  7212. width:19px;
  7213. height:21px;
  7214. display:flex;
  7215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. font-size:12px;
  7219. color:#FFFFFF;
  7220. text-align:left;
  7221. }
  7222. #u4034 .text {
  7223. position:absolute;
  7224. align-self:center;
  7225. padding:2px 2px 2px 2px;
  7226. box-sizing:border-box;
  7227. width:100%;
  7228. }
  7229. #u4034_text {
  7230. border-width:0px;
  7231. white-space:nowrap;
  7232. text-transform:none;
  7233. }
  7234. #u4035 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:0px;
  7240. height:0px;
  7241. }
  7242. #u4036_div {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:240px;
  7248. height:23px;
  7249. background:inherit;
  7250. background-color:rgba(255, 255, 255, 0);
  7251. border:none;
  7252. border-radius:0px;
  7253. -moz-box-shadow:none;
  7254. -webkit-box-shadow:none;
  7255. box-shadow:none;
  7256. font-size:12px;
  7257. }
  7258. #u4036 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:1241px;
  7262. top:470px;
  7263. width:240px;
  7264. height:23px;
  7265. display:flex;
  7266. font-size:12px;
  7267. }
  7268. #u4036 .text {
  7269. position:absolute;
  7270. align-self:center;
  7271. padding:2px 2px 2px 2px;
  7272. box-sizing:border-box;
  7273. width:100%;
  7274. }
  7275. #u4036_text {
  7276. border-width:0px;
  7277. word-wrap:break-word;
  7278. text-transform:none;
  7279. visibility:hidden;
  7280. }
  7281. #u4037_div {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:53px;
  7287. height:21px;
  7288. background:inherit;
  7289. background-color:rgba(255, 255, 255, 0);
  7290. border:none;
  7291. border-radius:0px;
  7292. -moz-box-shadow:none;
  7293. -webkit-box-shadow:none;
  7294. box-shadow:none;
  7295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7296. font-weight:400;
  7297. font-style:normal;
  7298. font-size:12px;
  7299. color:rgba(255, 255, 255, 0.698039215686274);
  7300. text-align:left;
  7301. }
  7302. #u4037 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:1241px;
  7306. top:471px;
  7307. width:53px;
  7308. height:21px;
  7309. display:flex;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:rgba(255, 255, 255, 0.698039215686274);
  7315. text-align:left;
  7316. }
  7317. #u4037 .text {
  7318. position:absolute;
  7319. align-self:center;
  7320. padding:2px 2px 2px 2px;
  7321. box-sizing:border-box;
  7322. width:100%;
  7323. }
  7324. #u4037_text {
  7325. border-width:0px;
  7326. white-space:nowrap;
  7327. text-transform:none;
  7328. }
  7329. #u4038_div {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:19px;
  7335. height:21px;
  7336. background:inherit;
  7337. background-color:rgba(255, 255, 255, 0);
  7338. border:none;
  7339. border-radius:0px;
  7340. -moz-box-shadow:none;
  7341. -webkit-box-shadow:none;
  7342. box-shadow:none;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:12px;
  7347. color:#FFFFFF;
  7348. text-align:left;
  7349. }
  7350. #u4038 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:1327px;
  7354. top:471px;
  7355. width:19px;
  7356. height:21px;
  7357. display:flex;
  7358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7359. font-weight:400;
  7360. font-style:normal;
  7361. font-size:12px;
  7362. color:#FFFFFF;
  7363. text-align:left;
  7364. }
  7365. #u4038 .text {
  7366. position:absolute;
  7367. align-self:center;
  7368. padding:2px 2px 2px 2px;
  7369. box-sizing:border-box;
  7370. width:100%;
  7371. }
  7372. #u4038_text {
  7373. border-width:0px;
  7374. white-space:nowrap;
  7375. text-transform:none;
  7376. }
  7377. #u4039_div {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:49px;
  7383. height:21px;
  7384. background:inherit;
  7385. background-color:rgba(255, 255, 255, 0);
  7386. border:none;
  7387. border-radius:0px;
  7388. -moz-box-shadow:none;
  7389. -webkit-box-shadow:none;
  7390. box-shadow:none;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:12px;
  7395. color:#FFFFFF;
  7396. text-align:left;
  7397. }
  7398. #u4039 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:1436px;
  7402. top:471px;
  7403. width:49px;
  7404. height:21px;
  7405. display:flex;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:12px;
  7410. color:#FFFFFF;
  7411. text-align:left;
  7412. }
  7413. #u4039 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 2px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u4039_text {
  7421. border-width:0px;
  7422. white-space:nowrap;
  7423. text-transform:none;
  7424. }
  7425. #u4040_div {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:19px;
  7431. height:21px;
  7432. background:inherit;
  7433. background-color:rgba(255, 255, 255, 0);
  7434. border:none;
  7435. border-radius:0px;
  7436. -moz-box-shadow:none;
  7437. -webkit-box-shadow:none;
  7438. box-shadow:none;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:12px;
  7443. color:#FFFFFF;
  7444. text-align:left;
  7445. }
  7446. #u4040 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:1392px;
  7450. top:471px;
  7451. width:19px;
  7452. height:21px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:12px;
  7458. color:#FFFFFF;
  7459. text-align:left;
  7460. }
  7461. #u4040 .text {
  7462. position:absolute;
  7463. align-self:center;
  7464. padding:2px 2px 2px 2px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u4040_text {
  7469. border-width:0px;
  7470. white-space:nowrap;
  7471. text-transform:none;
  7472. }
  7473. #u4041 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:0px;
  7479. height:0px;
  7480. }
  7481. #u4042_div {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:0px;
  7485. top:0px;
  7486. width:240px;
  7487. height:23px;
  7488. background:inherit;
  7489. background-color:rgba(255, 255, 255, 0);
  7490. border:none;
  7491. border-radius:0px;
  7492. -moz-box-shadow:none;
  7493. -webkit-box-shadow:none;
  7494. box-shadow:none;
  7495. font-size:12px;
  7496. }
  7497. #u4042 {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:1241px;
  7501. top:494px;
  7502. width:240px;
  7503. height:23px;
  7504. display:flex;
  7505. font-size:12px;
  7506. }
  7507. #u4042 .text {
  7508. position:absolute;
  7509. align-self:center;
  7510. padding:2px 2px 2px 2px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u4042_text {
  7515. border-width:0px;
  7516. word-wrap:break-word;
  7517. text-transform:none;
  7518. visibility:hidden;
  7519. }
  7520. #u4043_div {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:53px;
  7526. height:21px;
  7527. background:inherit;
  7528. background-color:rgba(255, 255, 255, 0);
  7529. border:none;
  7530. border-radius:0px;
  7531. -moz-box-shadow:none;
  7532. -webkit-box-shadow:none;
  7533. box-shadow:none;
  7534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7535. font-weight:400;
  7536. font-style:normal;
  7537. font-size:12px;
  7538. color:rgba(255, 255, 255, 0.698039215686274);
  7539. text-align:left;
  7540. }
  7541. #u4043 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:1241px;
  7545. top:495px;
  7546. width:53px;
  7547. height:21px;
  7548. display:flex;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:12px;
  7553. color:rgba(255, 255, 255, 0.698039215686274);
  7554. text-align:left;
  7555. }
  7556. #u4043 .text {
  7557. position:absolute;
  7558. align-self:center;
  7559. padding:2px 2px 2px 2px;
  7560. box-sizing:border-box;
  7561. width:100%;
  7562. }
  7563. #u4043_text {
  7564. border-width:0px;
  7565. white-space:nowrap;
  7566. text-transform:none;
  7567. }
  7568. #u4044_div {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:0px;
  7572. top:0px;
  7573. width:19px;
  7574. height:21px;
  7575. background:inherit;
  7576. background-color:rgba(255, 255, 255, 0);
  7577. border:none;
  7578. border-radius:0px;
  7579. -moz-box-shadow:none;
  7580. -webkit-box-shadow:none;
  7581. box-shadow:none;
  7582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:12px;
  7586. color:#FFFFFF;
  7587. text-align:left;
  7588. }
  7589. #u4044 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:1327px;
  7593. top:495px;
  7594. width:19px;
  7595. height:21px;
  7596. display:flex;
  7597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7598. font-weight:400;
  7599. font-style:normal;
  7600. font-size:12px;
  7601. color:#FFFFFF;
  7602. text-align:left;
  7603. }
  7604. #u4044 .text {
  7605. position:absolute;
  7606. align-self:center;
  7607. padding:2px 2px 2px 2px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u4044_text {
  7612. border-width:0px;
  7613. white-space:nowrap;
  7614. text-transform:none;
  7615. }
  7616. #u4045_div {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:49px;
  7622. height:21px;
  7623. background:inherit;
  7624. background-color:rgba(255, 255, 255, 0);
  7625. border:none;
  7626. border-radius:0px;
  7627. -moz-box-shadow:none;
  7628. -webkit-box-shadow:none;
  7629. box-shadow:none;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:12px;
  7634. color:#FFFFFF;
  7635. text-align:left;
  7636. }
  7637. #u4045 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:1436px;
  7641. top:495px;
  7642. width:49px;
  7643. height:21px;
  7644. display:flex;
  7645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7646. font-weight:400;
  7647. font-style:normal;
  7648. font-size:12px;
  7649. color:#FFFFFF;
  7650. text-align:left;
  7651. }
  7652. #u4045 .text {
  7653. position:absolute;
  7654. align-self:center;
  7655. padding:2px 2px 2px 2px;
  7656. box-sizing:border-box;
  7657. width:100%;
  7658. }
  7659. #u4045_text {
  7660. border-width:0px;
  7661. white-space:nowrap;
  7662. text-transform:none;
  7663. }
  7664. #u4046_div {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:19px;
  7670. height:21px;
  7671. background:inherit;
  7672. background-color:rgba(255, 255, 255, 0);
  7673. border:none;
  7674. border-radius:0px;
  7675. -moz-box-shadow:none;
  7676. -webkit-box-shadow:none;
  7677. box-shadow:none;
  7678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7679. font-weight:400;
  7680. font-style:normal;
  7681. font-size:12px;
  7682. color:#FFFFFF;
  7683. text-align:left;
  7684. }
  7685. #u4046 {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:1392px;
  7689. top:495px;
  7690. width:19px;
  7691. height:21px;
  7692. display:flex;
  7693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7694. font-weight:400;
  7695. font-style:normal;
  7696. font-size:12px;
  7697. color:#FFFFFF;
  7698. text-align:left;
  7699. }
  7700. #u4046 .text {
  7701. position:absolute;
  7702. align-self:center;
  7703. padding:2px 2px 2px 2px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u4046_text {
  7708. border-width:0px;
  7709. white-space:nowrap;
  7710. text-transform:none;
  7711. }
  7712. #u4047 {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:0px;
  7718. height:0px;
  7719. }
  7720. #u4048_div {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:240px;
  7726. height:23px;
  7727. background:inherit;
  7728. background-color:rgba(255, 255, 255, 0);
  7729. border:none;
  7730. border-radius:0px;
  7731. -moz-box-shadow:none;
  7732. -webkit-box-shadow:none;
  7733. box-shadow:none;
  7734. font-size:12px;
  7735. }
  7736. #u4048 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:1241px;
  7740. top:518px;
  7741. width:240px;
  7742. height:23px;
  7743. display:flex;
  7744. font-size:12px;
  7745. }
  7746. #u4048 .text {
  7747. position:absolute;
  7748. align-self:center;
  7749. padding:2px 2px 2px 2px;
  7750. box-sizing:border-box;
  7751. width:100%;
  7752. }
  7753. #u4048_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. visibility:hidden;
  7758. }
  7759. #u4049_div {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:53px;
  7765. height:21px;
  7766. background:inherit;
  7767. background-color:rgba(255, 255, 255, 0);
  7768. border:none;
  7769. border-radius:0px;
  7770. -moz-box-shadow:none;
  7771. -webkit-box-shadow:none;
  7772. box-shadow:none;
  7773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. font-size:12px;
  7777. color:rgba(255, 255, 255, 0.698039215686274);
  7778. text-align:left;
  7779. }
  7780. #u4049 {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:1241px;
  7784. top:519px;
  7785. width:53px;
  7786. height:21px;
  7787. display:flex;
  7788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7789. font-weight:400;
  7790. font-style:normal;
  7791. font-size:12px;
  7792. color:rgba(255, 255, 255, 0.698039215686274);
  7793. text-align:left;
  7794. }
  7795. #u4049 .text {
  7796. position:absolute;
  7797. align-self:center;
  7798. padding:2px 2px 2px 2px;
  7799. box-sizing:border-box;
  7800. width:100%;
  7801. }
  7802. #u4049_text {
  7803. border-width:0px;
  7804. white-space:nowrap;
  7805. text-transform:none;
  7806. }
  7807. #u4050_div {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:19px;
  7813. height:21px;
  7814. background:inherit;
  7815. background-color:rgba(255, 255, 255, 0);
  7816. border:none;
  7817. border-radius:0px;
  7818. -moz-box-shadow:none;
  7819. -webkit-box-shadow:none;
  7820. box-shadow:none;
  7821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7822. font-weight:400;
  7823. font-style:normal;
  7824. font-size:12px;
  7825. color:#FFFFFF;
  7826. text-align:left;
  7827. }
  7828. #u4050 {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:1327px;
  7832. top:519px;
  7833. width:19px;
  7834. height:21px;
  7835. display:flex;
  7836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7837. font-weight:400;
  7838. font-style:normal;
  7839. font-size:12px;
  7840. color:#FFFFFF;
  7841. text-align:left;
  7842. }
  7843. #u4050 .text {
  7844. position:absolute;
  7845. align-self:center;
  7846. padding:2px 2px 2px 2px;
  7847. box-sizing:border-box;
  7848. width:100%;
  7849. }
  7850. #u4050_text {
  7851. border-width:0px;
  7852. white-space:nowrap;
  7853. text-transform:none;
  7854. }
  7855. #u4051_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:49px;
  7861. height:21px;
  7862. background:inherit;
  7863. background-color:rgba(255, 255, 255, 0);
  7864. border:none;
  7865. border-radius:0px;
  7866. -moz-box-shadow:none;
  7867. -webkit-box-shadow:none;
  7868. box-shadow:none;
  7869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:12px;
  7873. color:#FFFFFF;
  7874. text-align:left;
  7875. }
  7876. #u4051 {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:1436px;
  7880. top:519px;
  7881. width:49px;
  7882. height:21px;
  7883. display:flex;
  7884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7885. font-weight:400;
  7886. font-style:normal;
  7887. font-size:12px;
  7888. color:#FFFFFF;
  7889. text-align:left;
  7890. }
  7891. #u4051 .text {
  7892. position:absolute;
  7893. align-self:center;
  7894. padding:2px 2px 2px 2px;
  7895. box-sizing:border-box;
  7896. width:100%;
  7897. }
  7898. #u4051_text {
  7899. border-width:0px;
  7900. white-space:nowrap;
  7901. text-transform:none;
  7902. }
  7903. #u4052_div {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:0px;
  7907. top:0px;
  7908. width:19px;
  7909. height:21px;
  7910. background:inherit;
  7911. background-color:rgba(255, 255, 255, 0);
  7912. border:none;
  7913. border-radius:0px;
  7914. -moz-box-shadow:none;
  7915. -webkit-box-shadow:none;
  7916. box-shadow:none;
  7917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7918. font-weight:400;
  7919. font-style:normal;
  7920. font-size:12px;
  7921. color:#FFFFFF;
  7922. text-align:left;
  7923. }
  7924. #u4052 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:1392px;
  7928. top:519px;
  7929. width:19px;
  7930. height:21px;
  7931. display:flex;
  7932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7933. font-weight:400;
  7934. font-style:normal;
  7935. font-size:12px;
  7936. color:#FFFFFF;
  7937. text-align:left;
  7938. }
  7939. #u4052 .text {
  7940. position:absolute;
  7941. align-self:center;
  7942. padding:2px 2px 2px 2px;
  7943. box-sizing:border-box;
  7944. width:100%;
  7945. }
  7946. #u4052_text {
  7947. border-width:0px;
  7948. white-space:nowrap;
  7949. text-transform:none;
  7950. }
  7951. #u4053 {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:0px;
  7955. top:0px;
  7956. width:0px;
  7957. height:0px;
  7958. }
  7959. #u4054_div {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:0px;
  7963. top:0px;
  7964. width:240px;
  7965. height:23px;
  7966. background:inherit;
  7967. background-color:rgba(255, 255, 255, 0);
  7968. border:none;
  7969. border-radius:0px;
  7970. -moz-box-shadow:none;
  7971. -webkit-box-shadow:none;
  7972. box-shadow:none;
  7973. font-size:12px;
  7974. }
  7975. #u4054 {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:1241px;
  7979. top:542px;
  7980. width:240px;
  7981. height:23px;
  7982. display:flex;
  7983. font-size:12px;
  7984. }
  7985. #u4054 .text {
  7986. position:absolute;
  7987. align-self:center;
  7988. padding:2px 2px 2px 2px;
  7989. box-sizing:border-box;
  7990. width:100%;
  7991. }
  7992. #u4054_text {
  7993. border-width:0px;
  7994. word-wrap:break-word;
  7995. text-transform:none;
  7996. visibility:hidden;
  7997. }
  7998. #u4055_div {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:53px;
  8004. height:21px;
  8005. background:inherit;
  8006. background-color:rgba(255, 255, 255, 0);
  8007. border:none;
  8008. border-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:12px;
  8016. color:rgba(255, 255, 255, 0.698039215686274);
  8017. text-align:left;
  8018. }
  8019. #u4055 {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:1241px;
  8023. top:543px;
  8024. width:53px;
  8025. height:21px;
  8026. display:flex;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:12px;
  8031. color:rgba(255, 255, 255, 0.698039215686274);
  8032. text-align:left;
  8033. }
  8034. #u4055 .text {
  8035. position:absolute;
  8036. align-self:center;
  8037. padding:2px 2px 2px 2px;
  8038. box-sizing:border-box;
  8039. width:100%;
  8040. }
  8041. #u4055_text {
  8042. border-width:0px;
  8043. white-space:nowrap;
  8044. text-transform:none;
  8045. }
  8046. #u4056_div {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:19px;
  8052. height:21px;
  8053. background:inherit;
  8054. background-color:rgba(255, 255, 255, 0);
  8055. border:none;
  8056. border-radius:0px;
  8057. -moz-box-shadow:none;
  8058. -webkit-box-shadow:none;
  8059. box-shadow:none;
  8060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:12px;
  8064. color:#FFFFFF;
  8065. text-align:left;
  8066. }
  8067. #u4056 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:1327px;
  8071. top:543px;
  8072. width:19px;
  8073. height:21px;
  8074. display:flex;
  8075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8076. font-weight:400;
  8077. font-style:normal;
  8078. font-size:12px;
  8079. color:#FFFFFF;
  8080. text-align:left;
  8081. }
  8082. #u4056 .text {
  8083. position:absolute;
  8084. align-self:center;
  8085. padding:2px 2px 2px 2px;
  8086. box-sizing:border-box;
  8087. width:100%;
  8088. }
  8089. #u4056_text {
  8090. border-width:0px;
  8091. white-space:nowrap;
  8092. text-transform:none;
  8093. }
  8094. #u4057_div {
  8095. border-width:0px;
  8096. position:absolute;
  8097. left:0px;
  8098. top:0px;
  8099. width:49px;
  8100. height:21px;
  8101. background:inherit;
  8102. background-color:rgba(255, 255, 255, 0);
  8103. border:none;
  8104. border-radius:0px;
  8105. -moz-box-shadow:none;
  8106. -webkit-box-shadow:none;
  8107. box-shadow:none;
  8108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8109. font-weight:400;
  8110. font-style:normal;
  8111. font-size:12px;
  8112. color:#FFFFFF;
  8113. text-align:left;
  8114. }
  8115. #u4057 {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:1436px;
  8119. top:543px;
  8120. width:49px;
  8121. height:21px;
  8122. display:flex;
  8123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8124. font-weight:400;
  8125. font-style:normal;
  8126. font-size:12px;
  8127. color:#FFFFFF;
  8128. text-align:left;
  8129. }
  8130. #u4057 .text {
  8131. position:absolute;
  8132. align-self:center;
  8133. padding:2px 2px 2px 2px;
  8134. box-sizing:border-box;
  8135. width:100%;
  8136. }
  8137. #u4057_text {
  8138. border-width:0px;
  8139. white-space:nowrap;
  8140. text-transform:none;
  8141. }
  8142. #u4058_div {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:19px;
  8148. height:21px;
  8149. background:inherit;
  8150. background-color:rgba(255, 255, 255, 0);
  8151. border:none;
  8152. border-radius:0px;
  8153. -moz-box-shadow:none;
  8154. -webkit-box-shadow:none;
  8155. box-shadow:none;
  8156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8157. font-weight:400;
  8158. font-style:normal;
  8159. font-size:12px;
  8160. color:#FFFFFF;
  8161. text-align:left;
  8162. }
  8163. #u4058 {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:1392px;
  8167. top:543px;
  8168. width:19px;
  8169. height:21px;
  8170. display:flex;
  8171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8172. font-weight:400;
  8173. font-style:normal;
  8174. font-size:12px;
  8175. color:#FFFFFF;
  8176. text-align:left;
  8177. }
  8178. #u4058 .text {
  8179. position:absolute;
  8180. align-self:center;
  8181. padding:2px 2px 2px 2px;
  8182. box-sizing:border-box;
  8183. width:100%;
  8184. }
  8185. #u4058_text {
  8186. border-width:0px;
  8187. white-space:nowrap;
  8188. text-transform:none;
  8189. }
  8190. #u4059 {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:0px;
  8196. height:0px;
  8197. }
  8198. #u4060_img {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:0px;
  8202. top:0px;
  8203. width:56px;
  8204. height:50px;
  8205. }
  8206. #u4060 {
  8207. border-width:0px;
  8208. position:absolute;
  8209. left:1236px;
  8210. top:271px;
  8211. width:56px;
  8212. height:50px;
  8213. display:flex;
  8214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8215. font-weight:400;
  8216. font-style:normal;
  8217. font-size:12px;
  8218. color:#FFFFFF;
  8219. text-align:left;
  8220. }
  8221. #u4060 .text {
  8222. position:absolute;
  8223. align-self:center;
  8224. padding:2px 2px 2px 10px;
  8225. box-sizing:border-box;
  8226. width:100%;
  8227. }
  8228. #u4060_text {
  8229. border-width:0px;
  8230. word-wrap:break-word;
  8231. text-transform:none;
  8232. visibility:hidden;
  8233. }
  8234. #u4061_div {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:0px;
  8238. top:0px;
  8239. width:30px;
  8240. height:17px;
  8241. background:inherit;
  8242. background-color:rgba(255, 255, 255, 0);
  8243. border:none;
  8244. border-radius:0px;
  8245. -moz-box-shadow:none;
  8246. -webkit-box-shadow:none;
  8247. box-shadow:none;
  8248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8249. font-weight:400;
  8250. font-style:normal;
  8251. font-size:12px;
  8252. color:#FFFFFF;
  8253. text-align:center;
  8254. }
  8255. #u4061 {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:1249px;
  8259. top:279px;
  8260. width:30px;
  8261. height:17px;
  8262. display:flex;
  8263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:12px;
  8267. color:#FFFFFF;
  8268. text-align:center;
  8269. }
  8270. #u4061 .text {
  8271. position:absolute;
  8272. align-self:flex-start;
  8273. padding:0px 0px 0px 0px;
  8274. box-sizing:border-box;
  8275. width:100%;
  8276. }
  8277. #u4061_text {
  8278. border-width:0px;
  8279. word-wrap:break-word;
  8280. text-transform:none;
  8281. }
  8282. #u4062_div {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:0px;
  8286. top:0px;
  8287. width:46px;
  8288. height:14px;
  8289. background:inherit;
  8290. background-color:rgba(255, 255, 255, 0);
  8291. border:none;
  8292. border-radius:0px;
  8293. -moz-box-shadow:none;
  8294. -webkit-box-shadow:none;
  8295. box-shadow:none;
  8296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:10px;
  8300. color:#FFFFFF;
  8301. text-align:center;
  8302. }
  8303. #u4062 {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:1242px;
  8307. top:299px;
  8308. width:46px;
  8309. height:14px;
  8310. display:flex;
  8311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8312. font-weight:400;
  8313. font-style:normal;
  8314. font-size:10px;
  8315. color:#FFFFFF;
  8316. text-align:center;
  8317. }
  8318. #u4062 .text {
  8319. position:absolute;
  8320. align-self:flex-start;
  8321. padding:0px 0px 0px 0px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u4062_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. }
  8330. #u4063 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:0px;
  8336. height:0px;
  8337. }
  8338. #u4064_img {
  8339. border-width:0px;
  8340. position:absolute;
  8341. left:0px;
  8342. top:0px;
  8343. width:56px;
  8344. height:50px;
  8345. }
  8346. #u4064 {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:1298px;
  8350. top:271px;
  8351. width:56px;
  8352. height:50px;
  8353. display:flex;
  8354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8355. font-weight:400;
  8356. font-style:normal;
  8357. font-size:12px;
  8358. color:#FFFFFF;
  8359. text-align:left;
  8360. }
  8361. #u4064 .text {
  8362. position:absolute;
  8363. align-self:center;
  8364. padding:2px 2px 2px 10px;
  8365. box-sizing:border-box;
  8366. width:100%;
  8367. }
  8368. #u4064_text {
  8369. border-width:0px;
  8370. word-wrap:break-word;
  8371. text-transform:none;
  8372. visibility:hidden;
  8373. }
  8374. #u4065_div {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:0px;
  8378. top:0px;
  8379. width:30px;
  8380. height:17px;
  8381. background:inherit;
  8382. background-color:rgba(255, 255, 255, 0);
  8383. border:none;
  8384. border-radius:0px;
  8385. -moz-box-shadow:none;
  8386. -webkit-box-shadow:none;
  8387. box-shadow:none;
  8388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8389. font-weight:400;
  8390. font-style:normal;
  8391. font-size:12px;
  8392. color:#FFFFFF;
  8393. text-align:center;
  8394. }
  8395. #u4065 {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:1312px;
  8399. top:279px;
  8400. width:30px;
  8401. height:17px;
  8402. display:flex;
  8403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8404. font-weight:400;
  8405. font-style:normal;
  8406. font-size:12px;
  8407. color:#FFFFFF;
  8408. text-align:center;
  8409. }
  8410. #u4065 .text {
  8411. position:absolute;
  8412. align-self:flex-start;
  8413. padding:0px 0px 0px 0px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u4065_text {
  8418. border-width:0px;
  8419. word-wrap:break-word;
  8420. text-transform:none;
  8421. }
  8422. #u4066_div {
  8423. border-width:0px;
  8424. position:absolute;
  8425. left:0px;
  8426. top:0px;
  8427. width:46px;
  8428. height:14px;
  8429. background:inherit;
  8430. background-color:rgba(255, 255, 255, 0);
  8431. border:none;
  8432. border-radius:0px;
  8433. -moz-box-shadow:none;
  8434. -webkit-box-shadow:none;
  8435. box-shadow:none;
  8436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8437. font-weight:400;
  8438. font-style:normal;
  8439. font-size:10px;
  8440. color:#FFFFFF;
  8441. text-align:center;
  8442. }
  8443. #u4066 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:1304px;
  8447. top:299px;
  8448. width:46px;
  8449. height:14px;
  8450. display:flex;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:10px;
  8455. color:#FFFFFF;
  8456. text-align:center;
  8457. }
  8458. #u4066 .text {
  8459. position:absolute;
  8460. align-self:flex-start;
  8461. padding:0px 0px 0px 0px;
  8462. box-sizing:border-box;
  8463. width:100%;
  8464. }
  8465. #u4066_text {
  8466. border-width:0px;
  8467. word-wrap:break-word;
  8468. text-transform:none;
  8469. }
  8470. #u4067 {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:0px;
  8476. height:0px;
  8477. }
  8478. #u4068_img {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:56px;
  8484. height:50px;
  8485. }
  8486. #u4068 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:1358px;
  8490. top:271px;
  8491. width:56px;
  8492. height:50px;
  8493. display:flex;
  8494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8495. font-weight:400;
  8496. font-style:normal;
  8497. font-size:12px;
  8498. color:#FFFFFF;
  8499. text-align:left;
  8500. }
  8501. #u4068 .text {
  8502. position:absolute;
  8503. align-self:center;
  8504. padding:2px 2px 2px 10px;
  8505. box-sizing:border-box;
  8506. width:100%;
  8507. }
  8508. #u4068_text {
  8509. border-width:0px;
  8510. word-wrap:break-word;
  8511. text-transform:none;
  8512. visibility:hidden;
  8513. }
  8514. #u4069_div {
  8515. border-width:0px;
  8516. position:absolute;
  8517. left:0px;
  8518. top:0px;
  8519. width:30px;
  8520. height:17px;
  8521. background:inherit;
  8522. background-color:rgba(255, 255, 255, 0);
  8523. border:none;
  8524. border-radius:0px;
  8525. -moz-box-shadow:none;
  8526. -webkit-box-shadow:none;
  8527. box-shadow:none;
  8528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8529. font-weight:400;
  8530. font-style:normal;
  8531. font-size:12px;
  8532. color:#FFFFFF;
  8533. text-align:center;
  8534. }
  8535. #u4069 {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:1372px;
  8539. top:279px;
  8540. width:30px;
  8541. height:17px;
  8542. display:flex;
  8543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:12px;
  8547. color:#FFFFFF;
  8548. text-align:center;
  8549. }
  8550. #u4069 .text {
  8551. position:absolute;
  8552. align-self:flex-start;
  8553. padding:0px 0px 0px 0px;
  8554. box-sizing:border-box;
  8555. width:100%;
  8556. }
  8557. #u4069_text {
  8558. border-width:0px;
  8559. word-wrap:break-word;
  8560. text-transform:none;
  8561. }
  8562. #u4070_div {
  8563. border-width:0px;
  8564. position:absolute;
  8565. left:0px;
  8566. top:0px;
  8567. width:46px;
  8568. height:14px;
  8569. background:inherit;
  8570. background-color:rgba(255, 255, 255, 0);
  8571. border:none;
  8572. border-radius:0px;
  8573. -moz-box-shadow:none;
  8574. -webkit-box-shadow:none;
  8575. box-shadow:none;
  8576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8577. font-weight:400;
  8578. font-style:normal;
  8579. font-size:10px;
  8580. color:#FFFFFF;
  8581. text-align:center;
  8582. }
  8583. #u4070 {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:1364px;
  8587. top:299px;
  8588. width:46px;
  8589. height:14px;
  8590. display:flex;
  8591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:10px;
  8595. color:#FFFFFF;
  8596. text-align:center;
  8597. }
  8598. #u4070 .text {
  8599. position:absolute;
  8600. align-self:flex-start;
  8601. padding:0px 0px 0px 0px;
  8602. box-sizing:border-box;
  8603. width:100%;
  8604. }
  8605. #u4070_text {
  8606. border-width:0px;
  8607. word-wrap:break-word;
  8608. text-transform:none;
  8609. }
  8610. #u4071 {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:0px;
  8616. height:0px;
  8617. }
  8618. #u4072_img {
  8619. border-width:0px;
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:56px;
  8624. height:50px;
  8625. }
  8626. #u4072 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:1420px;
  8630. top:271px;
  8631. width:56px;
  8632. height:50px;
  8633. display:flex;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:12px;
  8638. color:#FFFFFF;
  8639. text-align:left;
  8640. }
  8641. #u4072 .text {
  8642. position:absolute;
  8643. align-self:center;
  8644. padding:2px 2px 2px 10px;
  8645. box-sizing:border-box;
  8646. width:100%;
  8647. }
  8648. #u4072_text {
  8649. border-width:0px;
  8650. word-wrap:break-word;
  8651. text-transform:none;
  8652. visibility:hidden;
  8653. }
  8654. #u4073_div {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:30px;
  8660. height:17px;
  8661. background:inherit;
  8662. background-color:rgba(255, 255, 255, 0);
  8663. border:none;
  8664. border-radius:0px;
  8665. -moz-box-shadow:none;
  8666. -webkit-box-shadow:none;
  8667. box-shadow:none;
  8668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8669. font-weight:400;
  8670. font-style:normal;
  8671. font-size:12px;
  8672. color:#FFFFFF;
  8673. text-align:center;
  8674. }
  8675. #u4073 {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:1434px;
  8679. top:279px;
  8680. width:30px;
  8681. height:17px;
  8682. display:flex;
  8683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:12px;
  8687. color:#FFFFFF;
  8688. text-align:center;
  8689. }
  8690. #u4073 .text {
  8691. position:absolute;
  8692. align-self:flex-start;
  8693. padding:0px 0px 0px 0px;
  8694. box-sizing:border-box;
  8695. width:100%;
  8696. }
  8697. #u4073_text {
  8698. border-width:0px;
  8699. word-wrap:break-word;
  8700. text-transform:none;
  8701. }
  8702. #u4074_div {
  8703. border-width:0px;
  8704. position:absolute;
  8705. left:0px;
  8706. top:0px;
  8707. width:46px;
  8708. height:14px;
  8709. background:inherit;
  8710. background-color:rgba(255, 255, 255, 0);
  8711. border:none;
  8712. border-radius:0px;
  8713. -moz-box-shadow:none;
  8714. -webkit-box-shadow:none;
  8715. box-shadow:none;
  8716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8717. font-weight:400;
  8718. font-style:normal;
  8719. font-size:10px;
  8720. color:#FFFFFF;
  8721. text-align:center;
  8722. }
  8723. #u4074 {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:1426px;
  8727. top:299px;
  8728. width:46px;
  8729. height:14px;
  8730. display:flex;
  8731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:10px;
  8735. color:#FFFFFF;
  8736. text-align:center;
  8737. }
  8738. #u4074 .text {
  8739. position:absolute;
  8740. align-self:flex-start;
  8741. padding:0px 0px 0px 0px;
  8742. box-sizing:border-box;
  8743. width:100%;
  8744. }
  8745. #u4074_text {
  8746. border-width:0px;
  8747. word-wrap:break-word;
  8748. text-transform:none;
  8749. }
  8750. #u4075 {
  8751. border-width:0px;
  8752. position:absolute;
  8753. left:0px;
  8754. top:0px;
  8755. width:0px;
  8756. height:0px;
  8757. }
  8758. #u4076_img {
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:0px;
  8762. top:0px;
  8763. width:56px;
  8764. height:50px;
  8765. }
  8766. #u4076 {
  8767. border-width:0px;
  8768. position:absolute;
  8769. left:1236px;
  8770. top:326px;
  8771. width:56px;
  8772. height:50px;
  8773. display:flex;
  8774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8775. font-weight:400;
  8776. font-style:normal;
  8777. font-size:12px;
  8778. color:#FFFFFF;
  8779. text-align:left;
  8780. }
  8781. #u4076 .text {
  8782. position:absolute;
  8783. align-self:center;
  8784. padding:2px 2px 2px 10px;
  8785. box-sizing:border-box;
  8786. width:100%;
  8787. }
  8788. #u4076_text {
  8789. border-width:0px;
  8790. word-wrap:break-word;
  8791. text-transform:none;
  8792. visibility:hidden;
  8793. }
  8794. #u4077_div {
  8795. border-width:0px;
  8796. position:absolute;
  8797. left:0px;
  8798. top:0px;
  8799. width:30px;
  8800. height:17px;
  8801. background:inherit;
  8802. background-color:rgba(255, 255, 255, 0);
  8803. border:none;
  8804. border-radius:0px;
  8805. -moz-box-shadow:none;
  8806. -webkit-box-shadow:none;
  8807. box-shadow:none;
  8808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8809. font-weight:400;
  8810. font-style:normal;
  8811. font-size:12px;
  8812. color:#FFFFFF;
  8813. text-align:center;
  8814. }
  8815. #u4077 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:1249px;
  8819. top:334px;
  8820. width:30px;
  8821. height:17px;
  8822. display:flex;
  8823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8824. font-weight:400;
  8825. font-style:normal;
  8826. font-size:12px;
  8827. color:#FFFFFF;
  8828. text-align:center;
  8829. }
  8830. #u4077 .text {
  8831. position:absolute;
  8832. align-self:flex-start;
  8833. padding:0px 0px 0px 0px;
  8834. box-sizing:border-box;
  8835. width:100%;
  8836. }
  8837. #u4077_text {
  8838. border-width:0px;
  8839. word-wrap:break-word;
  8840. text-transform:none;
  8841. }
  8842. #u4078_div {
  8843. border-width:0px;
  8844. position:absolute;
  8845. left:0px;
  8846. top:0px;
  8847. width:46px;
  8848. height:14px;
  8849. background:inherit;
  8850. background-color:rgba(255, 255, 255, 0);
  8851. border:none;
  8852. border-radius:0px;
  8853. -moz-box-shadow:none;
  8854. -webkit-box-shadow:none;
  8855. box-shadow:none;
  8856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8857. font-weight:400;
  8858. font-style:normal;
  8859. font-size:10px;
  8860. color:#FFFFFF;
  8861. text-align:center;
  8862. }
  8863. #u4078 {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:1242px;
  8867. top:354px;
  8868. width:46px;
  8869. height:14px;
  8870. display:flex;
  8871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8872. font-weight:400;
  8873. font-style:normal;
  8874. font-size:10px;
  8875. color:#FFFFFF;
  8876. text-align:center;
  8877. }
  8878. #u4078 .text {
  8879. position:absolute;
  8880. align-self:flex-start;
  8881. padding:0px 0px 0px 0px;
  8882. box-sizing:border-box;
  8883. width:100%;
  8884. }
  8885. #u4078_text {
  8886. border-width:0px;
  8887. word-wrap:break-word;
  8888. text-transform:none;
  8889. }
  8890. #u4079 {
  8891. border-width:0px;
  8892. position:absolute;
  8893. left:0px;
  8894. top:0px;
  8895. width:0px;
  8896. height:0px;
  8897. }
  8898. #u4080_img {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:56px;
  8904. height:50px;
  8905. }
  8906. #u4080 {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:1298px;
  8910. top:326px;
  8911. width:56px;
  8912. height:50px;
  8913. display:flex;
  8914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8915. font-weight:400;
  8916. font-style:normal;
  8917. font-size:12px;
  8918. color:#FFFFFF;
  8919. text-align:left;
  8920. }
  8921. #u4080 .text {
  8922. position:absolute;
  8923. align-self:center;
  8924. padding:2px 2px 2px 10px;
  8925. box-sizing:border-box;
  8926. width:100%;
  8927. }
  8928. #u4080_text {
  8929. border-width:0px;
  8930. word-wrap:break-word;
  8931. text-transform:none;
  8932. visibility:hidden;
  8933. }
  8934. #u4081_div {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:30px;
  8940. height:17px;
  8941. background:inherit;
  8942. background-color:rgba(255, 255, 255, 0);
  8943. border:none;
  8944. border-radius:0px;
  8945. -moz-box-shadow:none;
  8946. -webkit-box-shadow:none;
  8947. box-shadow:none;
  8948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8949. font-weight:400;
  8950. font-style:normal;
  8951. font-size:12px;
  8952. color:#FFFFFF;
  8953. text-align:center;
  8954. }
  8955. #u4081 {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:1312px;
  8959. top:334px;
  8960. width:30px;
  8961. height:17px;
  8962. display:flex;
  8963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8964. font-weight:400;
  8965. font-style:normal;
  8966. font-size:12px;
  8967. color:#FFFFFF;
  8968. text-align:center;
  8969. }
  8970. #u4081 .text {
  8971. position:absolute;
  8972. align-self:flex-start;
  8973. padding:0px 0px 0px 0px;
  8974. box-sizing:border-box;
  8975. width:100%;
  8976. }
  8977. #u4081_text {
  8978. border-width:0px;
  8979. word-wrap:break-word;
  8980. text-transform:none;
  8981. }
  8982. #u4082_div {
  8983. border-width:0px;
  8984. position:absolute;
  8985. left:0px;
  8986. top:0px;
  8987. width:46px;
  8988. height:14px;
  8989. background:inherit;
  8990. background-color:rgba(255, 255, 255, 0);
  8991. border:none;
  8992. border-radius:0px;
  8993. -moz-box-shadow:none;
  8994. -webkit-box-shadow:none;
  8995. box-shadow:none;
  8996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8997. font-weight:400;
  8998. font-style:normal;
  8999. font-size:10px;
  9000. color:#FFFFFF;
  9001. text-align:center;
  9002. }
  9003. #u4082 {
  9004. border-width:0px;
  9005. position:absolute;
  9006. left:1304px;
  9007. top:354px;
  9008. width:46px;
  9009. height:14px;
  9010. display:flex;
  9011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9012. font-weight:400;
  9013. font-style:normal;
  9014. font-size:10px;
  9015. color:#FFFFFF;
  9016. text-align:center;
  9017. }
  9018. #u4082 .text {
  9019. position:absolute;
  9020. align-self:flex-start;
  9021. padding:0px 0px 0px 0px;
  9022. box-sizing:border-box;
  9023. width:100%;
  9024. }
  9025. #u4082_text {
  9026. border-width:0px;
  9027. word-wrap:break-word;
  9028. text-transform:none;
  9029. }
  9030. #u4083 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:0px;
  9035. width:0px;
  9036. height:0px;
  9037. }
  9038. #u4084_img {
  9039. border-width:0px;
  9040. position:absolute;
  9041. left:0px;
  9042. top:0px;
  9043. width:56px;
  9044. height:50px;
  9045. }
  9046. #u4084 {
  9047. border-width:0px;
  9048. position:absolute;
  9049. left:1358px;
  9050. top:326px;
  9051. width:56px;
  9052. height:50px;
  9053. display:flex;
  9054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9055. font-weight:400;
  9056. font-style:normal;
  9057. font-size:12px;
  9058. color:#FFFFFF;
  9059. text-align:left;
  9060. }
  9061. #u4084 .text {
  9062. position:absolute;
  9063. align-self:center;
  9064. padding:2px 2px 2px 10px;
  9065. box-sizing:border-box;
  9066. width:100%;
  9067. }
  9068. #u4084_text {
  9069. border-width:0px;
  9070. word-wrap:break-word;
  9071. text-transform:none;
  9072. visibility:hidden;
  9073. }
  9074. #u4085_div {
  9075. border-width:0px;
  9076. position:absolute;
  9077. left:0px;
  9078. top:0px;
  9079. width:30px;
  9080. height:17px;
  9081. background:inherit;
  9082. background-color:rgba(255, 255, 255, 0);
  9083. border:none;
  9084. border-radius:0px;
  9085. -moz-box-shadow:none;
  9086. -webkit-box-shadow:none;
  9087. box-shadow:none;
  9088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9089. font-weight:400;
  9090. font-style:normal;
  9091. font-size:12px;
  9092. color:#FFFFFF;
  9093. text-align:center;
  9094. }
  9095. #u4085 {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:1372px;
  9099. top:334px;
  9100. width:30px;
  9101. height:17px;
  9102. display:flex;
  9103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9104. font-weight:400;
  9105. font-style:normal;
  9106. font-size:12px;
  9107. color:#FFFFFF;
  9108. text-align:center;
  9109. }
  9110. #u4085 .text {
  9111. position:absolute;
  9112. align-self:flex-start;
  9113. padding:0px 0px 0px 0px;
  9114. box-sizing:border-box;
  9115. width:100%;
  9116. }
  9117. #u4085_text {
  9118. border-width:0px;
  9119. word-wrap:break-word;
  9120. text-transform:none;
  9121. }
  9122. #u4086_div {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:0px;
  9126. top:0px;
  9127. width:46px;
  9128. height:14px;
  9129. background:inherit;
  9130. background-color:rgba(255, 255, 255, 0);
  9131. border:none;
  9132. border-radius:0px;
  9133. -moz-box-shadow:none;
  9134. -webkit-box-shadow:none;
  9135. box-shadow:none;
  9136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9137. font-weight:400;
  9138. font-style:normal;
  9139. font-size:10px;
  9140. color:#FFFFFF;
  9141. text-align:center;
  9142. }
  9143. #u4086 {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:1364px;
  9147. top:354px;
  9148. width:46px;
  9149. height:14px;
  9150. display:flex;
  9151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9152. font-weight:400;
  9153. font-style:normal;
  9154. font-size:10px;
  9155. color:#FFFFFF;
  9156. text-align:center;
  9157. }
  9158. #u4086 .text {
  9159. position:absolute;
  9160. align-self:flex-start;
  9161. padding:0px 0px 0px 0px;
  9162. box-sizing:border-box;
  9163. width:100%;
  9164. }
  9165. #u4086_text {
  9166. border-width:0px;
  9167. word-wrap:break-word;
  9168. text-transform:none;
  9169. }
  9170. #u4087 {
  9171. border-width:0px;
  9172. position:absolute;
  9173. left:0px;
  9174. top:0px;
  9175. width:0px;
  9176. height:0px;
  9177. }
  9178. #u4088_div {
  9179. border-width:0px;
  9180. position:absolute;
  9181. left:0px;
  9182. top:0px;
  9183. width:240px;
  9184. height:23px;
  9185. background:inherit;
  9186. background-color:rgba(255, 255, 255, 0);
  9187. border:none;
  9188. border-radius:0px;
  9189. -moz-box-shadow:none;
  9190. -webkit-box-shadow:none;
  9191. box-shadow:none;
  9192. font-size:12px;
  9193. }
  9194. #u4088 {
  9195. border-width:0px;
  9196. position:absolute;
  9197. left:1241px;
  9198. top:566px;
  9199. width:240px;
  9200. height:23px;
  9201. display:flex;
  9202. font-size:12px;
  9203. }
  9204. #u4088 .text {
  9205. position:absolute;
  9206. align-self:center;
  9207. padding:2px 2px 2px 2px;
  9208. box-sizing:border-box;
  9209. width:100%;
  9210. }
  9211. #u4088_text {
  9212. border-width:0px;
  9213. word-wrap:break-word;
  9214. text-transform:none;
  9215. visibility:hidden;
  9216. }
  9217. #u4089_div {
  9218. border-width:0px;
  9219. position:absolute;
  9220. left:0px;
  9221. top:0px;
  9222. width:53px;
  9223. height:21px;
  9224. background:inherit;
  9225. background-color:rgba(255, 255, 255, 0);
  9226. border:none;
  9227. border-radius:0px;
  9228. -moz-box-shadow:none;
  9229. -webkit-box-shadow:none;
  9230. box-shadow:none;
  9231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9232. font-weight:400;
  9233. font-style:normal;
  9234. font-size:12px;
  9235. color:rgba(255, 255, 255, 0.698039215686274);
  9236. text-align:left;
  9237. }
  9238. #u4089 {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:1241px;
  9242. top:567px;
  9243. width:53px;
  9244. height:21px;
  9245. display:flex;
  9246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9247. font-weight:400;
  9248. font-style:normal;
  9249. font-size:12px;
  9250. color:rgba(255, 255, 255, 0.698039215686274);
  9251. text-align:left;
  9252. }
  9253. #u4089 .text {
  9254. position:absolute;
  9255. align-self:center;
  9256. padding:2px 2px 2px 2px;
  9257. box-sizing:border-box;
  9258. width:100%;
  9259. }
  9260. #u4089_text {
  9261. border-width:0px;
  9262. white-space:nowrap;
  9263. text-transform:none;
  9264. }
  9265. #u4090_div {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:0px;
  9269. top:0px;
  9270. width:19px;
  9271. height:21px;
  9272. background:inherit;
  9273. background-color:rgba(255, 255, 255, 0);
  9274. border:none;
  9275. border-radius:0px;
  9276. -moz-box-shadow:none;
  9277. -webkit-box-shadow:none;
  9278. box-shadow:none;
  9279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9280. font-weight:400;
  9281. font-style:normal;
  9282. font-size:12px;
  9283. color:#FFFFFF;
  9284. text-align:left;
  9285. }
  9286. #u4090 {
  9287. border-width:0px;
  9288. position:absolute;
  9289. left:1327px;
  9290. top:567px;
  9291. width:19px;
  9292. height:21px;
  9293. display:flex;
  9294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9295. font-weight:400;
  9296. font-style:normal;
  9297. font-size:12px;
  9298. color:#FFFFFF;
  9299. text-align:left;
  9300. }
  9301. #u4090 .text {
  9302. position:absolute;
  9303. align-self:center;
  9304. padding:2px 2px 2px 2px;
  9305. box-sizing:border-box;
  9306. width:100%;
  9307. }
  9308. #u4090_text {
  9309. border-width:0px;
  9310. white-space:nowrap;
  9311. text-transform:none;
  9312. }
  9313. #u4091_div {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:0px;
  9317. top:0px;
  9318. width:49px;
  9319. height:21px;
  9320. background:inherit;
  9321. background-color:rgba(255, 255, 255, 0);
  9322. border:none;
  9323. border-radius:0px;
  9324. -moz-box-shadow:none;
  9325. -webkit-box-shadow:none;
  9326. box-shadow:none;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:12px;
  9331. color:#FFFFFF;
  9332. text-align:left;
  9333. }
  9334. #u4091 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:1436px;
  9338. top:567px;
  9339. width:49px;
  9340. height:21px;
  9341. display:flex;
  9342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9343. font-weight:400;
  9344. font-style:normal;
  9345. font-size:12px;
  9346. color:#FFFFFF;
  9347. text-align:left;
  9348. }
  9349. #u4091 .text {
  9350. position:absolute;
  9351. align-self:center;
  9352. padding:2px 2px 2px 2px;
  9353. box-sizing:border-box;
  9354. width:100%;
  9355. }
  9356. #u4091_text {
  9357. border-width:0px;
  9358. white-space:nowrap;
  9359. text-transform:none;
  9360. }
  9361. #u4092_div {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:0px;
  9365. top:0px;
  9366. width:19px;
  9367. height:21px;
  9368. background:inherit;
  9369. background-color:rgba(255, 255, 255, 0);
  9370. border:none;
  9371. border-radius:0px;
  9372. -moz-box-shadow:none;
  9373. -webkit-box-shadow:none;
  9374. box-shadow:none;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:12px;
  9379. color:#FFFFFF;
  9380. text-align:left;
  9381. }
  9382. #u4092 {
  9383. border-width:0px;
  9384. position:absolute;
  9385. left:1392px;
  9386. top:567px;
  9387. width:19px;
  9388. height:21px;
  9389. display:flex;
  9390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9391. font-weight:400;
  9392. font-style:normal;
  9393. font-size:12px;
  9394. color:#FFFFFF;
  9395. text-align:left;
  9396. }
  9397. #u4092 .text {
  9398. position:absolute;
  9399. align-self:center;
  9400. padding:2px 2px 2px 2px;
  9401. box-sizing:border-box;
  9402. width:100%;
  9403. }
  9404. #u4092_text {
  9405. border-width:0px;
  9406. white-space:nowrap;
  9407. text-transform:none;
  9408. }
  9409. #u4093 {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:0px;
  9415. height:0px;
  9416. }
  9417. #u4094_div {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:0px;
  9421. top:0px;
  9422. width:240px;
  9423. height:23px;
  9424. background:inherit;
  9425. background-color:rgba(255, 255, 255, 0);
  9426. border:none;
  9427. border-radius:0px;
  9428. -moz-box-shadow:none;
  9429. -webkit-box-shadow:none;
  9430. box-shadow:none;
  9431. font-size:12px;
  9432. }
  9433. #u4094 {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:1241px;
  9437. top:590px;
  9438. width:240px;
  9439. height:23px;
  9440. display:flex;
  9441. font-size:12px;
  9442. }
  9443. #u4094 .text {
  9444. position:absolute;
  9445. align-self:center;
  9446. padding:2px 2px 2px 2px;
  9447. box-sizing:border-box;
  9448. width:100%;
  9449. }
  9450. #u4094_text {
  9451. border-width:0px;
  9452. word-wrap:break-word;
  9453. text-transform:none;
  9454. visibility:hidden;
  9455. }
  9456. #u4095_div {
  9457. border-width:0px;
  9458. position:absolute;
  9459. left:0px;
  9460. top:0px;
  9461. width:53px;
  9462. height:21px;
  9463. background:inherit;
  9464. background-color:rgba(255, 255, 255, 0);
  9465. border:none;
  9466. border-radius:0px;
  9467. -moz-box-shadow:none;
  9468. -webkit-box-shadow:none;
  9469. box-shadow:none;
  9470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9471. font-weight:400;
  9472. font-style:normal;
  9473. font-size:12px;
  9474. color:rgba(255, 255, 255, 0.698039215686274);
  9475. text-align:left;
  9476. }
  9477. #u4095 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:1241px;
  9481. top:591px;
  9482. width:53px;
  9483. height:21px;
  9484. display:flex;
  9485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9486. font-weight:400;
  9487. font-style:normal;
  9488. font-size:12px;
  9489. color:rgba(255, 255, 255, 0.698039215686274);
  9490. text-align:left;
  9491. }
  9492. #u4095 .text {
  9493. position:absolute;
  9494. align-self:center;
  9495. padding:2px 2px 2px 2px;
  9496. box-sizing:border-box;
  9497. width:100%;
  9498. }
  9499. #u4095_text {
  9500. border-width:0px;
  9501. white-space:nowrap;
  9502. text-transform:none;
  9503. }
  9504. #u4096_div {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:0px;
  9508. top:0px;
  9509. width:19px;
  9510. height:21px;
  9511. background:inherit;
  9512. background-color:rgba(255, 255, 255, 0);
  9513. border:none;
  9514. border-radius:0px;
  9515. -moz-box-shadow:none;
  9516. -webkit-box-shadow:none;
  9517. box-shadow:none;
  9518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9519. font-weight:400;
  9520. font-style:normal;
  9521. font-size:12px;
  9522. color:#FFFFFF;
  9523. text-align:left;
  9524. }
  9525. #u4096 {
  9526. border-width:0px;
  9527. position:absolute;
  9528. left:1327px;
  9529. top:591px;
  9530. width:19px;
  9531. height:21px;
  9532. display:flex;
  9533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9534. font-weight:400;
  9535. font-style:normal;
  9536. font-size:12px;
  9537. color:#FFFFFF;
  9538. text-align:left;
  9539. }
  9540. #u4096 .text {
  9541. position:absolute;
  9542. align-self:center;
  9543. padding:2px 2px 2px 2px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u4096_text {
  9548. border-width:0px;
  9549. white-space:nowrap;
  9550. text-transform:none;
  9551. }
  9552. #u4097_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:49px;
  9558. height:21px;
  9559. background:inherit;
  9560. background-color:rgba(255, 255, 255, 0);
  9561. border:none;
  9562. border-radius:0px;
  9563. -moz-box-shadow:none;
  9564. -webkit-box-shadow:none;
  9565. box-shadow:none;
  9566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9567. font-weight:400;
  9568. font-style:normal;
  9569. font-size:12px;
  9570. color:#FFFFFF;
  9571. text-align:left;
  9572. }
  9573. #u4097 {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:1436px;
  9577. top:591px;
  9578. width:49px;
  9579. height:21px;
  9580. display:flex;
  9581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9582. font-weight:400;
  9583. font-style:normal;
  9584. font-size:12px;
  9585. color:#FFFFFF;
  9586. text-align:left;
  9587. }
  9588. #u4097 .text {
  9589. position:absolute;
  9590. align-self:center;
  9591. padding:2px 2px 2px 2px;
  9592. box-sizing:border-box;
  9593. width:100%;
  9594. }
  9595. #u4097_text {
  9596. border-width:0px;
  9597. white-space:nowrap;
  9598. text-transform:none;
  9599. }
  9600. #u4098_div {
  9601. border-width:0px;
  9602. position:absolute;
  9603. left:0px;
  9604. top:0px;
  9605. width:19px;
  9606. height:21px;
  9607. background:inherit;
  9608. background-color:rgba(255, 255, 255, 0);
  9609. border:none;
  9610. border-radius:0px;
  9611. -moz-box-shadow:none;
  9612. -webkit-box-shadow:none;
  9613. box-shadow:none;
  9614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9615. font-weight:400;
  9616. font-style:normal;
  9617. font-size:12px;
  9618. color:#FFFFFF;
  9619. text-align:left;
  9620. }
  9621. #u4098 {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:1392px;
  9625. top:591px;
  9626. width:19px;
  9627. height:21px;
  9628. display:flex;
  9629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9630. font-weight:400;
  9631. font-style:normal;
  9632. font-size:12px;
  9633. color:#FFFFFF;
  9634. text-align:left;
  9635. }
  9636. #u4098 .text {
  9637. position:absolute;
  9638. align-self:center;
  9639. padding:2px 2px 2px 2px;
  9640. box-sizing:border-box;
  9641. width:100%;
  9642. }
  9643. #u4098_text {
  9644. border-width:0px;
  9645. white-space:nowrap;
  9646. text-transform:none;
  9647. }
  9648. #u4099 {
  9649. border-width:0px;
  9650. position:absolute;
  9651. left:0px;
  9652. top:0px;
  9653. width:0px;
  9654. height:0px;
  9655. }
  9656. #u4100_div {
  9657. border-width:0px;
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:240px;
  9662. height:23px;
  9663. background:inherit;
  9664. background-color:rgba(255, 255, 255, 0);
  9665. border:none;
  9666. border-radius:0px;
  9667. -moz-box-shadow:none;
  9668. -webkit-box-shadow:none;
  9669. box-shadow:none;
  9670. font-size:12px;
  9671. }
  9672. #u4100 {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:1241px;
  9676. top:614px;
  9677. width:240px;
  9678. height:23px;
  9679. display:flex;
  9680. font-size:12px;
  9681. }
  9682. #u4100 .text {
  9683. position:absolute;
  9684. align-self:center;
  9685. padding:2px 2px 2px 2px;
  9686. box-sizing:border-box;
  9687. width:100%;
  9688. }
  9689. #u4100_text {
  9690. border-width:0px;
  9691. word-wrap:break-word;
  9692. text-transform:none;
  9693. visibility:hidden;
  9694. }
  9695. #u4101_div {
  9696. border-width:0px;
  9697. position:absolute;
  9698. left:0px;
  9699. top:0px;
  9700. width:53px;
  9701. height:21px;
  9702. background:inherit;
  9703. background-color:rgba(255, 255, 255, 0);
  9704. border:none;
  9705. border-radius:0px;
  9706. -moz-box-shadow:none;
  9707. -webkit-box-shadow:none;
  9708. box-shadow:none;
  9709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9710. font-weight:400;
  9711. font-style:normal;
  9712. font-size:12px;
  9713. color:rgba(255, 255, 255, 0.698039215686274);
  9714. text-align:left;
  9715. }
  9716. #u4101 {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:1241px;
  9720. top:615px;
  9721. width:53px;
  9722. height:21px;
  9723. display:flex;
  9724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9725. font-weight:400;
  9726. font-style:normal;
  9727. font-size:12px;
  9728. color:rgba(255, 255, 255, 0.698039215686274);
  9729. text-align:left;
  9730. }
  9731. #u4101 .text {
  9732. position:absolute;
  9733. align-self:center;
  9734. padding:2px 2px 2px 2px;
  9735. box-sizing:border-box;
  9736. width:100%;
  9737. }
  9738. #u4101_text {
  9739. border-width:0px;
  9740. white-space:nowrap;
  9741. text-transform:none;
  9742. }
  9743. #u4102_div {
  9744. border-width:0px;
  9745. position:absolute;
  9746. left:0px;
  9747. top:0px;
  9748. width:19px;
  9749. height:21px;
  9750. background:inherit;
  9751. background-color:rgba(255, 255, 255, 0);
  9752. border:none;
  9753. border-radius:0px;
  9754. -moz-box-shadow:none;
  9755. -webkit-box-shadow:none;
  9756. box-shadow:none;
  9757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9758. font-weight:400;
  9759. font-style:normal;
  9760. font-size:12px;
  9761. color:#FFFFFF;
  9762. text-align:left;
  9763. }
  9764. #u4102 {
  9765. border-width:0px;
  9766. position:absolute;
  9767. left:1327px;
  9768. top:615px;
  9769. width:19px;
  9770. height:21px;
  9771. display:flex;
  9772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9773. font-weight:400;
  9774. font-style:normal;
  9775. font-size:12px;
  9776. color:#FFFFFF;
  9777. text-align:left;
  9778. }
  9779. #u4102 .text {
  9780. position:absolute;
  9781. align-self:center;
  9782. padding:2px 2px 2px 2px;
  9783. box-sizing:border-box;
  9784. width:100%;
  9785. }
  9786. #u4102_text {
  9787. border-width:0px;
  9788. white-space:nowrap;
  9789. text-transform:none;
  9790. }
  9791. #u4103_div {
  9792. border-width:0px;
  9793. position:absolute;
  9794. left:0px;
  9795. top:0px;
  9796. width:49px;
  9797. height:21px;
  9798. background:inherit;
  9799. background-color:rgba(255, 255, 255, 0);
  9800. border:none;
  9801. border-radius:0px;
  9802. -moz-box-shadow:none;
  9803. -webkit-box-shadow:none;
  9804. box-shadow:none;
  9805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9806. font-weight:400;
  9807. font-style:normal;
  9808. font-size:12px;
  9809. color:#FFFFFF;
  9810. text-align:left;
  9811. }
  9812. #u4103 {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:1436px;
  9816. top:615px;
  9817. width:49px;
  9818. height:21px;
  9819. display:flex;
  9820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9821. font-weight:400;
  9822. font-style:normal;
  9823. font-size:12px;
  9824. color:#FFFFFF;
  9825. text-align:left;
  9826. }
  9827. #u4103 .text {
  9828. position:absolute;
  9829. align-self:center;
  9830. padding:2px 2px 2px 2px;
  9831. box-sizing:border-box;
  9832. width:100%;
  9833. }
  9834. #u4103_text {
  9835. border-width:0px;
  9836. white-space:nowrap;
  9837. text-transform:none;
  9838. }
  9839. #u4104_div {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:0px;
  9843. top:0px;
  9844. width:19px;
  9845. height:21px;
  9846. background:inherit;
  9847. background-color:rgba(255, 255, 255, 0);
  9848. border:none;
  9849. border-radius:0px;
  9850. -moz-box-shadow:none;
  9851. -webkit-box-shadow:none;
  9852. box-shadow:none;
  9853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9854. font-weight:400;
  9855. font-style:normal;
  9856. font-size:12px;
  9857. color:#FFFFFF;
  9858. text-align:left;
  9859. }
  9860. #u4104 {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:1392px;
  9864. top:615px;
  9865. width:19px;
  9866. height:21px;
  9867. display:flex;
  9868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9869. font-weight:400;
  9870. font-style:normal;
  9871. font-size:12px;
  9872. color:#FFFFFF;
  9873. text-align:left;
  9874. }
  9875. #u4104 .text {
  9876. position:absolute;
  9877. align-self:center;
  9878. padding:2px 2px 2px 2px;
  9879. box-sizing:border-box;
  9880. width:100%;
  9881. }
  9882. #u4104_text {
  9883. border-width:0px;
  9884. white-space:nowrap;
  9885. text-transform:none;
  9886. }
  9887. #u4105 {
  9888. border-width:0px;
  9889. position:absolute;
  9890. left:0px;
  9891. top:0px;
  9892. width:0px;
  9893. height:0px;
  9894. }
  9895. #u4106_div {
  9896. border-width:0px;
  9897. position:absolute;
  9898. left:0px;
  9899. top:0px;
  9900. width:240px;
  9901. height:23px;
  9902. background:inherit;
  9903. background-color:rgba(255, 255, 255, 0);
  9904. border:none;
  9905. border-radius:0px;
  9906. -moz-box-shadow:none;
  9907. -webkit-box-shadow:none;
  9908. box-shadow:none;
  9909. font-size:12px;
  9910. }
  9911. #u4106 {
  9912. border-width:0px;
  9913. position:absolute;
  9914. left:1241px;
  9915. top:638px;
  9916. width:240px;
  9917. height:23px;
  9918. display:flex;
  9919. font-size:12px;
  9920. }
  9921. #u4106 .text {
  9922. position:absolute;
  9923. align-self:center;
  9924. padding:2px 2px 2px 2px;
  9925. box-sizing:border-box;
  9926. width:100%;
  9927. }
  9928. #u4106_text {
  9929. border-width:0px;
  9930. word-wrap:break-word;
  9931. text-transform:none;
  9932. visibility:hidden;
  9933. }
  9934. #u4107_div {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:53px;
  9940. height:21px;
  9941. background:inherit;
  9942. background-color:rgba(255, 255, 255, 0);
  9943. border:none;
  9944. border-radius:0px;
  9945. -moz-box-shadow:none;
  9946. -webkit-box-shadow:none;
  9947. box-shadow:none;
  9948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9949. font-weight:400;
  9950. font-style:normal;
  9951. font-size:12px;
  9952. color:rgba(255, 255, 255, 0.698039215686274);
  9953. text-align:left;
  9954. }
  9955. #u4107 {
  9956. border-width:0px;
  9957. position:absolute;
  9958. left:1241px;
  9959. top:639px;
  9960. width:53px;
  9961. height:21px;
  9962. display:flex;
  9963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9964. font-weight:400;
  9965. font-style:normal;
  9966. font-size:12px;
  9967. color:rgba(255, 255, 255, 0.698039215686274);
  9968. text-align:left;
  9969. }
  9970. #u4107 .text {
  9971. position:absolute;
  9972. align-self:center;
  9973. padding:2px 2px 2px 2px;
  9974. box-sizing:border-box;
  9975. width:100%;
  9976. }
  9977. #u4107_text {
  9978. border-width:0px;
  9979. white-space:nowrap;
  9980. text-transform:none;
  9981. }
  9982. #u4108_div {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:0px;
  9986. top:0px;
  9987. width:19px;
  9988. height:21px;
  9989. background:inherit;
  9990. background-color:rgba(255, 255, 255, 0);
  9991. border:none;
  9992. border-radius:0px;
  9993. -moz-box-shadow:none;
  9994. -webkit-box-shadow:none;
  9995. box-shadow:none;
  9996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9997. font-weight:400;
  9998. font-style:normal;
  9999. font-size:12px;
  10000. color:#FFFFFF;
  10001. text-align:left;
  10002. }
  10003. #u4108 {
  10004. border-width:0px;
  10005. position:absolute;
  10006. left:1327px;
  10007. top:639px;
  10008. width:19px;
  10009. height:21px;
  10010. display:flex;
  10011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10012. font-weight:400;
  10013. font-style:normal;
  10014. font-size:12px;
  10015. color:#FFFFFF;
  10016. text-align:left;
  10017. }
  10018. #u4108 .text {
  10019. position:absolute;
  10020. align-self:center;
  10021. padding:2px 2px 2px 2px;
  10022. box-sizing:border-box;
  10023. width:100%;
  10024. }
  10025. #u4108_text {
  10026. border-width:0px;
  10027. white-space:nowrap;
  10028. text-transform:none;
  10029. }
  10030. #u4109_div {
  10031. border-width:0px;
  10032. position:absolute;
  10033. left:0px;
  10034. top:0px;
  10035. width:49px;
  10036. height:21px;
  10037. background:inherit;
  10038. background-color:rgba(255, 255, 255, 0);
  10039. border:none;
  10040. border-radius:0px;
  10041. -moz-box-shadow:none;
  10042. -webkit-box-shadow:none;
  10043. box-shadow:none;
  10044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10045. font-weight:400;
  10046. font-style:normal;
  10047. font-size:12px;
  10048. color:#FFFFFF;
  10049. text-align:left;
  10050. }
  10051. #u4109 {
  10052. border-width:0px;
  10053. position:absolute;
  10054. left:1436px;
  10055. top:639px;
  10056. width:49px;
  10057. height:21px;
  10058. display:flex;
  10059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10060. font-weight:400;
  10061. font-style:normal;
  10062. font-size:12px;
  10063. color:#FFFFFF;
  10064. text-align:left;
  10065. }
  10066. #u4109 .text {
  10067. position:absolute;
  10068. align-self:center;
  10069. padding:2px 2px 2px 2px;
  10070. box-sizing:border-box;
  10071. width:100%;
  10072. }
  10073. #u4109_text {
  10074. border-width:0px;
  10075. white-space:nowrap;
  10076. text-transform:none;
  10077. }
  10078. #u4110_div {
  10079. border-width:0px;
  10080. position:absolute;
  10081. left:0px;
  10082. top:0px;
  10083. width:19px;
  10084. height:21px;
  10085. background:inherit;
  10086. background-color:rgba(255, 255, 255, 0);
  10087. border:none;
  10088. border-radius:0px;
  10089. -moz-box-shadow:none;
  10090. -webkit-box-shadow:none;
  10091. box-shadow:none;
  10092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10093. font-weight:400;
  10094. font-style:normal;
  10095. font-size:12px;
  10096. color:#FFFFFF;
  10097. text-align:left;
  10098. }
  10099. #u4110 {
  10100. border-width:0px;
  10101. position:absolute;
  10102. left:1392px;
  10103. top:639px;
  10104. width:19px;
  10105. height:21px;
  10106. display:flex;
  10107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. font-size:12px;
  10111. color:#FFFFFF;
  10112. text-align:left;
  10113. }
  10114. #u4110 .text {
  10115. position:absolute;
  10116. align-self:center;
  10117. padding:2px 2px 2px 2px;
  10118. box-sizing:border-box;
  10119. width:100%;
  10120. }
  10121. #u4110_text {
  10122. border-width:0px;
  10123. white-space:nowrap;
  10124. text-transform:none;
  10125. }