styles.css 144 KB

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