styles.css 155 KB

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