styles.css 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:464px;
  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. #u2149_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u2149 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u2149 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u2149_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u2150_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u2150 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u2150 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u2150_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u2151_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u2151 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u2151 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u2151_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u2152 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u2153_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u2153 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u2153 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u2153_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u2154_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u2154 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u2154 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u2154_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u2155_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u2155 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u2155 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u2155_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u2156 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u2157_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u2157_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u2157_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u2157 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u2157 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u2157_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u2157.disabled {
  356. }
  357. .u2157_input_option {
  358. font-size:14px;
  359. }
  360. #u2158_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u2158 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u2158 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u2158_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u2159_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u2159 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u2159 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u2159_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u2160_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u2160 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u2160 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u2160_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u2161 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u2162_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u2162 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u2162 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u2162_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u2163_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u2163 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u2163 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u2163_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u2164 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u2165_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u2165 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u2165 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u2165_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u2166_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u2166 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u2166 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u2166_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u2167 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u2168_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u2168 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u2168 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u2168_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u2169_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u2169 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u2169 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u2169_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u2170 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u2171_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u2171 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u2171 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u2171_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u2172_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u2172 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u2172 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u2172_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u2173 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u2174_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u2174 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u2174 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u2174_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u2175_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u2175 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u2175 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u2175_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u2176 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u2177_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u2177 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u2177 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u2177_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u2178_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u2178 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u2178 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u2178_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u2179 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u2180_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u2180 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u2180 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u2180_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u2181_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u2181 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u2181 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u2181_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u2182 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u2183_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u2183 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u2183 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u2183_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u2184_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u2184 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u2184 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u2184_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u2185 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u2186_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u2186 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u2186 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u2186_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u2187_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u2187 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u2187 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u2187_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u2188 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u2189_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u2189 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u2189 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u2189_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u2190_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u2190 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u2190 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u2190_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u2191_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u2191 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u2191 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u2191_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u2192_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u2192 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u2192 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u2192_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u2193_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u2193 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u2193 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u2193_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u2194_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u2194 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u2194 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u2194_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u2195 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u2196_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u2196 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u2196 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u2196_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u2197_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u2197 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u2197 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u2197_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u2198 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u2199_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u2199 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u2199 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u2199_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u2200_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u2200 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u2200 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u2200_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u2201 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u2202_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u2202 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u2202 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u2202_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u2203_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u2203 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u2203 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u2203_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u2204 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:0px;
  1728. height:0px;
  1729. }
  1730. #u2205_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:200px;
  1736. height:1180px;
  1737. background:inherit;
  1738. background-color:rgba(255, 255, 255, 1);
  1739. border:none;
  1740. border-radius:0px;
  1741. -moz-box-shadow:none;
  1742. -webkit-box-shadow:none;
  1743. box-shadow:none;
  1744. }
  1745. #u2205 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:-1136px;
  1749. top:49px;
  1750. width:200px;
  1751. height:1180px;
  1752. display:flex;
  1753. }
  1754. #u2205 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u2205_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u2206_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:200px;
  1773. height:60px;
  1774. background:inherit;
  1775. background-color:rgba(224, 231, 247, 1);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1782. font-weight:500;
  1783. font-style:normal;
  1784. font-size:18px;
  1785. }
  1786. #u2206 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:-1136px;
  1790. top:49px;
  1791. width:200px;
  1792. height:60px;
  1793. display:flex;
  1794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1795. font-weight:500;
  1796. font-style:normal;
  1797. font-size:18px;
  1798. }
  1799. #u2206 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:0px 0px 0px 20px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u2206_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u2207_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:65px;
  1817. height:22px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:16px;
  1829. color:#1890FF;
  1830. }
  1831. #u2207 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:-1109px;
  1835. top:130px;
  1836. width:65px;
  1837. height:22px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:16px;
  1843. color:#1890FF;
  1844. }
  1845. #u2207 .text {
  1846. position:absolute;
  1847. align-self:flex-start;
  1848. padding:0px 0px 0px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u2207_text {
  1853. border-width:0px;
  1854. white-space:nowrap;
  1855. text-transform:none;
  1856. }
  1857. #u2208_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:65px;
  1863. height:22px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-radius:0px;
  1868. -moz-box-shadow:none;
  1869. -webkit-box-shadow:none;
  1870. box-shadow:none;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:16px;
  1875. }
  1876. #u2208 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:-1109px;
  1880. top:172px;
  1881. width:65px;
  1882. height:22px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:16px;
  1888. }
  1889. #u2208 .text {
  1890. position:absolute;
  1891. align-self:flex-start;
  1892. padding:0px 0px 0px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u2208_text {
  1897. border-width:0px;
  1898. white-space:nowrap;
  1899. text-transform:none;
  1900. }
  1901. #u2209_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:65px;
  1907. height:22px;
  1908. background:inherit;
  1909. background-color:rgba(255, 255, 255, 0);
  1910. border:none;
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:16px;
  1919. }
  1920. #u2209 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:-1109px;
  1924. top:214px;
  1925. width:65px;
  1926. height:22px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:16px;
  1932. }
  1933. #u2209 .text {
  1934. position:absolute;
  1935. align-self:flex-start;
  1936. padding:0px 0px 0px 0px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u2209_text {
  1941. border-width:0px;
  1942. white-space:nowrap;
  1943. text-transform:none;
  1944. }
  1945. #u2210_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:1255px;
  1951. height:1176px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 1);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. }
  1960. #u2210 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:333px;
  1964. top:51px;
  1965. width:1255px;
  1966. height:1176px;
  1967. display:flex;
  1968. }
  1969. #u2210 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 2px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u2210_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. visibility:hidden;
  1981. }
  1982. #u2211 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:0px;
  1988. height:0px;
  1989. }
  1990. #u2212_img {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:993px;
  1996. height:950px;
  1997. }
  1998. #u2212 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:582px;
  2002. top:115px;
  2003. width:993px;
  2004. height:950px;
  2005. display:flex;
  2006. }
  2007. #u2212 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 2px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u2212_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. visibility:hidden;
  2019. }
  2020. #u2213_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:29px;
  2026. height:17px;
  2027. background:inherit;
  2028. background-color:rgba(0, 191, 191, 1);
  2029. border:none;
  2030. border-radius:4px;
  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:10px;
  2038. color:#FFFFFF;
  2039. }
  2040. #u2213 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:582px;
  2044. top:118px;
  2045. width:29px;
  2046. height:17px;
  2047. display:flex;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:10px;
  2052. color:#FFFFFF;
  2053. }
  2054. #u2213 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:5px 0px 5px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u2213_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. }
  2066. #u2214_div {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:29px;
  2072. height:17px;
  2073. background:inherit;
  2074. background-color:rgba(217, 0, 27, 1);
  2075. border:none;
  2076. border-radius:4px;
  2077. -moz-box-shadow:none;
  2078. -webkit-box-shadow:none;
  2079. box-shadow:none;
  2080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2081. font-weight:400;
  2082. font-style:normal;
  2083. font-size:10px;
  2084. color:#FFFFFF;
  2085. }
  2086. #u2214 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:1249px;
  2090. top:115px;
  2091. width:29px;
  2092. height:17px;
  2093. display:flex;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:10px;
  2098. color:#FFFFFF;
  2099. }
  2100. #u2214 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:5px 0px 5px 0px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u2214_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. }
  2112. #u2215_div {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:29px;
  2118. height:17px;
  2119. background:inherit;
  2120. background-color:rgba(245, 154, 35, 1);
  2121. border:none;
  2122. border-radius:4px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:10px;
  2130. color:#FFFFFF;
  2131. }
  2132. #u2215 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:582px;
  2136. top:346px;
  2137. width:29px;
  2138. height:17px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:10px;
  2144. color:#FFFFFF;
  2145. }
  2146. #u2215 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:5px 0px 5px 0px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u2215_text {
  2154. border-width:0px;
  2155. word-wrap:break-word;
  2156. text-transform:none;
  2157. }
  2158. #u2216_div {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:29px;
  2164. height:17px;
  2165. background:inherit;
  2166. background-color:rgba(0, 191, 191, 1);
  2167. border:none;
  2168. border-radius:4px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:10px;
  2176. color:#FFFFFF;
  2177. }
  2178. #u2216 {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:913px;
  2182. top:115px;
  2183. width:29px;
  2184. height:17px;
  2185. display:flex;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:10px;
  2190. color:#FFFFFF;
  2191. }
  2192. #u2216 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:5px 0px 5px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u2216_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. }
  2204. #u2217_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:29px;
  2210. height:17px;
  2211. background:inherit;
  2212. background-color:rgba(0, 191, 191, 1);
  2213. border:none;
  2214. border-radius:4px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:10px;
  2222. color:#FFFFFF;
  2223. }
  2224. #u2217 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:913px;
  2228. top:349px;
  2229. width:29px;
  2230. height:17px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:10px;
  2236. color:#FFFFFF;
  2237. }
  2238. #u2217 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:5px 0px 5px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u2217_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. }
  2250. #u2218_div {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:29px;
  2256. height:17px;
  2257. background:inherit;
  2258. background-color:rgba(0, 191, 191, 1);
  2259. border:none;
  2260. border-radius:4px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:10px;
  2268. color:#FFFFFF;
  2269. }
  2270. #u2218 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:1243px;
  2274. top:346px;
  2275. width:29px;
  2276. height:17px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:10px;
  2282. color:#FFFFFF;
  2283. }
  2284. #u2218 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:5px 0px 5px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u2218_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u2219_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:29px;
  2302. height:17px;
  2303. background:inherit;
  2304. background-color:rgba(0, 191, 191, 1);
  2305. border:none;
  2306. border-radius:4px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:10px;
  2314. color:#FFFFFF;
  2315. }
  2316. #u2219 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:913px;
  2320. top:602px;
  2321. width:29px;
  2322. height:17px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:10px;
  2328. color:#FFFFFF;
  2329. }
  2330. #u2219 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:5px 0px 5px 0px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u2219_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. }
  2342. #u2220_div {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:29px;
  2348. height:17px;
  2349. background:inherit;
  2350. background-color:rgba(0, 191, 191, 1);
  2351. border:none;
  2352. border-radius:4px;
  2353. -moz-box-shadow:none;
  2354. -webkit-box-shadow:none;
  2355. box-shadow:none;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:10px;
  2360. color:#FFFFFF;
  2361. }
  2362. #u2220 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:1243px;
  2366. top:598px;
  2367. width:29px;
  2368. height:17px;
  2369. display:flex;
  2370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2371. font-weight:400;
  2372. font-style:normal;
  2373. font-size:10px;
  2374. color:#FFFFFF;
  2375. }
  2376. #u2220 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:5px 0px 5px 0px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u2220_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. }
  2388. #u2221_div {
  2389. border-width:0px;
  2390. position:absolute;
  2391. left:0px;
  2392. top:0px;
  2393. width:29px;
  2394. height:17px;
  2395. background:inherit;
  2396. background-color:rgba(0, 191, 191, 1);
  2397. border:none;
  2398. border-radius:4px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:10px;
  2406. color:#FFFFFF;
  2407. }
  2408. #u2221 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:582px;
  2412. top:602px;
  2413. width:29px;
  2414. height:17px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:10px;
  2420. color:#FFFFFF;
  2421. }
  2422. #u2221 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:5px 0px 5px 0px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u2221_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u2222_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:29px;
  2440. height:17px;
  2441. background:inherit;
  2442. background-color:rgba(0, 191, 191, 1);
  2443. border:none;
  2444. border-radius:4px;
  2445. -moz-box-shadow:none;
  2446. -webkit-box-shadow:none;
  2447. box-shadow:none;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:10px;
  2452. color:#FFFFFF;
  2453. }
  2454. #u2222 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:913px;
  2458. top:848px;
  2459. width:29px;
  2460. height:17px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:10px;
  2466. color:#FFFFFF;
  2467. }
  2468. #u2222 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:5px 0px 5px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u2222_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. }
  2480. #u2223_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:29px;
  2486. height:17px;
  2487. background:inherit;
  2488. background-color:rgba(0, 191, 191, 1);
  2489. border:none;
  2490. border-radius:4px;
  2491. -moz-box-shadow:none;
  2492. -webkit-box-shadow:none;
  2493. box-shadow:none;
  2494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:10px;
  2498. color:#FFFFFF;
  2499. }
  2500. #u2223 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:1243px;
  2504. top:845px;
  2505. width:29px;
  2506. height:17px;
  2507. display:flex;
  2508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2509. font-weight:400;
  2510. font-style:normal;
  2511. font-size:10px;
  2512. color:#FFFFFF;
  2513. }
  2514. #u2223 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:5px 0px 5px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u2223_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. }
  2526. #u2224_div {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:29px;
  2532. height:17px;
  2533. background:inherit;
  2534. background-color:rgba(0, 191, 191, 1);
  2535. border:none;
  2536. border-radius:4px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:10px;
  2544. color:#FFFFFF;
  2545. }
  2546. #u2224 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:582px;
  2550. top:848px;
  2551. width:29px;
  2552. height:17px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:10px;
  2558. color:#FFFFFF;
  2559. }
  2560. #u2224 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:5px 0px 5px 0px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u2224_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. }
  2572. #u2225_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:73px;
  2578. height:50px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 0);
  2581. border:none;
  2582. border-left:0px;
  2583. border-top:0px;
  2584. border-right:0px;
  2585. border-radius:0px;
  2586. border-bottom-right-radius:0px;
  2587. border-bottom-left-radius:0px;
  2588. -moz-box-shadow:none;
  2589. -webkit-box-shadow:none;
  2590. box-shadow:none;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:18px;
  2595. }
  2596. #u2225 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:352px;
  2600. top:51px;
  2601. width:73px;
  2602. height:50px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:18px;
  2608. }
  2609. #u2225 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:0px 0px 0px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u2225_text {
  2617. border-width:0px;
  2618. white-space:nowrap;
  2619. text-transform:none;
  2620. }
  2621. #u2226_div {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:191px;
  2627. height:435px;
  2628. background:inherit;
  2629. background-color:rgba(242, 242, 242, 1);
  2630. border:none;
  2631. border-radius:4px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. }
  2636. #u2226 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:351px;
  2640. top:321px;
  2641. width:191px;
  2642. height:435px;
  2643. display:flex;
  2644. }
  2645. #u2226 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 2px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u2226_text {
  2653. border-width:0px;
  2654. word-wrap:break-word;
  2655. text-transform:none;
  2656. visibility:hidden;
  2657. }
  2658. #u2227_div {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:57px;
  2664. height:30px;
  2665. background:inherit;
  2666. background-color:rgba(255, 255, 255, 0);
  2667. border:none;
  2668. border-radius:0px;
  2669. -moz-box-shadow:none;
  2670. -webkit-box-shadow:none;
  2671. box-shadow:none;
  2672. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2673. font-weight:500;
  2674. font-style:normal;
  2675. font-size:14px;
  2676. color:#000000;
  2677. line-height:30px;
  2678. }
  2679. #u2227 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:351px;
  2683. top:99px;
  2684. width:57px;
  2685. height:30px;
  2686. display:flex;
  2687. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2688. font-weight:500;
  2689. font-style:normal;
  2690. font-size:14px;
  2691. color:#000000;
  2692. line-height:30px;
  2693. }
  2694. #u2227 .text {
  2695. position:absolute;
  2696. align-self:flex-start;
  2697. padding:0px 0px 0px 0px;
  2698. box-sizing:border-box;
  2699. width:100%;
  2700. }
  2701. #u2227_text {
  2702. border-width:0px;
  2703. white-space:nowrap;
  2704. text-transform:none;
  2705. }
  2706. #u2228 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:0px;
  2712. height:0px;
  2713. }
  2714. #u2229_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:18px;
  2720. height:18px;
  2721. }
  2722. #u2229 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:1550px;
  2726. top:67px;
  2727. width:18px;
  2728. height:18px;
  2729. display:flex;
  2730. }
  2731. #u2229 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:2px 2px 2px 2px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u2229_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. visibility:hidden;
  2743. }
  2744. #u2230_img {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:0px;
  2749. width:2px;
  2750. height:15px;
  2751. }
  2752. #u2230 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:1535px;
  2756. top:69px;
  2757. width:1px;
  2758. height:14px;
  2759. display:flex;
  2760. }
  2761. #u2230 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 2px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u2230_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u2231 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:0px;
  2780. height:0px;
  2781. }
  2782. #u2232_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:9px;
  2788. height:9px;
  2789. }
  2790. #u2232 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:1412px;
  2794. top:66px;
  2795. width:9px;
  2796. height:9px;
  2797. display:flex;
  2798. }
  2799. #u2232 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 2px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u2232_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. visibility:hidden;
  2811. }
  2812. #u2233_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:9px;
  2818. height:9px;
  2819. }
  2820. #u2233 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:1424px;
  2824. top:66px;
  2825. width:9px;
  2826. height:9px;
  2827. display:flex;
  2828. }
  2829. #u2233 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u2233_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u2234_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:9px;
  2848. height:9px;
  2849. }
  2850. #u2234 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:1412px;
  2854. top:78px;
  2855. width:9px;
  2856. height:9px;
  2857. display:flex;
  2858. }
  2859. #u2234 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 2px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u2234_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u2235_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:9px;
  2878. height:9px;
  2879. }
  2880. #u2235 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:1424px;
  2884. top:78px;
  2885. width:9px;
  2886. height:9px;
  2887. display:flex;
  2888. }
  2889. #u2235 .text {
  2890. position:absolute;
  2891. align-self:center;
  2892. padding:2px 2px 2px 2px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u2235_text {
  2897. border-width:0px;
  2898. word-wrap:break-word;
  2899. text-transform:none;
  2900. visibility:hidden;
  2901. }
  2902. #u2236 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:0px;
  2908. height:0px;
  2909. }
  2910. #u2237_img {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:6px;
  2916. height:6px;
  2917. }
  2918. #u2237 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:1372px;
  2922. top:66px;
  2923. width:6px;
  2924. height:6px;
  2925. display:flex;
  2926. }
  2927. #u2237 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 2px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u2237_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u2238_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:6px;
  2946. height:6px;
  2947. }
  2948. #u2238 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:1379px;
  2952. top:66px;
  2953. width:6px;
  2954. height:6px;
  2955. display:flex;
  2956. }
  2957. #u2238 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:2px 2px 2px 2px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u2238_text {
  2965. border-width:0px;
  2966. word-wrap:break-word;
  2967. text-transform:none;
  2968. visibility:hidden;
  2969. }
  2970. #u2239_img {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:0px;
  2975. width:6px;
  2976. height:6px;
  2977. }
  2978. #u2239 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:1386px;
  2982. top:66px;
  2983. width:6px;
  2984. height:6px;
  2985. display:flex;
  2986. }
  2987. #u2239 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u2239_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u2240_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:6px;
  3006. height:6px;
  3007. }
  3008. #u2240 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:1372px;
  3012. top:73px;
  3013. width:6px;
  3014. height:6px;
  3015. display:flex;
  3016. }
  3017. #u2240 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u2240_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u2241_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:6px;
  3036. height:6px;
  3037. }
  3038. #u2241 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:1379px;
  3042. top:73px;
  3043. width:6px;
  3044. height:6px;
  3045. display:flex;
  3046. }
  3047. #u2241 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:2px 2px 2px 2px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u2241_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. visibility:hidden;
  3059. }
  3060. #u2242_img {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:6px;
  3066. height:6px;
  3067. }
  3068. #u2242 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:1386px;
  3072. top:73px;
  3073. width:6px;
  3074. height:6px;
  3075. display:flex;
  3076. }
  3077. #u2242 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u2242_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. visibility:hidden;
  3089. }
  3090. #u2243_img {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:0px;
  3094. top:0px;
  3095. width:6px;
  3096. height:6px;
  3097. }
  3098. #u2243 {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:1372px;
  3102. top:80px;
  3103. width:6px;
  3104. height:6px;
  3105. display:flex;
  3106. }
  3107. #u2243 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 2px 2px 2px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u2243_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u2244_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:6px;
  3126. height:6px;
  3127. }
  3128. #u2244 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:1379px;
  3132. top:80px;
  3133. width:6px;
  3134. height:6px;
  3135. display:flex;
  3136. }
  3137. #u2244 .text {
  3138. position:absolute;
  3139. align-self:center;
  3140. padding:2px 2px 2px 2px;
  3141. box-sizing:border-box;
  3142. width:100%;
  3143. }
  3144. #u2244_text {
  3145. border-width:0px;
  3146. word-wrap:break-word;
  3147. text-transform:none;
  3148. visibility:hidden;
  3149. }
  3150. #u2245_img {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:6px;
  3156. height:6px;
  3157. }
  3158. #u2245 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:1386px;
  3162. top:80px;
  3163. width:6px;
  3164. height:6px;
  3165. display:flex;
  3166. }
  3167. #u2245 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:2px 2px 2px 2px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u2245_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. visibility:hidden;
  3179. }
  3180. #u2246 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:0px;
  3186. height:0px;
  3187. }
  3188. #u2247_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:4px;
  3194. height:4px;
  3195. }
  3196. #u2247 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:1332px;
  3200. top:67px;
  3201. width:4px;
  3202. height:4px;
  3203. display:flex;
  3204. }
  3205. #u2247 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 2px 2px 2px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u2247_text {
  3213. border-width:0px;
  3214. word-wrap:break-word;
  3215. text-transform:none;
  3216. visibility:hidden;
  3217. }
  3218. #u2248_img {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:4px;
  3224. height:4px;
  3225. }
  3226. #u2248 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:1337px;
  3230. top:67px;
  3231. width:4px;
  3232. height:4px;
  3233. display:flex;
  3234. }
  3235. #u2248 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 2px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u2248_text {
  3243. border-width:0px;
  3244. word-wrap:break-word;
  3245. text-transform:none;
  3246. visibility:hidden;
  3247. }
  3248. #u2249_img {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:0px;
  3252. top:0px;
  3253. width:4px;
  3254. height:4px;
  3255. }
  3256. #u2249 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:1342px;
  3260. top:67px;
  3261. width:4px;
  3262. height:4px;
  3263. display:flex;
  3264. }
  3265. #u2249 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 2px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u2249_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u2250_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:4px;
  3284. height:4px;
  3285. }
  3286. #u2250 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:1347px;
  3290. top:67px;
  3291. width:4px;
  3292. height:4px;
  3293. display:flex;
  3294. }
  3295. #u2250 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u2250_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u2251_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:4px;
  3314. height:4px;
  3315. }
  3316. #u2251 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:1332px;
  3320. top:72px;
  3321. width:4px;
  3322. height:4px;
  3323. display:flex;
  3324. }
  3325. #u2251 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 2px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u2251_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. visibility:hidden;
  3337. }
  3338. #u2252_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:4px;
  3344. height:4px;
  3345. }
  3346. #u2252 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:1337px;
  3350. top:72px;
  3351. width:4px;
  3352. height:4px;
  3353. display:flex;
  3354. }
  3355. #u2252 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 2px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u2252_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. visibility:hidden;
  3367. }
  3368. #u2253_img {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:4px;
  3374. height:4px;
  3375. }
  3376. #u2253 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:1342px;
  3380. top:72px;
  3381. width:4px;
  3382. height:4px;
  3383. display:flex;
  3384. }
  3385. #u2253 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 2px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u2253_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u2254_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:4px;
  3404. height:4px;
  3405. }
  3406. #u2254 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:1347px;
  3410. top:72px;
  3411. width:4px;
  3412. height:4px;
  3413. display:flex;
  3414. }
  3415. #u2254 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 2px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u2254_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. visibility:hidden;
  3427. }
  3428. #u2255_img {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:4px;
  3434. height:4px;
  3435. }
  3436. #u2255 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:1332px;
  3440. top:77px;
  3441. width:4px;
  3442. height:4px;
  3443. display:flex;
  3444. }
  3445. #u2255 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 2px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u2255_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u2256_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:4px;
  3464. height:4px;
  3465. }
  3466. #u2256 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:1337px;
  3470. top:77px;
  3471. width:4px;
  3472. height:4px;
  3473. display:flex;
  3474. }
  3475. #u2256 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 2px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u2256_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u2257_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:4px;
  3494. height:4px;
  3495. }
  3496. #u2257 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:1342px;
  3500. top:77px;
  3501. width:4px;
  3502. height:4px;
  3503. display:flex;
  3504. }
  3505. #u2257 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 2px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u2257_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u2258_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:4px;
  3524. height:4px;
  3525. }
  3526. #u2258 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:1347px;
  3530. top:77px;
  3531. width:4px;
  3532. height:4px;
  3533. display:flex;
  3534. }
  3535. #u2258 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 2px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. #u2258_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. visibility:hidden;
  3547. }
  3548. #u2259_img {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:4px;
  3554. height:4px;
  3555. }
  3556. #u2259 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:1332px;
  3560. top:82px;
  3561. width:4px;
  3562. height:4px;
  3563. display:flex;
  3564. }
  3565. #u2259 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 2px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u2259_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u2260_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:4px;
  3584. height:4px;
  3585. }
  3586. #u2260 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:1337px;
  3590. top:82px;
  3591. width:4px;
  3592. height:4px;
  3593. display:flex;
  3594. }
  3595. #u2260 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 2px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u2260_text {
  3603. border-width:0px;
  3604. word-wrap:break-word;
  3605. text-transform:none;
  3606. visibility:hidden;
  3607. }
  3608. #u2261_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:4px;
  3614. height:4px;
  3615. }
  3616. #u2261 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:1342px;
  3620. top:82px;
  3621. width:4px;
  3622. height:4px;
  3623. display:flex;
  3624. }
  3625. #u2261 .text {
  3626. position:absolute;
  3627. align-self:center;
  3628. padding:2px 2px 2px 2px;
  3629. box-sizing:border-box;
  3630. width:100%;
  3631. }
  3632. #u2261_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. visibility:hidden;
  3637. }
  3638. #u2262_img {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:4px;
  3644. height:4px;
  3645. }
  3646. #u2262 {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:1347px;
  3650. top:82px;
  3651. width:4px;
  3652. height:4px;
  3653. display:flex;
  3654. }
  3655. #u2262 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 2px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u2262_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u2263_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:20px;
  3674. height:20px;
  3675. }
  3676. #u2263 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:1454px;
  3680. top:66px;
  3681. width:20px;
  3682. height:20px;
  3683. display:flex;
  3684. }
  3685. #u2263 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 2px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u2263_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u2264_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:18px;
  3704. height:18px;
  3705. }
  3706. #u2264 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:1503px;
  3710. top:67px;
  3711. width:18px;
  3712. height:18px;
  3713. display:flex;
  3714. }
  3715. #u2264 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:2px 2px 2px 2px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u2264_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. visibility:hidden;
  3727. }
  3728. #u2265_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:2px;
  3734. height:15px;
  3735. }
  3736. #u2265 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:1488px;
  3740. top:69px;
  3741. width:1px;
  3742. height:14px;
  3743. display:flex;
  3744. }
  3745. #u2265 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 2px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u2265_text {
  3753. border-width:0px;
  3754. word-wrap:break-word;
  3755. text-transform:none;
  3756. visibility:hidden;
  3757. }
  3758. #u2266_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:43px;
  3764. height:30px;
  3765. background:inherit;
  3766. background-color:rgba(255, 255, 255, 0);
  3767. border:none;
  3768. border-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3773. font-weight:500;
  3774. font-style:normal;
  3775. font-size:14px;
  3776. color:#000000;
  3777. line-height:30px;
  3778. }
  3779. #u2266 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:351px;
  3783. top:291px;
  3784. width:43px;
  3785. height:30px;
  3786. display:flex;
  3787. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3788. font-weight:500;
  3789. font-style:normal;
  3790. font-size:14px;
  3791. color:#000000;
  3792. line-height:30px;
  3793. }
  3794. #u2266 .text {
  3795. position:absolute;
  3796. align-self:flex-start;
  3797. padding:0px 0px 0px 0px;
  3798. box-sizing:border-box;
  3799. width:100%;
  3800. }
  3801. #u2266_text {
  3802. border-width:0px;
  3803. white-space:nowrap;
  3804. text-transform:none;
  3805. }
  3806. #u2267 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:0px;
  3810. top:0px;
  3811. width:0px;
  3812. height:0px;
  3813. }
  3814. #u2268_div {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:30px;
  3820. height:30px;
  3821. background:inherit;
  3822. background-color:rgba(255, 255, 255, 1);
  3823. box-sizing:border-box;
  3824. border-width:1px;
  3825. border-style:solid;
  3826. border-color:rgba(121, 121, 121, 1);
  3827. border-radius:0px;
  3828. -moz-box-shadow:none;
  3829. -webkit-box-shadow:none;
  3830. box-shadow:none;
  3831. }
  3832. #u2268 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:352px;
  3836. top:134px;
  3837. width:30px;
  3838. height:30px;
  3839. display:flex;
  3840. }
  3841. #u2268 .text {
  3842. position:absolute;
  3843. align-self:center;
  3844. padding:2px 2px 2px 2px;
  3845. box-sizing:border-box;
  3846. width:100%;
  3847. }
  3848. #u2268_text {
  3849. border-width:0px;
  3850. word-wrap:break-word;
  3851. text-transform:none;
  3852. visibility:hidden;
  3853. }
  3854. #u2269_img {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:19px;
  3860. height:18px;
  3861. }
  3862. #u2269 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:358px;
  3866. top:140px;
  3867. width:19px;
  3868. height:18px;
  3869. display:flex;
  3870. -webkit-transform:rotate(135deg);
  3871. -moz-transform:rotate(135deg);
  3872. -ms-transform:rotate(135deg);
  3873. transform:rotate(135deg);
  3874. }
  3875. #u2269 .text {
  3876. position:absolute;
  3877. align-self:center;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u2269_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u2270 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:0px;
  3894. height:0px;
  3895. }
  3896. #u2271_div {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:30px;
  3902. height:30px;
  3903. background:inherit;
  3904. background-color:rgba(255, 255, 255, 1);
  3905. box-sizing:border-box;
  3906. border-width:1px;
  3907. border-style:solid;
  3908. border-color:rgba(121, 121, 121, 1);
  3909. border-radius:0px;
  3910. -moz-box-shadow:none;
  3911. -webkit-box-shadow:none;
  3912. box-shadow:none;
  3913. }
  3914. #u2271 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:392px;
  3918. top:134px;
  3919. width:30px;
  3920. height:30px;
  3921. display:flex;
  3922. }
  3923. #u2271 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 2px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u2271_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u2272_img {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:19px;
  3942. height:18px;
  3943. }
  3944. #u2272 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:398px;
  3948. top:140px;
  3949. width:19px;
  3950. height:18px;
  3951. display:flex;
  3952. -webkit-transform:rotate(180deg);
  3953. -moz-transform:rotate(180deg);
  3954. -ms-transform:rotate(180deg);
  3955. transform:rotate(180deg);
  3956. }
  3957. #u2272 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 2px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u2272_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. visibility:hidden;
  3969. }
  3970. #u2273 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:0px;
  3976. height:0px;
  3977. }
  3978. #u2274_div {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:30px;
  3984. height:30px;
  3985. background:inherit;
  3986. background-color:rgba(255, 255, 255, 1);
  3987. box-sizing:border-box;
  3988. border-width:1px;
  3989. border-style:solid;
  3990. border-color:rgba(121, 121, 121, 1);
  3991. border-radius:0px;
  3992. -moz-box-shadow:none;
  3993. -webkit-box-shadow:none;
  3994. box-shadow:none;
  3995. }
  3996. #u2274 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:432px;
  4000. top:134px;
  4001. width:30px;
  4002. height:30px;
  4003. display:flex;
  4004. }
  4005. #u2274 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 2px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u2274_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u2275_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:19px;
  4024. height:18px;
  4025. }
  4026. #u2275 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:438px;
  4030. top:140px;
  4031. width:19px;
  4032. height:18px;
  4033. display:flex;
  4034. -webkit-transform:rotate(225deg);
  4035. -moz-transform:rotate(225deg);
  4036. -ms-transform:rotate(225deg);
  4037. transform:rotate(225deg);
  4038. }
  4039. #u2275 .text {
  4040. position:absolute;
  4041. align-self:center;
  4042. padding:2px 2px 2px 2px;
  4043. box-sizing:border-box;
  4044. width:100%;
  4045. }
  4046. #u2275_text {
  4047. border-width:0px;
  4048. word-wrap:break-word;
  4049. text-transform:none;
  4050. visibility:hidden;
  4051. }
  4052. #u2276 {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:0px;
  4058. height:0px;
  4059. }
  4060. #u2277_div {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:30px;
  4066. height:30px;
  4067. background:inherit;
  4068. background-color:rgba(255, 255, 255, 1);
  4069. box-sizing:border-box;
  4070. border-width:1px;
  4071. border-style:solid;
  4072. border-color:rgba(121, 121, 121, 1);
  4073. border-radius:0px;
  4074. -moz-box-shadow:none;
  4075. -webkit-box-shadow:none;
  4076. box-shadow:none;
  4077. }
  4078. #u2277 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:352px;
  4082. top:174px;
  4083. width:30px;
  4084. height:30px;
  4085. display:flex;
  4086. }
  4087. #u2277 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 2px 2px 2px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u2277_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u2278_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:19px;
  4106. height:18px;
  4107. }
  4108. #u2278 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:358px;
  4112. top:180px;
  4113. width:19px;
  4114. height:18px;
  4115. display:flex;
  4116. -webkit-transform:rotate(90deg);
  4117. -moz-transform:rotate(90deg);
  4118. -ms-transform:rotate(90deg);
  4119. transform:rotate(90deg);
  4120. }
  4121. #u2278 .text {
  4122. position:absolute;
  4123. align-self:center;
  4124. padding:2px 2px 2px 2px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u2278_text {
  4129. border-width:0px;
  4130. word-wrap:break-word;
  4131. text-transform:none;
  4132. visibility:hidden;
  4133. }
  4134. #u2279 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:0px;
  4140. height:0px;
  4141. }
  4142. #u2280_div {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:30px;
  4148. height:30px;
  4149. background:inherit;
  4150. background-color:rgba(255, 255, 255, 1);
  4151. box-sizing:border-box;
  4152. border-width:1px;
  4153. border-style:solid;
  4154. border-color:rgba(121, 121, 121, 1);
  4155. border-radius:0px;
  4156. -moz-box-shadow:none;
  4157. -webkit-box-shadow:none;
  4158. box-shadow:none;
  4159. }
  4160. #u2280 {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:432px;
  4164. top:174px;
  4165. width:30px;
  4166. height:30px;
  4167. display:flex;
  4168. }
  4169. #u2280 .text {
  4170. position:absolute;
  4171. align-self:center;
  4172. padding:2px 2px 2px 2px;
  4173. box-sizing:border-box;
  4174. width:100%;
  4175. }
  4176. #u2280_text {
  4177. border-width:0px;
  4178. word-wrap:break-word;
  4179. text-transform:none;
  4180. visibility:hidden;
  4181. }
  4182. #u2281_img {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:19px;
  4188. height:18px;
  4189. }
  4190. #u2281 {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:438px;
  4194. top:180px;
  4195. width:19px;
  4196. height:18px;
  4197. display:flex;
  4198. -webkit-transform:rotate(270deg);
  4199. -moz-transform:rotate(270deg);
  4200. -ms-transform:rotate(270deg);
  4201. transform:rotate(270deg);
  4202. }
  4203. #u2281 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 2px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u2281_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u2282 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:0px;
  4222. height:0px;
  4223. }
  4224. #u2283_div {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:30px;
  4230. height:30px;
  4231. background:inherit;
  4232. background-color:rgba(255, 255, 255, 1);
  4233. box-sizing:border-box;
  4234. border-width:1px;
  4235. border-style:solid;
  4236. border-color:rgba(121, 121, 121, 1);
  4237. border-radius:0px;
  4238. -moz-box-shadow:none;
  4239. -webkit-box-shadow:none;
  4240. box-shadow:none;
  4241. }
  4242. #u2283 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:352px;
  4246. top:214px;
  4247. width:30px;
  4248. height:30px;
  4249. display:flex;
  4250. }
  4251. #u2283 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 2px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u2283_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u2284_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:19px;
  4270. height:18px;
  4271. }
  4272. #u2284 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:358px;
  4276. top:220px;
  4277. width:19px;
  4278. height:18px;
  4279. display:flex;
  4280. -webkit-transform:rotate(51deg);
  4281. -moz-transform:rotate(51deg);
  4282. -ms-transform:rotate(51deg);
  4283. transform:rotate(51deg);
  4284. }
  4285. #u2284 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 2px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u2284_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u2285 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:0px;
  4304. height:0px;
  4305. }
  4306. #u2286_div {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:30px;
  4312. height:30px;
  4313. background:inherit;
  4314. background-color:rgba(255, 255, 255, 1);
  4315. box-sizing:border-box;
  4316. border-width:1px;
  4317. border-style:solid;
  4318. border-color:rgba(121, 121, 121, 1);
  4319. border-radius:0px;
  4320. -moz-box-shadow:none;
  4321. -webkit-box-shadow:none;
  4322. box-shadow:none;
  4323. }
  4324. #u2286 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:392px;
  4328. top:214px;
  4329. width:30px;
  4330. height:30px;
  4331. display:flex;
  4332. }
  4333. #u2286 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 2px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u2286_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u2287_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:19px;
  4352. height:18px;
  4353. }
  4354. #u2287 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:398px;
  4358. top:220px;
  4359. width:19px;
  4360. height:18px;
  4361. display:flex;
  4362. }
  4363. #u2287 .text {
  4364. position:absolute;
  4365. align-self:center;
  4366. padding:2px 2px 2px 2px;
  4367. box-sizing:border-box;
  4368. width:100%;
  4369. }
  4370. #u2287_text {
  4371. border-width:0px;
  4372. word-wrap:break-word;
  4373. text-transform:none;
  4374. visibility:hidden;
  4375. }
  4376. #u2288 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:0px;
  4382. height:0px;
  4383. }
  4384. #u2289_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:30px;
  4390. height:30px;
  4391. background:inherit;
  4392. background-color:rgba(255, 255, 255, 1);
  4393. box-sizing:border-box;
  4394. border-width:1px;
  4395. border-style:solid;
  4396. border-color:rgba(121, 121, 121, 1);
  4397. border-radius:0px;
  4398. -moz-box-shadow:none;
  4399. -webkit-box-shadow:none;
  4400. box-shadow:none;
  4401. }
  4402. #u2289 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:432px;
  4406. top:214px;
  4407. width:30px;
  4408. height:30px;
  4409. display:flex;
  4410. }
  4411. #u2289 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u2289_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u2290_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:19px;
  4430. height:18px;
  4431. }
  4432. #u2290 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:438px;
  4436. top:220px;
  4437. width:19px;
  4438. height:18px;
  4439. display:flex;
  4440. -webkit-transform:rotate(300deg);
  4441. -moz-transform:rotate(300deg);
  4442. -ms-transform:rotate(300deg);
  4443. transform:rotate(300deg);
  4444. }
  4445. #u2290 .text {
  4446. position:absolute;
  4447. align-self:center;
  4448. padding:2px 2px 2px 2px;
  4449. box-sizing:border-box;
  4450. width:100%;
  4451. }
  4452. #u2290_text {
  4453. border-width:0px;
  4454. word-wrap:break-word;
  4455. text-transform:none;
  4456. visibility:hidden;
  4457. }
  4458. #u2291_div {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:30px;
  4464. height:30px;
  4465. background:inherit;
  4466. background-color:rgba(255, 255, 255, 1);
  4467. box-sizing:border-box;
  4468. border-width:1px;
  4469. border-style:solid;
  4470. border-color:rgba(121, 121, 121, 1);
  4471. border-radius:0px;
  4472. -moz-box-shadow:none;
  4473. -webkit-box-shadow:none;
  4474. box-shadow:none;
  4475. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4476. font-weight:700;
  4477. font-style:normal;
  4478. font-size:24px;
  4479. }
  4480. #u2291 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:472px;
  4484. top:134px;
  4485. width:30px;
  4486. height:30px;
  4487. display:flex;
  4488. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4489. font-weight:700;
  4490. font-style:normal;
  4491. font-size:24px;
  4492. }
  4493. #u2291 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 2px 2px 2px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u2291_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. }
  4505. #u2292_div {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:30px;
  4511. height:30px;
  4512. background:inherit;
  4513. background-color:rgba(255, 255, 255, 1);
  4514. box-sizing:border-box;
  4515. border-width:1px;
  4516. border-style:solid;
  4517. border-color:rgba(121, 121, 121, 1);
  4518. border-radius:0px;
  4519. -moz-box-shadow:none;
  4520. -webkit-box-shadow:none;
  4521. box-shadow:none;
  4522. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4523. font-weight:700;
  4524. font-style:normal;
  4525. font-size:24px;
  4526. }
  4527. #u2292 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:472px;
  4531. top:174px;
  4532. width:30px;
  4533. height:30px;
  4534. display:flex;
  4535. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4536. font-weight:700;
  4537. font-style:normal;
  4538. font-size:24px;
  4539. }
  4540. #u2292 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 2px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u2292_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. }
  4552. #u2293_div {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:30px;
  4558. height:30px;
  4559. background:inherit;
  4560. background-color:rgba(255, 255, 255, 1);
  4561. box-sizing:border-box;
  4562. border-width:1px;
  4563. border-style:solid;
  4564. border-color:rgba(121, 121, 121, 1);
  4565. border-radius:0px;
  4566. -moz-box-shadow:none;
  4567. -webkit-box-shadow:none;
  4568. box-shadow:none;
  4569. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4570. font-weight:700;
  4571. font-style:normal;
  4572. font-size:24px;
  4573. }
  4574. #u2293 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:472px;
  4578. top:214px;
  4579. width:30px;
  4580. height:30px;
  4581. display:flex;
  4582. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4583. font-weight:700;
  4584. font-style:normal;
  4585. font-size:24px;
  4586. }
  4587. #u2293 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:2px 2px 2px 2px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u2293_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. }
  4599. #u2294 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:0px;
  4605. height:0px;
  4606. }
  4607. #u2295_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:30px;
  4613. height:30px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 1);
  4616. box-sizing:border-box;
  4617. border-width:1px;
  4618. border-style:solid;
  4619. border-color:rgba(121, 121, 121, 1);
  4620. border-radius:0px;
  4621. -moz-box-shadow:none;
  4622. -webkit-box-shadow:none;
  4623. box-shadow:none;
  4624. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4625. font-weight:700;
  4626. font-style:normal;
  4627. font-size:18px;
  4628. }
  4629. #u2295 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:512px;
  4633. top:134px;
  4634. width:30px;
  4635. height:30px;
  4636. display:flex;
  4637. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4638. font-weight:700;
  4639. font-style:normal;
  4640. font-size:18px;
  4641. }
  4642. #u2295 .text {
  4643. position:absolute;
  4644. align-self:center;
  4645. padding:2px 2px 2px 2px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u2295_text {
  4650. border-width:0px;
  4651. word-wrap:break-word;
  4652. text-transform:none;
  4653. visibility:hidden;
  4654. }
  4655. #u2296_img {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:14px;
  4661. height:14px;
  4662. }
  4663. #u2296 {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:520px;
  4667. top:142px;
  4668. width:14px;
  4669. height:14px;
  4670. display:flex;
  4671. }
  4672. #u2296 .text {
  4673. position:absolute;
  4674. align-self:center;
  4675. padding:2px 2px 2px 2px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u2296_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. visibility:hidden;
  4684. }
  4685. #u2297 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:0px;
  4691. height:0px;
  4692. }
  4693. #u2298_div {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:30px;
  4699. height:30px;
  4700. background:inherit;
  4701. background-color:rgba(255, 255, 255, 1);
  4702. box-sizing:border-box;
  4703. border-width:1px;
  4704. border-style:solid;
  4705. border-color:rgba(121, 121, 121, 1);
  4706. border-radius:0px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4711. font-weight:700;
  4712. font-style:normal;
  4713. font-size:18px;
  4714. }
  4715. #u2298 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:512px;
  4719. top:174px;
  4720. width:30px;
  4721. height:30px;
  4722. display:flex;
  4723. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4724. font-weight:700;
  4725. font-style:normal;
  4726. font-size:18px;
  4727. }
  4728. #u2298 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 2px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u2298_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u2299_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:14px;
  4747. height:14px;
  4748. }
  4749. #u2299 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:520px;
  4753. top:182px;
  4754. width:14px;
  4755. height:14px;
  4756. display:flex;
  4757. }
  4758. #u2299 .text {
  4759. position:absolute;
  4760. align-self:center;
  4761. padding:2px 2px 2px 2px;
  4762. box-sizing:border-box;
  4763. width:100%;
  4764. }
  4765. #u2299_text {
  4766. border-width:0px;
  4767. word-wrap:break-word;
  4768. text-transform:none;
  4769. visibility:hidden;
  4770. }
  4771. #u2300 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:0px;
  4777. height:0px;
  4778. }
  4779. #u2301_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:30px;
  4785. height:30px;
  4786. background:inherit;
  4787. background-color:rgba(255, 255, 255, 1);
  4788. box-sizing:border-box;
  4789. border-width:1px;
  4790. border-style:solid;
  4791. border-color:rgba(121, 121, 121, 1);
  4792. border-radius:0px;
  4793. -moz-box-shadow:none;
  4794. -webkit-box-shadow:none;
  4795. box-shadow:none;
  4796. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4797. font-weight:700;
  4798. font-style:normal;
  4799. font-size:18px;
  4800. }
  4801. #u2301 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:512px;
  4805. top:214px;
  4806. width:30px;
  4807. height:30px;
  4808. display:flex;
  4809. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4810. font-weight:700;
  4811. font-style:normal;
  4812. font-size:18px;
  4813. }
  4814. #u2301 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 2px 2px 2px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u2301_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u2302_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:17px;
  4833. height:11px;
  4834. }
  4835. #u2302 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:519px;
  4839. top:224px;
  4840. width:17px;
  4841. height:11px;
  4842. display:flex;
  4843. }
  4844. #u2302 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:2px 2px 2px 2px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u2302_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u2303 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:0px;
  4863. height:0px;
  4864. }
  4865. #u2304_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:84px;
  4871. height:21px;
  4872. background:inherit;
  4873. background-color:rgba(51, 51, 51, 1);
  4874. border:none;
  4875. border-radius:11px;
  4876. -moz-box-shadow:none;
  4877. -webkit-box-shadow:none;
  4878. box-shadow:none;
  4879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4880. font-weight:400;
  4881. font-style:normal;
  4882. font-size:12px;
  4883. color:#FFFFFF;
  4884. text-align:center;
  4885. }
  4886. #u2304 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:443px;
  4890. top:240px;
  4891. width:84px;
  4892. height:21px;
  4893. display:flex;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:12px;
  4898. color:#FFFFFF;
  4899. text-align:center;
  4900. }
  4901. #u2304 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u2304_text {
  4909. border-width:0px;
  4910. white-space:nowrap;
  4911. text-transform:none;
  4912. }
  4913. #u2305_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:11px;
  4919. height:17px;
  4920. }
  4921. #u2305 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:495px;
  4925. top:271px;
  4926. width:11px;
  4927. height:17px;
  4928. display:flex;
  4929. }
  4930. #u2305 .text {
  4931. position:absolute;
  4932. align-self:center;
  4933. padding:2px 2px 2px 2px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u2305_text {
  4938. border-width:0px;
  4939. word-wrap:break-word;
  4940. text-transform:none;
  4941. visibility:hidden;
  4942. }
  4943. #u2306_div {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:191px;
  4949. height:6px;
  4950. background:inherit;
  4951. background-color:rgba(255, 255, 255, 1);
  4952. box-sizing:border-box;
  4953. border-width:1px;
  4954. border-style:solid;
  4955. border-color:rgba(228, 228, 228, 1);
  4956. border-radius:0px;
  4957. -moz-box-shadow:none;
  4958. -webkit-box-shadow:none;
  4959. box-shadow:none;
  4960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:12px;
  4964. color:#FFFFFF;
  4965. }
  4966. #u2306 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:351px;
  4970. top:268px;
  4971. width:191px;
  4972. height:6px;
  4973. display:flex;
  4974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:12px;
  4978. color:#FFFFFF;
  4979. }
  4980. #u2306 .text {
  4981. position:absolute;
  4982. align-self:center;
  4983. padding:8px 15px 8px 15px;
  4984. box-sizing:border-box;
  4985. width:100%;
  4986. }
  4987. #u2306_text {
  4988. border-width:0px;
  4989. word-wrap:break-word;
  4990. text-transform:none;
  4991. visibility:hidden;
  4992. }
  4993. #u2307_div {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:140px;
  4999. height:6px;
  5000. background:inherit;
  5001. background-color:rgba(51, 153, 255, 1);
  5002. box-sizing:border-box;
  5003. border-width:1px;
  5004. border-style:solid;
  5005. border-color:rgba(228, 228, 228, 1);
  5006. border-radius:0px;
  5007. -moz-box-shadow:none;
  5008. -webkit-box-shadow:none;
  5009. box-shadow:none;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:12px;
  5014. color:#FFFFFF;
  5015. }
  5016. #u2307 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:351px;
  5020. top:268px;
  5021. width:140px;
  5022. height:6px;
  5023. display:flex;
  5024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:12px;
  5028. color:#FFFFFF;
  5029. }
  5030. #u2307 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:8px 15px 8px 15px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u2307_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u2308_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:-3px;
  5047. top:-3px;
  5048. width:20px;
  5049. height:20px;
  5050. }
  5051. #u2308 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:480px;
  5055. top:264px;
  5056. width:14px;
  5057. height:14px;
  5058. display:flex;
  5059. }
  5060. #u2308 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 2px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u2308_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u2309 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:358px;
  5077. top:410px;
  5078. width:127px;
  5079. height:240px;
  5080. }
  5081. #u2309_children {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:0px;
  5085. top:0px;
  5086. width:0px;
  5087. height:0px;
  5088. }
  5089. #u2310 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:80px;
  5095. height:20px;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. }
  5100. #u2311_img {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:9px;
  5106. height:9px;
  5107. }
  5108. #u2311 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:6px;
  5112. top:6px;
  5113. width:9px;
  5114. height:9px;
  5115. display:flex;
  5116. }
  5117. #u2311 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 2px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u2311_img.selected {
  5125. }
  5126. #u2311.selected {
  5127. }
  5128. #u2311_text {
  5129. border-width:0px;
  5130. word-wrap:break-word;
  5131. text-transform:none;
  5132. visibility:hidden;
  5133. }
  5134. #u2312_div {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:58px;
  5140. height:20px;
  5141. background:inherit;
  5142. background-color:rgba(255, 255, 255, 0);
  5143. border:none;
  5144. border-radius:0px;
  5145. -moz-box-shadow:none;
  5146. -webkit-box-shadow:none;
  5147. box-shadow:none;
  5148. }
  5149. #u2312 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:22px;
  5153. top:0px;
  5154. width:58px;
  5155. height:20px;
  5156. display:flex;
  5157. }
  5158. #u2312 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 3px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u2312_text {
  5166. border-width:0px;
  5167. white-space:nowrap;
  5168. text-transform:none;
  5169. }
  5170. #u2310_children {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:0px;
  5176. height:0px;
  5177. }
  5178. #u2313 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:20px;
  5182. top:20px;
  5183. width:87px;
  5184. height:20px;
  5185. }
  5186. #u2314_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:9px;
  5192. height:9px;
  5193. }
  5194. #u2314 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:6px;
  5198. top:6px;
  5199. width:9px;
  5200. height:9px;
  5201. display:flex;
  5202. }
  5203. #u2314 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 2px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u2314_img.selected {
  5211. }
  5212. #u2314.selected {
  5213. }
  5214. #u2314_text {
  5215. border-width:0px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. visibility:hidden;
  5219. }
  5220. #u2315_div {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:65px;
  5226. height:20px;
  5227. background:inherit;
  5228. background-color:rgba(255, 255, 255, 0);
  5229. border:none;
  5230. border-radius:0px;
  5231. -moz-box-shadow:none;
  5232. -webkit-box-shadow:none;
  5233. box-shadow:none;
  5234. }
  5235. #u2315 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:22px;
  5239. top:0px;
  5240. width:65px;
  5241. height:20px;
  5242. display:flex;
  5243. }
  5244. #u2315 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:2px 2px 2px 3px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u2315_text {
  5252. border-width:0px;
  5253. white-space:nowrap;
  5254. text-transform:none;
  5255. }
  5256. #u2313_children {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:0px;
  5262. height:0px;
  5263. }
  5264. #u2316 {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:20px;
  5268. top:20px;
  5269. width:87px;
  5270. height:20px;
  5271. }
  5272. #u2317_div {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:65px;
  5278. height:20px;
  5279. background:inherit;
  5280. background-color:rgba(255, 255, 255, 0);
  5281. border:none;
  5282. border-radius:0px;
  5283. -moz-box-shadow:none;
  5284. -webkit-box-shadow:none;
  5285. box-shadow:none;
  5286. }
  5287. #u2317 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:22px;
  5291. top:0px;
  5292. width:65px;
  5293. height:20px;
  5294. display:flex;
  5295. }
  5296. #u2317 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:2px 2px 2px 3px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u2317_text {
  5304. border-width:0px;
  5305. white-space:nowrap;
  5306. text-transform:none;
  5307. }
  5308. #u2318 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:20px;
  5312. top:40px;
  5313. width:87px;
  5314. height:20px;
  5315. }
  5316. #u2319_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:65px;
  5322. height:20px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 0);
  5325. border:none;
  5326. border-radius:0px;
  5327. -moz-box-shadow:none;
  5328. -webkit-box-shadow:none;
  5329. box-shadow:none;
  5330. }
  5331. #u2319 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:22px;
  5335. top:0px;
  5336. width:65px;
  5337. height:20px;
  5338. display:flex;
  5339. }
  5340. #u2319 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 2px 2px 3px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u2319_text {
  5348. border-width:0px;
  5349. white-space:nowrap;
  5350. text-transform:none;
  5351. }
  5352. #u2320 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:20px;
  5356. top:60px;
  5357. width:54px;
  5358. height:20px;
  5359. }
  5360. #u2321_div {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:32px;
  5366. height:20px;
  5367. background:inherit;
  5368. background-color:rgba(255, 255, 255, 0);
  5369. border:none;
  5370. border-radius:0px;
  5371. -moz-box-shadow:none;
  5372. -webkit-box-shadow:none;
  5373. box-shadow:none;
  5374. }
  5375. #u2321 {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:22px;
  5379. top:0px;
  5380. width:32px;
  5381. height:20px;
  5382. display:flex;
  5383. }
  5384. #u2321 .text {
  5385. position:absolute;
  5386. align-self:center;
  5387. padding:2px 2px 2px 3px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u2321_text {
  5392. border-width:0px;
  5393. white-space:nowrap;
  5394. text-transform:none;
  5395. }
  5396. #u2322 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:20px;
  5400. top:100px;
  5401. width:87px;
  5402. height:20px;
  5403. }
  5404. #u2323_img {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:9px;
  5410. height:9px;
  5411. }
  5412. #u2323 {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:6px;
  5416. top:6px;
  5417. width:9px;
  5418. height:9px;
  5419. display:flex;
  5420. }
  5421. #u2323 .text {
  5422. position:absolute;
  5423. align-self:center;
  5424. padding:2px 2px 2px 2px;
  5425. box-sizing:border-box;
  5426. width:100%;
  5427. }
  5428. #u2323_img.selected {
  5429. }
  5430. #u2323.selected {
  5431. }
  5432. #u2323_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u2324_div {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:65px;
  5444. height:20px;
  5445. background:inherit;
  5446. background-color:rgba(255, 255, 255, 0);
  5447. border:none;
  5448. border-radius:0px;
  5449. -moz-box-shadow:none;
  5450. -webkit-box-shadow:none;
  5451. box-shadow:none;
  5452. }
  5453. #u2324 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:22px;
  5457. top:0px;
  5458. width:65px;
  5459. height:20px;
  5460. display:flex;
  5461. }
  5462. #u2324 .text {
  5463. position:absolute;
  5464. align-self:center;
  5465. padding:2px 2px 2px 3px;
  5466. box-sizing:border-box;
  5467. width:100%;
  5468. }
  5469. #u2324_text {
  5470. border-width:0px;
  5471. white-space:nowrap;
  5472. text-transform:none;
  5473. }
  5474. #u2322_children {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:0px;
  5480. height:0px;
  5481. }
  5482. #u2325 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:20px;
  5486. top:20px;
  5487. width:87px;
  5488. height:20px;
  5489. }
  5490. #u2326_div {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:65px;
  5496. height:20px;
  5497. background:inherit;
  5498. background-color:rgba(255, 255, 255, 0);
  5499. border:none;
  5500. border-radius:0px;
  5501. -moz-box-shadow:none;
  5502. -webkit-box-shadow:none;
  5503. box-shadow:none;
  5504. }
  5505. #u2326 {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:22px;
  5509. top:0px;
  5510. width:65px;
  5511. height:20px;
  5512. display:flex;
  5513. }
  5514. #u2326 .text {
  5515. position:absolute;
  5516. align-self:center;
  5517. padding:2px 2px 2px 3px;
  5518. box-sizing:border-box;
  5519. width:100%;
  5520. }
  5521. #u2326_text {
  5522. border-width:0px;
  5523. white-space:nowrap;
  5524. text-transform:none;
  5525. }
  5526. #u2327 {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:20px;
  5530. top:40px;
  5531. width:87px;
  5532. height:20px;
  5533. }
  5534. #u2328_div {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:65px;
  5540. height:20px;
  5541. background:inherit;
  5542. background-color:rgba(255, 255, 255, 0);
  5543. border:none;
  5544. border-radius:0px;
  5545. -moz-box-shadow:none;
  5546. -webkit-box-shadow:none;
  5547. box-shadow:none;
  5548. }
  5549. #u2328 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:22px;
  5553. top:0px;
  5554. width:65px;
  5555. height:20px;
  5556. display:flex;
  5557. }
  5558. #u2328 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 3px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u2328_text {
  5566. border-width:0px;
  5567. white-space:nowrap;
  5568. text-transform:none;
  5569. }
  5570. #u2329 {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:20px;
  5574. top:60px;
  5575. width:54px;
  5576. height:20px;
  5577. }
  5578. #u2330_div {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:32px;
  5584. height:20px;
  5585. background:inherit;
  5586. background-color:rgba(255, 255, 255, 0);
  5587. border:none;
  5588. border-radius:0px;
  5589. -moz-box-shadow:none;
  5590. -webkit-box-shadow:none;
  5591. box-shadow:none;
  5592. }
  5593. #u2330 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:22px;
  5597. top:0px;
  5598. width:32px;
  5599. height:20px;
  5600. display:flex;
  5601. }
  5602. #u2330 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 3px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u2330_text {
  5610. border-width:0px;
  5611. white-space:nowrap;
  5612. text-transform:none;
  5613. }
  5614. #u2331 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:20px;
  5618. top:180px;
  5619. width:87px;
  5620. height:20px;
  5621. }
  5622. #u2332_img {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:9px;
  5628. height:9px;
  5629. }
  5630. #u2332 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:6px;
  5634. top:6px;
  5635. width:9px;
  5636. height:9px;
  5637. display:flex;
  5638. }
  5639. #u2332 .text {
  5640. position:absolute;
  5641. align-self:center;
  5642. padding:2px 2px 2px 2px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u2332_img.selected {
  5647. }
  5648. #u2332.selected {
  5649. }
  5650. #u2332_text {
  5651. border-width:0px;
  5652. word-wrap:break-word;
  5653. text-transform:none;
  5654. visibility:hidden;
  5655. }
  5656. #u2333_div {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:65px;
  5662. height:20px;
  5663. background:inherit;
  5664. background-color:rgba(255, 255, 255, 0);
  5665. border:none;
  5666. border-radius:0px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. }
  5671. #u2333 {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:22px;
  5675. top:0px;
  5676. width:65px;
  5677. height:20px;
  5678. display:flex;
  5679. }
  5680. #u2333 .text {
  5681. position:absolute;
  5682. align-self:center;
  5683. padding:2px 2px 2px 3px;
  5684. box-sizing:border-box;
  5685. width:100%;
  5686. }
  5687. #u2333_text {
  5688. border-width:0px;
  5689. white-space:nowrap;
  5690. text-transform:none;
  5691. }
  5692. #u2331_children {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:0px;
  5698. height:0px;
  5699. }
  5700. #u2334 {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:20px;
  5704. top:20px;
  5705. width:87px;
  5706. height:20px;
  5707. }
  5708. #u2335_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:65px;
  5714. height:20px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 0);
  5717. border:none;
  5718. border-radius:0px;
  5719. -moz-box-shadow:none;
  5720. -webkit-box-shadow:none;
  5721. box-shadow:none;
  5722. }
  5723. #u2335 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:22px;
  5727. top:0px;
  5728. width:65px;
  5729. height:20px;
  5730. display:flex;
  5731. }
  5732. #u2335 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 3px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u2335_text {
  5740. border-width:0px;
  5741. white-space:nowrap;
  5742. text-transform:none;
  5743. }
  5744. #u2336 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:20px;
  5748. top:40px;
  5749. width:54px;
  5750. height:20px;
  5751. }
  5752. #u2337_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:32px;
  5758. height:20px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 0);
  5761. border:none;
  5762. border-radius:0px;
  5763. -moz-box-shadow:none;
  5764. -webkit-box-shadow:none;
  5765. box-shadow:none;
  5766. }
  5767. #u2337 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:22px;
  5771. top:0px;
  5772. width:32px;
  5773. height:20px;
  5774. display:flex;
  5775. }
  5776. #u2337 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:2px 2px 2px 3px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u2337_text {
  5784. border-width:0px;
  5785. white-space:nowrap;
  5786. text-transform:none;
  5787. }
  5788. #u2338 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:0px;
  5794. height:0px;
  5795. }
  5796. #u2339_div {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:0px;
  5801. width:175px;
  5802. height:30px;
  5803. background:inherit;
  5804. background-color:rgba(255, 255, 255, 1);
  5805. box-sizing:border-box;
  5806. border-width:1px;
  5807. border-style:solid;
  5808. border-color:rgba(201, 201, 201, 1);
  5809. border-radius:4px;
  5810. -moz-box-shadow:none;
  5811. -webkit-box-shadow:none;
  5812. box-shadow:none;
  5813. font-family:'Microsoft YaHei', sans-serif;
  5814. font-weight:400;
  5815. font-style:normal;
  5816. font-size:14px;
  5817. color:#CCCCCC;
  5818. text-align:left;
  5819. }
  5820. #u2339 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:359px;
  5824. top:333px;
  5825. width:175px;
  5826. height:30px;
  5827. display:flex;
  5828. font-family:'Microsoft YaHei', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:14px;
  5832. color:#CCCCCC;
  5833. text-align:left;
  5834. }
  5835. #u2339 .text {
  5836. position:absolute;
  5837. align-self:center;
  5838. padding:2px 8px 2px 8px;
  5839. box-sizing:border-box;
  5840. width:100%;
  5841. }
  5842. #u2339_text {
  5843. border-width:0px;
  5844. word-wrap:break-word;
  5845. text-transform:none;
  5846. visibility:hidden;
  5847. }
  5848. #u2340_input {
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:159px;
  5853. height:25px;
  5854. padding:2px 2px 2px 2px;
  5855. font-family:'Microsoft YaHei', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:10px;
  5859. letter-spacing:normal;
  5860. color:#000000;
  5861. vertical-align:none;
  5862. text-align:left;
  5863. text-transform:none;
  5864. background-color:transparent;
  5865. border-color:transparent;
  5866. }
  5867. #u2340_input.disabled {
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:159px;
  5872. height:25px;
  5873. padding:2px 2px 2px 2px;
  5874. font-family:'Microsoft YaHei', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:10px;
  5878. letter-spacing:normal;
  5879. color:#000000;
  5880. vertical-align:none;
  5881. text-align:left;
  5882. text-transform:none;
  5883. background-color:transparent;
  5884. border-color:transparent;
  5885. }
  5886. #u2340_div {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:159px;
  5892. height:25px;
  5893. background:inherit;
  5894. background-color:rgba(255, 255, 255, 1);
  5895. border:none;
  5896. border-radius:0px;
  5897. -moz-box-shadow:none;
  5898. -webkit-box-shadow:none;
  5899. box-shadow:none;
  5900. font-family:'Microsoft YaHei', sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:10px;
  5904. }
  5905. #u2340 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:369px;
  5909. top:334px;
  5910. width:159px;
  5911. height:25px;
  5912. display:flex;
  5913. font-family:'Microsoft YaHei', sans-serif;
  5914. font-weight:400;
  5915. font-style:normal;
  5916. font-size:10px;
  5917. }
  5918. #u2340 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 2px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u2340_div.disabled {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:159px;
  5931. height:25px;
  5932. background:inherit;
  5933. background-color:rgba(240, 240, 240, 1);
  5934. border:none;
  5935. border-radius:0px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-family:'Microsoft YaHei', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:10px;
  5943. }
  5944. #u2340.disabled {
  5945. }
  5946. #u2341_div {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:25px;
  5952. height:30px;
  5953. background:inherit;
  5954. background-color:rgba(255, 255, 255, 0);
  5955. border:none;
  5956. border-radius:0px;
  5957. -moz-box-shadow:none;
  5958. -webkit-box-shadow:none;
  5959. box-shadow:none;
  5960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:12px;
  5964. color:#3399FF;
  5965. line-height:30px;
  5966. }
  5967. #u2341 {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:359px;
  5971. top:372px;
  5972. width:25px;
  5973. height:30px;
  5974. display:flex;
  5975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5976. font-weight:400;
  5977. font-style:normal;
  5978. font-size:12px;
  5979. color:#3399FF;
  5980. line-height:30px;
  5981. }
  5982. #u2341 .text {
  5983. position:absolute;
  5984. align-self:flex-start;
  5985. padding:0px 0px 0px 0px;
  5986. box-sizing:border-box;
  5987. width:100%;
  5988. }
  5989. #u2341_text {
  5990. border-width:0px;
  5991. white-space:nowrap;
  5992. text-transform:none;
  5993. }
  5994. #u2342_div {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:25px;
  6000. height:30px;
  6001. background:inherit;
  6002. background-color:rgba(255, 255, 255, 0);
  6003. border:none;
  6004. border-radius:0px;
  6005. -moz-box-shadow:none;
  6006. -webkit-box-shadow:none;
  6007. box-shadow:none;
  6008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:12px;
  6012. color:#7F7F7F;
  6013. line-height:30px;
  6014. }
  6015. #u2342 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:396px;
  6019. top:372px;
  6020. width:25px;
  6021. height:30px;
  6022. display:flex;
  6023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6024. font-weight:400;
  6025. font-style:normal;
  6026. font-size:12px;
  6027. color:#7F7F7F;
  6028. line-height:30px;
  6029. }
  6030. #u2342 .text {
  6031. position:absolute;
  6032. align-self:flex-start;
  6033. padding:0px 0px 0px 0px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u2342_text {
  6038. border-width:0px;
  6039. white-space:nowrap;
  6040. text-transform:none;
  6041. }
  6042. #u2343_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:25px;
  6048. height:30px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 0);
  6051. border:none;
  6052. border-radius:0px;
  6053. -moz-box-shadow:none;
  6054. -webkit-box-shadow:none;
  6055. box-shadow:none;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:12px;
  6060. color:#7F7F7F;
  6061. line-height:30px;
  6062. }
  6063. #u2343 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:432px;
  6067. top:372px;
  6068. width:25px;
  6069. height:30px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:12px;
  6075. color:#7F7F7F;
  6076. line-height:30px;
  6077. }
  6078. #u2343 .text {
  6079. position:absolute;
  6080. align-self:flex-start;
  6081. padding:0px 0px 0px 0px;
  6082. box-sizing:border-box;
  6083. width:100%;
  6084. }
  6085. #u2343_text {
  6086. border-width:0px;
  6087. white-space:nowrap;
  6088. text-transform:none;
  6089. }
  6090. #u2344_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:25px;
  6096. height:30px;
  6097. background:inherit;
  6098. background-color:rgba(255, 255, 255, 0);
  6099. border:none;
  6100. border-radius:0px;
  6101. -moz-box-shadow:none;
  6102. -webkit-box-shadow:none;
  6103. box-shadow:none;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. color:#7F7F7F;
  6109. line-height:30px;
  6110. }
  6111. #u2344 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:469px;
  6115. top:372px;
  6116. width:25px;
  6117. height:30px;
  6118. display:flex;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:12px;
  6123. color:#7F7F7F;
  6124. line-height:30px;
  6125. }
  6126. #u2344 .text {
  6127. position:absolute;
  6128. align-self:flex-start;
  6129. padding:0px 0px 0px 0px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u2344_text {
  6134. border-width:0px;
  6135. white-space:nowrap;
  6136. text-transform:none;
  6137. }
  6138. #u2345 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:0px;
  6144. height:0px;
  6145. }
  6146. #u2346_div {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:200px;
  6152. height:1187px;
  6153. background:inherit;
  6154. background-color:rgba(255, 255, 255, 1);
  6155. border:none;
  6156. border-radius:0px;
  6157. -moz-box-shadow:none;
  6158. -webkit-box-shadow:none;
  6159. box-shadow:none;
  6160. }
  6161. #u2346 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:120px;
  6165. top:50px;
  6166. width:200px;
  6167. height:1187px;
  6168. display:flex;
  6169. }
  6170. #u2346 .text {
  6171. position:absolute;
  6172. align-self:center;
  6173. padding:2px 2px 2px 2px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u2346_text {
  6178. border-width:0px;
  6179. word-wrap:break-word;
  6180. text-transform:none;
  6181. visibility:hidden;
  6182. }
  6183. #u2347_div {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:0px;
  6187. top:0px;
  6188. width:200px;
  6189. height:60px;
  6190. background:inherit;
  6191. background-color:rgba(224, 231, 247, 1);
  6192. border:none;
  6193. border-radius:0px;
  6194. -moz-box-shadow:none;
  6195. -webkit-box-shadow:none;
  6196. box-shadow:none;
  6197. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6198. font-weight:500;
  6199. font-style:normal;
  6200. font-size:18px;
  6201. }
  6202. #u2347 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:120px;
  6206. top:50px;
  6207. width:200px;
  6208. height:60px;
  6209. display:flex;
  6210. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6211. font-weight:500;
  6212. font-style:normal;
  6213. font-size:18px;
  6214. }
  6215. #u2347 .text {
  6216. position:absolute;
  6217. align-self:center;
  6218. padding:0px 0px 0px 20px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u2347_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. }
  6227. #u2348_div {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:0px;
  6231. top:0px;
  6232. width:65px;
  6233. height:22px;
  6234. background:inherit;
  6235. background-color:rgba(255, 255, 255, 0);
  6236. border:none;
  6237. border-radius:0px;
  6238. -moz-box-shadow:none;
  6239. -webkit-box-shadow:none;
  6240. box-shadow:none;
  6241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6242. font-weight:400;
  6243. font-style:normal;
  6244. font-size:16px;
  6245. }
  6246. #u2348 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:147px;
  6250. top:204px;
  6251. width:65px;
  6252. height:22px;
  6253. display:flex;
  6254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:16px;
  6258. }
  6259. #u2348 .text {
  6260. position:absolute;
  6261. align-self:flex-start;
  6262. padding:0px 0px 0px 0px;
  6263. box-sizing:border-box;
  6264. width:100%;
  6265. }
  6266. #u2348_text {
  6267. border-width:0px;
  6268. white-space:nowrap;
  6269. text-transform:none;
  6270. }
  6271. #u2349_div {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:49px;
  6277. height:17px;
  6278. background:inherit;
  6279. background-color:rgba(255, 255, 255, 0);
  6280. border:none;
  6281. border-radius:0px;
  6282. -moz-box-shadow:none;
  6283. -webkit-box-shadow:none;
  6284. box-shadow:none;
  6285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6286. font-weight:400;
  6287. font-style:normal;
  6288. font-size:12px;
  6289. color:#AAAAAA;
  6290. }
  6291. #u2349 {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:147px;
  6295. top:125px;
  6296. width:49px;
  6297. height:17px;
  6298. display:flex;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:12px;
  6303. color:#AAAAAA;
  6304. }
  6305. #u2349 .text {
  6306. position:absolute;
  6307. align-self:flex-start;
  6308. padding:0px 0px 0px 0px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u2349_text {
  6313. border-width:0px;
  6314. white-space:nowrap;
  6315. text-transform:none;
  6316. }
  6317. #u2350_div {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:49px;
  6323. height:17px;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6332. font-weight:400;
  6333. font-style:normal;
  6334. font-size:12px;
  6335. color:#AAAAAA;
  6336. }
  6337. #u2350 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:147px;
  6341. top:461px;
  6342. width:49px;
  6343. height:17px;
  6344. display:flex;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:12px;
  6349. color:#AAAAAA;
  6350. }
  6351. #u2350 .text {
  6352. position:absolute;
  6353. align-self:flex-start;
  6354. padding:0px 0px 0px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u2350_text {
  6359. border-width:0px;
  6360. white-space:nowrap;
  6361. text-transform:none;
  6362. }
  6363. #u2351_img {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:201px;
  6369. height:2px;
  6370. }
  6371. #u2351 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:120px;
  6375. top:439px;
  6376. width:200px;
  6377. height:1px;
  6378. display:flex;
  6379. }
  6380. #u2351 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u2351_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. visibility:hidden;
  6392. }
  6393. #u2352_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:65px;
  6399. height:22px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 0);
  6402. border:none;
  6403. border-radius:0px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:16px;
  6411. }
  6412. #u2352 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:147px;
  6416. top:309px;
  6417. width:65px;
  6418. height:22px;
  6419. display:flex;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:16px;
  6424. }
  6425. #u2352 .text {
  6426. position:absolute;
  6427. align-self:flex-start;
  6428. padding:0px 0px 0px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u2352_text {
  6433. border-width:0px;
  6434. white-space:nowrap;
  6435. text-transform:none;
  6436. }
  6437. #u2353_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:49px;
  6443. height:17px;
  6444. background:inherit;
  6445. background-color:rgba(255, 255, 255, 0);
  6446. border:none;
  6447. border-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:12px;
  6455. color:#AAAAAA;
  6456. }
  6457. #u2353 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:147px;
  6461. top:273px;
  6462. width:49px;
  6463. height:17px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:12px;
  6469. color:#AAAAAA;
  6470. }
  6471. #u2353 .text {
  6472. position:absolute;
  6473. align-self:flex-start;
  6474. padding:0px 0px 0px 0px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u2353_text {
  6479. border-width:0px;
  6480. white-space:nowrap;
  6481. text-transform:none;
  6482. }
  6483. #u2354_img {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:201px;
  6489. height:2px;
  6490. }
  6491. #u2354 {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:120px;
  6495. top:251px;
  6496. width:200px;
  6497. height:1px;
  6498. display:flex;
  6499. }
  6500. #u2354 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 2px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u2354_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. visibility:hidden;
  6512. }
  6513. #u2355_div {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:65px;
  6519. height:22px;
  6520. background:inherit;
  6521. background-color:rgba(255, 255, 255, 0);
  6522. border:none;
  6523. border-radius:0px;
  6524. -moz-box-shadow:none;
  6525. -webkit-box-shadow:none;
  6526. box-shadow:none;
  6527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6528. font-weight:400;
  6529. font-style:normal;
  6530. font-size:16px;
  6531. }
  6532. #u2355 {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:147px;
  6536. top:162px;
  6537. width:65px;
  6538. height:22px;
  6539. display:flex;
  6540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6541. font-weight:400;
  6542. font-style:normal;
  6543. font-size:16px;
  6544. }
  6545. #u2355 .text {
  6546. position:absolute;
  6547. align-self:flex-start;
  6548. padding:0px 0px 0px 0px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u2355_text {
  6553. border-width:0px;
  6554. white-space:nowrap;
  6555. text-transform:none;
  6556. }
  6557. #u2356_div {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:65px;
  6563. height:22px;
  6564. background:inherit;
  6565. background-color:rgba(255, 255, 255, 0);
  6566. border:none;
  6567. border-radius:0px;
  6568. -moz-box-shadow:none;
  6569. -webkit-box-shadow:none;
  6570. box-shadow:none;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:16px;
  6575. }
  6576. #u2356 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:148px;
  6580. top:538px;
  6581. width:65px;
  6582. height:22px;
  6583. display:flex;
  6584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:16px;
  6588. }
  6589. #u2356 .text {
  6590. position:absolute;
  6591. align-self:flex-start;
  6592. padding:0px 0px 0px 0px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u2356_text {
  6597. border-width:0px;
  6598. white-space:nowrap;
  6599. text-transform:none;
  6600. }
  6601. #u2357_div {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:0px;
  6605. top:0px;
  6606. width:65px;
  6607. height:22px;
  6608. background:inherit;
  6609. background-color:rgba(255, 255, 255, 0);
  6610. border:none;
  6611. border-radius:0px;
  6612. -moz-box-shadow:none;
  6613. -webkit-box-shadow:none;
  6614. box-shadow:none;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:16px;
  6619. }
  6620. #u2357 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:148px;
  6624. top:496px;
  6625. width:65px;
  6626. height:22px;
  6627. display:flex;
  6628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. font-size:16px;
  6632. }
  6633. #u2357 .text {
  6634. position:absolute;
  6635. align-self:flex-start;
  6636. padding:0px 0px 0px 0px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u2357_text {
  6641. border-width:0px;
  6642. white-space:nowrap;
  6643. text-transform:none;
  6644. }
  6645. #u2358_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:65px;
  6651. height:22px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 0);
  6654. border:none;
  6655. border-radius:0px;
  6656. -moz-box-shadow:none;
  6657. -webkit-box-shadow:none;
  6658. box-shadow:none;
  6659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6660. font-weight:400;
  6661. font-style:normal;
  6662. font-size:16px;
  6663. }
  6664. #u2358 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:147px;
  6668. top:351px;
  6669. width:65px;
  6670. height:22px;
  6671. display:flex;
  6672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6673. font-weight:400;
  6674. font-style:normal;
  6675. font-size:16px;
  6676. }
  6677. #u2358 .text {
  6678. position:absolute;
  6679. align-self:flex-start;
  6680. padding:0px 0px 0px 0px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u2358_text {
  6685. border-width:0px;
  6686. white-space:nowrap;
  6687. text-transform:none;
  6688. }
  6689. #u2359_div {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:65px;
  6695. height:22px;
  6696. background:inherit;
  6697. background-color:rgba(255, 255, 255, 0);
  6698. border:none;
  6699. border-radius:0px;
  6700. -moz-box-shadow:none;
  6701. -webkit-box-shadow:none;
  6702. box-shadow:none;
  6703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6704. font-weight:400;
  6705. font-style:normal;
  6706. font-size:16px;
  6707. }
  6708. #u2359 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:147px;
  6712. top:393px;
  6713. width:65px;
  6714. height:22px;
  6715. display:flex;
  6716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6717. font-weight:400;
  6718. font-style:normal;
  6719. font-size:16px;
  6720. }
  6721. #u2359 .text {
  6722. position:absolute;
  6723. align-self:flex-start;
  6724. padding:0px 0px 0px 0px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u2359_text {
  6729. border-width:0px;
  6730. white-space:nowrap;
  6731. text-transform:none;
  6732. }