styles.css 136 KB

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