styles.css 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u146813_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. #u146813 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u146813 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u146813_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u146814_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. #u146814 {
  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. #u146814 .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. #u146814_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u146815_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. #u146815 {
  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. #u146815 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u146815_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u146816 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u146817_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u146817 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u146817 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u146817_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u146818_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. #u146818 {
  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. #u146818 .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. #u146818_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u146819_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. #u146819 {
  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. #u146819 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u146819_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u146820 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u146821_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. #u146821_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. #u146821_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. #u146821 {
  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. #u146821 .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. #u146821_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. #u146821.disabled {
  356. }
  357. .u146821_input_option {
  358. font-size:14px;
  359. }
  360. #u146822_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u146822 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u146822 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u146822_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u146823_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. #u146823 {
  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. #u146823 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u146823_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u146824_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. #u146824 {
  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. #u146824 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u146824_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u146825 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u146826_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. #u146826 {
  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. #u146826 .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. #u146826_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u146827_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u146827 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u146827 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u146827_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u146828 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u146829_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. #u146829 {
  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. #u146829 .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. #u146829_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u146830_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u146830 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u146830 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u146830_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u146831 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u146832_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. #u146832 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  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. #u146832 .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. #u146832_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u146833_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u146833 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u146833 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u146833_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u146834 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u146835_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. #u146835 {
  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. #u146835 .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. #u146835_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u146836_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u146836 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u146836 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u146836_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u146837 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u146838_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. #u146838 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  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. #u146838 .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. #u146838_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u146839_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u146839 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u146839 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u146839_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u146840 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u146841_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. #u146841 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  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. #u146841 .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. #u146841_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u146842_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u146842 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u146842 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u146842_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u146843 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u146844_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. #u146844 {
  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. #u146844 .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. #u146844_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u146845_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u146845 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u146845 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u146845_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u146846 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u146847_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. #u146847 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  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. #u146847 .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. #u146847_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u146848_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u146848 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u146848 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u146848_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u146849 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u146850_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. #u146850 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  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. #u146850 .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. #u146850_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u146851_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u146851 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u146851 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u146851_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u146852 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u146853_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. #u146853 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  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. #u146853 .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. #u146853_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u146854_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u146854 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u146854 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u146854_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u146855_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. #u146855 {
  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. #u146855 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u146855_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u146856_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u146856 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u146856 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u146856_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u146857_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. #u146857 {
  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. #u146857 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u146857_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u146858_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u146858 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u146858 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u146858_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u146859 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u146860_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. #u146860 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  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. #u146860 .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. #u146860_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u146861_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u146861 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u146861 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u146861_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u146862 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u146863_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. #u146863 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  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. #u146863 .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. #u146863_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u146864_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u146864 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u146864 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u146864_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u146865 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u146866_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:1255px;
  1652. height:1189px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. }
  1661. #u146866 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:333px;
  1665. top:51px;
  1666. width:1255px;
  1667. height:1189px;
  1668. display:flex;
  1669. }
  1670. #u146866 .text {
  1671. position:absolute;
  1672. align-self:center;
  1673. padding:2px 2px 2px 2px;
  1674. box-sizing:border-box;
  1675. width:100%;
  1676. }
  1677. #u146866_text {
  1678. border-width:0px;
  1679. word-wrap:break-word;
  1680. text-transform:none;
  1681. visibility:hidden;
  1682. }
  1683. #u146867 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:0px;
  1689. height:0px;
  1690. }
  1691. #u146868_img {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:993px;
  1697. height:950px;
  1698. }
  1699. #u146868 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:582px;
  1703. top:115px;
  1704. width:993px;
  1705. height:950px;
  1706. display:flex;
  1707. }
  1708. #u146868 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u146868_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. visibility:hidden;
  1720. }
  1721. #u146869_div {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:0px;
  1725. top:0px;
  1726. width:29px;
  1727. height:17px;
  1728. background:inherit;
  1729. background-color:rgba(0, 191, 191, 1);
  1730. border:none;
  1731. border-radius:4px;
  1732. -moz-box-shadow:none;
  1733. -webkit-box-shadow:none;
  1734. box-shadow:none;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:10px;
  1739. color:#FFFFFF;
  1740. }
  1741. #u146869 {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:582px;
  1745. top:118px;
  1746. width:29px;
  1747. height:17px;
  1748. display:flex;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:10px;
  1753. color:#FFFFFF;
  1754. }
  1755. #u146869 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:5px 0px 5px 0px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u146869_text {
  1763. border-width:0px;
  1764. word-wrap:break-word;
  1765. text-transform:none;
  1766. }
  1767. #u146870_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:29px;
  1773. height:17px;
  1774. background:inherit;
  1775. background-color:rgba(217, 0, 27, 1);
  1776. border:none;
  1777. border-radius:4px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1782. font-weight:400;
  1783. font-style:normal;
  1784. font-size:10px;
  1785. color:#FFFFFF;
  1786. }
  1787. #u146870 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:1249px;
  1791. top:115px;
  1792. width:29px;
  1793. height:17px;
  1794. display:flex;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:10px;
  1799. color:#FFFFFF;
  1800. }
  1801. #u146870 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:5px 0px 5px 0px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u146870_text {
  1809. border-width:0px;
  1810. word-wrap:break-word;
  1811. text-transform:none;
  1812. }
  1813. #u146871_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:29px;
  1819. height:17px;
  1820. background:inherit;
  1821. background-color:rgba(245, 154, 35, 1);
  1822. border:none;
  1823. border-radius:4px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:10px;
  1831. color:#FFFFFF;
  1832. }
  1833. #u146871 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:582px;
  1837. top:346px;
  1838. width:29px;
  1839. height:17px;
  1840. display:flex;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:10px;
  1845. color:#FFFFFF;
  1846. }
  1847. #u146871 .text {
  1848. position:absolute;
  1849. align-self:center;
  1850. padding:5px 0px 5px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u146871_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. }
  1859. #u146872_div {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:29px;
  1865. height:17px;
  1866. background:inherit;
  1867. background-color:rgba(0, 191, 191, 1);
  1868. border:none;
  1869. border-radius:4px;
  1870. -moz-box-shadow:none;
  1871. -webkit-box-shadow:none;
  1872. box-shadow:none;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:10px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u146872 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:913px;
  1883. top:115px;
  1884. width:29px;
  1885. height:17px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:10px;
  1891. color:#FFFFFF;
  1892. }
  1893. #u146872 .text {
  1894. position:absolute;
  1895. align-self:center;
  1896. padding:5px 0px 5px 0px;
  1897. box-sizing:border-box;
  1898. width:100%;
  1899. }
  1900. #u146872_text {
  1901. border-width:0px;
  1902. word-wrap:break-word;
  1903. text-transform:none;
  1904. }
  1905. #u146873_div {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:29px;
  1911. height:17px;
  1912. background:inherit;
  1913. background-color:rgba(0, 191, 191, 1);
  1914. border:none;
  1915. border-radius:4px;
  1916. -moz-box-shadow:none;
  1917. -webkit-box-shadow:none;
  1918. box-shadow:none;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:10px;
  1923. color:#FFFFFF;
  1924. }
  1925. #u146873 {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:913px;
  1929. top:349px;
  1930. width:29px;
  1931. height:17px;
  1932. display:flex;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:10px;
  1937. color:#FFFFFF;
  1938. }
  1939. #u146873 .text {
  1940. position:absolute;
  1941. align-self:center;
  1942. padding:5px 0px 5px 0px;
  1943. box-sizing:border-box;
  1944. width:100%;
  1945. }
  1946. #u146873_text {
  1947. border-width:0px;
  1948. word-wrap:break-word;
  1949. text-transform:none;
  1950. }
  1951. #u146874_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:29px;
  1957. height:17px;
  1958. background:inherit;
  1959. background-color:rgba(0, 191, 191, 1);
  1960. border:none;
  1961. border-radius:4px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:10px;
  1969. color:#FFFFFF;
  1970. }
  1971. #u146874 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:1243px;
  1975. top:346px;
  1976. width:29px;
  1977. height:17px;
  1978. display:flex;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:10px;
  1983. color:#FFFFFF;
  1984. }
  1985. #u146874 .text {
  1986. position:absolute;
  1987. align-self:center;
  1988. padding:5px 0px 5px 0px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u146874_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u146875_div {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:29px;
  2003. height:17px;
  2004. background:inherit;
  2005. background-color:rgba(0, 191, 191, 1);
  2006. border:none;
  2007. border-radius:4px;
  2008. -moz-box-shadow:none;
  2009. -webkit-box-shadow:none;
  2010. box-shadow:none;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:10px;
  2015. color:#FFFFFF;
  2016. }
  2017. #u146875 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:913px;
  2021. top:602px;
  2022. width:29px;
  2023. height:17px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:10px;
  2029. color:#FFFFFF;
  2030. }
  2031. #u146875 .text {
  2032. position:absolute;
  2033. align-self:center;
  2034. padding:5px 0px 5px 0px;
  2035. box-sizing:border-box;
  2036. width:100%;
  2037. }
  2038. #u146875_text {
  2039. border-width:0px;
  2040. word-wrap:break-word;
  2041. text-transform:none;
  2042. }
  2043. #u146876_div {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:29px;
  2049. height:17px;
  2050. background:inherit;
  2051. background-color:rgba(0, 191, 191, 1);
  2052. border:none;
  2053. border-radius:4px;
  2054. -moz-box-shadow:none;
  2055. -webkit-box-shadow:none;
  2056. box-shadow:none;
  2057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:10px;
  2061. color:#FFFFFF;
  2062. }
  2063. #u146876 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:1243px;
  2067. top:598px;
  2068. width:29px;
  2069. height:17px;
  2070. display:flex;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:10px;
  2075. color:#FFFFFF;
  2076. }
  2077. #u146876 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:5px 0px 5px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u146876_text {
  2085. border-width:0px;
  2086. word-wrap:break-word;
  2087. text-transform:none;
  2088. }
  2089. #u146877_div {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:0px;
  2093. top:0px;
  2094. width:29px;
  2095. height:17px;
  2096. background:inherit;
  2097. background-color:rgba(0, 191, 191, 1);
  2098. border:none;
  2099. border-radius:4px;
  2100. -moz-box-shadow:none;
  2101. -webkit-box-shadow:none;
  2102. box-shadow:none;
  2103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:10px;
  2107. color:#FFFFFF;
  2108. }
  2109. #u146877 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:582px;
  2113. top:602px;
  2114. width:29px;
  2115. height:17px;
  2116. display:flex;
  2117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2118. font-weight:400;
  2119. font-style:normal;
  2120. font-size:10px;
  2121. color:#FFFFFF;
  2122. }
  2123. #u146877 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:5px 0px 5px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u146877_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. }
  2135. #u146878_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:29px;
  2141. height:17px;
  2142. background:inherit;
  2143. background-color:rgba(0, 191, 191, 1);
  2144. border:none;
  2145. border-radius:4px;
  2146. -moz-box-shadow:none;
  2147. -webkit-box-shadow:none;
  2148. box-shadow:none;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:10px;
  2153. color:#FFFFFF;
  2154. }
  2155. #u146878 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:913px;
  2159. top:848px;
  2160. width:29px;
  2161. height:17px;
  2162. display:flex;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:10px;
  2167. color:#FFFFFF;
  2168. }
  2169. #u146878 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:5px 0px 5px 0px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u146878_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. }
  2181. #u146879_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:29px;
  2187. height:17px;
  2188. background:inherit;
  2189. background-color:rgba(0, 191, 191, 1);
  2190. border:none;
  2191. border-radius:4px;
  2192. -moz-box-shadow:none;
  2193. -webkit-box-shadow:none;
  2194. box-shadow:none;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:10px;
  2199. color:#FFFFFF;
  2200. }
  2201. #u146879 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:1243px;
  2205. top:845px;
  2206. width:29px;
  2207. height:17px;
  2208. display:flex;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:10px;
  2213. color:#FFFFFF;
  2214. }
  2215. #u146879 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:5px 0px 5px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u146879_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. }
  2227. #u146880_div {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:29px;
  2233. height:17px;
  2234. background:inherit;
  2235. background-color:rgba(0, 191, 191, 1);
  2236. border:none;
  2237. border-radius:4px;
  2238. -moz-box-shadow:none;
  2239. -webkit-box-shadow:none;
  2240. box-shadow:none;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:10px;
  2245. color:#FFFFFF;
  2246. }
  2247. #u146880 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:582px;
  2251. top:848px;
  2252. width:29px;
  2253. height:17px;
  2254. display:flex;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:10px;
  2259. color:#FFFFFF;
  2260. }
  2261. #u146880 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:5px 0px 5px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u146880_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u146881_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:73px;
  2279. height:50px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border:none;
  2283. border-left:0px;
  2284. border-top:0px;
  2285. border-right:0px;
  2286. border-radius:0px;
  2287. border-bottom-right-radius:0px;
  2288. border-bottom-left-radius:0px;
  2289. -moz-box-shadow:none;
  2290. -webkit-box-shadow:none;
  2291. box-shadow:none;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:18px;
  2296. }
  2297. #u146881 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:352px;
  2301. top:51px;
  2302. width:73px;
  2303. height:50px;
  2304. display:flex;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:18px;
  2309. }
  2310. #u146881 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:0px 0px 0px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u146881_text {
  2318. border-width:0px;
  2319. white-space:nowrap;
  2320. text-transform:none;
  2321. }
  2322. #u146882_div {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:191px;
  2328. height:435px;
  2329. background:inherit;
  2330. background-color:rgba(242, 242, 242, 1);
  2331. border:none;
  2332. border-radius:7px;
  2333. -moz-box-shadow:none;
  2334. -webkit-box-shadow:none;
  2335. box-shadow:none;
  2336. }
  2337. #u146882 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:351px;
  2341. top:321px;
  2342. width:191px;
  2343. height:435px;
  2344. display:flex;
  2345. }
  2346. #u146882 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 2px 2px 2px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u146882_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. visibility:hidden;
  2358. }
  2359. #u146883_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:57px;
  2365. height:30px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 0);
  2368. border:none;
  2369. border-radius:0px;
  2370. -moz-box-shadow:none;
  2371. -webkit-box-shadow:none;
  2372. box-shadow:none;
  2373. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2374. font-weight:500;
  2375. font-style:normal;
  2376. font-size:14px;
  2377. color:#000000;
  2378. line-height:30px;
  2379. }
  2380. #u146883 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:351px;
  2384. top:99px;
  2385. width:57px;
  2386. height:30px;
  2387. display:flex;
  2388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2389. font-weight:500;
  2390. font-style:normal;
  2391. font-size:14px;
  2392. color:#000000;
  2393. line-height:30px;
  2394. }
  2395. #u146883 .text {
  2396. position:absolute;
  2397. align-self:flex-start;
  2398. padding:0px 0px 0px 0px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u146883_text {
  2403. border-width:0px;
  2404. white-space:nowrap;
  2405. text-transform:none;
  2406. }
  2407. #u146884 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:0px;
  2413. height:0px;
  2414. }
  2415. #u146885_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:18px;
  2421. height:18px;
  2422. }
  2423. #u146885 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:1550px;
  2427. top:67px;
  2428. width:18px;
  2429. height:18px;
  2430. display:flex;
  2431. }
  2432. #u146885 .text {
  2433. position:absolute;
  2434. align-self:center;
  2435. padding:2px 2px 2px 2px;
  2436. box-sizing:border-box;
  2437. width:100%;
  2438. }
  2439. #u146885_text {
  2440. border-width:0px;
  2441. word-wrap:break-word;
  2442. text-transform:none;
  2443. visibility:hidden;
  2444. }
  2445. #u146886_img {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:0px;
  2450. width:2px;
  2451. height:15px;
  2452. }
  2453. #u146886 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:1535px;
  2457. top:69px;
  2458. width:1px;
  2459. height:14px;
  2460. display:flex;
  2461. }
  2462. #u146886 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 2px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u146886_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u146887 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:0px;
  2481. height:0px;
  2482. }
  2483. #u146888_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:9px;
  2489. height:9px;
  2490. }
  2491. #u146888 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:1412px;
  2495. top:66px;
  2496. width:9px;
  2497. height:9px;
  2498. display:flex;
  2499. }
  2500. #u146888 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 2px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u146888_text {
  2508. border-width:0px;
  2509. word-wrap:break-word;
  2510. text-transform:none;
  2511. visibility:hidden;
  2512. }
  2513. #u146889_img {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:9px;
  2519. height:9px;
  2520. }
  2521. #u146889 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:1424px;
  2525. top:66px;
  2526. width:9px;
  2527. height:9px;
  2528. display:flex;
  2529. }
  2530. #u146889 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:2px 2px 2px 2px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u146889_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. visibility:hidden;
  2542. }
  2543. #u146890_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:9px;
  2549. height:9px;
  2550. }
  2551. #u146890 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:1412px;
  2555. top:78px;
  2556. width:9px;
  2557. height:9px;
  2558. display:flex;
  2559. }
  2560. #u146890 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 2px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u146890_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. visibility:hidden;
  2572. }
  2573. #u146891_img {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:0px;
  2577. top:0px;
  2578. width:9px;
  2579. height:9px;
  2580. }
  2581. #u146891 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:1424px;
  2585. top:78px;
  2586. width:9px;
  2587. height:9px;
  2588. display:flex;
  2589. }
  2590. #u146891 .text {
  2591. position:absolute;
  2592. align-self:center;
  2593. padding:2px 2px 2px 2px;
  2594. box-sizing:border-box;
  2595. width:100%;
  2596. }
  2597. #u146891_text {
  2598. border-width:0px;
  2599. word-wrap:break-word;
  2600. text-transform:none;
  2601. visibility:hidden;
  2602. }
  2603. #u146892 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:0px;
  2608. width:0px;
  2609. height:0px;
  2610. }
  2611. #u146893_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:6px;
  2617. height:6px;
  2618. }
  2619. #u146893 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:1372px;
  2623. top:66px;
  2624. width:6px;
  2625. height:6px;
  2626. display:flex;
  2627. }
  2628. #u146893 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 2px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u146893_text {
  2636. border-width:0px;
  2637. word-wrap:break-word;
  2638. text-transform:none;
  2639. visibility:hidden;
  2640. }
  2641. #u146894_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:6px;
  2647. height:6px;
  2648. }
  2649. #u146894 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:1379px;
  2653. top:66px;
  2654. width:6px;
  2655. height:6px;
  2656. display:flex;
  2657. }
  2658. #u146894 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 2px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u146894_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. visibility:hidden;
  2670. }
  2671. #u146895_img {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:6px;
  2677. height:6px;
  2678. }
  2679. #u146895 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:1386px;
  2683. top:66px;
  2684. width:6px;
  2685. height:6px;
  2686. display:flex;
  2687. }
  2688. #u146895 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u146895_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u146896_img {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:6px;
  2707. height:6px;
  2708. }
  2709. #u146896 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:1372px;
  2713. top:73px;
  2714. width:6px;
  2715. height:6px;
  2716. display:flex;
  2717. }
  2718. #u146896 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u146896_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u146897_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:6px;
  2737. height:6px;
  2738. }
  2739. #u146897 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:1379px;
  2743. top:73px;
  2744. width:6px;
  2745. height:6px;
  2746. display:flex;
  2747. }
  2748. #u146897 .text {
  2749. position:absolute;
  2750. align-self:center;
  2751. padding:2px 2px 2px 2px;
  2752. box-sizing:border-box;
  2753. width:100%;
  2754. }
  2755. #u146897_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. visibility:hidden;
  2760. }
  2761. #u146898_img {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:6px;
  2767. height:6px;
  2768. }
  2769. #u146898 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:1386px;
  2773. top:73px;
  2774. width:6px;
  2775. height:6px;
  2776. display:flex;
  2777. }
  2778. #u146898 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 2px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u146898_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u146899_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:6px;
  2797. height:6px;
  2798. }
  2799. #u146899 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:1372px;
  2803. top:80px;
  2804. width:6px;
  2805. height:6px;
  2806. display:flex;
  2807. }
  2808. #u146899 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 2px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u146899_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u146900_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:6px;
  2827. height:6px;
  2828. }
  2829. #u146900 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:1379px;
  2833. top:80px;
  2834. width:6px;
  2835. height:6px;
  2836. display:flex;
  2837. }
  2838. #u146900 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u146900_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u146901_img {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:6px;
  2857. height:6px;
  2858. }
  2859. #u146901 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:1386px;
  2863. top:80px;
  2864. width:6px;
  2865. height:6px;
  2866. display:flex;
  2867. }
  2868. #u146901 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:2px 2px 2px 2px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u146901_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. visibility:hidden;
  2880. }
  2881. #u146902 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:0px;
  2887. height:0px;
  2888. }
  2889. #u146903_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:4px;
  2895. height:4px;
  2896. }
  2897. #u146903 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:1332px;
  2901. top:67px;
  2902. width:4px;
  2903. height:4px;
  2904. display:flex;
  2905. }
  2906. #u146903 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 2px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u146903_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. visibility:hidden;
  2918. }
  2919. #u146904_img {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:4px;
  2925. height:4px;
  2926. }
  2927. #u146904 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:1337px;
  2931. top:67px;
  2932. width:4px;
  2933. height:4px;
  2934. display:flex;
  2935. }
  2936. #u146904 .text {
  2937. position:absolute;
  2938. align-self:center;
  2939. padding:2px 2px 2px 2px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u146904_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. visibility:hidden;
  2948. }
  2949. #u146905_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:4px;
  2955. height:4px;
  2956. }
  2957. #u146905 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:1342px;
  2961. top:67px;
  2962. width:4px;
  2963. height:4px;
  2964. display:flex;
  2965. }
  2966. #u146905 .text {
  2967. position:absolute;
  2968. align-self:center;
  2969. padding:2px 2px 2px 2px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u146905_text {
  2974. border-width:0px;
  2975. word-wrap:break-word;
  2976. text-transform:none;
  2977. visibility:hidden;
  2978. }
  2979. #u146906_img {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:0px;
  2983. top:0px;
  2984. width:4px;
  2985. height:4px;
  2986. }
  2987. #u146906 {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:1347px;
  2991. top:67px;
  2992. width:4px;
  2993. height:4px;
  2994. display:flex;
  2995. }
  2996. #u146906 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:2px 2px 2px 2px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u146906_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. visibility:hidden;
  3008. }
  3009. #u146907_img {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:4px;
  3015. height:4px;
  3016. }
  3017. #u146907 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:1332px;
  3021. top:72px;
  3022. width:4px;
  3023. height:4px;
  3024. display:flex;
  3025. }
  3026. #u146907 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u146907_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u146908_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:4px;
  3045. height:4px;
  3046. }
  3047. #u146908 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:1337px;
  3051. top:72px;
  3052. width:4px;
  3053. height:4px;
  3054. display:flex;
  3055. }
  3056. #u146908 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u146908_text {
  3064. border-width:0px;
  3065. word-wrap:break-word;
  3066. text-transform:none;
  3067. visibility:hidden;
  3068. }
  3069. #u146909_img {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:4px;
  3075. height:4px;
  3076. }
  3077. #u146909 {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:1342px;
  3081. top:72px;
  3082. width:4px;
  3083. height:4px;
  3084. display:flex;
  3085. }
  3086. #u146909 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u146909_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u146910_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:4px;
  3105. height:4px;
  3106. }
  3107. #u146910 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:1347px;
  3111. top:72px;
  3112. width:4px;
  3113. height:4px;
  3114. display:flex;
  3115. }
  3116. #u146910 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 2px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u146910_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u146911_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:4px;
  3135. height:4px;
  3136. }
  3137. #u146911 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:1332px;
  3141. top:77px;
  3142. width:4px;
  3143. height:4px;
  3144. display:flex;
  3145. }
  3146. #u146911 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 2px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u146911_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. visibility:hidden;
  3158. }
  3159. #u146912_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:4px;
  3165. height:4px;
  3166. }
  3167. #u146912 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:1337px;
  3171. top:77px;
  3172. width:4px;
  3173. height:4px;
  3174. display:flex;
  3175. }
  3176. #u146912 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u146912_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u146913_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:4px;
  3195. height:4px;
  3196. }
  3197. #u146913 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:1342px;
  3201. top:77px;
  3202. width:4px;
  3203. height:4px;
  3204. display:flex;
  3205. }
  3206. #u146913 .text {
  3207. position:absolute;
  3208. align-self:center;
  3209. padding:2px 2px 2px 2px;
  3210. box-sizing:border-box;
  3211. width:100%;
  3212. }
  3213. #u146913_text {
  3214. border-width:0px;
  3215. word-wrap:break-word;
  3216. text-transform:none;
  3217. visibility:hidden;
  3218. }
  3219. #u146914_img {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:4px;
  3225. height:4px;
  3226. }
  3227. #u146914 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:1347px;
  3231. top:77px;
  3232. width:4px;
  3233. height:4px;
  3234. display:flex;
  3235. }
  3236. #u146914 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:2px 2px 2px 2px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u146914_text {
  3244. border-width:0px;
  3245. word-wrap:break-word;
  3246. text-transform:none;
  3247. visibility:hidden;
  3248. }
  3249. #u146915_img {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:4px;
  3255. height:4px;
  3256. }
  3257. #u146915 {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:1332px;
  3261. top:82px;
  3262. width:4px;
  3263. height:4px;
  3264. display:flex;
  3265. }
  3266. #u146915 .text {
  3267. position:absolute;
  3268. align-self:center;
  3269. padding:2px 2px 2px 2px;
  3270. box-sizing:border-box;
  3271. width:100%;
  3272. }
  3273. #u146915_text {
  3274. border-width:0px;
  3275. word-wrap:break-word;
  3276. text-transform:none;
  3277. visibility:hidden;
  3278. }
  3279. #u146916_img {
  3280. border-width:0px;
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:4px;
  3285. height:4px;
  3286. }
  3287. #u146916 {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:1337px;
  3291. top:82px;
  3292. width:4px;
  3293. height:4px;
  3294. display:flex;
  3295. }
  3296. #u146916 .text {
  3297. position:absolute;
  3298. align-self:center;
  3299. padding:2px 2px 2px 2px;
  3300. box-sizing:border-box;
  3301. width:100%;
  3302. }
  3303. #u146916_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u146917_img {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:4px;
  3315. height:4px;
  3316. }
  3317. #u146917 {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:1342px;
  3321. top:82px;
  3322. width:4px;
  3323. height:4px;
  3324. display:flex;
  3325. }
  3326. #u146917 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 2px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u146917_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u146918_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:4px;
  3345. height:4px;
  3346. }
  3347. #u146918 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:1347px;
  3351. top:82px;
  3352. width:4px;
  3353. height:4px;
  3354. display:flex;
  3355. }
  3356. #u146918 .text {
  3357. position:absolute;
  3358. align-self:center;
  3359. padding:2px 2px 2px 2px;
  3360. box-sizing:border-box;
  3361. width:100%;
  3362. }
  3363. #u146918_text {
  3364. border-width:0px;
  3365. word-wrap:break-word;
  3366. text-transform:none;
  3367. visibility:hidden;
  3368. }
  3369. #u146919_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:20px;
  3375. height:20px;
  3376. }
  3377. #u146919 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:1454px;
  3381. top:66px;
  3382. width:20px;
  3383. height:20px;
  3384. display:flex;
  3385. }
  3386. #u146919 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 2px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u146919_text {
  3394. border-width:0px;
  3395. word-wrap:break-word;
  3396. text-transform:none;
  3397. visibility:hidden;
  3398. }
  3399. #u146920_img {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:18px;
  3405. height:18px;
  3406. }
  3407. #u146920 {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:1503px;
  3411. top:67px;
  3412. width:18px;
  3413. height:18px;
  3414. display:flex;
  3415. }
  3416. #u146920 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u146920_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. visibility:hidden;
  3428. }
  3429. #u146921_img {
  3430. border-width:0px;
  3431. position:absolute;
  3432. left:0px;
  3433. top:0px;
  3434. width:2px;
  3435. height:15px;
  3436. }
  3437. #u146921 {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:1488px;
  3441. top:69px;
  3442. width:1px;
  3443. height:14px;
  3444. display:flex;
  3445. }
  3446. #u146921 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:2px 2px 2px 2px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u146921_text {
  3454. border-width:0px;
  3455. word-wrap:break-word;
  3456. text-transform:none;
  3457. visibility:hidden;
  3458. }
  3459. #u146922_div {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:43px;
  3465. height:30px;
  3466. background:inherit;
  3467. background-color:rgba(255, 255, 255, 0);
  3468. border:none;
  3469. border-radius:0px;
  3470. -moz-box-shadow:none;
  3471. -webkit-box-shadow:none;
  3472. box-shadow:none;
  3473. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3474. font-weight:500;
  3475. font-style:normal;
  3476. font-size:14px;
  3477. color:#000000;
  3478. line-height:30px;
  3479. }
  3480. #u146922 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:351px;
  3484. top:291px;
  3485. width:43px;
  3486. height:30px;
  3487. display:flex;
  3488. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3489. font-weight:500;
  3490. font-style:normal;
  3491. font-size:14px;
  3492. color:#000000;
  3493. line-height:30px;
  3494. }
  3495. #u146922 .text {
  3496. position:absolute;
  3497. align-self:flex-start;
  3498. padding:0px 0px 0px 0px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u146922_text {
  3503. border-width:0px;
  3504. white-space:nowrap;
  3505. text-transform:none;
  3506. }
  3507. #u146923 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:0px;
  3513. height:0px;
  3514. }
  3515. #u146924_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:30px;
  3521. height:30px;
  3522. background:inherit;
  3523. background-color:rgba(255, 255, 255, 1);
  3524. box-sizing:border-box;
  3525. border-width:1px;
  3526. border-style:solid;
  3527. border-color:rgba(121, 121, 121, 1);
  3528. border-radius:0px;
  3529. -moz-box-shadow:none;
  3530. -webkit-box-shadow:none;
  3531. box-shadow:none;
  3532. }
  3533. #u146924 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:352px;
  3537. top:134px;
  3538. width:30px;
  3539. height:30px;
  3540. display:flex;
  3541. }
  3542. #u146924 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 2px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u146924_text {
  3550. border-width:0px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. visibility:hidden;
  3554. }
  3555. #u146925_img {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:19px;
  3561. height:18px;
  3562. }
  3563. #u146925 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:358px;
  3567. top:140px;
  3568. width:19px;
  3569. height:18px;
  3570. display:flex;
  3571. -webkit-transform:rotate(135deg);
  3572. -moz-transform:rotate(135deg);
  3573. -ms-transform:rotate(135deg);
  3574. transform:rotate(135deg);
  3575. }
  3576. #u146925 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 2px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u146925_text {
  3584. border-width:0px;
  3585. word-wrap:break-word;
  3586. text-transform:none;
  3587. visibility:hidden;
  3588. }
  3589. #u146926 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:0px;
  3595. height:0px;
  3596. }
  3597. #u146927_div {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:30px;
  3603. height:30px;
  3604. background:inherit;
  3605. background-color:rgba(255, 255, 255, 1);
  3606. box-sizing:border-box;
  3607. border-width:1px;
  3608. border-style:solid;
  3609. border-color:rgba(121, 121, 121, 1);
  3610. border-radius:0px;
  3611. -moz-box-shadow:none;
  3612. -webkit-box-shadow:none;
  3613. box-shadow:none;
  3614. }
  3615. #u146927 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:392px;
  3619. top:134px;
  3620. width:30px;
  3621. height:30px;
  3622. display:flex;
  3623. }
  3624. #u146927 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 2px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u146927_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u146928_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:19px;
  3643. height:18px;
  3644. }
  3645. #u146928 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:398px;
  3649. top:140px;
  3650. width:19px;
  3651. height:18px;
  3652. display:flex;
  3653. -webkit-transform:rotate(180deg);
  3654. -moz-transform:rotate(180deg);
  3655. -ms-transform:rotate(180deg);
  3656. transform:rotate(180deg);
  3657. }
  3658. #u146928 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u146928_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u146929 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:0px;
  3677. height:0px;
  3678. }
  3679. #u146930_div {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:30px;
  3685. height:30px;
  3686. background:inherit;
  3687. background-color:rgba(255, 255, 255, 1);
  3688. box-sizing:border-box;
  3689. border-width:1px;
  3690. border-style:solid;
  3691. border-color:rgba(121, 121, 121, 1);
  3692. border-radius:0px;
  3693. -moz-box-shadow:none;
  3694. -webkit-box-shadow:none;
  3695. box-shadow:none;
  3696. }
  3697. #u146930 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:432px;
  3701. top:134px;
  3702. width:30px;
  3703. height:30px;
  3704. display:flex;
  3705. }
  3706. #u146930 .text {
  3707. position:absolute;
  3708. align-self:center;
  3709. padding:2px 2px 2px 2px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u146930_text {
  3714. border-width:0px;
  3715. word-wrap:break-word;
  3716. text-transform:none;
  3717. visibility:hidden;
  3718. }
  3719. #u146931_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:19px;
  3725. height:18px;
  3726. }
  3727. #u146931 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:438px;
  3731. top:140px;
  3732. width:19px;
  3733. height:18px;
  3734. display:flex;
  3735. -webkit-transform:rotate(225deg);
  3736. -moz-transform:rotate(225deg);
  3737. -ms-transform:rotate(225deg);
  3738. transform:rotate(225deg);
  3739. }
  3740. #u146931 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 2px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u146931_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u146932 {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:0px;
  3759. height:0px;
  3760. }
  3761. #u146933_div {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:30px;
  3767. height:30px;
  3768. background:inherit;
  3769. background-color:rgba(255, 255, 255, 1);
  3770. box-sizing:border-box;
  3771. border-width:1px;
  3772. border-style:solid;
  3773. border-color:rgba(121, 121, 121, 1);
  3774. border-radius:0px;
  3775. -moz-box-shadow:none;
  3776. -webkit-box-shadow:none;
  3777. box-shadow:none;
  3778. }
  3779. #u146933 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:352px;
  3783. top:174px;
  3784. width:30px;
  3785. height:30px;
  3786. display:flex;
  3787. }
  3788. #u146933 .text {
  3789. position:absolute;
  3790. align-self:center;
  3791. padding:2px 2px 2px 2px;
  3792. box-sizing:border-box;
  3793. width:100%;
  3794. }
  3795. #u146933_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. visibility:hidden;
  3800. }
  3801. #u146934_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:19px;
  3807. height:18px;
  3808. }
  3809. #u146934 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:358px;
  3813. top:180px;
  3814. width:19px;
  3815. height:18px;
  3816. display:flex;
  3817. -webkit-transform:rotate(90deg);
  3818. -moz-transform:rotate(90deg);
  3819. -ms-transform:rotate(90deg);
  3820. transform:rotate(90deg);
  3821. }
  3822. #u146934 .text {
  3823. position:absolute;
  3824. align-self:center;
  3825. padding:2px 2px 2px 2px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u146934_text {
  3830. border-width:0px;
  3831. word-wrap:break-word;
  3832. text-transform:none;
  3833. visibility:hidden;
  3834. }
  3835. #u146935 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:0px;
  3841. height:0px;
  3842. }
  3843. #u146936_div {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:30px;
  3849. height:30px;
  3850. background:inherit;
  3851. background-color:rgba(255, 255, 255, 1);
  3852. box-sizing:border-box;
  3853. border-width:1px;
  3854. border-style:solid;
  3855. border-color:rgba(121, 121, 121, 1);
  3856. border-radius:0px;
  3857. -moz-box-shadow:none;
  3858. -webkit-box-shadow:none;
  3859. box-shadow:none;
  3860. }
  3861. #u146936 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:432px;
  3865. top:174px;
  3866. width:30px;
  3867. height:30px;
  3868. display:flex;
  3869. }
  3870. #u146936 .text {
  3871. position:absolute;
  3872. align-self:center;
  3873. padding:2px 2px 2px 2px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u146936_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. visibility:hidden;
  3882. }
  3883. #u146937_img {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:19px;
  3889. height:18px;
  3890. }
  3891. #u146937 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:438px;
  3895. top:180px;
  3896. width:19px;
  3897. height:18px;
  3898. display:flex;
  3899. -webkit-transform:rotate(270deg);
  3900. -moz-transform:rotate(270deg);
  3901. -ms-transform:rotate(270deg);
  3902. transform:rotate(270deg);
  3903. }
  3904. #u146937 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:2px 2px 2px 2px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u146937_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. visibility:hidden;
  3916. }
  3917. #u146938 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:0px;
  3923. height:0px;
  3924. }
  3925. #u146939_div {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:30px;
  3931. height:30px;
  3932. background:inherit;
  3933. background-color:rgba(255, 255, 255, 1);
  3934. box-sizing:border-box;
  3935. border-width:1px;
  3936. border-style:solid;
  3937. border-color:rgba(121, 121, 121, 1);
  3938. border-radius:0px;
  3939. -moz-box-shadow:none;
  3940. -webkit-box-shadow:none;
  3941. box-shadow:none;
  3942. }
  3943. #u146939 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:352px;
  3947. top:214px;
  3948. width:30px;
  3949. height:30px;
  3950. display:flex;
  3951. }
  3952. #u146939 .text {
  3953. position:absolute;
  3954. align-self:center;
  3955. padding:2px 2px 2px 2px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u146939_text {
  3960. border-width:0px;
  3961. word-wrap:break-word;
  3962. text-transform:none;
  3963. visibility:hidden;
  3964. }
  3965. #u146940_img {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:19px;
  3971. height:18px;
  3972. }
  3973. #u146940 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:358px;
  3977. top:220px;
  3978. width:19px;
  3979. height:18px;
  3980. display:flex;
  3981. -webkit-transform:rotate(51deg);
  3982. -moz-transform:rotate(51deg);
  3983. -ms-transform:rotate(51deg);
  3984. transform:rotate(51deg);
  3985. }
  3986. #u146940 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 2px 2px 2px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u146940_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. visibility:hidden;
  3998. }
  3999. #u146941 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:0px;
  4005. height:0px;
  4006. }
  4007. #u146942_div {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:30px;
  4013. height:30px;
  4014. background:inherit;
  4015. background-color:rgba(255, 255, 255, 1);
  4016. box-sizing:border-box;
  4017. border-width:1px;
  4018. border-style:solid;
  4019. border-color:rgba(121, 121, 121, 1);
  4020. border-radius:0px;
  4021. -moz-box-shadow:none;
  4022. -webkit-box-shadow:none;
  4023. box-shadow:none;
  4024. }
  4025. #u146942 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:392px;
  4029. top:214px;
  4030. width:30px;
  4031. height:30px;
  4032. display:flex;
  4033. }
  4034. #u146942 .text {
  4035. position:absolute;
  4036. align-self:center;
  4037. padding:2px 2px 2px 2px;
  4038. box-sizing:border-box;
  4039. width:100%;
  4040. }
  4041. #u146942_text {
  4042. border-width:0px;
  4043. word-wrap:break-word;
  4044. text-transform:none;
  4045. visibility:hidden;
  4046. }
  4047. #u146943_img {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:19px;
  4053. height:18px;
  4054. }
  4055. #u146943 {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:398px;
  4059. top:220px;
  4060. width:19px;
  4061. height:18px;
  4062. display:flex;
  4063. }
  4064. #u146943 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 2px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u146943_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. visibility:hidden;
  4076. }
  4077. #u146944 {
  4078. border-width:0px;
  4079. position:absolute;
  4080. left:0px;
  4081. top:0px;
  4082. width:0px;
  4083. height:0px;
  4084. }
  4085. #u146945_div {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:30px;
  4091. height:30px;
  4092. background:inherit;
  4093. background-color:rgba(255, 255, 255, 1);
  4094. box-sizing:border-box;
  4095. border-width:1px;
  4096. border-style:solid;
  4097. border-color:rgba(121, 121, 121, 1);
  4098. border-radius:0px;
  4099. -moz-box-shadow:none;
  4100. -webkit-box-shadow:none;
  4101. box-shadow:none;
  4102. }
  4103. #u146945 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:432px;
  4107. top:214px;
  4108. width:30px;
  4109. height:30px;
  4110. display:flex;
  4111. }
  4112. #u146945 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 2px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u146945_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u146946_img {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:19px;
  4131. height:18px;
  4132. }
  4133. #u146946 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:438px;
  4137. top:220px;
  4138. width:19px;
  4139. height:18px;
  4140. display:flex;
  4141. -webkit-transform:rotate(300deg);
  4142. -moz-transform:rotate(300deg);
  4143. -ms-transform:rotate(300deg);
  4144. transform:rotate(300deg);
  4145. }
  4146. #u146946 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 2px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u146946_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u146947_div {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:30px;
  4165. height:30px;
  4166. background:inherit;
  4167. background-color:rgba(255, 255, 255, 1);
  4168. box-sizing:border-box;
  4169. border-width:1px;
  4170. border-style:solid;
  4171. border-color:rgba(121, 121, 121, 1);
  4172. border-radius:7px;
  4173. -moz-box-shadow:none;
  4174. -webkit-box-shadow:none;
  4175. box-shadow:none;
  4176. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4177. font-weight:700;
  4178. font-style:normal;
  4179. font-size:24px;
  4180. }
  4181. #u146947 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:472px;
  4185. top:134px;
  4186. width:30px;
  4187. height:30px;
  4188. display:flex;
  4189. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4190. font-weight:700;
  4191. font-style:normal;
  4192. font-size:24px;
  4193. }
  4194. #u146947 .text {
  4195. position:absolute;
  4196. align-self:center;
  4197. padding:2px 2px 2px 2px;
  4198. box-sizing:border-box;
  4199. width:100%;
  4200. }
  4201. #u146947_text {
  4202. border-width:0px;
  4203. word-wrap:break-word;
  4204. text-transform:none;
  4205. }
  4206. #u146948_div {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:30px;
  4212. height:30px;
  4213. background:inherit;
  4214. background-color:rgba(255, 255, 255, 1);
  4215. box-sizing:border-box;
  4216. border-width:1px;
  4217. border-style:solid;
  4218. border-color:rgba(121, 121, 121, 1);
  4219. border-radius:7px;
  4220. -moz-box-shadow:none;
  4221. -webkit-box-shadow:none;
  4222. box-shadow:none;
  4223. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4224. font-weight:700;
  4225. font-style:normal;
  4226. font-size:24px;
  4227. }
  4228. #u146948 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:472px;
  4232. top:174px;
  4233. width:30px;
  4234. height:30px;
  4235. display:flex;
  4236. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4237. font-weight:700;
  4238. font-style:normal;
  4239. font-size:24px;
  4240. }
  4241. #u146948 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u146948_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. }
  4253. #u146949_div {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:30px;
  4259. height:30px;
  4260. background:inherit;
  4261. background-color:rgba(255, 255, 255, 1);
  4262. box-sizing:border-box;
  4263. border-width:1px;
  4264. border-style:solid;
  4265. border-color:rgba(121, 121, 121, 1);
  4266. border-radius:7px;
  4267. -moz-box-shadow:none;
  4268. -webkit-box-shadow:none;
  4269. box-shadow:none;
  4270. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4271. font-weight:700;
  4272. font-style:normal;
  4273. font-size:24px;
  4274. }
  4275. #u146949 {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:472px;
  4279. top:214px;
  4280. width:30px;
  4281. height:30px;
  4282. display:flex;
  4283. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4284. font-weight:700;
  4285. font-style:normal;
  4286. font-size:24px;
  4287. }
  4288. #u146949 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 2px 2px 2px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u146949_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. }
  4300. #u146950 {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:0px;
  4306. height:0px;
  4307. }
  4308. #u146951_div {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:0px;
  4312. top:0px;
  4313. width:30px;
  4314. height:30px;
  4315. background:inherit;
  4316. background-color:rgba(255, 255, 255, 1);
  4317. box-sizing:border-box;
  4318. border-width:1px;
  4319. border-style:solid;
  4320. border-color:rgba(121, 121, 121, 1);
  4321. border-radius:0px;
  4322. -moz-box-shadow:none;
  4323. -webkit-box-shadow:none;
  4324. box-shadow:none;
  4325. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4326. font-weight:700;
  4327. font-style:normal;
  4328. font-size:18px;
  4329. }
  4330. #u146951 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:512px;
  4334. top:134px;
  4335. width:30px;
  4336. height:30px;
  4337. display:flex;
  4338. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4339. font-weight:700;
  4340. font-style:normal;
  4341. font-size:18px;
  4342. }
  4343. #u146951 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 2px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u146951_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u146952_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:14px;
  4362. height:14px;
  4363. }
  4364. #u146952 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:520px;
  4368. top:142px;
  4369. width:14px;
  4370. height:14px;
  4371. display:flex;
  4372. }
  4373. #u146952 .text {
  4374. position:absolute;
  4375. align-self:center;
  4376. padding:2px 2px 2px 2px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u146952_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. visibility:hidden;
  4385. }
  4386. #u146953 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:0px;
  4392. height:0px;
  4393. }
  4394. #u146954_div {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:30px;
  4400. height:30px;
  4401. background:inherit;
  4402. background-color:rgba(255, 255, 255, 1);
  4403. box-sizing:border-box;
  4404. border-width:1px;
  4405. border-style:solid;
  4406. border-color:rgba(121, 121, 121, 1);
  4407. border-radius:0px;
  4408. -moz-box-shadow:none;
  4409. -webkit-box-shadow:none;
  4410. box-shadow:none;
  4411. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4412. font-weight:700;
  4413. font-style:normal;
  4414. font-size:18px;
  4415. }
  4416. #u146954 {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:512px;
  4420. top:174px;
  4421. width:30px;
  4422. height:30px;
  4423. display:flex;
  4424. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4425. font-weight:700;
  4426. font-style:normal;
  4427. font-size:18px;
  4428. }
  4429. #u146954 .text {
  4430. position:absolute;
  4431. align-self:center;
  4432. padding:2px 2px 2px 2px;
  4433. box-sizing:border-box;
  4434. width:100%;
  4435. }
  4436. #u146954_text {
  4437. border-width:0px;
  4438. word-wrap:break-word;
  4439. text-transform:none;
  4440. visibility:hidden;
  4441. }
  4442. #u146955_img {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:14px;
  4448. height:14px;
  4449. }
  4450. #u146955 {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:520px;
  4454. top:182px;
  4455. width:14px;
  4456. height:14px;
  4457. display:flex;
  4458. }
  4459. #u146955 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 2px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u146955_text {
  4467. border-width:0px;
  4468. word-wrap:break-word;
  4469. text-transform:none;
  4470. visibility:hidden;
  4471. }
  4472. #u146956 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:0px;
  4476. top:0px;
  4477. width:0px;
  4478. height:0px;
  4479. }
  4480. #u146957_div {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:30px;
  4486. height:30px;
  4487. background:inherit;
  4488. background-color:rgba(255, 255, 255, 1);
  4489. box-sizing:border-box;
  4490. border-width:1px;
  4491. border-style:solid;
  4492. border-color:rgba(121, 121, 121, 1);
  4493. border-radius:0px;
  4494. -moz-box-shadow:none;
  4495. -webkit-box-shadow:none;
  4496. box-shadow:none;
  4497. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4498. font-weight:700;
  4499. font-style:normal;
  4500. font-size:18px;
  4501. }
  4502. #u146957 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:512px;
  4506. top:214px;
  4507. width:30px;
  4508. height:30px;
  4509. display:flex;
  4510. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4511. font-weight:700;
  4512. font-style:normal;
  4513. font-size:18px;
  4514. }
  4515. #u146957 .text {
  4516. position:absolute;
  4517. align-self:center;
  4518. padding:2px 2px 2px 2px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u146957_text {
  4523. border-width:0px;
  4524. word-wrap:break-word;
  4525. text-transform:none;
  4526. visibility:hidden;
  4527. }
  4528. #u146958_img {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:17px;
  4534. height:11px;
  4535. }
  4536. #u146958 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:519px;
  4540. top:224px;
  4541. width:17px;
  4542. height:11px;
  4543. display:flex;
  4544. }
  4545. #u146958 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 2px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u146958_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. visibility:hidden;
  4557. }
  4558. #u146959 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:0px;
  4564. height:0px;
  4565. }
  4566. #u146960_div {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:84px;
  4572. height:21px;
  4573. background:inherit;
  4574. background-color:rgba(51, 51, 51, 1);
  4575. border:none;
  4576. border-radius:11px;
  4577. -moz-box-shadow:none;
  4578. -webkit-box-shadow:none;
  4579. box-shadow:none;
  4580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:12px;
  4584. color:#FFFFFF;
  4585. text-align:center;
  4586. }
  4587. #u146960 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:443px;
  4591. top:240px;
  4592. width:84px;
  4593. height:21px;
  4594. display:flex;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:12px;
  4599. color:#FFFFFF;
  4600. text-align:center;
  4601. }
  4602. #u146960 .text {
  4603. position:absolute;
  4604. align-self:center;
  4605. padding:2px 2px 2px 2px;
  4606. box-sizing:border-box;
  4607. width:100%;
  4608. }
  4609. #u146960_text {
  4610. border-width:0px;
  4611. white-space:nowrap;
  4612. text-transform:none;
  4613. }
  4614. #u146961_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:11px;
  4620. height:17px;
  4621. }
  4622. #u146961 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:495px;
  4626. top:271px;
  4627. width:11px;
  4628. height:17px;
  4629. display:flex;
  4630. }
  4631. #u146961 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 2px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u146961_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u146962_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:191px;
  4650. height:6px;
  4651. background:inherit;
  4652. background-color:rgba(255, 255, 255, 1);
  4653. box-sizing:border-box;
  4654. border-width:1px;
  4655. border-style:solid;
  4656. border-color:rgba(228, 228, 228, 1);
  4657. border-radius:7px;
  4658. -moz-box-shadow:none;
  4659. -webkit-box-shadow:none;
  4660. box-shadow:none;
  4661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:12px;
  4665. color:#FFFFFF;
  4666. }
  4667. #u146962 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:351px;
  4671. top:268px;
  4672. width:191px;
  4673. height:6px;
  4674. display:flex;
  4675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:12px;
  4679. color:#FFFFFF;
  4680. }
  4681. #u146962 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:8px 15px 8px 15px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u146962_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u146963_div {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:0px;
  4698. top:0px;
  4699. width:140px;
  4700. height:6px;
  4701. background:inherit;
  4702. background-color:rgba(51, 153, 255, 1);
  4703. box-sizing:border-box;
  4704. border-width:1px;
  4705. border-style:solid;
  4706. border-color:rgba(228, 228, 228, 1);
  4707. border-radius:7px;
  4708. -moz-box-shadow:none;
  4709. -webkit-box-shadow:none;
  4710. box-shadow:none;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:12px;
  4715. color:#FFFFFF;
  4716. }
  4717. #u146963 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:351px;
  4721. top:268px;
  4722. width:140px;
  4723. height:6px;
  4724. display:flex;
  4725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4726. font-weight:400;
  4727. font-style:normal;
  4728. font-size:12px;
  4729. color:#FFFFFF;
  4730. }
  4731. #u146963 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:8px 15px 8px 15px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u146963_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u146964_img {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:-3px;
  4748. top:-3px;
  4749. width:20px;
  4750. height:20px;
  4751. }
  4752. #u146964 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:480px;
  4756. top:264px;
  4757. width:14px;
  4758. height:14px;
  4759. display:flex;
  4760. }
  4761. #u146964 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:2px 2px 2px 2px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u146964_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u146965 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:358px;
  4778. top:410px;
  4779. width:127px;
  4780. height:240px;
  4781. }
  4782. #u146965_children {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:0px;
  4788. height:0px;
  4789. }
  4790. #u146966 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:80px;
  4796. height:20px;
  4797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. }
  4801. #u146967_img {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:9px;
  4807. height:9px;
  4808. }
  4809. #u146967 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:6px;
  4813. top:6px;
  4814. width:9px;
  4815. height:9px;
  4816. display:flex;
  4817. }
  4818. #u146967 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 2px 2px 2px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u146967_img.selected {
  4826. }
  4827. #u146967.selected {
  4828. }
  4829. #u146967_text {
  4830. border-width:0px;
  4831. word-wrap:break-word;
  4832. text-transform:none;
  4833. visibility:hidden;
  4834. }
  4835. #u146968_div {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:58px;
  4841. height:20px;
  4842. background:inherit;
  4843. background-color:rgba(255, 255, 255, 0);
  4844. border:none;
  4845. border-radius:0px;
  4846. -moz-box-shadow:none;
  4847. -webkit-box-shadow:none;
  4848. box-shadow:none;
  4849. }
  4850. #u146968 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:22px;
  4854. top:0px;
  4855. width:58px;
  4856. height:20px;
  4857. display:flex;
  4858. }
  4859. #u146968 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 3px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u146968_text {
  4867. border-width:0px;
  4868. white-space:nowrap;
  4869. text-transform:none;
  4870. }
  4871. #u146966_children {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:0px;
  4877. height:0px;
  4878. }
  4879. #u146969 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:20px;
  4883. top:20px;
  4884. width:87px;
  4885. height:20px;
  4886. }
  4887. #u146970_img {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:0px;
  4892. width:9px;
  4893. height:9px;
  4894. }
  4895. #u146970 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:6px;
  4899. top:6px;
  4900. width:9px;
  4901. height:9px;
  4902. display:flex;
  4903. }
  4904. #u146970 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 2px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u146970_img.selected {
  4912. }
  4913. #u146970.selected {
  4914. }
  4915. #u146970_text {
  4916. border-width:0px;
  4917. word-wrap:break-word;
  4918. text-transform:none;
  4919. visibility:hidden;
  4920. }
  4921. #u146971_div {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:0px;
  4925. top:0px;
  4926. width:65px;
  4927. height:20px;
  4928. background:inherit;
  4929. background-color:rgba(255, 255, 255, 0);
  4930. border:none;
  4931. border-radius:0px;
  4932. -moz-box-shadow:none;
  4933. -webkit-box-shadow:none;
  4934. box-shadow:none;
  4935. }
  4936. #u146971 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:22px;
  4940. top:0px;
  4941. width:65px;
  4942. height:20px;
  4943. display:flex;
  4944. }
  4945. #u146971 .text {
  4946. position:absolute;
  4947. align-self:center;
  4948. padding:2px 2px 2px 3px;
  4949. box-sizing:border-box;
  4950. width:100%;
  4951. }
  4952. #u146971_text {
  4953. border-width:0px;
  4954. white-space:nowrap;
  4955. text-transform:none;
  4956. }
  4957. #u146969_children {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:0px;
  4961. top:0px;
  4962. width:0px;
  4963. height:0px;
  4964. }
  4965. #u146972 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:20px;
  4969. top:20px;
  4970. width:87px;
  4971. height:20px;
  4972. }
  4973. #u146973_div {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:0px;
  4977. top:0px;
  4978. width:65px;
  4979. height:20px;
  4980. background:inherit;
  4981. background-color:rgba(255, 255, 255, 0);
  4982. border:none;
  4983. border-radius:0px;
  4984. -moz-box-shadow:none;
  4985. -webkit-box-shadow:none;
  4986. box-shadow:none;
  4987. }
  4988. #u146973 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:22px;
  4992. top:0px;
  4993. width:65px;
  4994. height:20px;
  4995. display:flex;
  4996. }
  4997. #u146973 .text {
  4998. position:absolute;
  4999. align-self:center;
  5000. padding:2px 2px 2px 3px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u146973_text {
  5005. border-width:0px;
  5006. white-space:nowrap;
  5007. text-transform:none;
  5008. }
  5009. #u146974 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:20px;
  5013. top:40px;
  5014. width:87px;
  5015. height:20px;
  5016. }
  5017. #u146975_div {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:65px;
  5023. height:20px;
  5024. background:inherit;
  5025. background-color:rgba(255, 255, 255, 0);
  5026. border:none;
  5027. border-radius:0px;
  5028. -moz-box-shadow:none;
  5029. -webkit-box-shadow:none;
  5030. box-shadow:none;
  5031. }
  5032. #u146975 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:22px;
  5036. top:0px;
  5037. width:65px;
  5038. height:20px;
  5039. display:flex;
  5040. }
  5041. #u146975 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:2px 2px 2px 3px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u146975_text {
  5049. border-width:0px;
  5050. white-space:nowrap;
  5051. text-transform:none;
  5052. }
  5053. #u146976 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:20px;
  5057. top:60px;
  5058. width:54px;
  5059. height:20px;
  5060. }
  5061. #u146977_div {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:32px;
  5067. height:20px;
  5068. background:inherit;
  5069. background-color:rgba(255, 255, 255, 0);
  5070. border:none;
  5071. border-radius:0px;
  5072. -moz-box-shadow:none;
  5073. -webkit-box-shadow:none;
  5074. box-shadow:none;
  5075. }
  5076. #u146977 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:22px;
  5080. top:0px;
  5081. width:32px;
  5082. height:20px;
  5083. display:flex;
  5084. }
  5085. #u146977 .text {
  5086. position:absolute;
  5087. align-self:center;
  5088. padding:2px 2px 2px 3px;
  5089. box-sizing:border-box;
  5090. width:100%;
  5091. }
  5092. #u146977_text {
  5093. border-width:0px;
  5094. white-space:nowrap;
  5095. text-transform:none;
  5096. }
  5097. #u146978 {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:20px;
  5101. top:100px;
  5102. width:87px;
  5103. height:20px;
  5104. }
  5105. #u146979_img {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:9px;
  5111. height:9px;
  5112. }
  5113. #u146979 {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:6px;
  5117. top:6px;
  5118. width:9px;
  5119. height:9px;
  5120. display:flex;
  5121. }
  5122. #u146979 .text {
  5123. position:absolute;
  5124. align-self:center;
  5125. padding:2px 2px 2px 2px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u146979_img.selected {
  5130. }
  5131. #u146979.selected {
  5132. }
  5133. #u146979_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. visibility:hidden;
  5138. }
  5139. #u146980_div {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:65px;
  5145. height:20px;
  5146. background:inherit;
  5147. background-color:rgba(255, 255, 255, 0);
  5148. border:none;
  5149. border-radius:0px;
  5150. -moz-box-shadow:none;
  5151. -webkit-box-shadow:none;
  5152. box-shadow:none;
  5153. }
  5154. #u146980 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:22px;
  5158. top:0px;
  5159. width:65px;
  5160. height:20px;
  5161. display:flex;
  5162. }
  5163. #u146980 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:2px 2px 2px 3px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u146980_text {
  5171. border-width:0px;
  5172. white-space:nowrap;
  5173. text-transform:none;
  5174. }
  5175. #u146978_children {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:0px;
  5181. height:0px;
  5182. }
  5183. #u146981 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:20px;
  5187. top:20px;
  5188. width:87px;
  5189. height:20px;
  5190. }
  5191. #u146982_div {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:65px;
  5197. height:20px;
  5198. background:inherit;
  5199. background-color:rgba(255, 255, 255, 0);
  5200. border:none;
  5201. border-radius:0px;
  5202. -moz-box-shadow:none;
  5203. -webkit-box-shadow:none;
  5204. box-shadow:none;
  5205. }
  5206. #u146982 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:22px;
  5210. top:0px;
  5211. width:65px;
  5212. height:20px;
  5213. display:flex;
  5214. }
  5215. #u146982 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 2px 2px 3px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u146982_text {
  5223. border-width:0px;
  5224. white-space:nowrap;
  5225. text-transform:none;
  5226. }
  5227. #u146983 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:20px;
  5231. top:40px;
  5232. width:87px;
  5233. height:20px;
  5234. }
  5235. #u146984_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:65px;
  5241. height:20px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 0);
  5244. border:none;
  5245. border-radius:0px;
  5246. -moz-box-shadow:none;
  5247. -webkit-box-shadow:none;
  5248. box-shadow:none;
  5249. }
  5250. #u146984 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:22px;
  5254. top:0px;
  5255. width:65px;
  5256. height:20px;
  5257. display:flex;
  5258. }
  5259. #u146984 .text {
  5260. position:absolute;
  5261. align-self:center;
  5262. padding:2px 2px 2px 3px;
  5263. box-sizing:border-box;
  5264. width:100%;
  5265. }
  5266. #u146984_text {
  5267. border-width:0px;
  5268. white-space:nowrap;
  5269. text-transform:none;
  5270. }
  5271. #u146985 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:20px;
  5275. top:60px;
  5276. width:54px;
  5277. height:20px;
  5278. }
  5279. #u146986_div {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:32px;
  5285. height:20px;
  5286. background:inherit;
  5287. background-color:rgba(255, 255, 255, 0);
  5288. border:none;
  5289. border-radius:0px;
  5290. -moz-box-shadow:none;
  5291. -webkit-box-shadow:none;
  5292. box-shadow:none;
  5293. }
  5294. #u146986 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:22px;
  5298. top:0px;
  5299. width:32px;
  5300. height:20px;
  5301. display:flex;
  5302. }
  5303. #u146986 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 3px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u146986_text {
  5311. border-width:0px;
  5312. white-space:nowrap;
  5313. text-transform:none;
  5314. }
  5315. #u146987 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:20px;
  5319. top:180px;
  5320. width:87px;
  5321. height:20px;
  5322. }
  5323. #u146988_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:9px;
  5329. height:9px;
  5330. }
  5331. #u146988 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:6px;
  5335. top:6px;
  5336. width:9px;
  5337. height:9px;
  5338. display:flex;
  5339. }
  5340. #u146988 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:2px 2px 2px 2px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u146988_img.selected {
  5348. }
  5349. #u146988.selected {
  5350. }
  5351. #u146988_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. visibility:hidden;
  5356. }
  5357. #u146989_div {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:65px;
  5363. height:20px;
  5364. background:inherit;
  5365. background-color:rgba(255, 255, 255, 0);
  5366. border:none;
  5367. border-radius:0px;
  5368. -moz-box-shadow:none;
  5369. -webkit-box-shadow:none;
  5370. box-shadow:none;
  5371. }
  5372. #u146989 {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:22px;
  5376. top:0px;
  5377. width:65px;
  5378. height:20px;
  5379. display:flex;
  5380. }
  5381. #u146989 .text {
  5382. position:absolute;
  5383. align-self:center;
  5384. padding:2px 2px 2px 3px;
  5385. box-sizing:border-box;
  5386. width:100%;
  5387. }
  5388. #u146989_text {
  5389. border-width:0px;
  5390. white-space:nowrap;
  5391. text-transform:none;
  5392. }
  5393. #u146987_children {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:0px;
  5397. top:0px;
  5398. width:0px;
  5399. height:0px;
  5400. }
  5401. #u146990 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:20px;
  5405. top:20px;
  5406. width:87px;
  5407. height:20px;
  5408. }
  5409. #u146991_div {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:65px;
  5415. height:20px;
  5416. background:inherit;
  5417. background-color:rgba(255, 255, 255, 0);
  5418. border:none;
  5419. border-radius:0px;
  5420. -moz-box-shadow:none;
  5421. -webkit-box-shadow:none;
  5422. box-shadow:none;
  5423. }
  5424. #u146991 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:22px;
  5428. top:0px;
  5429. width:65px;
  5430. height:20px;
  5431. display:flex;
  5432. }
  5433. #u146991 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 2px 2px 3px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u146991_text {
  5441. border-width:0px;
  5442. white-space:nowrap;
  5443. text-transform:none;
  5444. }
  5445. #u146992 {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:20px;
  5449. top:40px;
  5450. width:54px;
  5451. height:20px;
  5452. }
  5453. #u146993_div {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:32px;
  5459. height:20px;
  5460. background:inherit;
  5461. background-color:rgba(255, 255, 255, 0);
  5462. border:none;
  5463. border-radius:0px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. }
  5468. #u146993 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:22px;
  5472. top:0px;
  5473. width:32px;
  5474. height:20px;
  5475. display:flex;
  5476. }
  5477. #u146993 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 3px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u146993_text {
  5485. border-width:0px;
  5486. white-space:nowrap;
  5487. text-transform:none;
  5488. }
  5489. #u146994 {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:0px;
  5495. height:0px;
  5496. }
  5497. #u146995_div {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:175px;
  5503. height:30px;
  5504. background:inherit;
  5505. background-color:rgba(255, 255, 255, 1);
  5506. box-sizing:border-box;
  5507. border-width:1px;
  5508. border-style:solid;
  5509. border-color:rgba(201, 201, 201, 1);
  5510. border-radius:4px;
  5511. -moz-box-shadow:none;
  5512. -webkit-box-shadow:none;
  5513. box-shadow:none;
  5514. font-family:'Microsoft YaHei', sans-serif;
  5515. font-weight:400;
  5516. font-style:normal;
  5517. font-size:14px;
  5518. color:#CCCCCC;
  5519. text-align:left;
  5520. }
  5521. #u146995 {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:359px;
  5525. top:333px;
  5526. width:175px;
  5527. height:30px;
  5528. display:flex;
  5529. font-family:'Microsoft YaHei', sans-serif;
  5530. font-weight:400;
  5531. font-style:normal;
  5532. font-size:14px;
  5533. color:#CCCCCC;
  5534. text-align:left;
  5535. }
  5536. #u146995 .text {
  5537. position:absolute;
  5538. align-self:center;
  5539. padding:2px 8px 2px 8px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u146995_text {
  5544. border-width:0px;
  5545. word-wrap:break-word;
  5546. text-transform:none;
  5547. visibility:hidden;
  5548. }
  5549. #u146996_input {
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:159px;
  5554. height:25px;
  5555. padding:2px 2px 2px 2px;
  5556. font-family:'Microsoft YaHei', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:10px;
  5560. letter-spacing:normal;
  5561. color:#000000;
  5562. vertical-align:none;
  5563. text-align:left;
  5564. text-transform:none;
  5565. background-color:transparent;
  5566. border-color:transparent;
  5567. }
  5568. #u146996_input.disabled {
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:159px;
  5573. height:25px;
  5574. padding:2px 2px 2px 2px;
  5575. font-family:'Microsoft YaHei', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:10px;
  5579. letter-spacing:normal;
  5580. color:#000000;
  5581. vertical-align:none;
  5582. text-align:left;
  5583. text-transform:none;
  5584. background-color:transparent;
  5585. border-color:transparent;
  5586. }
  5587. #u146996_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:159px;
  5593. height:25px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 1);
  5596. border:none;
  5597. border-radius:0px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-family:'Microsoft YaHei', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:10px;
  5605. }
  5606. #u146996 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:369px;
  5610. top:334px;
  5611. width:159px;
  5612. height:25px;
  5613. display:flex;
  5614. font-family:'Microsoft YaHei', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:10px;
  5618. }
  5619. #u146996 .text {
  5620. position:absolute;
  5621. align-self:center;
  5622. padding:2px 2px 2px 2px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u146996_div.disabled {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:159px;
  5632. height:25px;
  5633. background:inherit;
  5634. background-color:rgba(240, 240, 240, 1);
  5635. border:none;
  5636. border-radius:0px;
  5637. -moz-box-shadow:none;
  5638. -webkit-box-shadow:none;
  5639. box-shadow:none;
  5640. font-family:'Microsoft YaHei', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:10px;
  5644. }
  5645. #u146996.disabled {
  5646. }
  5647. #u146997_div {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:25px;
  5653. height:30px;
  5654. background:inherit;
  5655. background-color:rgba(255, 255, 255, 0);
  5656. border:none;
  5657. border-radius:0px;
  5658. -moz-box-shadow:none;
  5659. -webkit-box-shadow:none;
  5660. box-shadow:none;
  5661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:12px;
  5665. color:#3399FF;
  5666. line-height:30px;
  5667. }
  5668. #u146997 {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:359px;
  5672. top:372px;
  5673. width:25px;
  5674. height:30px;
  5675. display:flex;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:12px;
  5680. color:#3399FF;
  5681. line-height:30px;
  5682. }
  5683. #u146997 .text {
  5684. position:absolute;
  5685. align-self:flex-start;
  5686. padding:0px 0px 0px 0px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u146997_text {
  5691. border-width:0px;
  5692. white-space:nowrap;
  5693. text-transform:none;
  5694. }
  5695. #u146998_div {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:25px;
  5701. height:30px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 0);
  5704. border:none;
  5705. border-radius:0px;
  5706. -moz-box-shadow:none;
  5707. -webkit-box-shadow:none;
  5708. box-shadow:none;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:12px;
  5713. color:#7F7F7F;
  5714. line-height:30px;
  5715. }
  5716. #u146998 {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:396px;
  5720. top:372px;
  5721. width:25px;
  5722. height:30px;
  5723. display:flex;
  5724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#7F7F7F;
  5729. line-height:30px;
  5730. }
  5731. #u146998 .text {
  5732. position:absolute;
  5733. align-self:flex-start;
  5734. padding:0px 0px 0px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u146998_text {
  5739. border-width:0px;
  5740. white-space:nowrap;
  5741. text-transform:none;
  5742. }
  5743. #u146999_div {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:25px;
  5749. height:30px;
  5750. background:inherit;
  5751. background-color:rgba(255, 255, 255, 0);
  5752. border:none;
  5753. border-radius:0px;
  5754. -moz-box-shadow:none;
  5755. -webkit-box-shadow:none;
  5756. box-shadow:none;
  5757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:12px;
  5761. color:#7F7F7F;
  5762. line-height:30px;
  5763. }
  5764. #u146999 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:432px;
  5768. top:372px;
  5769. width:25px;
  5770. height:30px;
  5771. display:flex;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:12px;
  5776. color:#7F7F7F;
  5777. line-height:30px;
  5778. }
  5779. #u146999 .text {
  5780. position:absolute;
  5781. align-self:flex-start;
  5782. padding:0px 0px 0px 0px;
  5783. box-sizing:border-box;
  5784. width:100%;
  5785. }
  5786. #u146999_text {
  5787. border-width:0px;
  5788. white-space:nowrap;
  5789. text-transform:none;
  5790. }
  5791. #u147000_div {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:25px;
  5797. height:30px;
  5798. background:inherit;
  5799. background-color:rgba(255, 255, 255, 0);
  5800. border:none;
  5801. border-radius:0px;
  5802. -moz-box-shadow:none;
  5803. -webkit-box-shadow:none;
  5804. box-shadow:none;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:12px;
  5809. color:#7F7F7F;
  5810. line-height:30px;
  5811. }
  5812. #u147000 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:469px;
  5816. top:372px;
  5817. width:25px;
  5818. height:30px;
  5819. display:flex;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:12px;
  5824. color:#7F7F7F;
  5825. line-height:30px;
  5826. }
  5827. #u147000 .text {
  5828. position:absolute;
  5829. align-self:flex-start;
  5830. padding:0px 0px 0px 0px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u147000_text {
  5835. border-width:0px;
  5836. white-space:nowrap;
  5837. text-transform:none;
  5838. }
  5839. #u147001 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:0px;
  5845. height:0px;
  5846. }
  5847. #u147002_div {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:200px;
  5853. height:1187px;
  5854. background:inherit;
  5855. background-color:rgba(255, 255, 255, 1);
  5856. border:none;
  5857. border-radius:0px;
  5858. -moz-box-shadow:none;
  5859. -webkit-box-shadow:none;
  5860. box-shadow:none;
  5861. }
  5862. #u147002 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:120px;
  5866. top:50px;
  5867. width:200px;
  5868. height:1187px;
  5869. display:flex;
  5870. }
  5871. #u147002 .text {
  5872. position:absolute;
  5873. align-self:center;
  5874. padding:2px 2px 2px 2px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u147002_text {
  5879. border-width:0px;
  5880. word-wrap:break-word;
  5881. text-transform:none;
  5882. visibility:hidden;
  5883. }
  5884. #u147003_div {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:0px;
  5889. width:200px;
  5890. height:60px;
  5891. background:inherit;
  5892. background-color:rgba(224, 231, 247, 1);
  5893. border:none;
  5894. border-radius:0px;
  5895. -moz-box-shadow:none;
  5896. -webkit-box-shadow:none;
  5897. box-shadow:none;
  5898. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5899. font-weight:500;
  5900. font-style:normal;
  5901. font-size:18px;
  5902. }
  5903. #u147003 {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:120px;
  5907. top:50px;
  5908. width:200px;
  5909. height:60px;
  5910. display:flex;
  5911. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5912. font-weight:500;
  5913. font-style:normal;
  5914. font-size:18px;
  5915. }
  5916. #u147003 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:0px 0px 0px 20px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u147003_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. }
  5928. #u147004_div {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:97px;
  5934. height:22px;
  5935. background:inherit;
  5936. background-color:rgba(255, 255, 255, 0);
  5937. border:none;
  5938. border-radius:0px;
  5939. -moz-box-shadow:none;
  5940. -webkit-box-shadow:none;
  5941. box-shadow:none;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:16px;
  5946. }
  5947. #u147004 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:147px;
  5951. top:167px;
  5952. width:97px;
  5953. height:22px;
  5954. display:flex;
  5955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:16px;
  5959. }
  5960. #u147004 .text {
  5961. position:absolute;
  5962. align-self:flex-start;
  5963. padding:0px 0px 0px 0px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u147004_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. }
  5972. #u147005_img {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:201px;
  5978. height:2px;
  5979. }
  5980. #u147005 {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:120px;
  5984. top:255px;
  5985. width:200px;
  5986. height:1px;
  5987. display:flex;
  5988. }
  5989. #u147005 .text {
  5990. position:absolute;
  5991. align-self:center;
  5992. padding:2px 2px 2px 2px;
  5993. box-sizing:border-box;
  5994. width:100%;
  5995. }
  5996. #u147005_text {
  5997. border-width:0px;
  5998. word-wrap:break-word;
  5999. text-transform:none;
  6000. visibility:hidden;
  6001. }
  6002. #u147006_div {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:65px;
  6008. height:22px;
  6009. background:inherit;
  6010. background-color:rgba(255, 255, 255, 0);
  6011. border:none;
  6012. border-radius:0px;
  6013. -moz-box-shadow:none;
  6014. -webkit-box-shadow:none;
  6015. box-shadow:none;
  6016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6017. font-weight:400;
  6018. font-style:normal;
  6019. font-size:16px;
  6020. }
  6021. #u147006 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:147px;
  6025. top:208px;
  6026. width:65px;
  6027. height:22px;
  6028. display:flex;
  6029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:16px;
  6033. }
  6034. #u147006 .text {
  6035. position:absolute;
  6036. align-self:flex-start;
  6037. padding:0px 0px 0px 0px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u147006_text {
  6042. border-width:0px;
  6043. white-space:nowrap;
  6044. text-transform:none;
  6045. }
  6046. #u147007_img {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:201px;
  6052. height:2px;
  6053. }
  6054. #u147007 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:120px;
  6058. top:583px;
  6059. width:200px;
  6060. height:1px;
  6061. display:flex;
  6062. }
  6063. #u147007 .text {
  6064. position:absolute;
  6065. align-self:center;
  6066. padding:2px 2px 2px 2px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u147007_text {
  6071. border-width:0px;
  6072. word-wrap:break-word;
  6073. text-transform:none;
  6074. visibility:hidden;
  6075. }
  6076. #u147008_div {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:65px;
  6082. height:22px;
  6083. background:inherit;
  6084. background-color:rgba(255, 255, 255, 0);
  6085. border:none;
  6086. border-radius:0px;
  6087. -moz-box-shadow:none;
  6088. -webkit-box-shadow:none;
  6089. box-shadow:none;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:16px;
  6094. }
  6095. #u147008 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:147px;
  6099. top:640px;
  6100. width:65px;
  6101. height:22px;
  6102. display:flex;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:16px;
  6107. }
  6108. #u147008 .text {
  6109. position:absolute;
  6110. align-self:flex-start;
  6111. padding:0px 0px 0px 0px;
  6112. box-sizing:border-box;
  6113. width:100%;
  6114. }
  6115. #u147008_text {
  6116. border-width:0px;
  6117. white-space:nowrap;
  6118. text-transform:none;
  6119. }
  6120. #u147009_div {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:49px;
  6126. height:17px;
  6127. background:inherit;
  6128. background-color:rgba(255, 255, 255, 0);
  6129. border:none;
  6130. border-radius:0px;
  6131. -moz-box-shadow:none;
  6132. -webkit-box-shadow:none;
  6133. box-shadow:none;
  6134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:12px;
  6138. color:#AAAAAA;
  6139. }
  6140. #u147009 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:147px;
  6144. top:603px;
  6145. width:49px;
  6146. height:17px;
  6147. display:flex;
  6148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. font-size:12px;
  6152. color:#AAAAAA;
  6153. }
  6154. #u147009 .text {
  6155. position:absolute;
  6156. align-self:flex-start;
  6157. padding:0px 0px 0px 0px;
  6158. box-sizing:border-box;
  6159. width:100%;
  6160. }
  6161. #u147009_text {
  6162. border-width:0px;
  6163. white-space:nowrap;
  6164. text-transform:none;
  6165. }
  6166. #u147010_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:65px;
  6172. height:22px;
  6173. background:inherit;
  6174. background-color:rgba(255, 255, 255, 0);
  6175. border:none;
  6176. border-radius:0px;
  6177. -moz-box-shadow:none;
  6178. -webkit-box-shadow:none;
  6179. box-shadow:none;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. font-size:16px;
  6184. }
  6185. #u147010 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:147px;
  6189. top:312px;
  6190. width:65px;
  6191. height:22px;
  6192. display:flex;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:16px;
  6197. }
  6198. #u147010 .text {
  6199. position:absolute;
  6200. align-self:flex-start;
  6201. padding:0px 0px 0px 0px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u147010_text {
  6206. border-width:0px;
  6207. white-space:nowrap;
  6208. text-transform:none;
  6209. }
  6210. #u147011_div {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:49px;
  6216. height:17px;
  6217. background:inherit;
  6218. background-color:rgba(255, 255, 255, 0);
  6219. border:none;
  6220. border-radius:0px;
  6221. -moz-box-shadow:none;
  6222. -webkit-box-shadow:none;
  6223. box-shadow:none;
  6224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:12px;
  6228. color:#AAAAAA;
  6229. }
  6230. #u147011 {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:147px;
  6234. top:275px;
  6235. width:49px;
  6236. height:17px;
  6237. display:flex;
  6238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6239. font-weight:400;
  6240. font-style:normal;
  6241. font-size:12px;
  6242. color:#AAAAAA;
  6243. }
  6244. #u147011 .text {
  6245. position:absolute;
  6246. align-self:flex-start;
  6247. padding:0px 0px 0px 0px;
  6248. box-sizing:border-box;
  6249. width:100%;
  6250. }
  6251. #u147011_text {
  6252. border-width:0px;
  6253. white-space:nowrap;
  6254. text-transform:none;
  6255. }
  6256. #u147012_div {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:65px;
  6262. height:22px;
  6263. background:inherit;
  6264. background-color:rgba(255, 255, 255, 0);
  6265. border:none;
  6266. border-radius:0px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:16px;
  6274. }
  6275. #u147012 {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:147px;
  6279. top:724px;
  6280. width:65px;
  6281. height:22px;
  6282. display:flex;
  6283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:16px;
  6287. }
  6288. #u147012 .text {
  6289. position:absolute;
  6290. align-self:flex-start;
  6291. padding:0px 0px 0px 0px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u147012_text {
  6296. border-width:0px;
  6297. white-space:nowrap;
  6298. text-transform:none;
  6299. }
  6300. #u147013_div {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:49px;
  6306. height:17px;
  6307. background:inherit;
  6308. background-color:rgba(255, 255, 255, 0);
  6309. border:none;
  6310. border-radius:0px;
  6311. -moz-box-shadow:none;
  6312. -webkit-box-shadow:none;
  6313. box-shadow:none;
  6314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:12px;
  6318. color:#AAAAAA;
  6319. }
  6320. #u147013 {
  6321. border-width:0px;
  6322. position:absolute;
  6323. left:147px;
  6324. top:130px;
  6325. width:49px;
  6326. height:17px;
  6327. display:flex;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:12px;
  6332. color:#AAAAAA;
  6333. }
  6334. #u147013 .text {
  6335. position:absolute;
  6336. align-self:flex-start;
  6337. padding:0px 0px 0px 0px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u147013_text {
  6342. border-width:0px;
  6343. white-space:nowrap;
  6344. text-transform:none;
  6345. }
  6346. #u147014_img {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:201px;
  6352. height:2px;
  6353. }
  6354. #u147014 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:120px;
  6358. top:857px;
  6359. width:200px;
  6360. height:1px;
  6361. display:flex;
  6362. }
  6363. #u147014 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 2px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u147014_text {
  6371. border-width:0px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. visibility:hidden;
  6375. }
  6376. #u147015_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:65px;
  6382. height:22px;
  6383. background:inherit;
  6384. background-color:rgba(255, 255, 255, 0);
  6385. border:none;
  6386. border-radius:0px;
  6387. -moz-box-shadow:none;
  6388. -webkit-box-shadow:none;
  6389. box-shadow:none;
  6390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6391. font-weight:400;
  6392. font-style:normal;
  6393. font-size:16px;
  6394. }
  6395. #u147015 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:147px;
  6399. top:914px;
  6400. width:65px;
  6401. height:22px;
  6402. display:flex;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:16px;
  6407. }
  6408. #u147015 .text {
  6409. position:absolute;
  6410. align-self:flex-start;
  6411. padding:0px 0px 0px 0px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u147015_text {
  6416. border-width:0px;
  6417. white-space:nowrap;
  6418. text-transform:none;
  6419. }
  6420. #u147016_div {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:49px;
  6426. height:17px;
  6427. background:inherit;
  6428. background-color:rgba(255, 255, 255, 0);
  6429. border:none;
  6430. border-radius:0px;
  6431. -moz-box-shadow:none;
  6432. -webkit-box-shadow:none;
  6433. box-shadow:none;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:12px;
  6438. color:#AAAAAA;
  6439. }
  6440. #u147016 {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:147px;
  6444. top:877px;
  6445. width:49px;
  6446. height:17px;
  6447. display:flex;
  6448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6449. font-weight:400;
  6450. font-style:normal;
  6451. font-size:12px;
  6452. color:#AAAAAA;
  6453. }
  6454. #u147016 .text {
  6455. position:absolute;
  6456. align-self:flex-start;
  6457. padding:0px 0px 0px 0px;
  6458. box-sizing:border-box;
  6459. width:100%;
  6460. }
  6461. #u147016_text {
  6462. border-width:0px;
  6463. white-space:nowrap;
  6464. text-transform:none;
  6465. }
  6466. #u147017_div {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:65px;
  6472. height:22px;
  6473. background:inherit;
  6474. background-color:rgba(255, 255, 255, 0);
  6475. border:none;
  6476. border-radius:0px;
  6477. -moz-box-shadow:none;
  6478. -webkit-box-shadow:none;
  6479. box-shadow:none;
  6480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6481. font-weight:400;
  6482. font-style:normal;
  6483. font-size:16px;
  6484. }
  6485. #u147017 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:147px;
  6489. top:806px;
  6490. width:65px;
  6491. height:22px;
  6492. display:flex;
  6493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:16px;
  6497. }
  6498. #u147017 .text {
  6499. position:absolute;
  6500. align-self:flex-start;
  6501. padding:0px 0px 0px 0px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u147017_text {
  6506. border-width:0px;
  6507. white-space:nowrap;
  6508. text-transform:none;
  6509. }
  6510. #u147018_img {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:201px;
  6516. height:2px;
  6517. }
  6518. #u147018 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:120px;
  6522. top:435px;
  6523. width:200px;
  6524. height:1px;
  6525. display:flex;
  6526. }
  6527. #u147018 .text {
  6528. position:absolute;
  6529. align-self:center;
  6530. padding:2px 2px 2px 2px;
  6531. box-sizing:border-box;
  6532. width:100%;
  6533. }
  6534. #u147018_text {
  6535. border-width:0px;
  6536. word-wrap:break-word;
  6537. text-transform:none;
  6538. visibility:hidden;
  6539. }
  6540. #u147019_div {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:65px;
  6546. height:22px;
  6547. background:inherit;
  6548. background-color:rgba(255, 255, 255, 0);
  6549. border:none;
  6550. border-radius:0px;
  6551. -moz-box-shadow:none;
  6552. -webkit-box-shadow:none;
  6553. box-shadow:none;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:16px;
  6558. }
  6559. #u147019 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:147px;
  6563. top:492px;
  6564. width:65px;
  6565. height:22px;
  6566. display:flex;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:16px;
  6571. }
  6572. #u147019 .text {
  6573. position:absolute;
  6574. align-self:flex-start;
  6575. padding:0px 0px 0px 0px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u147019_text {
  6580. border-width:0px;
  6581. white-space:nowrap;
  6582. text-transform:none;
  6583. }
  6584. #u147020_div {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:49px;
  6590. height:17px;
  6591. background:inherit;
  6592. background-color:rgba(255, 255, 255, 0);
  6593. border:none;
  6594. border-radius:0px;
  6595. -moz-box-shadow:none;
  6596. -webkit-box-shadow:none;
  6597. box-shadow:none;
  6598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:12px;
  6602. color:#AAAAAA;
  6603. }
  6604. #u147020 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:147px;
  6608. top:455px;
  6609. width:49px;
  6610. height:17px;
  6611. display:flex;
  6612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6613. font-weight:400;
  6614. font-style:normal;
  6615. font-size:12px;
  6616. color:#AAAAAA;
  6617. }
  6618. #u147020 .text {
  6619. position:absolute;
  6620. align-self:flex-start;
  6621. padding:0px 0px 0px 0px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u147020_text {
  6626. border-width:0px;
  6627. white-space:nowrap;
  6628. text-transform:none;
  6629. }
  6630. #u147021_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:97px;
  6636. height:22px;
  6637. background:inherit;
  6638. background-color:rgba(255, 255, 255, 0);
  6639. border:none;
  6640. border-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:16px;
  6648. }
  6649. #u147021 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:147px;
  6653. top:533px;
  6654. width:97px;
  6655. height:22px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:16px;
  6661. }
  6662. #u147021 .text {
  6663. position:absolute;
  6664. align-self:flex-start;
  6665. padding:0px 0px 0px 0px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u147021_text {
  6670. border-width:0px;
  6671. word-wrap:break-word;
  6672. text-transform:none;
  6673. }
  6674. #u147022_div {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:65px;
  6680. height:22px;
  6681. background:inherit;
  6682. background-color:rgba(255, 255, 255, 0);
  6683. border:none;
  6684. border-radius:0px;
  6685. -moz-box-shadow:none;
  6686. -webkit-box-shadow:none;
  6687. box-shadow:none;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:16px;
  6692. }
  6693. #u147022 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:147px;
  6697. top:354px;
  6698. width:65px;
  6699. height:22px;
  6700. display:flex;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:16px;
  6705. }
  6706. #u147022 .text {
  6707. position:absolute;
  6708. align-self:flex-start;
  6709. padding:0px 0px 0px 0px;
  6710. box-sizing:border-box;
  6711. width:100%;
  6712. }
  6713. #u147022_text {
  6714. border-width:0px;
  6715. white-space:nowrap;
  6716. text-transform:none;
  6717. }
  6718. #u147023_div {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:65px;
  6724. height:22px;
  6725. background:inherit;
  6726. background-color:rgba(255, 255, 255, 0);
  6727. border:none;
  6728. border-radius:0px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:16px;
  6736. }
  6737. #u147023 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:147px;
  6741. top:682px;
  6742. width:65px;
  6743. height:22px;
  6744. display:flex;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:16px;
  6749. }
  6750. #u147023 .text {
  6751. position:absolute;
  6752. align-self:flex-start;
  6753. padding:0px 0px 0px 0px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u147023_text {
  6758. border-width:0px;
  6759. white-space:nowrap;
  6760. text-transform:none;
  6761. }
  6762. #u147024_div {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:65px;
  6768. height:22px;
  6769. background:inherit;
  6770. background-color:rgba(255, 255, 255, 0);
  6771. border:none;
  6772. border-radius:0px;
  6773. -moz-box-shadow:none;
  6774. -webkit-box-shadow:none;
  6775. box-shadow:none;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:16px;
  6780. }
  6781. #u147024 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:147px;
  6785. top:765px;
  6786. width:65px;
  6787. height:22px;
  6788. display:flex;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:16px;
  6793. }
  6794. #u147024 .text {
  6795. position:absolute;
  6796. align-self:flex-start;
  6797. padding:0px 0px 0px 0px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u147024_text {
  6802. border-width:0px;
  6803. white-space:nowrap;
  6804. text-transform:none;
  6805. }
  6806. #u147025_div {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:65px;
  6812. height:22px;
  6813. background:inherit;
  6814. background-color:rgba(255, 255, 255, 0);
  6815. border:none;
  6816. border-radius:0px;
  6817. -moz-box-shadow:none;
  6818. -webkit-box-shadow:none;
  6819. box-shadow:none;
  6820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:16px;
  6824. }
  6825. #u147025 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:147px;
  6829. top:396px;
  6830. width:65px;
  6831. height:22px;
  6832. display:flex;
  6833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:16px;
  6837. }
  6838. #u147025 .text {
  6839. position:absolute;
  6840. align-self:flex-start;
  6841. padding:0px 0px 0px 0px;
  6842. box-sizing:border-box;
  6843. width:100%;
  6844. }
  6845. #u147025_text {
  6846. border-width:0px;
  6847. white-space:nowrap;
  6848. text-transform:none;
  6849. }