styles.css 242 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:3223px;
  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. #u8411 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u8412_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u8412 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u8412 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u8412_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u8413_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u8413 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u8413 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u8413_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u8414_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u8414 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u8414 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u8414_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u8415 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u8416 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u8416 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u8416_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u8416_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u8417_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u8417 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u8417 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u8417_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u8418_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u8418 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u8418 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u8418_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u8419 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u8420_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u8420 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u8420 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u8420_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u8421 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u8421 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u8421_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u8421_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u8422 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u8423_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u8423 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u8423 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u8423_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u8424 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u8424 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u8424_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u8424_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u8425 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u8426_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u8426 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u8426 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u8426_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u8427 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u8427 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u8427_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u8427_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u8428 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u8429_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u8429 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u8429 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u8429_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u8430 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u8430 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u8430_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u8430_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u8431 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u8432_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u8432 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u8432 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u8432_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u8433 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u8433 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u8433_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u8433_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u8434 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u8435_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u8435 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u8435 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u8435_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u8436 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u8436 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u8436_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u8436_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u8437 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u8438_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u8438 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u8438 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u8438_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u8439 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u8439 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u8439_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u8439_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u8440 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u8441_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u8441 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u8441 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u8441_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u8442 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u8442 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u8442_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u8442_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u8443 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u8444_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u8444 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u8444 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u8444_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u8445 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u8445 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u8445_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u8445_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u8446 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u8447_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u8447 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u8447 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u8447_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u8448 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u8448 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u8448_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u8448_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u8449 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u8450_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u8450 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u8450 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u8450_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u8451 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u8451 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u8451_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u8451_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u8452 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u8453_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:'ArialMT', 'Arial', sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u8453_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:'ArialMT', 'Arial', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u8453_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u8453 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u8453 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u8453_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u8453.disabled {
  1294. }
  1295. .u8453_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u8454 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u8454 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u8454_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u8454_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u8455_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u8455 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u8455 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u8455_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u8456 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u8456 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u8456_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u8456_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u8457 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u8458_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u8458 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u8458 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u8458_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u8459 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u8459 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u8459_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u8459_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u8460 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u8460 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u8460_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u8460_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u8461 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u8461 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u8461_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u8461_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u8462 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u8462 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u8462_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u8462_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u8463 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u8464_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u8464 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u8464 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u8464_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u8465 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u8465 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u8465_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u8465_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u8466_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1260px;
  1673. height:1186px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u8466 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:333px;
  1684. top:51px;
  1685. width:1260px;
  1686. height:1186px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u8466 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u8466_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u8467 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:0px;
  1710. height:0px;
  1711. }
  1712. #u8468 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:582px;
  1716. top:115px;
  1717. width:993px;
  1718. height:950px;
  1719. display:flex;
  1720. transition:none;
  1721. }
  1722. #u8468 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 2px 2px 2px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u8468_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:993px;
  1735. height:950px;
  1736. }
  1737. #u8468_text {
  1738. border-width:0px;
  1739. word-wrap:break-word;
  1740. text-transform:none;
  1741. visibility:hidden;
  1742. }
  1743. #u8469_div {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:29px;
  1749. height:17px;
  1750. background:inherit;
  1751. background-color:rgba(0, 191, 191, 1);
  1752. border-radius:4px;
  1753. filter:drop-shadow(none);
  1754. transition:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:10px;
  1759. color:#FFFFFF;
  1760. }
  1761. #u8469 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:582px;
  1765. top:118px;
  1766. width:29px;
  1767. height:17px;
  1768. display:flex;
  1769. transition:none;
  1770. transform-origin:50% 50%;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:10px;
  1775. color:#FFFFFF;
  1776. }
  1777. #u8469 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:5px 0px 5px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u8469_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. }
  1789. #u8470_div {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:29px;
  1795. height:17px;
  1796. background:inherit;
  1797. background-color:rgba(217, 0, 27, 1);
  1798. border-radius:4px;
  1799. filter:drop-shadow(none);
  1800. transition:none;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:10px;
  1805. color:#FFFFFF;
  1806. }
  1807. #u8470 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:1249px;
  1811. top:115px;
  1812. width:29px;
  1813. height:17px;
  1814. display:flex;
  1815. transition:none;
  1816. transform-origin:50% 50%;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:10px;
  1821. color:#FFFFFF;
  1822. }
  1823. #u8470 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:5px 0px 5px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u8470_text {
  1831. border-width:0px;
  1832. word-wrap:break-word;
  1833. text-transform:none;
  1834. }
  1835. #u8471_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:29px;
  1841. height:17px;
  1842. background:inherit;
  1843. background-color:rgba(245, 154, 35, 1);
  1844. border-radius:4px;
  1845. filter:drop-shadow(none);
  1846. transition:none;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:10px;
  1851. color:#FFFFFF;
  1852. }
  1853. #u8471 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:582px;
  1857. top:346px;
  1858. width:29px;
  1859. height:17px;
  1860. display:flex;
  1861. transition:none;
  1862. transform-origin:50% 50%;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:10px;
  1867. color:#FFFFFF;
  1868. }
  1869. #u8471 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:5px 0px 5px 0px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u8471_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. }
  1881. #u8472_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:29px;
  1887. height:17px;
  1888. background:inherit;
  1889. background-color:rgba(0, 191, 191, 1);
  1890. border-radius:4px;
  1891. filter:drop-shadow(none);
  1892. transition:none;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:10px;
  1897. color:#FFFFFF;
  1898. }
  1899. #u8472 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:913px;
  1903. top:115px;
  1904. width:29px;
  1905. height:17px;
  1906. display:flex;
  1907. transition:none;
  1908. transform-origin:50% 50%;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:10px;
  1913. color:#FFFFFF;
  1914. }
  1915. #u8472 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:5px 0px 5px 0px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u8472_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. }
  1927. #u8473_div {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:29px;
  1933. height:17px;
  1934. background:inherit;
  1935. background-color:rgba(0, 191, 191, 1);
  1936. border-radius:4px;
  1937. filter:drop-shadow(none);
  1938. transition:none;
  1939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. font-size:10px;
  1943. color:#FFFFFF;
  1944. }
  1945. #u8473 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:913px;
  1949. top:349px;
  1950. width:29px;
  1951. height:17px;
  1952. display:flex;
  1953. transition:none;
  1954. transform-origin:50% 50%;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:10px;
  1959. color:#FFFFFF;
  1960. }
  1961. #u8473 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:5px 0px 5px 0px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u8473_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. }
  1973. #u8474_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:29px;
  1979. height:17px;
  1980. background:inherit;
  1981. background-color:rgba(0, 191, 191, 1);
  1982. border-radius:4px;
  1983. filter:drop-shadow(none);
  1984. transition:none;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:10px;
  1989. color:#FFFFFF;
  1990. }
  1991. #u8474 {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:1243px;
  1995. top:346px;
  1996. width:29px;
  1997. height:17px;
  1998. display:flex;
  1999. transition:none;
  2000. transform-origin:50% 50%;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:10px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u8474 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:5px 0px 5px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u8474_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u8475_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:29px;
  2025. height:17px;
  2026. background:inherit;
  2027. background-color:rgba(0, 191, 191, 1);
  2028. border-radius:4px;
  2029. filter:drop-shadow(none);
  2030. transition:none;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:10px;
  2035. color:#FFFFFF;
  2036. }
  2037. #u8475 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:913px;
  2041. top:602px;
  2042. width:29px;
  2043. height:17px;
  2044. display:flex;
  2045. transition:none;
  2046. transform-origin:50% 50%;
  2047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2048. font-weight:400;
  2049. font-style:normal;
  2050. font-size:10px;
  2051. color:#FFFFFF;
  2052. }
  2053. #u8475 .text {
  2054. position:absolute;
  2055. align-self:center;
  2056. padding:5px 0px 5px 0px;
  2057. box-sizing:border-box;
  2058. width:100%;
  2059. }
  2060. #u8475_text {
  2061. border-width:0px;
  2062. word-wrap:break-word;
  2063. text-transform:none;
  2064. }
  2065. #u8476_div {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:29px;
  2071. height:17px;
  2072. background:inherit;
  2073. background-color:rgba(0, 191, 191, 1);
  2074. border-radius:4px;
  2075. filter:drop-shadow(none);
  2076. transition:none;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:10px;
  2081. color:#FFFFFF;
  2082. }
  2083. #u8476 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:1243px;
  2087. top:598px;
  2088. width:29px;
  2089. height:17px;
  2090. display:flex;
  2091. transition:none;
  2092. transform-origin:50% 50%;
  2093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2094. font-weight:400;
  2095. font-style:normal;
  2096. font-size:10px;
  2097. color:#FFFFFF;
  2098. }
  2099. #u8476 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:5px 0px 5px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u8476_text {
  2107. border-width:0px;
  2108. word-wrap:break-word;
  2109. text-transform:none;
  2110. }
  2111. #u8477_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:29px;
  2117. height:17px;
  2118. background:inherit;
  2119. background-color:rgba(0, 191, 191, 1);
  2120. border-radius:4px;
  2121. filter:drop-shadow(none);
  2122. transition:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:10px;
  2127. color:#FFFFFF;
  2128. }
  2129. #u8477 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:582px;
  2133. top:602px;
  2134. width:29px;
  2135. height:17px;
  2136. display:flex;
  2137. transition:none;
  2138. transform-origin:50% 50%;
  2139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2140. font-weight:400;
  2141. font-style:normal;
  2142. font-size:10px;
  2143. color:#FFFFFF;
  2144. }
  2145. #u8477 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:5px 0px 5px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u8477_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. }
  2157. #u8478_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:29px;
  2163. height:17px;
  2164. background:inherit;
  2165. background-color:rgba(0, 191, 191, 1);
  2166. border-radius:4px;
  2167. filter:drop-shadow(none);
  2168. transition:none;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:10px;
  2173. color:#FFFFFF;
  2174. }
  2175. #u8478 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:913px;
  2179. top:848px;
  2180. width:29px;
  2181. height:17px;
  2182. display:flex;
  2183. transition:none;
  2184. transform-origin:50% 50%;
  2185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:10px;
  2189. color:#FFFFFF;
  2190. }
  2191. #u8478 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:5px 0px 5px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u8478_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. }
  2203. #u8479_div {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:29px;
  2209. height:17px;
  2210. background:inherit;
  2211. background-color:rgba(0, 191, 191, 1);
  2212. border-radius:4px;
  2213. filter:drop-shadow(none);
  2214. transition:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:10px;
  2219. color:#FFFFFF;
  2220. }
  2221. #u8479 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:1243px;
  2225. top:845px;
  2226. width:29px;
  2227. height:17px;
  2228. display:flex;
  2229. transition:none;
  2230. transform-origin:50% 50%;
  2231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:10px;
  2235. color:#FFFFFF;
  2236. }
  2237. #u8479 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:5px 0px 5px 0px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u8479_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. }
  2249. #u8480_div {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:29px;
  2255. height:17px;
  2256. background:inherit;
  2257. background-color:rgba(0, 191, 191, 1);
  2258. border-radius:4px;
  2259. filter:drop-shadow(none);
  2260. transition:none;
  2261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2262. font-weight:400;
  2263. font-style:normal;
  2264. font-size:10px;
  2265. color:#FFFFFF;
  2266. }
  2267. #u8480 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:582px;
  2271. top:848px;
  2272. width:29px;
  2273. height:17px;
  2274. display:flex;
  2275. transition:none;
  2276. transform-origin:50% 50%;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:10px;
  2281. color:#FFFFFF;
  2282. }
  2283. #u8480 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:5px 0px 5px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u8480_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. }
  2295. #u8481_div {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:73px;
  2301. height:50px;
  2302. background:inherit;
  2303. background-color:rgba(255, 255, 255, 0);
  2304. border-left:0px;
  2305. border-top:0px;
  2306. border-right:0px;
  2307. border-radius:0px;
  2308. border-bottom-right-radius:0px;
  2309. border-bottom-left-radius:0px;
  2310. filter:drop-shadow(none);
  2311. transition:none;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:18px;
  2316. }
  2317. #u8481 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:352px;
  2321. top:51px;
  2322. width:73px;
  2323. height:50px;
  2324. display:flex;
  2325. transition:none;
  2326. transform-origin:50% 50%;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:18px;
  2331. }
  2332. #u8481 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:0px 0px 0px 0px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u8481_text {
  2340. border-width:0px;
  2341. white-space:nowrap;
  2342. text-transform:none;
  2343. }
  2344. #u8482 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:0px;
  2350. height:0px;
  2351. }
  2352. #u8483_div {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:230px;
  2358. height:770px;
  2359. background:inherit;
  2360. background-color:rgba(242, 242, 242, 1);
  2361. border-radius:4px;
  2362. filter:drop-shadow(none);
  2363. transition:none;
  2364. }
  2365. #u8483 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:343px;
  2369. top:457px;
  2370. width:230px;
  2371. height:770px;
  2372. display:flex;
  2373. transition:none;
  2374. transform-origin:50% 50%;
  2375. }
  2376. #u8483 .text {
  2377. position:absolute;
  2378. align-self:center;
  2379. padding:2px 2px 2px 2px;
  2380. box-sizing:border-box;
  2381. width:100%;
  2382. }
  2383. #u8483_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. visibility:hidden;
  2388. }
  2389. #u8484 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:350px;
  2393. top:551px;
  2394. width:127px;
  2395. height:240px;
  2396. transition:none;
  2397. }
  2398. #u8484_children {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:0px;
  2404. height:0px;
  2405. }
  2406. #u8485 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:0px;
  2410. top:0px;
  2411. width:80px;
  2412. height:20px;
  2413. transition:none;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. }
  2418. #u8486 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:6px;
  2422. top:6px;
  2423. width:9px;
  2424. height:9px;
  2425. display:flex;
  2426. transition:none;
  2427. }
  2428. #u8486 .text {
  2429. position:absolute;
  2430. align-self:center;
  2431. padding:2px 2px 2px 2px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u8486_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:9px;
  2441. height:9px;
  2442. }
  2443. #u8486_img.selected {
  2444. }
  2445. #u8486.selected {
  2446. }
  2447. #u8486_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. visibility:hidden;
  2452. }
  2453. #u8487_div {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:58px;
  2459. height:20px;
  2460. background:inherit;
  2461. background-color:rgba(255, 255, 255, 0);
  2462. border-radius:0px;
  2463. filter:drop-shadow(none);
  2464. transition:none;
  2465. }
  2466. #u8487 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:22px;
  2470. top:0px;
  2471. width:58px;
  2472. height:20px;
  2473. display:flex;
  2474. transition:none;
  2475. transform-origin:50% 50%;
  2476. }
  2477. #u8487 .text {
  2478. position:absolute;
  2479. align-self:center;
  2480. padding:2px 2px 2px 3px;
  2481. box-sizing:border-box;
  2482. width:100%;
  2483. }
  2484. #u8487_text {
  2485. border-width:0px;
  2486. white-space:nowrap;
  2487. text-transform:none;
  2488. }
  2489. #u8485_children {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:0px;
  2495. height:0px;
  2496. }
  2497. #u8488 {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:20px;
  2501. top:20px;
  2502. width:87px;
  2503. height:20px;
  2504. transition:none;
  2505. }
  2506. #u8489 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:6px;
  2510. top:6px;
  2511. width:9px;
  2512. height:9px;
  2513. display:flex;
  2514. transition:none;
  2515. }
  2516. #u8489 .text {
  2517. position:absolute;
  2518. align-self:center;
  2519. padding:2px 2px 2px 2px;
  2520. box-sizing:border-box;
  2521. width:100%;
  2522. }
  2523. #u8489_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:9px;
  2529. height:9px;
  2530. }
  2531. #u8489_img.selected {
  2532. }
  2533. #u8489.selected {
  2534. }
  2535. #u8489_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u8490_div {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:65px;
  2547. height:20px;
  2548. background:inherit;
  2549. background-color:rgba(255, 255, 255, 0);
  2550. border-radius:0px;
  2551. filter:drop-shadow(none);
  2552. transition:none;
  2553. }
  2554. #u8490 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:22px;
  2558. top:0px;
  2559. width:65px;
  2560. height:20px;
  2561. display:flex;
  2562. transition:none;
  2563. transform-origin:50% 50%;
  2564. }
  2565. #u8490 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 3px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u8490_text {
  2573. border-width:0px;
  2574. white-space:nowrap;
  2575. text-transform:none;
  2576. }
  2577. #u8488_children {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:0px;
  2583. height:0px;
  2584. }
  2585. #u8491 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:20px;
  2589. top:20px;
  2590. width:87px;
  2591. height:20px;
  2592. transition:none;
  2593. }
  2594. #u8492_div {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:65px;
  2600. height:20px;
  2601. background:inherit;
  2602. background-color:rgba(255, 255, 255, 0);
  2603. border-radius:0px;
  2604. filter:drop-shadow(none);
  2605. transition:none;
  2606. }
  2607. #u8492 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:22px;
  2611. top:0px;
  2612. width:65px;
  2613. height:20px;
  2614. display:flex;
  2615. transition:none;
  2616. transform-origin:50% 50%;
  2617. }
  2618. #u8492 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 3px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u8492_text {
  2626. border-width:0px;
  2627. white-space:nowrap;
  2628. text-transform:none;
  2629. }
  2630. #u8493 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:20px;
  2634. top:40px;
  2635. width:87px;
  2636. height:20px;
  2637. transition:none;
  2638. color:#1890FF;
  2639. }
  2640. #u8494_div {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:65px;
  2646. height:20px;
  2647. background:inherit;
  2648. background-color:rgba(255, 255, 255, 0);
  2649. border-radius:0px;
  2650. filter:drop-shadow(none);
  2651. transition:none;
  2652. }
  2653. #u8494 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:22px;
  2657. top:0px;
  2658. width:65px;
  2659. height:20px;
  2660. display:flex;
  2661. transition:none;
  2662. transform-origin:50% 50%;
  2663. }
  2664. #u8494 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 3px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u8494_text {
  2672. border-width:0px;
  2673. white-space:nowrap;
  2674. text-transform:none;
  2675. }
  2676. #u8495 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:20px;
  2680. top:60px;
  2681. width:54px;
  2682. height:20px;
  2683. transition:none;
  2684. }
  2685. #u8496_div {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:32px;
  2691. height:20px;
  2692. background:inherit;
  2693. background-color:rgba(255, 255, 255, 0);
  2694. border-radius:0px;
  2695. filter:drop-shadow(none);
  2696. transition:none;
  2697. }
  2698. #u8496 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:22px;
  2702. top:0px;
  2703. width:32px;
  2704. height:20px;
  2705. display:flex;
  2706. transition:none;
  2707. transform-origin:50% 50%;
  2708. }
  2709. #u8496 .text {
  2710. position:absolute;
  2711. align-self:center;
  2712. padding:2px 2px 2px 3px;
  2713. box-sizing:border-box;
  2714. width:100%;
  2715. }
  2716. #u8496_text {
  2717. border-width:0px;
  2718. white-space:nowrap;
  2719. text-transform:none;
  2720. }
  2721. #u8497 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:20px;
  2725. top:100px;
  2726. width:87px;
  2727. height:20px;
  2728. transition:none;
  2729. }
  2730. #u8498 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:6px;
  2734. top:6px;
  2735. width:9px;
  2736. height:9px;
  2737. display:flex;
  2738. transition:none;
  2739. }
  2740. #u8498 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 2px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u8498_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:9px;
  2753. height:9px;
  2754. }
  2755. #u8498_img.selected {
  2756. }
  2757. #u8498.selected {
  2758. }
  2759. #u8498_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u8499_div {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:65px;
  2771. height:20px;
  2772. background:inherit;
  2773. background-color:rgba(255, 255, 255, 0);
  2774. border-radius:0px;
  2775. filter:drop-shadow(none);
  2776. transition:none;
  2777. }
  2778. #u8499 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:22px;
  2782. top:0px;
  2783. width:65px;
  2784. height:20px;
  2785. display:flex;
  2786. transition:none;
  2787. transform-origin:50% 50%;
  2788. }
  2789. #u8499 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 3px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u8499_text {
  2797. border-width:0px;
  2798. white-space:nowrap;
  2799. text-transform:none;
  2800. }
  2801. #u8497_children {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:0px;
  2807. height:0px;
  2808. }
  2809. #u8500 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:20px;
  2813. top:20px;
  2814. width:87px;
  2815. height:20px;
  2816. transition:none;
  2817. }
  2818. #u8501_div {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:65px;
  2824. height:20px;
  2825. background:inherit;
  2826. background-color:rgba(255, 255, 255, 0);
  2827. border-radius:0px;
  2828. filter:drop-shadow(none);
  2829. transition:none;
  2830. }
  2831. #u8501 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:22px;
  2835. top:0px;
  2836. width:65px;
  2837. height:20px;
  2838. display:flex;
  2839. transition:none;
  2840. transform-origin:50% 50%;
  2841. }
  2842. #u8501 .text {
  2843. position:absolute;
  2844. align-self:center;
  2845. padding:2px 2px 2px 3px;
  2846. box-sizing:border-box;
  2847. width:100%;
  2848. }
  2849. #u8501_text {
  2850. border-width:0px;
  2851. white-space:nowrap;
  2852. text-transform:none;
  2853. }
  2854. #u8502 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:20px;
  2858. top:40px;
  2859. width:87px;
  2860. height:20px;
  2861. transition:none;
  2862. color:#1890FF;
  2863. }
  2864. #u8503_div {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:65px;
  2870. height:20px;
  2871. background:inherit;
  2872. background-color:rgba(255, 255, 255, 0);
  2873. border-radius:0px;
  2874. filter:drop-shadow(none);
  2875. transition:none;
  2876. }
  2877. #u8503 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:22px;
  2881. top:0px;
  2882. width:65px;
  2883. height:20px;
  2884. display:flex;
  2885. transition:none;
  2886. transform-origin:50% 50%;
  2887. }
  2888. #u8503 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 3px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u8503_text {
  2896. border-width:0px;
  2897. white-space:nowrap;
  2898. text-transform:none;
  2899. }
  2900. #u8504 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:20px;
  2904. top:60px;
  2905. width:54px;
  2906. height:20px;
  2907. transition:none;
  2908. }
  2909. #u8505_div {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:32px;
  2915. height:20px;
  2916. background:inherit;
  2917. background-color:rgba(255, 255, 255, 0);
  2918. border-radius:0px;
  2919. filter:drop-shadow(none);
  2920. transition:none;
  2921. }
  2922. #u8505 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:22px;
  2926. top:0px;
  2927. width:32px;
  2928. height:20px;
  2929. display:flex;
  2930. transition:none;
  2931. transform-origin:50% 50%;
  2932. }
  2933. #u8505 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 3px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u8505_text {
  2941. border-width:0px;
  2942. white-space:nowrap;
  2943. text-transform:none;
  2944. }
  2945. #u8506 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:20px;
  2949. top:180px;
  2950. width:87px;
  2951. height:20px;
  2952. transition:none;
  2953. }
  2954. #u8507 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:6px;
  2958. top:6px;
  2959. width:9px;
  2960. height:9px;
  2961. display:flex;
  2962. transition:none;
  2963. }
  2964. #u8507 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 2px 2px 2px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u8507_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:9px;
  2977. height:9px;
  2978. }
  2979. #u8507_img.selected {
  2980. }
  2981. #u8507.selected {
  2982. }
  2983. #u8507_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u8508_div {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:65px;
  2995. height:20px;
  2996. background:inherit;
  2997. background-color:rgba(255, 255, 255, 0);
  2998. border-radius:0px;
  2999. filter:drop-shadow(none);
  3000. transition:none;
  3001. }
  3002. #u8508 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:22px;
  3006. top:0px;
  3007. width:65px;
  3008. height:20px;
  3009. display:flex;
  3010. transition:none;
  3011. transform-origin:50% 50%;
  3012. }
  3013. #u8508 .text {
  3014. position:absolute;
  3015. align-self:center;
  3016. padding:2px 2px 2px 3px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u8508_text {
  3021. border-width:0px;
  3022. white-space:nowrap;
  3023. text-transform:none;
  3024. }
  3025. #u8506_children {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:0px;
  3031. height:0px;
  3032. }
  3033. #u8509 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:20px;
  3037. top:20px;
  3038. width:87px;
  3039. height:20px;
  3040. transition:none;
  3041. }
  3042. #u8510_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:65px;
  3048. height:20px;
  3049. background:inherit;
  3050. background-color:rgba(255, 255, 255, 0);
  3051. border-radius:0px;
  3052. filter:drop-shadow(none);
  3053. transition:none;
  3054. }
  3055. #u8510 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:22px;
  3059. top:0px;
  3060. width:65px;
  3061. height:20px;
  3062. display:flex;
  3063. transition:none;
  3064. transform-origin:50% 50%;
  3065. }
  3066. #u8510 .text {
  3067. position:absolute;
  3068. align-self:center;
  3069. padding:2px 2px 2px 3px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u8510_text {
  3074. border-width:0px;
  3075. white-space:nowrap;
  3076. text-transform:none;
  3077. }
  3078. #u8511 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:20px;
  3082. top:40px;
  3083. width:54px;
  3084. height:20px;
  3085. transition:none;
  3086. }
  3087. #u8512_div {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:32px;
  3093. height:20px;
  3094. background:inherit;
  3095. background-color:rgba(255, 255, 255, 0);
  3096. border-radius:0px;
  3097. filter:drop-shadow(none);
  3098. transition:none;
  3099. }
  3100. #u8512 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:22px;
  3104. top:0px;
  3105. width:32px;
  3106. height:20px;
  3107. display:flex;
  3108. transition:none;
  3109. transform-origin:50% 50%;
  3110. }
  3111. #u8512 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 3px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u8512_text {
  3119. border-width:0px;
  3120. white-space:nowrap;
  3121. text-transform:none;
  3122. }
  3123. #u8513_div {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:25px;
  3129. height:30px;
  3130. background:inherit;
  3131. background-color:rgba(255, 255, 255, 0);
  3132. border-radius:0px;
  3133. filter:drop-shadow(none);
  3134. transition:none;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:12px;
  3139. color:#3399FF;
  3140. line-height:30px;
  3141. }
  3142. #u8513 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:351px;
  3146. top:513px;
  3147. width:25px;
  3148. height:30px;
  3149. display:flex;
  3150. transition:none;
  3151. transform-origin:50% 50%;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:12px;
  3156. color:#3399FF;
  3157. line-height:30px;
  3158. }
  3159. #u8513 .text {
  3160. position:absolute;
  3161. align-self:flex-start;
  3162. padding:0px 0px 0px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u8513_text {
  3167. border-width:0px;
  3168. white-space:nowrap;
  3169. text-transform:none;
  3170. }
  3171. #u8514_div {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:0px;
  3175. top:0px;
  3176. width:25px;
  3177. height:30px;
  3178. background:inherit;
  3179. background-color:rgba(255, 255, 255, 0);
  3180. border-radius:0px;
  3181. filter:drop-shadow(none);
  3182. transition:none;
  3183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. color:#7F7F7F;
  3188. line-height:30px;
  3189. }
  3190. #u8514 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:388px;
  3194. top:513px;
  3195. width:25px;
  3196. height:30px;
  3197. display:flex;
  3198. transition:none;
  3199. transform-origin:50% 50%;
  3200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. font-size:12px;
  3204. color:#7F7F7F;
  3205. line-height:30px;
  3206. }
  3207. #u8514 .text {
  3208. position:absolute;
  3209. align-self:flex-start;
  3210. padding:0px 0px 0px 0px;
  3211. box-sizing:border-box;
  3212. width:100%;
  3213. }
  3214. #u8514_text {
  3215. border-width:0px;
  3216. white-space:nowrap;
  3217. text-transform:none;
  3218. }
  3219. #u8515_div {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:0px;
  3223. top:0px;
  3224. width:25px;
  3225. height:30px;
  3226. background:inherit;
  3227. background-color:rgba(255, 255, 255, 0);
  3228. border-radius:0px;
  3229. filter:drop-shadow(none);
  3230. transition:none;
  3231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:12px;
  3235. color:#7F7F7F;
  3236. line-height:30px;
  3237. }
  3238. #u8515 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:424px;
  3242. top:513px;
  3243. width:25px;
  3244. height:30px;
  3245. display:flex;
  3246. transition:none;
  3247. transform-origin:50% 50%;
  3248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:12px;
  3252. color:#7F7F7F;
  3253. line-height:30px;
  3254. }
  3255. #u8515 .text {
  3256. position:absolute;
  3257. align-self:flex-start;
  3258. padding:0px 0px 0px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u8515_text {
  3263. border-width:0px;
  3264. white-space:nowrap;
  3265. text-transform:none;
  3266. }
  3267. #u8516_div {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:25px;
  3273. height:30px;
  3274. background:inherit;
  3275. background-color:rgba(255, 255, 255, 0);
  3276. border-radius:0px;
  3277. filter:drop-shadow(none);
  3278. transition:none;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. color:#7F7F7F;
  3284. line-height:30px;
  3285. }
  3286. #u8516 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:461px;
  3290. top:513px;
  3291. width:25px;
  3292. height:30px;
  3293. display:flex;
  3294. transition:none;
  3295. transform-origin:50% 50%;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. color:#7F7F7F;
  3301. line-height:30px;
  3302. }
  3303. #u8516 .text {
  3304. position:absolute;
  3305. align-self:flex-start;
  3306. padding:0px 0px 0px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u8516_text {
  3311. border-width:0px;
  3312. white-space:nowrap;
  3313. text-transform:none;
  3314. }
  3315. #u8517 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:0px;
  3321. height:0px;
  3322. }
  3323. #u8518_input {
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:206px;
  3328. height:38px;
  3329. padding:2px 2px 2px 2px;
  3330. font-family:'ArialMT', 'Arial', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:18px;
  3334. letter-spacing:normal;
  3335. color:#333333;
  3336. vertical-align:none;
  3337. text-align:left;
  3338. text-transform:none;
  3339. background-color:transparent;
  3340. border-color:transparent;
  3341. }
  3342. #u8518_input.disabled {
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:206px;
  3347. height:38px;
  3348. padding:2px 2px 2px 2px;
  3349. font-family:'ArialMT', 'Arial', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:18px;
  3353. letter-spacing:normal;
  3354. color:#333333;
  3355. vertical-align:none;
  3356. text-align:left;
  3357. text-transform:none;
  3358. background-color:transparent;
  3359. border-color:transparent;
  3360. }
  3361. #u8518_div {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:206px;
  3367. height:38px;
  3368. background:inherit;
  3369. background-color:rgba(255, 255, 255, 1);
  3370. border-radius:0px;
  3371. filter:drop-shadow(none);
  3372. transition:none;
  3373. font-size:18px;
  3374. color:#333333;
  3375. }
  3376. #u8518 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:344px;
  3380. top:419px;
  3381. width:206px;
  3382. height:38px;
  3383. display:flex;
  3384. transition:none;
  3385. transform-origin:50% 50%;
  3386. font-size:18px;
  3387. color:#333333;
  3388. }
  3389. #u8518 .text {
  3390. position:absolute;
  3391. align-self:flex-start;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u8518_div.disabled {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:206px;
  3402. height:38px;
  3403. background:inherit;
  3404. background-color:rgba(240, 240, 240, 1);
  3405. border-radius:0px;
  3406. filter:drop-shadow(none);
  3407. transition:none;
  3408. font-size:18px;
  3409. color:#333333;
  3410. }
  3411. #u8518.disabled {
  3412. }
  3413. .u8518_input_option {
  3414. font-size:18px;
  3415. }
  3416. #u8519_div {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:29px;
  3422. height:50px;
  3423. background:inherit;
  3424. background-color:rgba(255, 255, 255, 0);
  3425. border-left:0px;
  3426. border-top:0px;
  3427. border-right:0px;
  3428. border-radius:0px;
  3429. border-bottom-right-radius:0px;
  3430. border-bottom-left-radius:0px;
  3431. filter:drop-shadow(none);
  3432. transition:none;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:14px;
  3437. color:#1890FF;
  3438. }
  3439. #u8519 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:532px;
  3443. top:462px;
  3444. width:29px;
  3445. height:50px;
  3446. display:flex;
  3447. transition:none;
  3448. transform-origin:50% 50%;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:14px;
  3453. color:#1890FF;
  3454. }
  3455. #u8519 .text {
  3456. position:absolute;
  3457. align-self:center;
  3458. padding:0px 0px 0px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u8519_text {
  3463. border-width:0px;
  3464. white-space:nowrap;
  3465. text-transform:none;
  3466. }
  3467. #u8520 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:0px;
  3473. height:0px;
  3474. }
  3475. #u8521_div {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:180px;
  3481. height:38px;
  3482. background:inherit;
  3483. background-color:rgba(255, 255, 255, 1);
  3484. box-sizing:border-box;
  3485. border-width:1px;
  3486. border-style:solid;
  3487. border-color:rgba(242, 242, 242, 1);
  3488. border-radius:4px;
  3489. filter:drop-shadow(none);
  3490. transition:none;
  3491. font-family:"Microsoft YaHei", sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:14px;
  3495. color:#CCCCCC;
  3496. text-align:left;
  3497. }
  3498. #u8521 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:350px;
  3502. top:468px;
  3503. width:180px;
  3504. height:38px;
  3505. display:flex;
  3506. transition:none;
  3507. transform-origin:50% 50%;
  3508. font-family:"Microsoft YaHei", sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:14px;
  3512. color:#CCCCCC;
  3513. text-align:left;
  3514. }
  3515. #u8521 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 8px 2px 8px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u8521_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u8522_input {
  3529. position:absolute;
  3530. left:0px;
  3531. top:0px;
  3532. width:140px;
  3533. height:31px;
  3534. padding:2px 2px 2px 2px;
  3535. font-family:"Microsoft YaHei", sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:14px;
  3539. letter-spacing:normal;
  3540. color:#000000;
  3541. vertical-align:none;
  3542. text-align:left;
  3543. text-transform:none;
  3544. background-color:transparent;
  3545. border-color:transparent;
  3546. }
  3547. #u8522_input.hint {
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:140px;
  3552. height:31px;
  3553. padding:2px 2px 2px 2px;
  3554. font-family:"Microsoft YaHei", sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:12px;
  3558. letter-spacing:normal;
  3559. color:#AAAAAA;
  3560. vertical-align:none;
  3561. text-align:left;
  3562. text-transform:none;
  3563. background-color:transparent;
  3564. border-color:transparent;
  3565. }
  3566. #u8522_input.disabled {
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:140px;
  3571. height:31px;
  3572. padding:2px 2px 2px 2px;
  3573. font-family:"Microsoft YaHei", sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:14px;
  3577. letter-spacing:normal;
  3578. color:#000000;
  3579. vertical-align:none;
  3580. text-align:left;
  3581. text-transform:none;
  3582. background-color:transparent;
  3583. border-color:transparent;
  3584. }
  3585. #u8522_input.hint.disabled {
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:140px;
  3590. height:31px;
  3591. padding:2px 2px 2px 2px;
  3592. font-family:"Microsoft YaHei", sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. letter-spacing:normal;
  3597. color:#AAAAAA;
  3598. vertical-align:none;
  3599. text-align:left;
  3600. text-transform:none;
  3601. background-color:transparent;
  3602. border-color:transparent;
  3603. }
  3604. #u8522_div {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:140px;
  3610. height:31px;
  3611. background:inherit;
  3612. background-color:rgba(255, 255, 255, 1);
  3613. border-radius:0px;
  3614. filter:drop-shadow(none);
  3615. transition:none;
  3616. font-family:"Microsoft YaHei", sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:14px;
  3620. }
  3621. #u8522 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:358px;
  3625. top:469px;
  3626. width:140px;
  3627. height:31px;
  3628. display:flex;
  3629. transition:none;
  3630. transform-origin:50% 50%;
  3631. font-family:"Microsoft YaHei", sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:14px;
  3635. }
  3636. #u8522 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 2px 2px 2px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u8522_div.hint {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:140px;
  3649. height:31px;
  3650. background:inherit;
  3651. background-color:rgba(255, 255, 255, 1);
  3652. border-radius:0px;
  3653. filter:drop-shadow(none);
  3654. transition:none;
  3655. font-family:"Microsoft YaHei", sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:14px;
  3659. }
  3660. #u8522.hint {
  3661. }
  3662. #u8522_div.disabled {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:140px;
  3668. height:31px;
  3669. background:inherit;
  3670. background-color:rgba(240, 240, 240, 1);
  3671. border-radius:0px;
  3672. filter:drop-shadow(none);
  3673. transition:none;
  3674. font-family:"Microsoft YaHei", sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:14px;
  3678. }
  3679. #u8522.disabled {
  3680. }
  3681. #u8522_div.hint.disabled {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:140px;
  3687. height:31px;
  3688. background:inherit;
  3689. background-color:rgba(240, 240, 240, 1);
  3690. border-radius:0px;
  3691. filter:drop-shadow(none);
  3692. transition:none;
  3693. font-family:"Microsoft YaHei", sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:14px;
  3697. }
  3698. #u8522.hint.disabled {
  3699. }
  3700. #u8523 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:505px;
  3704. top:480px;
  3705. width:14px;
  3706. height:14px;
  3707. display:flex;
  3708. transition:none;
  3709. }
  3710. #u8523 .text {
  3711. position:absolute;
  3712. align-self:center;
  3713. padding:2px 2px 2px 2px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u8523_img {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:14px;
  3723. height:14px;
  3724. }
  3725. #u8523_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. visibility:hidden;
  3730. }
  3731. #u8524 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:0px;
  3737. height:0px;
  3738. }
  3739. #u8525_div {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:0px;
  3743. top:0px;
  3744. width:57px;
  3745. height:30px;
  3746. background:inherit;
  3747. background-color:rgba(255, 255, 255, 0);
  3748. border-radius:0px;
  3749. filter:drop-shadow(none);
  3750. transition:none;
  3751. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3752. font-weight:500;
  3753. font-style:normal;
  3754. font-size:14px;
  3755. color:#000000;
  3756. line-height:30px;
  3757. }
  3758. #u8525 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:351px;
  3762. top:99px;
  3763. width:57px;
  3764. height:30px;
  3765. display:flex;
  3766. transition:none;
  3767. transform-origin:50% 50%;
  3768. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3769. font-weight:500;
  3770. font-style:normal;
  3771. font-size:14px;
  3772. color:#000000;
  3773. line-height:30px;
  3774. }
  3775. #u8525 .text {
  3776. position:absolute;
  3777. align-self:flex-start;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u8525_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u8526 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:0px;
  3793. height:0px;
  3794. }
  3795. #u8527_div {
  3796. border-width:0px;
  3797. position:absolute;
  3798. left:0px;
  3799. top:0px;
  3800. width:30px;
  3801. height:30px;
  3802. background:inherit;
  3803. background-color:rgba(255, 255, 255, 1);
  3804. box-sizing:border-box;
  3805. border-width:1px;
  3806. border-style:solid;
  3807. border-color:rgba(121, 121, 121, 1);
  3808. border-radius:0px;
  3809. filter:drop-shadow(none);
  3810. transition:none;
  3811. }
  3812. #u8527 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:352px;
  3816. top:134px;
  3817. width:30px;
  3818. height:30px;
  3819. display:flex;
  3820. transition:none;
  3821. transform-origin:50% 50%;
  3822. }
  3823. #u8527 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 2px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u8527_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u8528 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:358px;
  3840. top:140px;
  3841. width:19px;
  3842. height:18px;
  3843. display:flex;
  3844. -webkit-transform:rotate(135deg);
  3845. -moz-transform:rotate(135deg);
  3846. -ms-transform:rotate(135deg);
  3847. transform:rotate(135deg);
  3848. transition:none;
  3849. }
  3850. #u8528 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 2px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u8528_img {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:19px;
  3863. height:18px;
  3864. }
  3865. #u8528_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u8529 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:0px;
  3877. height:0px;
  3878. }
  3879. #u8530_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:30px;
  3885. height:30px;
  3886. background:inherit;
  3887. background-color:rgba(255, 255, 255, 1);
  3888. box-sizing:border-box;
  3889. border-width:1px;
  3890. border-style:solid;
  3891. border-color:rgba(121, 121, 121, 1);
  3892. border-radius:0px;
  3893. filter:drop-shadow(none);
  3894. transition:none;
  3895. }
  3896. #u8530 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:392px;
  3900. top:134px;
  3901. width:30px;
  3902. height:30px;
  3903. display:flex;
  3904. transition:none;
  3905. transform-origin:50% 50%;
  3906. }
  3907. #u8530 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 2px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u8530_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u8531 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:398px;
  3924. top:140px;
  3925. width:19px;
  3926. height:18px;
  3927. display:flex;
  3928. -webkit-transform:rotate(180deg);
  3929. -moz-transform:rotate(180deg);
  3930. -ms-transform:rotate(180deg);
  3931. transform:rotate(180deg);
  3932. transition:none;
  3933. }
  3934. #u8531 .text {
  3935. position:absolute;
  3936. align-self:center;
  3937. padding:2px 2px 2px 2px;
  3938. box-sizing:border-box;
  3939. width:100%;
  3940. }
  3941. #u8531_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:19px;
  3947. height:18px;
  3948. }
  3949. #u8531_text {
  3950. border-width:0px;
  3951. word-wrap:break-word;
  3952. text-transform:none;
  3953. visibility:hidden;
  3954. }
  3955. #u8532 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:0px;
  3961. height:0px;
  3962. }
  3963. #u8533_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:30px;
  3969. height:30px;
  3970. background:inherit;
  3971. background-color:rgba(255, 255, 255, 1);
  3972. box-sizing:border-box;
  3973. border-width:1px;
  3974. border-style:solid;
  3975. border-color:rgba(121, 121, 121, 1);
  3976. border-radius:0px;
  3977. filter:drop-shadow(none);
  3978. transition:none;
  3979. }
  3980. #u8533 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:432px;
  3984. top:134px;
  3985. width:30px;
  3986. height:30px;
  3987. display:flex;
  3988. transition:none;
  3989. transform-origin:50% 50%;
  3990. }
  3991. #u8533 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 2px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u8533_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u8534 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:438px;
  4008. top:140px;
  4009. width:19px;
  4010. height:18px;
  4011. display:flex;
  4012. -webkit-transform:rotate(225deg);
  4013. -moz-transform:rotate(225deg);
  4014. -ms-transform:rotate(225deg);
  4015. transform:rotate(225deg);
  4016. transition:none;
  4017. }
  4018. #u8534 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u8534_img {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:19px;
  4031. height:18px;
  4032. }
  4033. #u8534_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u8535 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:0px;
  4045. height:0px;
  4046. }
  4047. #u8536_div {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:0px;
  4052. width:30px;
  4053. height:30px;
  4054. background:inherit;
  4055. background-color:rgba(255, 255, 255, 1);
  4056. box-sizing:border-box;
  4057. border-width:1px;
  4058. border-style:solid;
  4059. border-color:rgba(121, 121, 121, 1);
  4060. border-radius:0px;
  4061. filter:drop-shadow(none);
  4062. transition:none;
  4063. }
  4064. #u8536 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:352px;
  4068. top:174px;
  4069. width:30px;
  4070. height:30px;
  4071. display:flex;
  4072. transition:none;
  4073. transform-origin:50% 50%;
  4074. }
  4075. #u8536 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 2px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u8536_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u8537 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:358px;
  4092. top:180px;
  4093. width:19px;
  4094. height:18px;
  4095. display:flex;
  4096. -webkit-transform:rotate(90deg);
  4097. -moz-transform:rotate(90deg);
  4098. -ms-transform:rotate(90deg);
  4099. transform:rotate(90deg);
  4100. transition:none;
  4101. }
  4102. #u8537 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 2px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u8537_img {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:19px;
  4115. height:18px;
  4116. }
  4117. #u8537_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u8538 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:0px;
  4129. height:0px;
  4130. }
  4131. #u8539_div {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:30px;
  4137. height:30px;
  4138. background:inherit;
  4139. background-color:rgba(255, 255, 255, 1);
  4140. box-sizing:border-box;
  4141. border-width:1px;
  4142. border-style:solid;
  4143. border-color:rgba(121, 121, 121, 1);
  4144. border-radius:0px;
  4145. filter:drop-shadow(none);
  4146. transition:none;
  4147. }
  4148. #u8539 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:432px;
  4152. top:174px;
  4153. width:30px;
  4154. height:30px;
  4155. display:flex;
  4156. transition:none;
  4157. transform-origin:50% 50%;
  4158. }
  4159. #u8539 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u8539_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u8540 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:438px;
  4176. top:180px;
  4177. width:19px;
  4178. height:18px;
  4179. display:flex;
  4180. -webkit-transform:rotate(270deg);
  4181. -moz-transform:rotate(270deg);
  4182. -ms-transform:rotate(270deg);
  4183. transform:rotate(270deg);
  4184. transition:none;
  4185. }
  4186. #u8540 .text {
  4187. position:absolute;
  4188. align-self:center;
  4189. padding:2px 2px 2px 2px;
  4190. box-sizing:border-box;
  4191. width:100%;
  4192. }
  4193. #u8540_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:19px;
  4199. height:18px;
  4200. }
  4201. #u8540_text {
  4202. border-width:0px;
  4203. word-wrap:break-word;
  4204. text-transform:none;
  4205. visibility:hidden;
  4206. }
  4207. #u8541 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:0px;
  4213. height:0px;
  4214. }
  4215. #u8542_div {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:30px;
  4221. height:30px;
  4222. background:inherit;
  4223. background-color:rgba(255, 255, 255, 1);
  4224. box-sizing:border-box;
  4225. border-width:1px;
  4226. border-style:solid;
  4227. border-color:rgba(121, 121, 121, 1);
  4228. border-radius:0px;
  4229. filter:drop-shadow(none);
  4230. transition:none;
  4231. }
  4232. #u8542 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:352px;
  4236. top:214px;
  4237. width:30px;
  4238. height:30px;
  4239. display:flex;
  4240. transition:none;
  4241. transform-origin:50% 50%;
  4242. }
  4243. #u8542 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 2px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u8542_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. visibility:hidden;
  4255. }
  4256. #u8543 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:358px;
  4260. top:220px;
  4261. width:19px;
  4262. height:18px;
  4263. display:flex;
  4264. -webkit-transform:rotate(51deg);
  4265. -moz-transform:rotate(51deg);
  4266. -ms-transform:rotate(51deg);
  4267. transform:rotate(51deg);
  4268. transition:none;
  4269. }
  4270. #u8543 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 2px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u8543_img {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:19px;
  4283. height:18px;
  4284. }
  4285. #u8543_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u8544 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:0px;
  4297. height:0px;
  4298. }
  4299. #u8545_div {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:30px;
  4305. height:30px;
  4306. background:inherit;
  4307. background-color:rgba(255, 255, 255, 1);
  4308. box-sizing:border-box;
  4309. border-width:1px;
  4310. border-style:solid;
  4311. border-color:rgba(121, 121, 121, 1);
  4312. border-radius:0px;
  4313. filter:drop-shadow(none);
  4314. transition:none;
  4315. }
  4316. #u8545 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:392px;
  4320. top:214px;
  4321. width:30px;
  4322. height:30px;
  4323. display:flex;
  4324. transition:none;
  4325. transform-origin:50% 50%;
  4326. }
  4327. #u8545 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:2px 2px 2px 2px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u8545_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. visibility:hidden;
  4339. }
  4340. #u8546 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:398px;
  4344. top:220px;
  4345. width:19px;
  4346. height:18px;
  4347. display:flex;
  4348. transition:none;
  4349. }
  4350. #u8546 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 2px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u8546_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:19px;
  4363. height:18px;
  4364. }
  4365. #u8546_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. visibility:hidden;
  4370. }
  4371. #u8547 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:0px;
  4377. height:0px;
  4378. }
  4379. #u8548_div {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:30px;
  4385. height:30px;
  4386. background:inherit;
  4387. background-color:rgba(255, 255, 255, 1);
  4388. box-sizing:border-box;
  4389. border-width:1px;
  4390. border-style:solid;
  4391. border-color:rgba(121, 121, 121, 1);
  4392. border-radius:0px;
  4393. filter:drop-shadow(none);
  4394. transition:none;
  4395. }
  4396. #u8548 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:432px;
  4400. top:214px;
  4401. width:30px;
  4402. height:30px;
  4403. display:flex;
  4404. transition:none;
  4405. transform-origin:50% 50%;
  4406. }
  4407. #u8548 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u8548_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u8549 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:438px;
  4424. top:220px;
  4425. width:19px;
  4426. height:18px;
  4427. display:flex;
  4428. -webkit-transform:rotate(300deg);
  4429. -moz-transform:rotate(300deg);
  4430. -ms-transform:rotate(300deg);
  4431. transform:rotate(300deg);
  4432. transition:none;
  4433. }
  4434. #u8549 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 2px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u8549_img {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:19px;
  4447. height:18px;
  4448. }
  4449. #u8549_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u8550_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:30px;
  4461. height:30px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 1);
  4464. box-sizing:border-box;
  4465. border-width:1px;
  4466. border-style:solid;
  4467. border-color:rgba(121, 121, 121, 1);
  4468. border-radius:0px;
  4469. filter:drop-shadow(none);
  4470. transition:none;
  4471. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4472. font-weight:700;
  4473. font-style:normal;
  4474. font-size:24px;
  4475. }
  4476. #u8550 {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:472px;
  4480. top:134px;
  4481. width:30px;
  4482. height:30px;
  4483. display:flex;
  4484. transition:none;
  4485. transform-origin:50% 50%;
  4486. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4487. font-weight:700;
  4488. font-style:normal;
  4489. font-size:24px;
  4490. }
  4491. #u8550 .text {
  4492. position:absolute;
  4493. align-self:center;
  4494. padding:2px 2px 2px 2px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u8550_text {
  4499. border-width:0px;
  4500. word-wrap:break-word;
  4501. text-transform:none;
  4502. }
  4503. #u8551_div {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:30px;
  4509. height:30px;
  4510. background:inherit;
  4511. background-color:rgba(255, 255, 255, 1);
  4512. box-sizing:border-box;
  4513. border-width:1px;
  4514. border-style:solid;
  4515. border-color:rgba(121, 121, 121, 1);
  4516. border-radius:0px;
  4517. filter:drop-shadow(none);
  4518. transition:none;
  4519. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4520. font-weight:700;
  4521. font-style:normal;
  4522. font-size:24px;
  4523. }
  4524. #u8551 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:472px;
  4528. top:174px;
  4529. width:30px;
  4530. height:30px;
  4531. display:flex;
  4532. transition:none;
  4533. transform-origin:50% 50%;
  4534. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4535. font-weight:700;
  4536. font-style:normal;
  4537. font-size:24px;
  4538. }
  4539. #u8551 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 2px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u8551_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. }
  4551. #u8552_div {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:30px;
  4557. height:30px;
  4558. background:inherit;
  4559. background-color:rgba(255, 255, 255, 1);
  4560. box-sizing:border-box;
  4561. border-width:1px;
  4562. border-style:solid;
  4563. border-color:rgba(121, 121, 121, 1);
  4564. border-radius:0px;
  4565. filter:drop-shadow(none);
  4566. transition:none;
  4567. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4568. font-weight:700;
  4569. font-style:normal;
  4570. font-size:24px;
  4571. }
  4572. #u8552 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:472px;
  4576. top:214px;
  4577. width:30px;
  4578. height:30px;
  4579. display:flex;
  4580. transition:none;
  4581. transform-origin:50% 50%;
  4582. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4583. font-weight:700;
  4584. font-style:normal;
  4585. font-size:24px;
  4586. }
  4587. #u8552 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:2px 2px 2px 2px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u8552_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. }
  4599. #u8553 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:0px;
  4605. height:0px;
  4606. }
  4607. #u8554_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:30px;
  4613. height:30px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 1);
  4616. box-sizing:border-box;
  4617. border-width:1px;
  4618. border-style:solid;
  4619. border-color:rgba(121, 121, 121, 1);
  4620. border-radius:0px;
  4621. filter:drop-shadow(none);
  4622. transition:none;
  4623. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4624. font-weight:700;
  4625. font-style:normal;
  4626. font-size:18px;
  4627. }
  4628. #u8554 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:512px;
  4632. top:134px;
  4633. width:30px;
  4634. height:30px;
  4635. display:flex;
  4636. transition:none;
  4637. transform-origin:50% 50%;
  4638. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4639. font-weight:700;
  4640. font-style:normal;
  4641. font-size:18px;
  4642. }
  4643. #u8554 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 2px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u8554_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u8555 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:520px;
  4660. top:142px;
  4661. width:14px;
  4662. height:14px;
  4663. display:flex;
  4664. transition:none;
  4665. }
  4666. #u8555 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 2px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u8555_img {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:14px;
  4679. height:14px;
  4680. }
  4681. #u8555_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u8556 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u8557_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:30px;
  4701. height:30px;
  4702. background:inherit;
  4703. background-color:rgba(255, 255, 255, 1);
  4704. box-sizing:border-box;
  4705. border-width:1px;
  4706. border-style:solid;
  4707. border-color:rgba(121, 121, 121, 1);
  4708. border-radius:0px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4712. font-weight:700;
  4713. font-style:normal;
  4714. font-size:18px;
  4715. }
  4716. #u8557 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:512px;
  4720. top:174px;
  4721. width:30px;
  4722. height:30px;
  4723. display:flex;
  4724. transition:none;
  4725. transform-origin:50% 50%;
  4726. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4727. font-weight:700;
  4728. font-style:normal;
  4729. font-size:18px;
  4730. }
  4731. #u8557 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 2px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u8557_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. visibility:hidden;
  4743. }
  4744. #u8558 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:520px;
  4748. top:182px;
  4749. width:14px;
  4750. height:14px;
  4751. display:flex;
  4752. transition:none;
  4753. }
  4754. #u8558 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:2px 2px 2px 2px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u8558_img {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:14px;
  4767. height:14px;
  4768. }
  4769. #u8558_text {
  4770. border-width:0px;
  4771. word-wrap:break-word;
  4772. text-transform:none;
  4773. visibility:hidden;
  4774. }
  4775. #u8559 {
  4776. border-width:0px;
  4777. position:absolute;
  4778. left:0px;
  4779. top:0px;
  4780. width:0px;
  4781. height:0px;
  4782. }
  4783. #u8560_div {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:30px;
  4789. height:30px;
  4790. background:inherit;
  4791. background-color:rgba(255, 255, 255, 1);
  4792. box-sizing:border-box;
  4793. border-width:1px;
  4794. border-style:solid;
  4795. border-color:rgba(121, 121, 121, 1);
  4796. border-radius:0px;
  4797. filter:drop-shadow(none);
  4798. transition:none;
  4799. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4800. font-weight:700;
  4801. font-style:normal;
  4802. font-size:18px;
  4803. }
  4804. #u8560 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:512px;
  4808. top:214px;
  4809. width:30px;
  4810. height:30px;
  4811. display:flex;
  4812. transition:none;
  4813. transform-origin:50% 50%;
  4814. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4815. font-weight:700;
  4816. font-style:normal;
  4817. font-size:18px;
  4818. }
  4819. #u8560 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 2px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u8560_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. visibility:hidden;
  4831. }
  4832. #u8561 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:519px;
  4836. top:224px;
  4837. width:17px;
  4838. height:11px;
  4839. display:flex;
  4840. transition:none;
  4841. }
  4842. #u8561 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u8561_img {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:17px;
  4855. height:11px;
  4856. }
  4857. #u8561_text {
  4858. border-width:0px;
  4859. word-wrap:break-word;
  4860. text-transform:none;
  4861. visibility:hidden;
  4862. }
  4863. #u8562 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:0px;
  4869. height:0px;
  4870. }
  4871. #u8563_div {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:84px;
  4877. height:21px;
  4878. background:inherit;
  4879. background-color:rgba(51, 51, 51, 1);
  4880. border-radius:11px;
  4881. filter:drop-shadow(none);
  4882. transition:none;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. color:#FFFFFF;
  4888. text-align:center;
  4889. }
  4890. #u8563 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:443px;
  4894. top:240px;
  4895. width:84px;
  4896. height:21px;
  4897. display:flex;
  4898. transition:none;
  4899. transform-origin:50% 50%;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:12px;
  4904. color:#FFFFFF;
  4905. text-align:center;
  4906. }
  4907. #u8563 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 2px 2px 2px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u8563_text {
  4915. border-width:0px;
  4916. white-space:nowrap;
  4917. text-transform:none;
  4918. }
  4919. #u8564 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:495px;
  4923. top:271px;
  4924. width:11px;
  4925. height:17px;
  4926. display:flex;
  4927. transition:none;
  4928. }
  4929. #u8564 .text {
  4930. position:absolute;
  4931. align-self:center;
  4932. padding:2px 2px 2px 2px;
  4933. box-sizing:border-box;
  4934. width:100%;
  4935. }
  4936. #u8564_img {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:11px;
  4942. height:17px;
  4943. }
  4944. #u8564_text {
  4945. border-width:0px;
  4946. word-wrap:break-word;
  4947. text-transform:none;
  4948. visibility:hidden;
  4949. }
  4950. #u8565_div {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:191px;
  4956. height:6px;
  4957. background:inherit;
  4958. background-color:rgba(255, 255, 255, 1);
  4959. box-sizing:border-box;
  4960. border-width:1px;
  4961. border-style:solid;
  4962. border-color:rgba(228, 228, 228, 1);
  4963. border-radius:0px;
  4964. filter:drop-shadow(none);
  4965. transition:none;
  4966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4967. font-weight:400;
  4968. font-style:normal;
  4969. font-size:12px;
  4970. color:#FFFFFF;
  4971. }
  4972. #u8565 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:351px;
  4976. top:268px;
  4977. width:191px;
  4978. height:6px;
  4979. display:flex;
  4980. transition:none;
  4981. transform-origin:50% 50%;
  4982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:12px;
  4986. color:#FFFFFF;
  4987. }
  4988. #u8565 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:8px 15px 8px 15px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u8565_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. visibility:hidden;
  5000. }
  5001. #u8566_div {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:140px;
  5007. height:6px;
  5008. background:inherit;
  5009. background-color:rgba(51, 153, 255, 1);
  5010. box-sizing:border-box;
  5011. border-width:1px;
  5012. border-style:solid;
  5013. border-color:rgba(228, 228, 228, 1);
  5014. border-radius:0px;
  5015. filter:drop-shadow(none);
  5016. transition:none;
  5017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:12px;
  5021. color:#FFFFFF;
  5022. }
  5023. #u8566 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:351px;
  5027. top:268px;
  5028. width:140px;
  5029. height:6px;
  5030. display:flex;
  5031. transition:none;
  5032. transform-origin:50% 50%;
  5033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:12px;
  5037. color:#FFFFFF;
  5038. }
  5039. #u8566 .text {
  5040. position:absolute;
  5041. align-self:center;
  5042. padding:8px 15px 8px 15px;
  5043. box-sizing:border-box;
  5044. width:100%;
  5045. }
  5046. #u8566_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. visibility:hidden;
  5051. }
  5052. #u8567 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:480px;
  5056. top:264px;
  5057. width:14px;
  5058. height:14px;
  5059. display:flex;
  5060. transition:none;
  5061. }
  5062. #u8567 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 2px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u8567_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:-3px;
  5073. top:-3px;
  5074. width:20px;
  5075. height:20px;
  5076. }
  5077. #u8567_text {
  5078. border-width:0px;
  5079. word-wrap:break-word;
  5080. text-transform:none;
  5081. visibility:hidden;
  5082. }
  5083. #u8568 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:0px;
  5088. width:0px;
  5089. height:0px;
  5090. }
  5091. #u8569 {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:1550px;
  5095. top:67px;
  5096. width:18px;
  5097. height:18px;
  5098. display:flex;
  5099. transition:none;
  5100. }
  5101. #u8569 .text {
  5102. position:absolute;
  5103. align-self:center;
  5104. padding:2px 2px 2px 2px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u8569_img {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:18px;
  5114. height:18px;
  5115. }
  5116. #u8569_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. visibility:hidden;
  5121. }
  5122. #u8570 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:1535px;
  5126. top:69px;
  5127. width:1px;
  5128. height:14px;
  5129. display:flex;
  5130. transition:none;
  5131. }
  5132. #u8570 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 2px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u8570_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:2px;
  5145. height:15px;
  5146. }
  5147. #u8570_text {
  5148. border-width:0px;
  5149. word-wrap:break-word;
  5150. text-transform:none;
  5151. visibility:hidden;
  5152. }
  5153. #u8571 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:0px;
  5157. top:0px;
  5158. width:0px;
  5159. height:0px;
  5160. }
  5161. #u8572 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1458px;
  5165. top:66px;
  5166. width:9px;
  5167. height:9px;
  5168. display:flex;
  5169. transition:none;
  5170. }
  5171. #u8572 .text {
  5172. position:absolute;
  5173. align-self:center;
  5174. padding:2px 2px 2px 2px;
  5175. box-sizing:border-box;
  5176. width:100%;
  5177. }
  5178. #u8572_img {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:9px;
  5184. height:9px;
  5185. }
  5186. #u8572_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u8573 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:1470px;
  5196. top:66px;
  5197. width:9px;
  5198. height:9px;
  5199. display:flex;
  5200. transition:none;
  5201. }
  5202. #u8573 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:2px 2px 2px 2px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u8573_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:9px;
  5215. height:9px;
  5216. }
  5217. #u8573_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u8574 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:1458px;
  5227. top:78px;
  5228. width:9px;
  5229. height:9px;
  5230. display:flex;
  5231. transition:none;
  5232. }
  5233. #u8574 .text {
  5234. position:absolute;
  5235. align-self:center;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u8574_img {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:9px;
  5246. height:9px;
  5247. }
  5248. #u8574_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u8575 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:1470px;
  5258. top:78px;
  5259. width:9px;
  5260. height:9px;
  5261. display:flex;
  5262. transition:none;
  5263. }
  5264. #u8575 .text {
  5265. position:absolute;
  5266. align-self:center;
  5267. padding:2px 2px 2px 2px;
  5268. box-sizing:border-box;
  5269. width:100%;
  5270. }
  5271. #u8575_img {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:0px;
  5276. width:9px;
  5277. height:9px;
  5278. }
  5279. #u8575_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u8576 {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:0px;
  5291. height:0px;
  5292. }
  5293. #u8577 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1418px;
  5297. top:66px;
  5298. width:6px;
  5299. height:6px;
  5300. display:flex;
  5301. transition:none;
  5302. }
  5303. #u8577 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u8577_img {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:6px;
  5316. height:6px;
  5317. }
  5318. #u8577_text {
  5319. border-width:0px;
  5320. word-wrap:break-word;
  5321. text-transform:none;
  5322. visibility:hidden;
  5323. }
  5324. #u8578 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:1425px;
  5328. top:66px;
  5329. width:6px;
  5330. height:6px;
  5331. display:flex;
  5332. transition:none;
  5333. }
  5334. #u8578 .text {
  5335. position:absolute;
  5336. align-self:center;
  5337. padding:2px 2px 2px 2px;
  5338. box-sizing:border-box;
  5339. width:100%;
  5340. }
  5341. #u8578_img {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:6px;
  5347. height:6px;
  5348. }
  5349. #u8578_text {
  5350. border-width:0px;
  5351. word-wrap:break-word;
  5352. text-transform:none;
  5353. visibility:hidden;
  5354. }
  5355. #u8579 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:1432px;
  5359. top:66px;
  5360. width:6px;
  5361. height:6px;
  5362. display:flex;
  5363. transition:none;
  5364. }
  5365. #u8579 .text {
  5366. position:absolute;
  5367. align-self:center;
  5368. padding:2px 2px 2px 2px;
  5369. box-sizing:border-box;
  5370. width:100%;
  5371. }
  5372. #u8579_img {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:6px;
  5378. height:6px;
  5379. }
  5380. #u8579_text {
  5381. border-width:0px;
  5382. word-wrap:break-word;
  5383. text-transform:none;
  5384. visibility:hidden;
  5385. }
  5386. #u8580 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:1418px;
  5390. top:73px;
  5391. width:6px;
  5392. height:6px;
  5393. display:flex;
  5394. transition:none;
  5395. }
  5396. #u8580 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 2px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u8580_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:6px;
  5409. height:6px;
  5410. }
  5411. #u8580_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u8581 {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:1425px;
  5421. top:73px;
  5422. width:6px;
  5423. height:6px;
  5424. display:flex;
  5425. transition:none;
  5426. }
  5427. #u8581 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u8581_img {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:6px;
  5440. height:6px;
  5441. }
  5442. #u8581_text {
  5443. border-width:0px;
  5444. word-wrap:break-word;
  5445. text-transform:none;
  5446. visibility:hidden;
  5447. }
  5448. #u8582 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:1432px;
  5452. top:73px;
  5453. width:6px;
  5454. height:6px;
  5455. display:flex;
  5456. transition:none;
  5457. }
  5458. #u8582 .text {
  5459. position:absolute;
  5460. align-self:center;
  5461. padding:2px 2px 2px 2px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u8582_img {
  5466. border-width:0px;
  5467. position:absolute;
  5468. left:0px;
  5469. top:0px;
  5470. width:6px;
  5471. height:6px;
  5472. }
  5473. #u8582_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. visibility:hidden;
  5478. }
  5479. #u8583 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:1418px;
  5483. top:80px;
  5484. width:6px;
  5485. height:6px;
  5486. display:flex;
  5487. transition:none;
  5488. }
  5489. #u8583 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u8583_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:6px;
  5502. height:6px;
  5503. }
  5504. #u8583_text {
  5505. border-width:0px;
  5506. word-wrap:break-word;
  5507. text-transform:none;
  5508. visibility:hidden;
  5509. }
  5510. #u8584 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:1425px;
  5514. top:80px;
  5515. width:6px;
  5516. height:6px;
  5517. display:flex;
  5518. transition:none;
  5519. }
  5520. #u8584 .text {
  5521. position:absolute;
  5522. align-self:center;
  5523. padding:2px 2px 2px 2px;
  5524. box-sizing:border-box;
  5525. width:100%;
  5526. }
  5527. #u8584_img {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:6px;
  5533. height:6px;
  5534. }
  5535. #u8584_text {
  5536. border-width:0px;
  5537. word-wrap:break-word;
  5538. text-transform:none;
  5539. visibility:hidden;
  5540. }
  5541. #u8585 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:1432px;
  5545. top:80px;
  5546. width:6px;
  5547. height:6px;
  5548. display:flex;
  5549. transition:none;
  5550. }
  5551. #u8585 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u8585_img {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:6px;
  5564. height:6px;
  5565. }
  5566. #u8585_text {
  5567. border-width:0px;
  5568. word-wrap:break-word;
  5569. text-transform:none;
  5570. visibility:hidden;
  5571. }
  5572. #u8586 {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:0px;
  5578. height:0px;
  5579. }
  5580. #u8587 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:1378px;
  5584. top:67px;
  5585. width:4px;
  5586. height:4px;
  5587. display:flex;
  5588. transition:none;
  5589. }
  5590. #u8587 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 2px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u8587_img {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:4px;
  5603. height:4px;
  5604. }
  5605. #u8587_text {
  5606. border-width:0px;
  5607. word-wrap:break-word;
  5608. text-transform:none;
  5609. visibility:hidden;
  5610. }
  5611. #u8588 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:1383px;
  5615. top:67px;
  5616. width:4px;
  5617. height:4px;
  5618. display:flex;
  5619. transition:none;
  5620. }
  5621. #u8588 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:2px 2px 2px 2px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u8588_img {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:4px;
  5634. height:4px;
  5635. }
  5636. #u8588_text {
  5637. border-width:0px;
  5638. word-wrap:break-word;
  5639. text-transform:none;
  5640. visibility:hidden;
  5641. }
  5642. #u8589 {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:1388px;
  5646. top:67px;
  5647. width:4px;
  5648. height:4px;
  5649. display:flex;
  5650. transition:none;
  5651. }
  5652. #u8589 .text {
  5653. position:absolute;
  5654. align-self:center;
  5655. padding:2px 2px 2px 2px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u8589_img {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:4px;
  5665. height:4px;
  5666. }
  5667. #u8589_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u8590 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:1393px;
  5677. top:67px;
  5678. width:4px;
  5679. height:4px;
  5680. display:flex;
  5681. transition:none;
  5682. }
  5683. #u8590 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 2px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u8590_img {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:4px;
  5696. height:4px;
  5697. }
  5698. #u8590_text {
  5699. border-width:0px;
  5700. word-wrap:break-word;
  5701. text-transform:none;
  5702. visibility:hidden;
  5703. }
  5704. #u8591 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:1378px;
  5708. top:72px;
  5709. width:4px;
  5710. height:4px;
  5711. display:flex;
  5712. transition:none;
  5713. }
  5714. #u8591 .text {
  5715. position:absolute;
  5716. align-self:center;
  5717. padding:2px 2px 2px 2px;
  5718. box-sizing:border-box;
  5719. width:100%;
  5720. }
  5721. #u8591_img {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:4px;
  5727. height:4px;
  5728. }
  5729. #u8591_text {
  5730. border-width:0px;
  5731. word-wrap:break-word;
  5732. text-transform:none;
  5733. visibility:hidden;
  5734. }
  5735. #u8592 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:1383px;
  5739. top:72px;
  5740. width:4px;
  5741. height:4px;
  5742. display:flex;
  5743. transition:none;
  5744. }
  5745. #u8592 .text {
  5746. position:absolute;
  5747. align-self:center;
  5748. padding:2px 2px 2px 2px;
  5749. box-sizing:border-box;
  5750. width:100%;
  5751. }
  5752. #u8592_img {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:4px;
  5758. height:4px;
  5759. }
  5760. #u8592_text {
  5761. border-width:0px;
  5762. word-wrap:break-word;
  5763. text-transform:none;
  5764. visibility:hidden;
  5765. }
  5766. #u8593 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:1388px;
  5770. top:72px;
  5771. width:4px;
  5772. height:4px;
  5773. display:flex;
  5774. transition:none;
  5775. }
  5776. #u8593 .text {
  5777. position:absolute;
  5778. align-self:center;
  5779. padding:2px 2px 2px 2px;
  5780. box-sizing:border-box;
  5781. width:100%;
  5782. }
  5783. #u8593_img {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:4px;
  5789. height:4px;
  5790. }
  5791. #u8593_text {
  5792. border-width:0px;
  5793. word-wrap:break-word;
  5794. text-transform:none;
  5795. visibility:hidden;
  5796. }
  5797. #u8594 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:1393px;
  5801. top:72px;
  5802. width:4px;
  5803. height:4px;
  5804. display:flex;
  5805. transition:none;
  5806. }
  5807. #u8594 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:2px 2px 2px 2px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u8594_img {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:4px;
  5820. height:4px;
  5821. }
  5822. #u8594_text {
  5823. border-width:0px;
  5824. word-wrap:break-word;
  5825. text-transform:none;
  5826. visibility:hidden;
  5827. }
  5828. #u8595 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1378px;
  5832. top:77px;
  5833. width:4px;
  5834. height:4px;
  5835. display:flex;
  5836. transition:none;
  5837. }
  5838. #u8595 .text {
  5839. position:absolute;
  5840. align-self:center;
  5841. padding:2px 2px 2px 2px;
  5842. box-sizing:border-box;
  5843. width:100%;
  5844. }
  5845. #u8595_img {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:4px;
  5851. height:4px;
  5852. }
  5853. #u8595_text {
  5854. border-width:0px;
  5855. word-wrap:break-word;
  5856. text-transform:none;
  5857. visibility:hidden;
  5858. }
  5859. #u8596 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:1383px;
  5863. top:77px;
  5864. width:4px;
  5865. height:4px;
  5866. display:flex;
  5867. transition:none;
  5868. }
  5869. #u8596 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:2px 2px 2px 2px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u8596_img {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:4px;
  5882. height:4px;
  5883. }
  5884. #u8596_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. visibility:hidden;
  5889. }
  5890. #u8597 {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:1388px;
  5894. top:77px;
  5895. width:4px;
  5896. height:4px;
  5897. display:flex;
  5898. transition:none;
  5899. }
  5900. #u8597 .text {
  5901. position:absolute;
  5902. align-self:center;
  5903. padding:2px 2px 2px 2px;
  5904. box-sizing:border-box;
  5905. width:100%;
  5906. }
  5907. #u8597_img {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:4px;
  5913. height:4px;
  5914. }
  5915. #u8597_text {
  5916. border-width:0px;
  5917. word-wrap:break-word;
  5918. text-transform:none;
  5919. visibility:hidden;
  5920. }
  5921. #u8598 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:1393px;
  5925. top:77px;
  5926. width:4px;
  5927. height:4px;
  5928. display:flex;
  5929. transition:none;
  5930. }
  5931. #u8598 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 2px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u8598_img {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:0px;
  5942. top:0px;
  5943. width:4px;
  5944. height:4px;
  5945. }
  5946. #u8598_text {
  5947. border-width:0px;
  5948. word-wrap:break-word;
  5949. text-transform:none;
  5950. visibility:hidden;
  5951. }
  5952. #u8599 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:1378px;
  5956. top:82px;
  5957. width:4px;
  5958. height:4px;
  5959. display:flex;
  5960. transition:none;
  5961. }
  5962. #u8599 .text {
  5963. position:absolute;
  5964. align-self:center;
  5965. padding:2px 2px 2px 2px;
  5966. box-sizing:border-box;
  5967. width:100%;
  5968. }
  5969. #u8599_img {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:4px;
  5975. height:4px;
  5976. }
  5977. #u8599_text {
  5978. border-width:0px;
  5979. word-wrap:break-word;
  5980. text-transform:none;
  5981. visibility:hidden;
  5982. }
  5983. #u8600 {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:1383px;
  5987. top:82px;
  5988. width:4px;
  5989. height:4px;
  5990. display:flex;
  5991. transition:none;
  5992. }
  5993. #u8600 .text {
  5994. position:absolute;
  5995. align-self:center;
  5996. padding:2px 2px 2px 2px;
  5997. box-sizing:border-box;
  5998. width:100%;
  5999. }
  6000. #u8600_img {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:4px;
  6006. height:4px;
  6007. }
  6008. #u8600_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u8601 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:1388px;
  6018. top:82px;
  6019. width:4px;
  6020. height:4px;
  6021. display:flex;
  6022. transition:none;
  6023. }
  6024. #u8601 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 2px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u8601_img {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:4px;
  6037. height:4px;
  6038. }
  6039. #u8601_text {
  6040. border-width:0px;
  6041. word-wrap:break-word;
  6042. text-transform:none;
  6043. visibility:hidden;
  6044. }
  6045. #u8602 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:1393px;
  6049. top:82px;
  6050. width:4px;
  6051. height:4px;
  6052. display:flex;
  6053. transition:none;
  6054. }
  6055. #u8602 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:2px 2px 2px 2px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u8602_img {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:4px;
  6068. height:4px;
  6069. }
  6070. #u8602_text {
  6071. border-width:0px;
  6072. word-wrap:break-word;
  6073. text-transform:none;
  6074. visibility:hidden;
  6075. }
  6076. #u8603 {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:1500px;
  6080. top:66px;
  6081. width:20px;
  6082. height:20px;
  6083. display:flex;
  6084. transition:none;
  6085. }
  6086. #u8603 .text {
  6087. position:absolute;
  6088. align-self:center;
  6089. padding:2px 2px 2px 2px;
  6090. box-sizing:border-box;
  6091. width:100%;
  6092. }
  6093. #u8603_img {
  6094. border-width:0px;
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:20px;
  6099. height:20px;
  6100. }
  6101. #u8603_text {
  6102. border-width:0px;
  6103. word-wrap:break-word;
  6104. text-transform:none;
  6105. visibility:hidden;
  6106. }
  6107. #u8604 {
  6108. border-width:0px;
  6109. position:absolute;
  6110. left:0px;
  6111. top:0px;
  6112. width:0px;
  6113. height:0px;
  6114. }
  6115. #u8605_div {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:89px;
  6121. height:30px;
  6122. background:inherit;
  6123. background-color:rgba(255, 255, 255, 1);
  6124. box-sizing:border-box;
  6125. border-width:1px;
  6126. border-style:solid;
  6127. border-color:rgba(215, 215, 215, 1);
  6128. border-radius:4px;
  6129. filter:drop-shadow(none);
  6130. transition:none;
  6131. font-size:14px;
  6132. }
  6133. #u8605 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:352px;
  6137. top:323px;
  6138. width:89px;
  6139. height:30px;
  6140. display:flex;
  6141. transition:none;
  6142. transform-origin:50% 50%;
  6143. font-size:14px;
  6144. }
  6145. #u8605 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u8605_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u8606_input {
  6159. position:absolute;
  6160. left:0px;
  6161. top:0px;
  6162. width:85px;
  6163. height:23px;
  6164. padding:2px 2px 2px 2px;
  6165. font-family:'ArialMT', 'Arial', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:14px;
  6169. letter-spacing:normal;
  6170. color:#AAAAAA;
  6171. vertical-align:none;
  6172. text-align:left;
  6173. text-transform:none;
  6174. background-color:transparent;
  6175. border-color:transparent;
  6176. }
  6177. #u8606_input.disabled {
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:85px;
  6182. height:23px;
  6183. padding:2px 2px 2px 2px;
  6184. font-family:'ArialMT', 'Arial', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:14px;
  6188. letter-spacing:normal;
  6189. color:#AAAAAA;
  6190. vertical-align:none;
  6191. text-align:left;
  6192. text-transform:none;
  6193. background-color:transparent;
  6194. border-color:transparent;
  6195. }
  6196. #u8606_div {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:85px;
  6202. height:23px;
  6203. background:inherit;
  6204. background-color:rgba(255, 255, 255, 1);
  6205. border-radius:0px;
  6206. filter:drop-shadow(none);
  6207. transition:none;
  6208. font-size:14px;
  6209. color:#AAAAAA;
  6210. }
  6211. #u8606 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:355px;
  6215. top:325px;
  6216. width:85px;
  6217. height:23px;
  6218. display:flex;
  6219. transition:none;
  6220. transform-origin:50% 50%;
  6221. font-size:14px;
  6222. color:#AAAAAA;
  6223. }
  6224. #u8606 .text {
  6225. position:absolute;
  6226. align-self:flex-start;
  6227. padding:2px 2px 2px 2px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u8606_div.disabled {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:85px;
  6237. height:23px;
  6238. background:inherit;
  6239. background-color:rgba(240, 240, 240, 1);
  6240. border-radius:0px;
  6241. filter:drop-shadow(none);
  6242. transition:none;
  6243. font-size:14px;
  6244. color:#AAAAAA;
  6245. }
  6246. #u8606.disabled {
  6247. }
  6248. .u8606_input_option {
  6249. font-size:14px;
  6250. }
  6251. #u8607_div {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:57px;
  6257. height:30px;
  6258. background:inherit;
  6259. background-color:rgba(255, 255, 255, 0);
  6260. border-radius:0px;
  6261. filter:drop-shadow(none);
  6262. transition:none;
  6263. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6264. font-weight:500;
  6265. font-style:normal;
  6266. font-size:14px;
  6267. color:#000000;
  6268. line-height:30px;
  6269. }
  6270. #u8607 {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:351px;
  6274. top:292px;
  6275. width:57px;
  6276. height:30px;
  6277. display:flex;
  6278. transition:none;
  6279. transform-origin:50% 50%;
  6280. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6281. font-weight:500;
  6282. font-style:normal;
  6283. font-size:14px;
  6284. color:#000000;
  6285. line-height:30px;
  6286. }
  6287. #u8607 .text {
  6288. position:absolute;
  6289. align-self:flex-start;
  6290. padding:0px 0px 0px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u8607_text {
  6295. border-width:0px;
  6296. white-space:nowrap;
  6297. text-transform:none;
  6298. }
  6299. #u8608 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:0px;
  6305. height:0px;
  6306. }
  6307. #u8609_div {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:113px;
  6313. height:30px;
  6314. background:inherit;
  6315. background-color:rgba(255, 255, 255, 1);
  6316. box-sizing:border-box;
  6317. border-width:1px;
  6318. border-style:solid;
  6319. border-color:rgba(201, 201, 201, 1);
  6320. border-radius:4px;
  6321. filter:drop-shadow(none);
  6322. transition:none;
  6323. font-family:"Microsoft YaHei", sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:14px;
  6327. color:#CCCCCC;
  6328. text-align:left;
  6329. }
  6330. #u8609 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:448px;
  6334. top:323px;
  6335. width:113px;
  6336. height:30px;
  6337. display:flex;
  6338. transition:none;
  6339. transform-origin:50% 50%;
  6340. font-family:"Microsoft YaHei", sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. color:#CCCCCC;
  6345. text-align:left;
  6346. }
  6347. #u8609 .text {
  6348. position:absolute;
  6349. align-self:center;
  6350. padding:2px 8px 2px 8px;
  6351. box-sizing:border-box;
  6352. width:100%;
  6353. }
  6354. #u8609_text {
  6355. border-width:0px;
  6356. word-wrap:break-word;
  6357. text-transform:none;
  6358. visibility:hidden;
  6359. }
  6360. #u8610_input {
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:103px;
  6365. height:25px;
  6366. padding:2px 2px 2px 2px;
  6367. font-family:"Microsoft YaHei", sans-serif;
  6368. font-weight:400;
  6369. font-style:normal;
  6370. font-size:10px;
  6371. letter-spacing:normal;
  6372. color:#000000;
  6373. vertical-align:none;
  6374. text-align:left;
  6375. text-transform:none;
  6376. background-color:transparent;
  6377. border-color:transparent;
  6378. }
  6379. #u8610_input.hint {
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:103px;
  6384. height:25px;
  6385. padding:2px 2px 2px 2px;
  6386. font-family:"Microsoft YaHei", sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:12px;
  6390. letter-spacing:normal;
  6391. color:#AAAAAA;
  6392. vertical-align:none;
  6393. text-align:left;
  6394. text-transform:none;
  6395. background-color:transparent;
  6396. border-color:transparent;
  6397. }
  6398. #u8610_input.disabled {
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:103px;
  6403. height:25px;
  6404. padding:2px 2px 2px 2px;
  6405. font-family:"Microsoft YaHei", sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:10px;
  6409. letter-spacing:normal;
  6410. color:#000000;
  6411. vertical-align:none;
  6412. text-align:left;
  6413. text-transform:none;
  6414. background-color:transparent;
  6415. border-color:transparent;
  6416. }
  6417. #u8610_input.hint.disabled {
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:103px;
  6422. height:25px;
  6423. padding:2px 2px 2px 2px;
  6424. font-family:"Microsoft YaHei", sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. letter-spacing:normal;
  6429. color:#AAAAAA;
  6430. vertical-align:none;
  6431. text-align:left;
  6432. text-transform:none;
  6433. background-color:transparent;
  6434. border-color:transparent;
  6435. }
  6436. #u8610_div {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:103px;
  6442. height:25px;
  6443. background:inherit;
  6444. background-color:rgba(255, 255, 255, 1);
  6445. border-radius:0px;
  6446. filter:drop-shadow(none);
  6447. transition:none;
  6448. font-family:"Microsoft YaHei", sans-serif;
  6449. font-weight:400;
  6450. font-style:normal;
  6451. font-size:10px;
  6452. }
  6453. #u8610 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:454px;
  6457. top:324px;
  6458. width:103px;
  6459. height:25px;
  6460. display:flex;
  6461. transition:none;
  6462. transform-origin:50% 50%;
  6463. font-family:"Microsoft YaHei", sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:10px;
  6467. }
  6468. #u8610 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 2px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u8610_div.hint {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:103px;
  6481. height:25px;
  6482. background:inherit;
  6483. background-color:rgba(255, 255, 255, 1);
  6484. border-radius:0px;
  6485. filter:drop-shadow(none);
  6486. transition:none;
  6487. font-family:"Microsoft YaHei", sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:10px;
  6491. }
  6492. #u8610.hint {
  6493. }
  6494. #u8610_div.disabled {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:103px;
  6500. height:25px;
  6501. background:inherit;
  6502. background-color:rgba(240, 240, 240, 1);
  6503. border-radius:0px;
  6504. filter:drop-shadow(none);
  6505. transition:none;
  6506. font-family:"Microsoft YaHei", sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:10px;
  6510. }
  6511. #u8610.disabled {
  6512. }
  6513. #u8610_div.hint.disabled {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:103px;
  6519. height:25px;
  6520. background:inherit;
  6521. background-color:rgba(240, 240, 240, 1);
  6522. border-radius:0px;
  6523. filter:drop-shadow(none);
  6524. transition:none;
  6525. font-family:"Microsoft YaHei", sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:10px;
  6529. }
  6530. #u8610.hint.disabled {
  6531. }
  6532. #u8611_div {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:50px;
  6538. height:30px;
  6539. background:inherit;
  6540. background-color:rgba(255, 138, 5, 1);
  6541. border-radius:4px;
  6542. filter:drop-shadow(none);
  6543. transition:none;
  6544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:12px;
  6548. color:#FFFFFF;
  6549. }
  6550. #u8611 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:352px;
  6554. top:363px;
  6555. width:50px;
  6556. height:30px;
  6557. display:flex;
  6558. transition:none;
  6559. transform-origin:50% 50%;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:12px;
  6564. color:#FFFFFF;
  6565. }
  6566. #u8611 .text {
  6567. position:absolute;
  6568. align-self:center;
  6569. padding:5px 0px 5px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u8611_text {
  6574. border-width:0px;
  6575. word-wrap:break-word;
  6576. text-transform:none;
  6577. }
  6578. #u8612_div {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:50px;
  6584. height:30px;
  6585. background:inherit;
  6586. background-color:rgba(255, 138, 5, 1);
  6587. border-radius:4px;
  6588. filter:drop-shadow(none);
  6589. transition:none;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:12px;
  6594. color:#FFFFFF;
  6595. }
  6596. #u8612 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:412px;
  6600. top:363px;
  6601. width:50px;
  6602. height:30px;
  6603. display:flex;
  6604. transition:none;
  6605. transform-origin:50% 50%;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:12px;
  6610. color:#FFFFFF;
  6611. }
  6612. #u8612 .text {
  6613. position:absolute;
  6614. align-self:center;
  6615. padding:5px 0px 5px 0px;
  6616. box-sizing:border-box;
  6617. width:100%;
  6618. }
  6619. #u8612_text {
  6620. border-width:0px;
  6621. word-wrap:break-word;
  6622. text-transform:none;
  6623. }
  6624. #u8613 {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:120px;
  6628. top:50px;
  6629. width:200px;
  6630. height:1187px;
  6631. }
  6632. #u8614 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:0px;
  6636. top:0px;
  6637. width:0px;
  6638. height:0px;
  6639. }
  6640. #u8615_div {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:0px;
  6644. top:0px;
  6645. width:200px;
  6646. height:1187px;
  6647. background:inherit;
  6648. background-color:rgba(255, 255, 255, 1);
  6649. border-radius:0px;
  6650. filter:drop-shadow(none);
  6651. transition:none;
  6652. }
  6653. #u8615 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:200px;
  6659. height:1187px;
  6660. display:flex;
  6661. transition:none;
  6662. transform-origin:50% 50%;
  6663. }
  6664. #u8615 .text {
  6665. position:absolute;
  6666. align-self:center;
  6667. padding:2px 2px 2px 2px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u8615_text {
  6672. border-width:0px;
  6673. word-wrap:break-word;
  6674. text-transform:none;
  6675. visibility:hidden;
  6676. }
  6677. #u8616_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:200px;
  6683. height:60px;
  6684. background:inherit;
  6685. background-color:rgba(224, 231, 247, 1);
  6686. border-radius:0px;
  6687. filter:drop-shadow(none);
  6688. transition:none;
  6689. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6690. font-weight:500;
  6691. font-style:normal;
  6692. font-size:18px;
  6693. }
  6694. #u8616 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:200px;
  6700. height:60px;
  6701. display:flex;
  6702. transition:none;
  6703. transform-origin:50% 50%;
  6704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6705. font-weight:500;
  6706. font-style:normal;
  6707. font-size:18px;
  6708. }
  6709. #u8616 .text {
  6710. position:absolute;
  6711. align-self:center;
  6712. padding:0px 0px 0px 20px;
  6713. box-sizing:border-box;
  6714. width:100%;
  6715. }
  6716. #u8616_text {
  6717. border-width:0px;
  6718. word-wrap:break-word;
  6719. text-transform:none;
  6720. }
  6721. #u8617_div {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:65px;
  6727. height:22px;
  6728. background:inherit;
  6729. background-color:rgba(255, 255, 255, 0);
  6730. border-radius:0px;
  6731. filter:drop-shadow(none);
  6732. transition:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:16px;
  6737. }
  6738. #u8617 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:27px;
  6742. top:154px;
  6743. width:65px;
  6744. height:22px;
  6745. display:flex;
  6746. transition:none;
  6747. transform-origin:50% 50%;
  6748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6749. font-weight:400;
  6750. font-style:normal;
  6751. font-size:16px;
  6752. }
  6753. #u8617 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:0px 0px 0px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u8617_text {
  6761. border-width:0px;
  6762. white-space:nowrap;
  6763. text-transform:none;
  6764. }
  6765. #u8618_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:49px;
  6771. height:17px;
  6772. background:inherit;
  6773. background-color:rgba(255, 255, 255, 0);
  6774. border-radius:0px;
  6775. filter:drop-shadow(none);
  6776. transition:none;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:12px;
  6781. color:#AAAAAA;
  6782. }
  6783. #u8618 {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:27px;
  6787. top:75px;
  6788. width:49px;
  6789. height:17px;
  6790. display:flex;
  6791. transition:none;
  6792. transform-origin:50% 50%;
  6793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6794. font-weight:400;
  6795. font-style:normal;
  6796. font-size:12px;
  6797. color:#AAAAAA;
  6798. }
  6799. #u8618 .text {
  6800. position:absolute;
  6801. align-self:flex-start;
  6802. padding:0px 0px 0px 0px;
  6803. box-sizing:border-box;
  6804. width:100%;
  6805. }
  6806. #u8618_text {
  6807. border-width:0px;
  6808. white-space:nowrap;
  6809. text-transform:none;
  6810. }
  6811. #u8619_div {
  6812. border-width:0px;
  6813. position:absolute;
  6814. left:0px;
  6815. top:0px;
  6816. width:49px;
  6817. height:17px;
  6818. background:inherit;
  6819. background-color:rgba(255, 255, 255, 0);
  6820. border-radius:0px;
  6821. filter:drop-shadow(none);
  6822. transition:none;
  6823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:12px;
  6827. color:#AAAAAA;
  6828. }
  6829. #u8619 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:27px;
  6833. top:411px;
  6834. width:49px;
  6835. height:17px;
  6836. display:flex;
  6837. transition:none;
  6838. transform-origin:50% 50%;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:12px;
  6843. color:#AAAAAA;
  6844. }
  6845. #u8619 .text {
  6846. position:absolute;
  6847. align-self:flex-start;
  6848. padding:0px 0px 0px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u8619_text {
  6853. border-width:0px;
  6854. white-space:nowrap;
  6855. text-transform:none;
  6856. }
  6857. #u8620 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:389px;
  6862. width:200px;
  6863. height:1px;
  6864. display:flex;
  6865. transition:none;
  6866. }
  6867. #u8620 .text {
  6868. position:absolute;
  6869. align-self:center;
  6870. padding:2px 2px 2px 2px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u8620_img {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:201px;
  6880. height:2px;
  6881. }
  6882. #u8620_text {
  6883. border-width:0px;
  6884. word-wrap:break-word;
  6885. text-transform:none;
  6886. visibility:hidden;
  6887. }
  6888. #u8621_div {
  6889. border-width:0px;
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:65px;
  6894. height:22px;
  6895. background:inherit;
  6896. background-color:rgba(255, 255, 255, 0);
  6897. border-radius:0px;
  6898. filter:drop-shadow(none);
  6899. transition:none;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:16px;
  6904. }
  6905. #u8621 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:27px;
  6909. top:299px;
  6910. width:65px;
  6911. height:22px;
  6912. display:flex;
  6913. transition:none;
  6914. transform-origin:50% 50%;
  6915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:16px;
  6919. }
  6920. #u8621 .text {
  6921. position:absolute;
  6922. align-self:flex-start;
  6923. padding:0px 0px 0px 0px;
  6924. box-sizing:border-box;
  6925. width:100%;
  6926. }
  6927. #u8621_text {
  6928. border-width:0px;
  6929. white-space:nowrap;
  6930. text-transform:none;
  6931. }
  6932. #u8622_div {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:0px;
  6936. top:0px;
  6937. width:49px;
  6938. height:17px;
  6939. background:inherit;
  6940. background-color:rgba(255, 255, 255, 0);
  6941. border-radius:0px;
  6942. filter:drop-shadow(none);
  6943. transition:none;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:12px;
  6948. color:#AAAAAA;
  6949. }
  6950. #u8622 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:27px;
  6954. top:215px;
  6955. width:49px;
  6956. height:17px;
  6957. display:flex;
  6958. transition:none;
  6959. transform-origin:50% 50%;
  6960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:12px;
  6964. color:#AAAAAA;
  6965. }
  6966. #u8622 .text {
  6967. position:absolute;
  6968. align-self:flex-start;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u8622_text {
  6974. border-width:0px;
  6975. white-space:nowrap;
  6976. text-transform:none;
  6977. }
  6978. #u8623 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:193px;
  6983. width:200px;
  6984. height:1px;
  6985. display:flex;
  6986. transition:none;
  6987. }
  6988. #u8623 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:2px 2px 2px 2px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u8623_img {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:201px;
  7001. height:2px;
  7002. }
  7003. #u8623_text {
  7004. border-width:0px;
  7005. word-wrap:break-word;
  7006. text-transform:none;
  7007. visibility:hidden;
  7008. }
  7009. #u8624_div {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:0px;
  7013. top:0px;
  7014. width:65px;
  7015. height:22px;
  7016. background:inherit;
  7017. background-color:rgba(255, 255, 255, 0);
  7018. border-radius:0px;
  7019. filter:drop-shadow(none);
  7020. transition:none;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:16px;
  7025. }
  7026. #u8624 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:27px;
  7030. top:112px;
  7031. width:65px;
  7032. height:22px;
  7033. display:flex;
  7034. transition:none;
  7035. transform-origin:50% 50%;
  7036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:16px;
  7040. }
  7041. #u8624 .text {
  7042. position:absolute;
  7043. align-self:flex-start;
  7044. padding:0px 0px 0px 0px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u8624_text {
  7049. border-width:0px;
  7050. white-space:nowrap;
  7051. text-transform:none;
  7052. }
  7053. #u8625_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:65px;
  7059. height:22px;
  7060. background:inherit;
  7061. background-color:rgba(255, 255, 255, 0);
  7062. border-radius:0px;
  7063. filter:drop-shadow(none);
  7064. transition:none;
  7065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:16px;
  7069. }
  7070. #u8625 {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:28px;
  7074. top:528px;
  7075. width:65px;
  7076. height:22px;
  7077. display:flex;
  7078. transition:none;
  7079. transform-origin:50% 50%;
  7080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7081. font-weight:400;
  7082. font-style:normal;
  7083. font-size:16px;
  7084. }
  7085. #u8625 .text {
  7086. position:absolute;
  7087. align-self:flex-start;
  7088. padding:0px 0px 0px 0px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u8625_text {
  7093. border-width:0px;
  7094. white-space:nowrap;
  7095. text-transform:none;
  7096. }
  7097. #u8626_div {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:65px;
  7103. height:22px;
  7104. background:inherit;
  7105. background-color:rgba(255, 255, 255, 0);
  7106. border-radius:0px;
  7107. filter:drop-shadow(none);
  7108. transition:none;
  7109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7110. font-weight:400;
  7111. font-style:normal;
  7112. font-size:16px;
  7113. }
  7114. #u8626 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:28px;
  7118. top:486px;
  7119. width:65px;
  7120. height:22px;
  7121. display:flex;
  7122. transition:none;
  7123. transform-origin:50% 50%;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:16px;
  7128. }
  7129. #u8626 .text {
  7130. position:absolute;
  7131. align-self:flex-start;
  7132. padding:0px 0px 0px 0px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u8626_text {
  7137. border-width:0px;
  7138. white-space:nowrap;
  7139. text-transform:none;
  7140. }
  7141. #u8627_div {
  7142. border-width:0px;
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:65px;
  7147. height:22px;
  7148. background:inherit;
  7149. background-color:rgba(255, 255, 255, 0);
  7150. border-radius:0px;
  7151. filter:drop-shadow(none);
  7152. transition:none;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:16px;
  7157. }
  7158. #u8627 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:27px;
  7162. top:341px;
  7163. width:65px;
  7164. height:22px;
  7165. display:flex;
  7166. transition:none;
  7167. transform-origin:50% 50%;
  7168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7169. font-weight:400;
  7170. font-style:normal;
  7171. font-size:16px;
  7172. }
  7173. #u8627 .text {
  7174. position:absolute;
  7175. align-self:flex-start;
  7176. padding:0px 0px 0px 0px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u8627_text {
  7181. border-width:0px;
  7182. white-space:nowrap;
  7183. text-transform:none;
  7184. }
  7185. #u8628_div {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:65px;
  7191. height:22px;
  7192. background:inherit;
  7193. background-color:rgba(255, 255, 255, 0);
  7194. border-radius:0px;
  7195. filter:drop-shadow(none);
  7196. transition:none;
  7197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:16px;
  7201. }
  7202. #u8628 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:27px;
  7206. top:255px;
  7207. width:65px;
  7208. height:22px;
  7209. display:flex;
  7210. transition:none;
  7211. transform-origin:50% 50%;
  7212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7213. font-weight:400;
  7214. font-style:normal;
  7215. font-size:16px;
  7216. }
  7217. #u8628 .text {
  7218. position:absolute;
  7219. align-self:flex-start;
  7220. padding:0px 0px 0px 0px;
  7221. box-sizing:border-box;
  7222. width:100%;
  7223. }
  7224. #u8628_text {
  7225. border-width:0px;
  7226. white-space:nowrap;
  7227. text-transform:none;
  7228. }
  7229. #u8629_div {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:65px;
  7235. height:22px;
  7236. background:inherit;
  7237. background-color:rgba(255, 255, 255, 0);
  7238. border-radius:0px;
  7239. filter:drop-shadow(none);
  7240. transition:none;
  7241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:16px;
  7245. }
  7246. #u8629 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:27px;
  7250. top:448px;
  7251. width:65px;
  7252. height:22px;
  7253. display:flex;
  7254. transition:none;
  7255. transform-origin:50% 50%;
  7256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:16px;
  7260. }
  7261. #u8629 .text {
  7262. position:absolute;
  7263. align-self:flex-start;
  7264. padding:0px 0px 0px 0px;
  7265. box-sizing:border-box;
  7266. width:100%;
  7267. }
  7268. #u8629_text {
  7269. border-width:0px;
  7270. white-space:nowrap;
  7271. text-transform:none;
  7272. }
  7273. #u8630_div {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:0px;
  7277. top:0px;
  7278. width:738px;
  7279. height:130px;
  7280. background:inherit;
  7281. background-color:rgba(255, 255, 255, 0);
  7282. border-top:0px;
  7283. border-right:0px;
  7284. border-bottom:0px;
  7285. border-radius:0px;
  7286. border-top-left-radius:0px;
  7287. border-bottom-left-radius:0px;
  7288. filter:drop-shadow(none);
  7289. transition:none;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:14px;
  7294. color:#D9001B;
  7295. }
  7296. #u8630 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:377px;
  7300. top:1097px;
  7301. width:738px;
  7302. height:130px;
  7303. display:flex;
  7304. transition:none;
  7305. transform-origin:50% 50%;
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:14px;
  7310. color:#D9001B;
  7311. }
  7312. #u8630 .text {
  7313. position:absolute;
  7314. align-self:center;
  7315. padding:5px 0px 5px 0px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u8630_text {
  7320. border-width:0px;
  7321. white-space:nowrap;
  7322. text-transform:none;
  7323. }
  7324. #u8631 {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:351px;
  7328. top:307px;
  7329. width:0px;
  7330. height:0px;
  7331. transition:none;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:12px;
  7336. color:#333333;
  7337. }
  7338. #u8631_seg0 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:-16px;
  7342. top:-5px;
  7343. width:16px;
  7344. height:10px;
  7345. }
  7346. #u8631_seg1 {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:-16px;
  7350. top:-5px;
  7351. width:10px;
  7352. height:865px;
  7353. }
  7354. #u8631_seg2 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:-16px;
  7358. top:850px;
  7359. width:42px;
  7360. height:10px;
  7361. }
  7362. #u8631_seg3 {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:14px;
  7366. top:845px;
  7367. width:20px;
  7368. height:20px;
  7369. }
  7370. #u8631_text {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:-61px;
  7374. top:432px;
  7375. width:100px;
  7376. word-wrap:break-word;
  7377. text-transform:none;
  7378. visibility:hidden;
  7379. }
  7380. #u8632 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:351px;
  7384. top:114px;
  7385. width:0px;
  7386. height:0px;
  7387. transition:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:12px;
  7392. color:#333333;
  7393. }
  7394. #u8632_seg0 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:-16px;
  7398. top:-5px;
  7399. width:16px;
  7400. height:10px;
  7401. }
  7402. #u8632_seg1 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:-16px;
  7406. top:-5px;
  7407. width:10px;
  7408. height:1058px;
  7409. }
  7410. #u8632_seg2 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:-16px;
  7414. top:1043px;
  7415. width:42px;
  7416. height:10px;
  7417. }
  7418. #u8632_seg3 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:14px;
  7422. top:1038px;
  7423. width:20px;
  7424. height:20px;
  7425. }
  7426. #u8632_text {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:-61px;
  7430. top:529px;
  7431. width:100px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. visibility:hidden;
  7435. }
  7436. #u8633_div {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:330px;
  7442. height:241px;
  7443. background:inherit;
  7444. background-color:rgba(255, 255, 255, 0);
  7445. box-sizing:border-box;
  7446. border-width:3px;
  7447. border-style:solid;
  7448. border-color:rgba(24, 144, 255, 1);
  7449. border-radius:0px;
  7450. filter:drop-shadow(none);
  7451. transition:none;
  7452. }
  7453. #u8633 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:911px;
  7457. top:349px;
  7458. width:330px;
  7459. height:241px;
  7460. display:flex;
  7461. transition:none;
  7462. transform-origin:50% 50%;
  7463. }
  7464. #u8633 .text {
  7465. position:absolute;
  7466. align-self:center;
  7467. padding:2px 2px 2px 2px;
  7468. box-sizing:border-box;
  7469. width:100%;
  7470. }
  7471. #u8633_text {
  7472. border-width:0px;
  7473. word-wrap:break-word;
  7474. text-transform:none;
  7475. visibility:hidden;
  7476. }
  7477. #u8634 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:1623px;
  7481. top:0px;
  7482. width:1600px;
  7483. height:1250px;
  7484. }
  7485. #u8635_div {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:1480px;
  7491. height:1200px;
  7492. background:inherit;
  7493. background-color:rgba(242, 242, 242, 1);
  7494. border-radius:0px;
  7495. filter:drop-shadow(none);
  7496. transition:none;
  7497. }
  7498. #u8635 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:120px;
  7502. top:50px;
  7503. width:1480px;
  7504. height:1200px;
  7505. display:flex;
  7506. transition:none;
  7507. transform-origin:50% 50%;
  7508. }
  7509. #u8635 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:2px 2px 2px 2px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u8635_text {
  7517. border-width:0px;
  7518. word-wrap:break-word;
  7519. text-transform:none;
  7520. visibility:hidden;
  7521. }
  7522. #u8636_div {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:129px;
  7528. height:22px;
  7529. background:inherit;
  7530. background-color:rgba(255, 255, 255, 0);
  7531. border-radius:0px;
  7532. filter:drop-shadow(none);
  7533. transition:none;
  7534. font-size:16px;
  7535. color:#FFFFFF;
  7536. }
  7537. #u8636 {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:49px;
  7541. top:14px;
  7542. width:129px;
  7543. height:22px;
  7544. display:flex;
  7545. transition:none;
  7546. transform-origin:50% 50%;
  7547. font-size:16px;
  7548. color:#FFFFFF;
  7549. }
  7550. #u8636 .text {
  7551. position:absolute;
  7552. align-self:flex-start;
  7553. padding:0px 0px 0px 0px;
  7554. box-sizing:border-box;
  7555. width:100%;
  7556. }
  7557. #u8636_text {
  7558. border-width:0px;
  7559. white-space:nowrap;
  7560. text-transform:none;
  7561. }
  7562. #u8637_div {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:1600px;
  7568. height:50px;
  7569. background:inherit;
  7570. background-color:rgba(30, 42, 68, 1);
  7571. border-radius:0px;
  7572. filter:drop-shadow(none);
  7573. transition:none;
  7574. color:#AFB3B6;
  7575. }
  7576. #u8637 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:0px;
  7580. top:0px;
  7581. width:1600px;
  7582. height:50px;
  7583. display:flex;
  7584. transition:none;
  7585. transform-origin:50% 50%;
  7586. color:#AFB3B6;
  7587. }
  7588. #u8637 .text {
  7589. position:absolute;
  7590. align-self:center;
  7591. padding:2px 2px 2px 2px;
  7592. box-sizing:border-box;
  7593. width:100%;
  7594. }
  7595. #u8637_text {
  7596. border-width:0px;
  7597. word-wrap:break-word;
  7598. text-transform:none;
  7599. visibility:hidden;
  7600. }
  7601. #u8638 {
  7602. border-width:0px;
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:0px;
  7607. height:0px;
  7608. }
  7609. #u8639 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:19px;
  7613. top:10px;
  7614. width:31px;
  7615. height:31px;
  7616. display:flex;
  7617. transition:none;
  7618. }
  7619. #u8639 .text {
  7620. position:absolute;
  7621. align-self:center;
  7622. padding:2px 2px 2px 2px;
  7623. box-sizing:border-box;
  7624. width:100%;
  7625. }
  7626. #u8639_img {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:31px;
  7632. height:31px;
  7633. }
  7634. #u8639_text {
  7635. border-width:0px;
  7636. word-wrap:break-word;
  7637. text-transform:none;
  7638. }
  7639. #u8640_div {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:0px;
  7643. top:0px;
  7644. width:161px;
  7645. height:22px;
  7646. background:inherit;
  7647. background-color:rgba(255, 255, 255, 0);
  7648. border-radius:0px;
  7649. filter:drop-shadow(none);
  7650. transition:none;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:16px;
  7655. color:#FFFFFF;
  7656. }
  7657. #u8640 {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:62px;
  7661. top:14px;
  7662. width:161px;
  7663. height:22px;
  7664. display:flex;
  7665. transition:none;
  7666. transform-origin:50% 50%;
  7667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7668. font-weight:400;
  7669. font-style:normal;
  7670. font-size:16px;
  7671. color:#FFFFFF;
  7672. }
  7673. #u8640 .text {
  7674. position:absolute;
  7675. align-self:flex-start;
  7676. padding:0px 0px 0px 0px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u8640_text {
  7681. border-width:0px;
  7682. white-space:nowrap;
  7683. text-transform:none;
  7684. }
  7685. #u8641_div {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:120px;
  7691. height:1200px;
  7692. background:inherit;
  7693. background-color:rgba(30, 42, 68, 1);
  7694. border-radius:0px;
  7695. filter:drop-shadow(none);
  7696. transition:none;
  7697. color:#AFB3B6;
  7698. }
  7699. #u8641 {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:0px;
  7703. top:47px;
  7704. width:120px;
  7705. height:1200px;
  7706. display:flex;
  7707. transition:none;
  7708. transform-origin:50% 50%;
  7709. color:#AFB3B6;
  7710. }
  7711. #u8641 .text {
  7712. position:absolute;
  7713. align-self:center;
  7714. padding:2px 2px 2px 2px;
  7715. box-sizing:border-box;
  7716. width:100%;
  7717. }
  7718. #u8641_text {
  7719. border-width:0px;
  7720. word-wrap:break-word;
  7721. text-transform:none;
  7722. visibility:hidden;
  7723. }
  7724. #u8642 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:0px;
  7730. height:0px;
  7731. }
  7732. #u8643_div {
  7733. border-width:0px;
  7734. position:absolute;
  7735. left:0px;
  7736. top:0px;
  7737. width:33px;
  7738. height:22px;
  7739. background:inherit;
  7740. background-color:rgba(255, 255, 255, 0);
  7741. border-radius:0px;
  7742. filter:drop-shadow(none);
  7743. transition:none;
  7744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:16px;
  7748. color:#FFFFFF;
  7749. }
  7750. #u8643 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:39px;
  7754. top:171px;
  7755. width:33px;
  7756. height:22px;
  7757. display:flex;
  7758. transition:none;
  7759. transform-origin:50% 50%;
  7760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. font-size:16px;
  7764. color:#FFFFFF;
  7765. }
  7766. #u8643 .text {
  7767. position:absolute;
  7768. align-self:flex-start;
  7769. padding:0px 0px 0px 0px;
  7770. box-sizing:border-box;
  7771. width:100%;
  7772. }
  7773. #u8643_text {
  7774. border-width:0px;
  7775. white-space:nowrap;
  7776. text-transform:none;
  7777. }
  7778. #u8644 {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:20px;
  7782. top:175px;
  7783. width:14px;
  7784. height:14px;
  7785. display:flex;
  7786. transition:none;
  7787. }
  7788. #u8644 .text {
  7789. position:absolute;
  7790. align-self:center;
  7791. padding:2px 2px 2px 2px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u8644_img {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:14px;
  7801. height:14px;
  7802. }
  7803. #u8644_text {
  7804. border-width:0px;
  7805. word-wrap:break-word;
  7806. text-transform:none;
  7807. visibility:hidden;
  7808. }
  7809. #u8645 {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:0px;
  7813. top:0px;
  7814. width:0px;
  7815. height:0px;
  7816. }
  7817. #u8646_div {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:0px;
  7821. top:0px;
  7822. width:33px;
  7823. height:22px;
  7824. background:inherit;
  7825. background-color:rgba(255, 255, 255, 0);
  7826. border-radius:0px;
  7827. filter:drop-shadow(none);
  7828. transition:none;
  7829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:16px;
  7833. color:#FFFFFF;
  7834. }
  7835. #u8646 {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:39px;
  7839. top:381px;
  7840. width:33px;
  7841. height:22px;
  7842. display:flex;
  7843. transition:none;
  7844. transform-origin:50% 50%;
  7845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7846. font-weight:400;
  7847. font-style:normal;
  7848. font-size:16px;
  7849. color:#FFFFFF;
  7850. }
  7851. #u8646 .text {
  7852. position:absolute;
  7853. align-self:flex-start;
  7854. padding:0px 0px 0px 0px;
  7855. box-sizing:border-box;
  7856. width:100%;
  7857. }
  7858. #u8646_text {
  7859. border-width:0px;
  7860. white-space:nowrap;
  7861. text-transform:none;
  7862. }
  7863. #u8647 {
  7864. border-width:0px;
  7865. position:absolute;
  7866. left:20px;
  7867. top:385px;
  7868. width:14px;
  7869. height:14px;
  7870. display:flex;
  7871. transition:none;
  7872. }
  7873. #u8647 .text {
  7874. position:absolute;
  7875. align-self:center;
  7876. padding:2px 2px 2px 2px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u8647_img {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:14px;
  7886. height:14px;
  7887. }
  7888. #u8647_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. visibility:hidden;
  7893. }
  7894. #u8648 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:0px;
  7900. height:0px;
  7901. }
  7902. #u8649_div {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:0px;
  7906. top:0px;
  7907. width:49px;
  7908. height:22px;
  7909. background:inherit;
  7910. background-color:rgba(255, 255, 255, 0);
  7911. border-radius:0px;
  7912. filter:drop-shadow(none);
  7913. transition:none;
  7914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. font-size:16px;
  7918. color:#FFFFFF;
  7919. }
  7920. #u8649 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:39px;
  7924. top:133px;
  7925. width:49px;
  7926. height:22px;
  7927. display:flex;
  7928. transition:none;
  7929. transform-origin:50% 50%;
  7930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:16px;
  7934. color:#FFFFFF;
  7935. }
  7936. #u8649 .text {
  7937. position:absolute;
  7938. align-self:flex-start;
  7939. padding:0px 0px 0px 0px;
  7940. box-sizing:border-box;
  7941. width:100%;
  7942. }
  7943. #u8649_text {
  7944. border-width:0px;
  7945. white-space:nowrap;
  7946. text-transform:none;
  7947. }
  7948. #u8650 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:20px;
  7952. top:137px;
  7953. width:14px;
  7954. height:14px;
  7955. display:flex;
  7956. transition:none;
  7957. }
  7958. #u8650 .text {
  7959. position:absolute;
  7960. align-self:center;
  7961. padding:2px 2px 2px 2px;
  7962. box-sizing:border-box;
  7963. width:100%;
  7964. }
  7965. #u8650_img {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:14px;
  7971. height:14px;
  7972. }
  7973. #u8650_text {
  7974. border-width:0px;
  7975. word-wrap:break-word;
  7976. text-transform:none;
  7977. visibility:hidden;
  7978. }
  7979. #u8651 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:0px;
  7983. top:0px;
  7984. width:0px;
  7985. height:0px;
  7986. }
  7987. #u8652_div {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:33px;
  7993. height:22px;
  7994. background:inherit;
  7995. background-color:rgba(255, 255, 255, 0);
  7996. border-radius:0px;
  7997. filter:drop-shadow(none);
  7998. transition:none;
  7999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8000. font-weight:400;
  8001. font-style:normal;
  8002. font-size:16px;
  8003. color:#FFFFFF;
  8004. }
  8005. #u8652 {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:39px;
  8009. top:423px;
  8010. width:33px;
  8011. height:22px;
  8012. display:flex;
  8013. transition:none;
  8014. transform-origin:50% 50%;
  8015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8016. font-weight:400;
  8017. font-style:normal;
  8018. font-size:16px;
  8019. color:#FFFFFF;
  8020. }
  8021. #u8652 .text {
  8022. position:absolute;
  8023. align-self:flex-start;
  8024. padding:0px 0px 0px 0px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u8652_text {
  8029. border-width:0px;
  8030. white-space:nowrap;
  8031. text-transform:none;
  8032. }
  8033. #u8653 {
  8034. border-width:0px;
  8035. position:absolute;
  8036. left:20px;
  8037. top:427px;
  8038. width:14px;
  8039. height:14px;
  8040. display:flex;
  8041. transition:none;
  8042. }
  8043. #u8653 .text {
  8044. position:absolute;
  8045. align-self:center;
  8046. padding:2px 2px 2px 2px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u8653_img {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:0px;
  8054. top:0px;
  8055. width:14px;
  8056. height:14px;
  8057. }
  8058. #u8653_text {
  8059. border-width:0px;
  8060. word-wrap:break-word;
  8061. text-transform:none;
  8062. visibility:hidden;
  8063. }
  8064. #u8654 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:0px;
  8068. top:0px;
  8069. width:0px;
  8070. height:0px;
  8071. }
  8072. #u8655_div {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:33px;
  8078. height:22px;
  8079. background:inherit;
  8080. background-color:rgba(255, 255, 255, 0);
  8081. border-radius:0px;
  8082. filter:drop-shadow(none);
  8083. transition:none;
  8084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:16px;
  8088. color:#FFFFFF;
  8089. }
  8090. #u8655 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:39px;
  8094. top:297px;
  8095. width:33px;
  8096. height:22px;
  8097. display:flex;
  8098. transition:none;
  8099. transform-origin:50% 50%;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:16px;
  8104. color:#FFFFFF;
  8105. }
  8106. #u8655 .text {
  8107. position:absolute;
  8108. align-self:flex-start;
  8109. padding:0px 0px 0px 0px;
  8110. box-sizing:border-box;
  8111. width:100%;
  8112. }
  8113. #u8655_text {
  8114. border-width:0px;
  8115. white-space:nowrap;
  8116. text-transform:none;
  8117. }
  8118. #u8656 {
  8119. border-width:0px;
  8120. position:absolute;
  8121. left:20px;
  8122. top:301px;
  8123. width:14px;
  8124. height:14px;
  8125. display:flex;
  8126. transition:none;
  8127. }
  8128. #u8656 .text {
  8129. position:absolute;
  8130. align-self:center;
  8131. padding:2px 2px 2px 2px;
  8132. box-sizing:border-box;
  8133. width:100%;
  8134. }
  8135. #u8656_img {
  8136. border-width:0px;
  8137. position:absolute;
  8138. left:0px;
  8139. top:0px;
  8140. width:14px;
  8141. height:14px;
  8142. }
  8143. #u8656_text {
  8144. border-width:0px;
  8145. word-wrap:break-word;
  8146. text-transform:none;
  8147. visibility:hidden;
  8148. }
  8149. #u8657 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:0px;
  8153. top:0px;
  8154. width:0px;
  8155. height:0px;
  8156. }
  8157. #u8658_div {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:33px;
  8163. height:22px;
  8164. background:inherit;
  8165. background-color:rgba(255, 255, 255, 0);
  8166. border-radius:0px;
  8167. filter:drop-shadow(none);
  8168. transition:none;
  8169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8170. font-weight:400;
  8171. font-style:normal;
  8172. font-size:16px;
  8173. color:#FFFFFF;
  8174. }
  8175. #u8658 {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:39px;
  8179. top:213px;
  8180. width:33px;
  8181. height:22px;
  8182. display:flex;
  8183. transition:none;
  8184. transform-origin:50% 50%;
  8185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:16px;
  8189. color:#FFFFFF;
  8190. }
  8191. #u8658 .text {
  8192. position:absolute;
  8193. align-self:flex-start;
  8194. padding:0px 0px 0px 0px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u8658_text {
  8199. border-width:0px;
  8200. white-space:nowrap;
  8201. text-transform:none;
  8202. }
  8203. #u8659 {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:20px;
  8207. top:217px;
  8208. width:14px;
  8209. height:14px;
  8210. display:flex;
  8211. transition:none;
  8212. }
  8213. #u8659 .text {
  8214. position:absolute;
  8215. align-self:center;
  8216. padding:2px 2px 2px 2px;
  8217. box-sizing:border-box;
  8218. width:100%;
  8219. }
  8220. #u8659_img {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:14px;
  8226. height:14px;
  8227. }
  8228. #u8659_text {
  8229. border-width:0px;
  8230. word-wrap:break-word;
  8231. text-transform:none;
  8232. visibility:hidden;
  8233. }
  8234. #u8660 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:0px;
  8238. top:0px;
  8239. width:0px;
  8240. height:0px;
  8241. }
  8242. #u8661_div {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:0px;
  8246. top:0px;
  8247. width:33px;
  8248. height:22px;
  8249. background:inherit;
  8250. background-color:rgba(255, 255, 255, 0);
  8251. border-radius:0px;
  8252. filter:drop-shadow(none);
  8253. transition:none;
  8254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8255. font-weight:400;
  8256. font-style:normal;
  8257. font-size:16px;
  8258. color:#FFFFFF;
  8259. }
  8260. #u8661 {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:39px;
  8264. top:339px;
  8265. width:33px;
  8266. height:22px;
  8267. display:flex;
  8268. transition:none;
  8269. transform-origin:50% 50%;
  8270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8271. font-weight:400;
  8272. font-style:normal;
  8273. font-size:16px;
  8274. color:#FFFFFF;
  8275. }
  8276. #u8661 .text {
  8277. position:absolute;
  8278. align-self:flex-start;
  8279. padding:0px 0px 0px 0px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u8661_text {
  8284. border-width:0px;
  8285. white-space:nowrap;
  8286. text-transform:none;
  8287. }
  8288. #u8662 {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:20px;
  8292. top:343px;
  8293. width:14px;
  8294. height:14px;
  8295. display:flex;
  8296. transition:none;
  8297. }
  8298. #u8662 .text {
  8299. position:absolute;
  8300. align-self:center;
  8301. padding:2px 2px 2px 2px;
  8302. box-sizing:border-box;
  8303. width:100%;
  8304. }
  8305. #u8662_img {
  8306. border-width:0px;
  8307. position:absolute;
  8308. left:0px;
  8309. top:0px;
  8310. width:14px;
  8311. height:14px;
  8312. }
  8313. #u8662_text {
  8314. border-width:0px;
  8315. word-wrap:break-word;
  8316. text-transform:none;
  8317. visibility:hidden;
  8318. }
  8319. #u8663 {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:0px;
  8323. top:0px;
  8324. width:0px;
  8325. height:0px;
  8326. }
  8327. #u8664_div {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:0px;
  8331. top:0px;
  8332. width:33px;
  8333. height:22px;
  8334. background:inherit;
  8335. background-color:rgba(255, 255, 255, 0);
  8336. border-radius:0px;
  8337. filter:drop-shadow(none);
  8338. transition:none;
  8339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8340. font-weight:400;
  8341. font-style:normal;
  8342. font-size:16px;
  8343. color:#FFFFFF;
  8344. }
  8345. #u8664 {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:39px;
  8349. top:465px;
  8350. width:33px;
  8351. height:22px;
  8352. display:flex;
  8353. transition:none;
  8354. transform-origin:50% 50%;
  8355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8356. font-weight:400;
  8357. font-style:normal;
  8358. font-size:16px;
  8359. color:#FFFFFF;
  8360. }
  8361. #u8664 .text {
  8362. position:absolute;
  8363. align-self:flex-start;
  8364. padding:0px 0px 0px 0px;
  8365. box-sizing:border-box;
  8366. width:100%;
  8367. }
  8368. #u8664_text {
  8369. border-width:0px;
  8370. white-space:nowrap;
  8371. text-transform:none;
  8372. }
  8373. #u8665 {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:20px;
  8377. top:469px;
  8378. width:14px;
  8379. height:14px;
  8380. display:flex;
  8381. transition:none;
  8382. }
  8383. #u8665 .text {
  8384. position:absolute;
  8385. align-self:center;
  8386. padding:2px 2px 2px 2px;
  8387. box-sizing:border-box;
  8388. width:100%;
  8389. }
  8390. #u8665_img {
  8391. border-width:0px;
  8392. position:absolute;
  8393. left:0px;
  8394. top:0px;
  8395. width:14px;
  8396. height:14px;
  8397. }
  8398. #u8665_text {
  8399. border-width:0px;
  8400. word-wrap:break-word;
  8401. text-transform:none;
  8402. visibility:hidden;
  8403. }
  8404. #u8666 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:0px;
  8410. height:0px;
  8411. }
  8412. #u8667_div {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:0px;
  8416. top:0px;
  8417. width:29px;
  8418. height:20px;
  8419. background:inherit;
  8420. background-color:rgba(255, 255, 255, 0);
  8421. border-radius:25px;
  8422. filter:drop-shadow(none);
  8423. transition:none;
  8424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8425. font-weight:400;
  8426. font-style:normal;
  8427. color:#FFFFFF;
  8428. }
  8429. #u8667 {
  8430. border-width:0px;
  8431. position:absolute;
  8432. left:52px;
  8433. top:1145px;
  8434. width:29px;
  8435. height:20px;
  8436. display:flex;
  8437. transition:none;
  8438. transform-origin:50% 50%;
  8439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. color:#FFFFFF;
  8443. }
  8444. #u8667 .text {
  8445. position:absolute;
  8446. align-self:center;
  8447. padding:0px 0px 0px 0px;
  8448. box-sizing:border-box;
  8449. width:100%;
  8450. }
  8451. #u8667_text {
  8452. border-width:0px;
  8453. white-space:nowrap;
  8454. text-transform:none;
  8455. }
  8456. #u8668 {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:20px;
  8460. top:1144px;
  8461. width:22px;
  8462. height:22px;
  8463. display:flex;
  8464. transition:none;
  8465. }
  8466. #u8668 .text {
  8467. position:absolute;
  8468. align-self:center;
  8469. padding:2px 2px 2px 2px;
  8470. box-sizing:border-box;
  8471. width:100%;
  8472. }
  8473. #u8668_img {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:22px;
  8479. height:22px;
  8480. }
  8481. #u8668_text {
  8482. border-width:0px;
  8483. word-wrap:break-word;
  8484. text-transform:none;
  8485. visibility:hidden;
  8486. }
  8487. #u8669 {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:0px;
  8493. height:0px;
  8494. }
  8495. #u8670_div {
  8496. border-width:0px;
  8497. position:absolute;
  8498. left:0px;
  8499. top:0px;
  8500. width:29px;
  8501. height:20px;
  8502. background:inherit;
  8503. background-color:rgba(255, 255, 255, 0);
  8504. border-radius:25px;
  8505. filter:drop-shadow(none);
  8506. transition:none;
  8507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8508. font-weight:400;
  8509. font-style:normal;
  8510. color:#FFFFFF;
  8511. }
  8512. #u8670 {
  8513. border-width:0px;
  8514. position:absolute;
  8515. left:52px;
  8516. top:1187px;
  8517. width:29px;
  8518. height:20px;
  8519. display:flex;
  8520. transition:none;
  8521. transform-origin:50% 50%;
  8522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. color:#FFFFFF;
  8526. }
  8527. #u8670 .text {
  8528. position:absolute;
  8529. align-self:center;
  8530. padding:0px 0px 0px 0px;
  8531. box-sizing:border-box;
  8532. width:100%;
  8533. }
  8534. #u8670_text {
  8535. border-width:0px;
  8536. white-space:nowrap;
  8537. text-transform:none;
  8538. }
  8539. #u8671 {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:20px;
  8543. top:1186px;
  8544. width:22px;
  8545. height:22px;
  8546. display:flex;
  8547. transition:none;
  8548. }
  8549. #u8671 .text {
  8550. position:absolute;
  8551. align-self:center;
  8552. padding:2px 2px 2px 2px;
  8553. box-sizing:border-box;
  8554. width:100%;
  8555. }
  8556. #u8671_img {
  8557. border-width:0px;
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:22px;
  8562. height:22px;
  8563. }
  8564. #u8671_text {
  8565. border-width:0px;
  8566. word-wrap:break-word;
  8567. text-transform:none;
  8568. visibility:hidden;
  8569. }
  8570. #u8672 {
  8571. border-width:0px;
  8572. position:absolute;
  8573. left:0px;
  8574. top:0px;
  8575. width:0px;
  8576. height:0px;
  8577. }
  8578. #u8673_div {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:33px;
  8584. height:22px;
  8585. background:inherit;
  8586. background-color:rgba(255, 255, 255, 0);
  8587. border-radius:0px;
  8588. filter:drop-shadow(none);
  8589. transition:none;
  8590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8591. font-weight:400;
  8592. font-style:normal;
  8593. font-size:16px;
  8594. color:#FFFFFF;
  8595. }
  8596. #u8673 {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:39px;
  8600. top:255px;
  8601. width:33px;
  8602. height:22px;
  8603. display:flex;
  8604. transition:none;
  8605. transform-origin:50% 50%;
  8606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8607. font-weight:400;
  8608. font-style:normal;
  8609. font-size:16px;
  8610. color:#FFFFFF;
  8611. }
  8612. #u8673 .text {
  8613. position:absolute;
  8614. align-self:flex-start;
  8615. padding:0px 0px 0px 0px;
  8616. box-sizing:border-box;
  8617. width:100%;
  8618. }
  8619. #u8673_text {
  8620. border-width:0px;
  8621. white-space:nowrap;
  8622. text-transform:none;
  8623. }
  8624. #u8674 {
  8625. border-width:0px;
  8626. position:absolute;
  8627. left:20px;
  8628. top:259px;
  8629. width:14px;
  8630. height:14px;
  8631. display:flex;
  8632. transition:none;
  8633. }
  8634. #u8674 .text {
  8635. position:absolute;
  8636. align-self:center;
  8637. padding:2px 2px 2px 2px;
  8638. box-sizing:border-box;
  8639. width:100%;
  8640. }
  8641. #u8674_img {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:14px;
  8647. height:14px;
  8648. }
  8649. #u8674_text {
  8650. border-width:0px;
  8651. word-wrap:break-word;
  8652. text-transform:none;
  8653. visibility:hidden;
  8654. }
  8655. #u8675 {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:0px;
  8659. top:0px;
  8660. width:0px;
  8661. height:0px;
  8662. }
  8663. #u8676_input {
  8664. position:absolute;
  8665. left:0px;
  8666. top:0px;
  8667. width:214px;
  8668. height:27px;
  8669. padding:2px 2px 2px 2px;
  8670. font-family:'ArialMT', 'Arial', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:14px;
  8674. letter-spacing:normal;
  8675. color:#FFFFFF;
  8676. vertical-align:none;
  8677. text-align:left;
  8678. text-transform:none;
  8679. background-color:transparent;
  8680. border-color:transparent;
  8681. }
  8682. #u8676_input.disabled {
  8683. position:absolute;
  8684. left:0px;
  8685. top:0px;
  8686. width:214px;
  8687. height:27px;
  8688. padding:2px 2px 2px 2px;
  8689. font-family:'ArialMT', 'Arial', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:14px;
  8693. letter-spacing:normal;
  8694. color:#FFFFFF;
  8695. vertical-align:none;
  8696. text-align:left;
  8697. text-transform:none;
  8698. background-color:transparent;
  8699. border-color:transparent;
  8700. }
  8701. #u8676_div {
  8702. border-width:0px;
  8703. position:absolute;
  8704. left:0px;
  8705. top:0px;
  8706. width:214px;
  8707. height:27px;
  8708. background:inherit;
  8709. background-color:rgba(255, 255, 255, 0);
  8710. border-radius:0px;
  8711. filter:drop-shadow(none);
  8712. transition:none;
  8713. font-size:14px;
  8714. color:#FFFFFF;
  8715. }
  8716. #u8676 {
  8717. border-width:0px;
  8718. position:absolute;
  8719. left:1221px;
  8720. top:11px;
  8721. width:214px;
  8722. height:27px;
  8723. display:flex;
  8724. transition:none;
  8725. transform-origin:50% 50%;
  8726. font-size:14px;
  8727. color:#FFFFFF;
  8728. }
  8729. #u8676 .text {
  8730. position:absolute;
  8731. align-self:flex-start;
  8732. padding:2px 2px 2px 2px;
  8733. box-sizing:border-box;
  8734. width:100%;
  8735. }
  8736. #u8676_div.disabled {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:0px;
  8740. top:0px;
  8741. width:214px;
  8742. height:27px;
  8743. background:inherit;
  8744. background-color:rgba(240, 240, 240, 1);
  8745. border-radius:0px;
  8746. filter:drop-shadow(none);
  8747. transition:none;
  8748. font-size:14px;
  8749. color:#FFFFFF;
  8750. }
  8751. #u8676.disabled {
  8752. }
  8753. .u8676_input_option {
  8754. font-size:14px;
  8755. }
  8756. #u8677 {
  8757. border-width:0px;
  8758. position:absolute;
  8759. left:1194px;
  8760. top:14px;
  8761. width:22px;
  8762. height:22px;
  8763. display:flex;
  8764. transition:none;
  8765. }
  8766. #u8677 .text {
  8767. position:absolute;
  8768. align-self:center;
  8769. padding:2px 2px 2px 2px;
  8770. box-sizing:border-box;
  8771. width:100%;
  8772. }
  8773. #u8677_img {
  8774. border-width:0px;
  8775. position:absolute;
  8776. left:0px;
  8777. top:0px;
  8778. width:22px;
  8779. height:22px;
  8780. }
  8781. #u8677_text {
  8782. border-width:0px;
  8783. word-wrap:break-word;
  8784. text-transform:none;
  8785. visibility:hidden;
  8786. }
  8787. #u8678_div {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:0px;
  8791. top:0px;
  8792. width:100px;
  8793. height:24px;
  8794. background:inherit;
  8795. background-color:rgba(242, 242, 242, 0.2);
  8796. border-radius:25px;
  8797. filter:drop-shadow(none);
  8798. transition:none;
  8799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8800. font-weight:400;
  8801. font-style:normal;
  8802. color:#FFFFFF;
  8803. text-align:center;
  8804. }
  8805. #u8678 {
  8806. border-width:0px;
  8807. position:absolute;
  8808. left:1480px;
  8809. top:13px;
  8810. width:100px;
  8811. height:24px;
  8812. display:flex;
  8813. transition:none;
  8814. transform-origin:50% 50%;
  8815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8816. font-weight:400;
  8817. font-style:normal;
  8818. color:#FFFFFF;
  8819. text-align:center;
  8820. }
  8821. #u8678 .text {
  8822. position:absolute;
  8823. align-self:center;
  8824. padding:0px 0px 0px 0px;
  8825. box-sizing:border-box;
  8826. width:100%;
  8827. }
  8828. #u8678_text {
  8829. border-width:0px;
  8830. word-wrap:break-word;
  8831. text-transform:none;
  8832. }
  8833. #u8679 {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:1452px;
  8837. top:19px;
  8838. width:1px;
  8839. height:11px;
  8840. display:flex;
  8841. transition:none;
  8842. }
  8843. #u8679 .text {
  8844. position:absolute;
  8845. align-self:center;
  8846. padding:2px 2px 2px 2px;
  8847. box-sizing:border-box;
  8848. width:100%;
  8849. }
  8850. #u8679_img {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:2px;
  8856. height:12px;
  8857. }
  8858. #u8679_text {
  8859. border-width:0px;
  8860. word-wrap:break-word;
  8861. text-transform:none;
  8862. visibility:hidden;
  8863. }
  8864. #u8680 {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:0px;
  8870. height:0px;
  8871. }
  8872. #u8681_div {
  8873. border-width:0px;
  8874. position:absolute;
  8875. left:0px;
  8876. top:0px;
  8877. width:29px;
  8878. height:20px;
  8879. background:inherit;
  8880. background-color:rgba(255, 255, 255, 0);
  8881. border-radius:25px;
  8882. filter:drop-shadow(none);
  8883. transition:none;
  8884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8885. font-weight:400;
  8886. font-style:normal;
  8887. color:#FFFFFF;
  8888. }
  8889. #u8681 {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:52px;
  8893. top:1082px;
  8894. width:29px;
  8895. height:20px;
  8896. display:flex;
  8897. transition:none;
  8898. transform-origin:50% 50%;
  8899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8900. font-weight:400;
  8901. font-style:normal;
  8902. color:#FFFFFF;
  8903. }
  8904. #u8681 .text {
  8905. position:absolute;
  8906. align-self:center;
  8907. padding:0px 0px 0px 0px;
  8908. box-sizing:border-box;
  8909. width:100%;
  8910. }
  8911. #u8681_text {
  8912. border-width:0px;
  8913. white-space:nowrap;
  8914. text-transform:none;
  8915. }
  8916. #u8682 {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:20px;
  8920. top:1081px;
  8921. width:22px;
  8922. height:22px;
  8923. display:flex;
  8924. transition:none;
  8925. }
  8926. #u8682 .text {
  8927. position:absolute;
  8928. align-self:center;
  8929. padding:2px 2px 2px 2px;
  8930. box-sizing:border-box;
  8931. width:100%;
  8932. }
  8933. #u8682_img {
  8934. border-width:0px;
  8935. position:absolute;
  8936. left:0px;
  8937. top:0px;
  8938. width:22px;
  8939. height:22px;
  8940. }
  8941. #u8682_text {
  8942. border-width:0px;
  8943. word-wrap:break-word;
  8944. text-transform:none;
  8945. visibility:hidden;
  8946. }
  8947. #u8683 {
  8948. border-width:0px;
  8949. position:absolute;
  8950. left:20px;
  8951. top:1123px;
  8952. width:68px;
  8953. height:1px;
  8954. display:flex;
  8955. transition:none;
  8956. }
  8957. #u8683 .text {
  8958. position:absolute;
  8959. align-self:center;
  8960. padding:2px 2px 2px 2px;
  8961. box-sizing:border-box;
  8962. width:100%;
  8963. }
  8964. #u8683_img {
  8965. border-width:0px;
  8966. position:absolute;
  8967. left:0px;
  8968. top:0px;
  8969. width:69px;
  8970. height:2px;
  8971. }
  8972. #u8683_text {
  8973. border-width:0px;
  8974. word-wrap:break-word;
  8975. text-transform:none;
  8976. visibility:hidden;
  8977. }
  8978. #u8684 {
  8979. border-width:0px;
  8980. position:absolute;
  8981. left:20px;
  8982. top:1061px;
  8983. width:68px;
  8984. height:1px;
  8985. display:flex;
  8986. transition:none;
  8987. }
  8988. #u8684 .text {
  8989. position:absolute;
  8990. align-self:center;
  8991. padding:2px 2px 2px 2px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u8684_img {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:69px;
  9001. height:2px;
  9002. }
  9003. #u8684_text {
  9004. border-width:0px;
  9005. word-wrap:break-word;
  9006. text-transform:none;
  9007. visibility:hidden;
  9008. }
  9009. #u8685 {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:20px;
  9013. top:112px;
  9014. width:56px;
  9015. height:1px;
  9016. display:flex;
  9017. transition:none;
  9018. }
  9019. #u8685 .text {
  9020. position:absolute;
  9021. align-self:center;
  9022. padding:2px 2px 2px 2px;
  9023. box-sizing:border-box;
  9024. width:100%;
  9025. }
  9026. #u8685_img {
  9027. border-width:0px;
  9028. position:absolute;
  9029. left:0px;
  9030. top:0px;
  9031. width:57px;
  9032. height:2px;
  9033. }
  9034. #u8685_text {
  9035. border-width:0px;
  9036. word-wrap:break-word;
  9037. text-transform:none;
  9038. visibility:hidden;
  9039. }
  9040. #u8686 {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:0px;
  9046. height:0px;
  9047. }
  9048. #u8687_div {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:0px;
  9052. top:0px;
  9053. width:33px;
  9054. height:22px;
  9055. background:inherit;
  9056. background-color:rgba(255, 255, 255, 0);
  9057. border-radius:0px;
  9058. filter:drop-shadow(none);
  9059. transition:none;
  9060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9061. font-weight:400;
  9062. font-style:normal;
  9063. font-size:16px;
  9064. color:#FFFFFF;
  9065. }
  9066. #u8687 {
  9067. border-width:0px;
  9068. position:absolute;
  9069. left:43px;
  9070. top:71px;
  9071. width:33px;
  9072. height:22px;
  9073. display:flex;
  9074. transition:none;
  9075. transform-origin:50% 50%;
  9076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9077. font-weight:400;
  9078. font-style:normal;
  9079. font-size:16px;
  9080. color:#FFFFFF;
  9081. }
  9082. #u8687 .text {
  9083. position:absolute;
  9084. align-self:flex-start;
  9085. padding:0px 0px 0px 0px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u8687_text {
  9090. border-width:0px;
  9091. white-space:nowrap;
  9092. text-transform:none;
  9093. }
  9094. #u8688 {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:20px;
  9098. top:75px;
  9099. width:18px;
  9100. height:14px;
  9101. display:flex;
  9102. transition:none;
  9103. }
  9104. #u8688 .text {
  9105. position:absolute;
  9106. align-self:center;
  9107. padding:2px 2px 2px 2px;
  9108. box-sizing:border-box;
  9109. width:100%;
  9110. }
  9111. #u8688_img {
  9112. border-width:0px;
  9113. position:absolute;
  9114. left:0px;
  9115. top:0px;
  9116. width:18px;
  9117. height:14px;
  9118. }
  9119. #u8688_text {
  9120. border-width:0px;
  9121. word-wrap:break-word;
  9122. text-transform:none;
  9123. visibility:hidden;
  9124. }
  9125. #u8689_div {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:0px;
  9129. top:0px;
  9130. width:1600px;
  9131. height:1200px;
  9132. background:inherit;
  9133. background-color:rgba(255, 255, 255, 1);
  9134. box-sizing:border-box;
  9135. border-width:1px;
  9136. border-style:solid;
  9137. border-color:rgba(121, 121, 121, 1);
  9138. border-radius:0px;
  9139. filter:drop-shadow(none);
  9140. transition:none;
  9141. }
  9142. #u8689 {
  9143. border-width:0px;
  9144. position:absolute;
  9145. left:1623px;
  9146. top:50px;
  9147. width:1600px;
  9148. height:1200px;
  9149. display:flex;
  9150. transition:none;
  9151. transform-origin:50% 50%;
  9152. }
  9153. #u8689 .text {
  9154. position:absolute;
  9155. align-self:center;
  9156. padding:2px 2px 2px 2px;
  9157. box-sizing:border-box;
  9158. width:100%;
  9159. }
  9160. #u8689_text {
  9161. border-width:0px;
  9162. word-wrap:break-word;
  9163. text-transform:none;
  9164. visibility:hidden;
  9165. }
  9166. #u8690 {
  9167. border-width:0px;
  9168. position:absolute;
  9169. left:0px;
  9170. top:0px;
  9171. width:0px;
  9172. height:0px;
  9173. }
  9174. #u8691 {
  9175. border-width:0px;
  9176. position:absolute;
  9177. left:1875px;
  9178. top:115px;
  9179. width:1348px;
  9180. height:1125px;
  9181. display:flex;
  9182. transition:none;
  9183. }
  9184. #u8691 .text {
  9185. position:absolute;
  9186. align-self:center;
  9187. padding:2px 2px 2px 2px;
  9188. box-sizing:border-box;
  9189. width:100%;
  9190. }
  9191. #u8691_img {
  9192. border-width:0px;
  9193. position:absolute;
  9194. left:0px;
  9195. top:0px;
  9196. width:1348px;
  9197. height:1125px;
  9198. }
  9199. #u8691_text {
  9200. border-width:0px;
  9201. word-wrap:break-word;
  9202. text-transform:none;
  9203. visibility:hidden;
  9204. }
  9205. #u8692_div {
  9206. border-width:0px;
  9207. position:absolute;
  9208. left:0px;
  9209. top:0px;
  9210. width:39px;
  9211. height:20px;
  9212. background:inherit;
  9213. background-color:rgba(0, 191, 191, 1);
  9214. border-radius:4px;
  9215. filter:drop-shadow(none);
  9216. transition:none;
  9217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9218. font-weight:400;
  9219. font-style:normal;
  9220. font-size:10px;
  9221. color:#FFFFFF;
  9222. }
  9223. #u8692 {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:1875px;
  9227. top:119px;
  9228. width:39px;
  9229. height:20px;
  9230. display:flex;
  9231. transition:none;
  9232. transform-origin:50% 50%;
  9233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9234. font-weight:400;
  9235. font-style:normal;
  9236. font-size:10px;
  9237. color:#FFFFFF;
  9238. }
  9239. #u8692 .text {
  9240. position:absolute;
  9241. align-self:center;
  9242. padding:5px 0px 5px 0px;
  9243. box-sizing:border-box;
  9244. width:100%;
  9245. }
  9246. #u8692_text {
  9247. border-width:0px;
  9248. word-wrap:break-word;
  9249. text-transform:none;
  9250. }
  9251. #u8693_div {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:39px;
  9257. height:20px;
  9258. background:inherit;
  9259. background-color:rgba(217, 0, 27, 1);
  9260. border-radius:4px;
  9261. filter:drop-shadow(none);
  9262. transition:none;
  9263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9264. font-weight:400;
  9265. font-style:normal;
  9266. font-size:10px;
  9267. color:#FFFFFF;
  9268. }
  9269. #u8693 {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:2781px;
  9273. top:115px;
  9274. width:39px;
  9275. height:20px;
  9276. display:flex;
  9277. transition:none;
  9278. transform-origin:50% 50%;
  9279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9280. font-weight:400;
  9281. font-style:normal;
  9282. font-size:10px;
  9283. color:#FFFFFF;
  9284. }
  9285. #u8693 .text {
  9286. position:absolute;
  9287. align-self:center;
  9288. padding:5px 0px 5px 0px;
  9289. box-sizing:border-box;
  9290. width:100%;
  9291. }
  9292. #u8693_text {
  9293. border-width:0px;
  9294. word-wrap:break-word;
  9295. text-transform:none;
  9296. }
  9297. #u8694_div {
  9298. border-width:0px;
  9299. position:absolute;
  9300. left:0px;
  9301. top:0px;
  9302. width:39px;
  9303. height:20px;
  9304. background:inherit;
  9305. background-color:rgba(245, 154, 35, 1);
  9306. border-radius:4px;
  9307. filter:drop-shadow(none);
  9308. transition:none;
  9309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9310. font-weight:400;
  9311. font-style:normal;
  9312. font-size:10px;
  9313. color:#FFFFFF;
  9314. }
  9315. #u8694 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:1875px;
  9319. top:389px;
  9320. width:39px;
  9321. height:20px;
  9322. display:flex;
  9323. transition:none;
  9324. transform-origin:50% 50%;
  9325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9326. font-weight:400;
  9327. font-style:normal;
  9328. font-size:10px;
  9329. color:#FFFFFF;
  9330. }
  9331. #u8694 .text {
  9332. position:absolute;
  9333. align-self:center;
  9334. padding:5px 0px 5px 0px;
  9335. box-sizing:border-box;
  9336. width:100%;
  9337. }
  9338. #u8694_text {
  9339. border-width:0px;
  9340. word-wrap:break-word;
  9341. text-transform:none;
  9342. }
  9343. #u8695_div {
  9344. border-width:0px;
  9345. position:absolute;
  9346. left:0px;
  9347. top:0px;
  9348. width:39px;
  9349. height:20px;
  9350. background:inherit;
  9351. background-color:rgba(0, 191, 191, 1);
  9352. border-radius:4px;
  9353. filter:drop-shadow(none);
  9354. transition:none;
  9355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9356. font-weight:400;
  9357. font-style:normal;
  9358. font-size:10px;
  9359. color:#FFFFFF;
  9360. }
  9361. #u8695 {
  9362. border-width:0px;
  9363. position:absolute;
  9364. left:2324px;
  9365. top:115px;
  9366. width:39px;
  9367. height:20px;
  9368. display:flex;
  9369. transition:none;
  9370. transform-origin:50% 50%;
  9371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9372. font-weight:400;
  9373. font-style:normal;
  9374. font-size:10px;
  9375. color:#FFFFFF;
  9376. }
  9377. #u8695 .text {
  9378. position:absolute;
  9379. align-self:center;
  9380. padding:5px 0px 5px 0px;
  9381. box-sizing:border-box;
  9382. width:100%;
  9383. }
  9384. #u8695_text {
  9385. border-width:0px;
  9386. word-wrap:break-word;
  9387. text-transform:none;
  9388. }
  9389. #u8696_div {
  9390. border-width:0px;
  9391. position:absolute;
  9392. left:0px;
  9393. top:0px;
  9394. width:39px;
  9395. height:20px;
  9396. background:inherit;
  9397. background-color:rgba(0, 191, 191, 1);
  9398. border-radius:4px;
  9399. filter:drop-shadow(none);
  9400. transition:none;
  9401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9402. font-weight:400;
  9403. font-style:normal;
  9404. font-size:10px;
  9405. color:#FFFFFF;
  9406. }
  9407. #u8696 {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:2324px;
  9411. top:393px;
  9412. width:39px;
  9413. height:20px;
  9414. display:flex;
  9415. transition:none;
  9416. transform-origin:50% 50%;
  9417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9418. font-weight:400;
  9419. font-style:normal;
  9420. font-size:10px;
  9421. color:#FFFFFF;
  9422. }
  9423. #u8696 .text {
  9424. position:absolute;
  9425. align-self:center;
  9426. padding:5px 0px 5px 0px;
  9427. box-sizing:border-box;
  9428. width:100%;
  9429. }
  9430. #u8696_text {
  9431. border-width:0px;
  9432. word-wrap:break-word;
  9433. text-transform:none;
  9434. }
  9435. #u8697_div {
  9436. border-width:0px;
  9437. position:absolute;
  9438. left:0px;
  9439. top:0px;
  9440. width:39px;
  9441. height:20px;
  9442. background:inherit;
  9443. background-color:rgba(0, 191, 191, 1);
  9444. border-radius:4px;
  9445. filter:drop-shadow(none);
  9446. transition:none;
  9447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9448. font-weight:400;
  9449. font-style:normal;
  9450. font-size:10px;
  9451. color:#FFFFFF;
  9452. }
  9453. #u8697 {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:2772px;
  9457. top:389px;
  9458. width:39px;
  9459. height:20px;
  9460. display:flex;
  9461. transition:none;
  9462. transform-origin:50% 50%;
  9463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9464. font-weight:400;
  9465. font-style:normal;
  9466. font-size:10px;
  9467. color:#FFFFFF;
  9468. }
  9469. #u8697 .text {
  9470. position:absolute;
  9471. align-self:center;
  9472. padding:5px 0px 5px 0px;
  9473. box-sizing:border-box;
  9474. width:100%;
  9475. }
  9476. #u8697_text {
  9477. border-width:0px;
  9478. word-wrap:break-word;
  9479. text-transform:none;
  9480. }
  9481. #u8698_div {
  9482. border-width:0px;
  9483. position:absolute;
  9484. left:0px;
  9485. top:0px;
  9486. width:39px;
  9487. height:20px;
  9488. background:inherit;
  9489. background-color:rgba(0, 191, 191, 1);
  9490. border-radius:4px;
  9491. filter:drop-shadow(none);
  9492. transition:none;
  9493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9494. font-weight:400;
  9495. font-style:normal;
  9496. font-size:10px;
  9497. color:#FFFFFF;
  9498. }
  9499. #u8698 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:2324px;
  9503. top:692px;
  9504. width:39px;
  9505. height:20px;
  9506. display:flex;
  9507. transition:none;
  9508. transform-origin:50% 50%;
  9509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9510. font-weight:400;
  9511. font-style:normal;
  9512. font-size:10px;
  9513. color:#FFFFFF;
  9514. }
  9515. #u8698 .text {
  9516. position:absolute;
  9517. align-self:center;
  9518. padding:5px 0px 5px 0px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u8698_text {
  9523. border-width:0px;
  9524. word-wrap:break-word;
  9525. text-transform:none;
  9526. }
  9527. #u8699_div {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:39px;
  9533. height:20px;
  9534. background:inherit;
  9535. background-color:rgba(0, 191, 191, 1);
  9536. border-radius:4px;
  9537. filter:drop-shadow(none);
  9538. transition:none;
  9539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9540. font-weight:400;
  9541. font-style:normal;
  9542. font-size:10px;
  9543. color:#FFFFFF;
  9544. }
  9545. #u8699 {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:2772px;
  9549. top:688px;
  9550. width:39px;
  9551. height:20px;
  9552. display:flex;
  9553. transition:none;
  9554. transform-origin:50% 50%;
  9555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9556. font-weight:400;
  9557. font-style:normal;
  9558. font-size:10px;
  9559. color:#FFFFFF;
  9560. }
  9561. #u8699 .text {
  9562. position:absolute;
  9563. align-self:center;
  9564. padding:5px 0px 5px 0px;
  9565. box-sizing:border-box;
  9566. width:100%;
  9567. }
  9568. #u8699_text {
  9569. border-width:0px;
  9570. word-wrap:break-word;
  9571. text-transform:none;
  9572. }
  9573. #u8700_div {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:0px;
  9577. top:0px;
  9578. width:39px;
  9579. height:20px;
  9580. background:inherit;
  9581. background-color:rgba(0, 191, 191, 1);
  9582. border-radius:4px;
  9583. filter:drop-shadow(none);
  9584. transition:none;
  9585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9586. font-weight:400;
  9587. font-style:normal;
  9588. font-size:10px;
  9589. color:#FFFFFF;
  9590. }
  9591. #u8700 {
  9592. border-width:0px;
  9593. position:absolute;
  9594. left:1875px;
  9595. top:692px;
  9596. width:39px;
  9597. height:20px;
  9598. display:flex;
  9599. transition:none;
  9600. transform-origin:50% 50%;
  9601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9602. font-weight:400;
  9603. font-style:normal;
  9604. font-size:10px;
  9605. color:#FFFFFF;
  9606. }
  9607. #u8700 .text {
  9608. position:absolute;
  9609. align-self:center;
  9610. padding:5px 0px 5px 0px;
  9611. box-sizing:border-box;
  9612. width:100%;
  9613. }
  9614. #u8700_text {
  9615. border-width:0px;
  9616. word-wrap:break-word;
  9617. text-transform:none;
  9618. }
  9619. #u8701_div {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:0px;
  9623. top:0px;
  9624. width:39px;
  9625. height:20px;
  9626. background:inherit;
  9627. background-color:rgba(0, 191, 191, 1);
  9628. border-radius:4px;
  9629. filter:drop-shadow(none);
  9630. transition:none;
  9631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9632. font-weight:400;
  9633. font-style:normal;
  9634. font-size:10px;
  9635. color:#FFFFFF;
  9636. }
  9637. #u8701 {
  9638. border-width:0px;
  9639. position:absolute;
  9640. left:2324px;
  9641. top:983px;
  9642. width:39px;
  9643. height:20px;
  9644. display:flex;
  9645. transition:none;
  9646. transform-origin:50% 50%;
  9647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9648. font-weight:400;
  9649. font-style:normal;
  9650. font-size:10px;
  9651. color:#FFFFFF;
  9652. }
  9653. #u8701 .text {
  9654. position:absolute;
  9655. align-self:center;
  9656. padding:5px 0px 5px 0px;
  9657. box-sizing:border-box;
  9658. width:100%;
  9659. }
  9660. #u8701_text {
  9661. border-width:0px;
  9662. word-wrap:break-word;
  9663. text-transform:none;
  9664. }
  9665. #u8702_div {
  9666. border-width:0px;
  9667. position:absolute;
  9668. left:0px;
  9669. top:0px;
  9670. width:39px;
  9671. height:20px;
  9672. background:inherit;
  9673. background-color:rgba(0, 191, 191, 1);
  9674. border-radius:4px;
  9675. filter:drop-shadow(none);
  9676. transition:none;
  9677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9678. font-weight:400;
  9679. font-style:normal;
  9680. font-size:10px;
  9681. color:#FFFFFF;
  9682. }
  9683. #u8702 {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:2772px;
  9687. top:979px;
  9688. width:39px;
  9689. height:20px;
  9690. display:flex;
  9691. transition:none;
  9692. transform-origin:50% 50%;
  9693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9694. font-weight:400;
  9695. font-style:normal;
  9696. font-size:10px;
  9697. color:#FFFFFF;
  9698. }
  9699. #u8702 .text {
  9700. position:absolute;
  9701. align-self:center;
  9702. padding:5px 0px 5px 0px;
  9703. box-sizing:border-box;
  9704. width:100%;
  9705. }
  9706. #u8702_text {
  9707. border-width:0px;
  9708. word-wrap:break-word;
  9709. text-transform:none;
  9710. }
  9711. #u8703_div {
  9712. border-width:0px;
  9713. position:absolute;
  9714. left:0px;
  9715. top:0px;
  9716. width:39px;
  9717. height:20px;
  9718. background:inherit;
  9719. background-color:rgba(0, 191, 191, 1);
  9720. border-radius:4px;
  9721. filter:drop-shadow(none);
  9722. transition:none;
  9723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9724. font-weight:400;
  9725. font-style:normal;
  9726. font-size:10px;
  9727. color:#FFFFFF;
  9728. }
  9729. #u8703 {
  9730. border-width:0px;
  9731. position:absolute;
  9732. left:1875px;
  9733. top:983px;
  9734. width:39px;
  9735. height:20px;
  9736. display:flex;
  9737. transition:none;
  9738. transform-origin:50% 50%;
  9739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9740. font-weight:400;
  9741. font-style:normal;
  9742. font-size:10px;
  9743. color:#FFFFFF;
  9744. }
  9745. #u8703 .text {
  9746. position:absolute;
  9747. align-self:center;
  9748. padding:5px 0px 5px 0px;
  9749. box-sizing:border-box;
  9750. width:100%;
  9751. }
  9752. #u8703_text {
  9753. border-width:0px;
  9754. word-wrap:break-word;
  9755. text-transform:none;
  9756. }
  9757. #u8704_div {
  9758. border-width:0px;
  9759. position:absolute;
  9760. left:0px;
  9761. top:0px;
  9762. width:74px;
  9763. height:51px;
  9764. background:inherit;
  9765. background-color:rgba(255, 255, 255, 0);
  9766. border-left:0px;
  9767. border-top:0px;
  9768. border-right:0px;
  9769. border-radius:0px;
  9770. border-bottom-right-radius:0px;
  9771. border-bottom-left-radius:0px;
  9772. filter:drop-shadow(none);
  9773. transition:none;
  9774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9775. font-weight:400;
  9776. font-style:normal;
  9777. font-size:18px;
  9778. }
  9779. #u8704 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:1642px;
  9783. top:50px;
  9784. width:74px;
  9785. height:51px;
  9786. display:flex;
  9787. transition:none;
  9788. transform-origin:50% 50%;
  9789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9790. font-weight:400;
  9791. font-style:normal;
  9792. font-size:18px;
  9793. }
  9794. #u8704 .text {
  9795. position:absolute;
  9796. align-self:center;
  9797. padding:0px 0px 0px 0px;
  9798. box-sizing:border-box;
  9799. width:100%;
  9800. }
  9801. #u8704_text {
  9802. border-width:0px;
  9803. word-wrap:break-word;
  9804. text-transform:none;
  9805. }
  9806. #u8705 {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:0px;
  9810. top:0px;
  9811. width:0px;
  9812. height:0px;
  9813. }
  9814. #u8706_div {
  9815. border-width:0px;
  9816. position:absolute;
  9817. left:0px;
  9818. top:0px;
  9819. width:233px;
  9820. height:779px;
  9821. background:inherit;
  9822. background-color:rgba(242, 242, 242, 1);
  9823. border-radius:4px;
  9824. filter:drop-shadow(none);
  9825. transition:none;
  9826. }
  9827. #u8706 {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:1633px;
  9831. top:461px;
  9832. width:233px;
  9833. height:779px;
  9834. display:flex;
  9835. transition:none;
  9836. transform-origin:50% 50%;
  9837. }
  9838. #u8706 .text {
  9839. position:absolute;
  9840. align-self:center;
  9841. padding:2px 2px 2px 2px;
  9842. box-sizing:border-box;
  9843. width:100%;
  9844. }
  9845. #u8706_text {
  9846. border-width:0px;
  9847. word-wrap:break-word;
  9848. text-transform:none;
  9849. visibility:hidden;
  9850. }
  9851. #u8707 {
  9852. border-width:0px;
  9853. position:absolute;
  9854. left:1640px;
  9855. top:556px;
  9856. width:127px;
  9857. height:240px;
  9858. transition:none;
  9859. }
  9860. #u8707_children {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:0px;
  9864. top:0px;
  9865. width:0px;
  9866. height:0px;
  9867. }
  9868. #u8708 {
  9869. border-width:0px;
  9870. position:absolute;
  9871. left:0px;
  9872. top:0px;
  9873. width:80px;
  9874. height:20px;
  9875. transition:none;
  9876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9877. font-weight:400;
  9878. font-style:normal;
  9879. }
  9880. #u8709 {
  9881. border-width:0px;
  9882. position:absolute;
  9883. left:6px;
  9884. top:6px;
  9885. width:9px;
  9886. height:9px;
  9887. display:flex;
  9888. transition:none;
  9889. }
  9890. #u8709 .text {
  9891. position:absolute;
  9892. align-self:center;
  9893. padding:2px 2px 2px 2px;
  9894. box-sizing:border-box;
  9895. width:100%;
  9896. }
  9897. #u8709_img {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:0px;
  9901. top:0px;
  9902. width:9px;
  9903. height:9px;
  9904. }
  9905. #u8709_img.selected {
  9906. }
  9907. #u8709.selected {
  9908. }
  9909. #u8709_text {
  9910. border-width:0px;
  9911. word-wrap:break-word;
  9912. text-transform:none;
  9913. visibility:hidden;
  9914. }
  9915. #u8710_div {
  9916. border-width:0px;
  9917. position:absolute;
  9918. left:0px;
  9919. top:0px;
  9920. width:58px;
  9921. height:20px;
  9922. background:inherit;
  9923. background-color:rgba(255, 255, 255, 0);
  9924. border-radius:0px;
  9925. filter:drop-shadow(none);
  9926. transition:none;
  9927. }
  9928. #u8710 {
  9929. border-width:0px;
  9930. position:absolute;
  9931. left:22px;
  9932. top:0px;
  9933. width:58px;
  9934. height:20px;
  9935. display:flex;
  9936. transition:none;
  9937. transform-origin:50% 50%;
  9938. }
  9939. #u8710 .text {
  9940. position:absolute;
  9941. align-self:center;
  9942. padding:2px 2px 2px 3px;
  9943. box-sizing:border-box;
  9944. width:100%;
  9945. }
  9946. #u8710_text {
  9947. border-width:0px;
  9948. white-space:nowrap;
  9949. text-transform:none;
  9950. }
  9951. #u8708_children {
  9952. border-width:0px;
  9953. position:absolute;
  9954. left:0px;
  9955. top:0px;
  9956. width:0px;
  9957. height:0px;
  9958. }
  9959. #u8711 {
  9960. border-width:0px;
  9961. position:absolute;
  9962. left:20px;
  9963. top:20px;
  9964. width:87px;
  9965. height:20px;
  9966. transition:none;
  9967. }
  9968. #u8712 {
  9969. border-width:0px;
  9970. position:absolute;
  9971. left:6px;
  9972. top:6px;
  9973. width:9px;
  9974. height:9px;
  9975. display:flex;
  9976. transition:none;
  9977. }
  9978. #u8712 .text {
  9979. position:absolute;
  9980. align-self:center;
  9981. padding:2px 2px 2px 2px;
  9982. box-sizing:border-box;
  9983. width:100%;
  9984. }
  9985. #u8712_img {
  9986. border-width:0px;
  9987. position:absolute;
  9988. left:0px;
  9989. top:0px;
  9990. width:9px;
  9991. height:9px;
  9992. }
  9993. #u8712_img.selected {
  9994. }
  9995. #u8712.selected {
  9996. }
  9997. #u8712_text {
  9998. border-width:0px;
  9999. word-wrap:break-word;
  10000. text-transform:none;
  10001. visibility:hidden;
  10002. }
  10003. #u8713_div {
  10004. border-width:0px;
  10005. position:absolute;
  10006. left:0px;
  10007. top:0px;
  10008. width:65px;
  10009. height:20px;
  10010. background:inherit;
  10011. background-color:rgba(255, 255, 255, 0);
  10012. border-radius:0px;
  10013. filter:drop-shadow(none);
  10014. transition:none;
  10015. }
  10016. #u8713 {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:22px;
  10020. top:0px;
  10021. width:65px;
  10022. height:20px;
  10023. display:flex;
  10024. transition:none;
  10025. transform-origin:50% 50%;
  10026. }
  10027. #u8713 .text {
  10028. position:absolute;
  10029. align-self:center;
  10030. padding:2px 2px 2px 3px;
  10031. box-sizing:border-box;
  10032. width:100%;
  10033. }
  10034. #u8713_text {
  10035. border-width:0px;
  10036. white-space:nowrap;
  10037. text-transform:none;
  10038. }
  10039. #u8711_children {
  10040. border-width:0px;
  10041. position:absolute;
  10042. left:0px;
  10043. top:0px;
  10044. width:0px;
  10045. height:0px;
  10046. }
  10047. #u8714 {
  10048. border-width:0px;
  10049. position:absolute;
  10050. left:20px;
  10051. top:20px;
  10052. width:87px;
  10053. height:20px;
  10054. transition:none;
  10055. }
  10056. #u8715_div {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:0px;
  10060. top:0px;
  10061. width:65px;
  10062. height:20px;
  10063. background:inherit;
  10064. background-color:rgba(255, 255, 255, 0);
  10065. border-radius:0px;
  10066. filter:drop-shadow(none);
  10067. transition:none;
  10068. }
  10069. #u8715 {
  10070. border-width:0px;
  10071. position:absolute;
  10072. left:22px;
  10073. top:0px;
  10074. width:65px;
  10075. height:20px;
  10076. display:flex;
  10077. transition:none;
  10078. transform-origin:50% 50%;
  10079. }
  10080. #u8715 .text {
  10081. position:absolute;
  10082. align-self:center;
  10083. padding:2px 2px 2px 3px;
  10084. box-sizing:border-box;
  10085. width:100%;
  10086. }
  10087. #u8715_text {
  10088. border-width:0px;
  10089. white-space:nowrap;
  10090. text-transform:none;
  10091. }
  10092. #u8716 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:20px;
  10096. top:40px;
  10097. width:87px;
  10098. height:20px;
  10099. transition:none;
  10100. color:#1890FF;
  10101. }
  10102. #u8717_div {
  10103. border-width:0px;
  10104. position:absolute;
  10105. left:0px;
  10106. top:0px;
  10107. width:65px;
  10108. height:20px;
  10109. background:inherit;
  10110. background-color:rgba(255, 255, 255, 0);
  10111. border-radius:0px;
  10112. filter:drop-shadow(none);
  10113. transition:none;
  10114. }
  10115. #u8717 {
  10116. border-width:0px;
  10117. position:absolute;
  10118. left:22px;
  10119. top:0px;
  10120. width:65px;
  10121. height:20px;
  10122. display:flex;
  10123. transition:none;
  10124. transform-origin:50% 50%;
  10125. }
  10126. #u8717 .text {
  10127. position:absolute;
  10128. align-self:center;
  10129. padding:2px 2px 2px 3px;
  10130. box-sizing:border-box;
  10131. width:100%;
  10132. }
  10133. #u8717_text {
  10134. border-width:0px;
  10135. white-space:nowrap;
  10136. text-transform:none;
  10137. }
  10138. #u8718 {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:20px;
  10142. top:60px;
  10143. width:54px;
  10144. height:20px;
  10145. transition:none;
  10146. }
  10147. #u8719_div {
  10148. border-width:0px;
  10149. position:absolute;
  10150. left:0px;
  10151. top:0px;
  10152. width:32px;
  10153. height:20px;
  10154. background:inherit;
  10155. background-color:rgba(255, 255, 255, 0);
  10156. border-radius:0px;
  10157. filter:drop-shadow(none);
  10158. transition:none;
  10159. }
  10160. #u8719 {
  10161. border-width:0px;
  10162. position:absolute;
  10163. left:22px;
  10164. top:0px;
  10165. width:32px;
  10166. height:20px;
  10167. display:flex;
  10168. transition:none;
  10169. transform-origin:50% 50%;
  10170. }
  10171. #u8719 .text {
  10172. position:absolute;
  10173. align-self:center;
  10174. padding:2px 2px 2px 3px;
  10175. box-sizing:border-box;
  10176. width:100%;
  10177. }
  10178. #u8719_text {
  10179. border-width:0px;
  10180. white-space:nowrap;
  10181. text-transform:none;
  10182. }
  10183. #u8720 {
  10184. border-width:0px;
  10185. position:absolute;
  10186. left:20px;
  10187. top:100px;
  10188. width:87px;
  10189. height:20px;
  10190. transition:none;
  10191. }
  10192. #u8721 {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:6px;
  10196. top:6px;
  10197. width:9px;
  10198. height:9px;
  10199. display:flex;
  10200. transition:none;
  10201. }
  10202. #u8721 .text {
  10203. position:absolute;
  10204. align-self:center;
  10205. padding:2px 2px 2px 2px;
  10206. box-sizing:border-box;
  10207. width:100%;
  10208. }
  10209. #u8721_img {
  10210. border-width:0px;
  10211. position:absolute;
  10212. left:0px;
  10213. top:0px;
  10214. width:9px;
  10215. height:9px;
  10216. }
  10217. #u8721_img.selected {
  10218. }
  10219. #u8721.selected {
  10220. }
  10221. #u8721_text {
  10222. border-width:0px;
  10223. word-wrap:break-word;
  10224. text-transform:none;
  10225. visibility:hidden;
  10226. }
  10227. #u8722_div {
  10228. border-width:0px;
  10229. position:absolute;
  10230. left:0px;
  10231. top:0px;
  10232. width:65px;
  10233. height:20px;
  10234. background:inherit;
  10235. background-color:rgba(255, 255, 255, 0);
  10236. border-radius:0px;
  10237. filter:drop-shadow(none);
  10238. transition:none;
  10239. }
  10240. #u8722 {
  10241. border-width:0px;
  10242. position:absolute;
  10243. left:22px;
  10244. top:0px;
  10245. width:65px;
  10246. height:20px;
  10247. display:flex;
  10248. transition:none;
  10249. transform-origin:50% 50%;
  10250. }
  10251. #u8722 .text {
  10252. position:absolute;
  10253. align-self:center;
  10254. padding:2px 2px 2px 3px;
  10255. box-sizing:border-box;
  10256. width:100%;
  10257. }
  10258. #u8722_text {
  10259. border-width:0px;
  10260. white-space:nowrap;
  10261. text-transform:none;
  10262. }
  10263. #u8720_children {
  10264. border-width:0px;
  10265. position:absolute;
  10266. left:0px;
  10267. top:0px;
  10268. width:0px;
  10269. height:0px;
  10270. }
  10271. #u8723 {
  10272. border-width:0px;
  10273. position:absolute;
  10274. left:20px;
  10275. top:20px;
  10276. width:87px;
  10277. height:20px;
  10278. transition:none;
  10279. }
  10280. #u8724_div {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:0px;
  10284. top:0px;
  10285. width:65px;
  10286. height:20px;
  10287. background:inherit;
  10288. background-color:rgba(255, 255, 255, 0);
  10289. border-radius:0px;
  10290. filter:drop-shadow(none);
  10291. transition:none;
  10292. }
  10293. #u8724 {
  10294. border-width:0px;
  10295. position:absolute;
  10296. left:22px;
  10297. top:0px;
  10298. width:65px;
  10299. height:20px;
  10300. display:flex;
  10301. transition:none;
  10302. transform-origin:50% 50%;
  10303. }
  10304. #u8724 .text {
  10305. position:absolute;
  10306. align-self:center;
  10307. padding:2px 2px 2px 3px;
  10308. box-sizing:border-box;
  10309. width:100%;
  10310. }
  10311. #u8724_text {
  10312. border-width:0px;
  10313. white-space:nowrap;
  10314. text-transform:none;
  10315. }
  10316. #u8725 {
  10317. border-width:0px;
  10318. position:absolute;
  10319. left:20px;
  10320. top:40px;
  10321. width:87px;
  10322. height:20px;
  10323. transition:none;
  10324. color:#1890FF;
  10325. }
  10326. #u8726_div {
  10327. border-width:0px;
  10328. position:absolute;
  10329. left:0px;
  10330. top:0px;
  10331. width:65px;
  10332. height:20px;
  10333. background:inherit;
  10334. background-color:rgba(255, 255, 255, 0);
  10335. border-radius:0px;
  10336. filter:drop-shadow(none);
  10337. transition:none;
  10338. }
  10339. #u8726 {
  10340. border-width:0px;
  10341. position:absolute;
  10342. left:22px;
  10343. top:0px;
  10344. width:65px;
  10345. height:20px;
  10346. display:flex;
  10347. transition:none;
  10348. transform-origin:50% 50%;
  10349. }
  10350. #u8726 .text {
  10351. position:absolute;
  10352. align-self:center;
  10353. padding:2px 2px 2px 3px;
  10354. box-sizing:border-box;
  10355. width:100%;
  10356. }
  10357. #u8726_text {
  10358. border-width:0px;
  10359. white-space:nowrap;
  10360. text-transform:none;
  10361. }
  10362. #u8727 {
  10363. border-width:0px;
  10364. position:absolute;
  10365. left:20px;
  10366. top:60px;
  10367. width:54px;
  10368. height:20px;
  10369. transition:none;
  10370. }
  10371. #u8728_div {
  10372. border-width:0px;
  10373. position:absolute;
  10374. left:0px;
  10375. top:0px;
  10376. width:32px;
  10377. height:20px;
  10378. background:inherit;
  10379. background-color:rgba(255, 255, 255, 0);
  10380. border-radius:0px;
  10381. filter:drop-shadow(none);
  10382. transition:none;
  10383. }
  10384. #u8728 {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:22px;
  10388. top:0px;
  10389. width:32px;
  10390. height:20px;
  10391. display:flex;
  10392. transition:none;
  10393. transform-origin:50% 50%;
  10394. }
  10395. #u8728 .text {
  10396. position:absolute;
  10397. align-self:center;
  10398. padding:2px 2px 2px 3px;
  10399. box-sizing:border-box;
  10400. width:100%;
  10401. }
  10402. #u8728_text {
  10403. border-width:0px;
  10404. white-space:nowrap;
  10405. text-transform:none;
  10406. }
  10407. #u8729 {
  10408. border-width:0px;
  10409. position:absolute;
  10410. left:20px;
  10411. top:180px;
  10412. width:87px;
  10413. height:20px;
  10414. transition:none;
  10415. }
  10416. #u8730 {
  10417. border-width:0px;
  10418. position:absolute;
  10419. left:6px;
  10420. top:6px;
  10421. width:9px;
  10422. height:9px;
  10423. display:flex;
  10424. transition:none;
  10425. }
  10426. #u8730 .text {
  10427. position:absolute;
  10428. align-self:center;
  10429. padding:2px 2px 2px 2px;
  10430. box-sizing:border-box;
  10431. width:100%;
  10432. }
  10433. #u8730_img {
  10434. border-width:0px;
  10435. position:absolute;
  10436. left:0px;
  10437. top:0px;
  10438. width:9px;
  10439. height:9px;
  10440. }
  10441. #u8730_img.selected {
  10442. }
  10443. #u8730.selected {
  10444. }
  10445. #u8730_text {
  10446. border-width:0px;
  10447. word-wrap:break-word;
  10448. text-transform:none;
  10449. visibility:hidden;
  10450. }
  10451. #u8731_div {
  10452. border-width:0px;
  10453. position:absolute;
  10454. left:0px;
  10455. top:0px;
  10456. width:65px;
  10457. height:20px;
  10458. background:inherit;
  10459. background-color:rgba(255, 255, 255, 0);
  10460. border-radius:0px;
  10461. filter:drop-shadow(none);
  10462. transition:none;
  10463. }
  10464. #u8731 {
  10465. border-width:0px;
  10466. position:absolute;
  10467. left:22px;
  10468. top:0px;
  10469. width:65px;
  10470. height:20px;
  10471. display:flex;
  10472. transition:none;
  10473. transform-origin:50% 50%;
  10474. }
  10475. #u8731 .text {
  10476. position:absolute;
  10477. align-self:center;
  10478. padding:2px 2px 2px 3px;
  10479. box-sizing:border-box;
  10480. width:100%;
  10481. }
  10482. #u8731_text {
  10483. border-width:0px;
  10484. white-space:nowrap;
  10485. text-transform:none;
  10486. }
  10487. #u8729_children {
  10488. border-width:0px;
  10489. position:absolute;
  10490. left:0px;
  10491. top:0px;
  10492. width:0px;
  10493. height:0px;
  10494. }
  10495. #u8732 {
  10496. border-width:0px;
  10497. position:absolute;
  10498. left:20px;
  10499. top:20px;
  10500. width:87px;
  10501. height:20px;
  10502. transition:none;
  10503. }
  10504. #u8733_div {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:65px;
  10510. height:20px;
  10511. background:inherit;
  10512. background-color:rgba(255, 255, 255, 0);
  10513. border-radius:0px;
  10514. filter:drop-shadow(none);
  10515. transition:none;
  10516. }
  10517. #u8733 {
  10518. border-width:0px;
  10519. position:absolute;
  10520. left:22px;
  10521. top:0px;
  10522. width:65px;
  10523. height:20px;
  10524. display:flex;
  10525. transition:none;
  10526. transform-origin:50% 50%;
  10527. }
  10528. #u8733 .text {
  10529. position:absolute;
  10530. align-self:center;
  10531. padding:2px 2px 2px 3px;
  10532. box-sizing:border-box;
  10533. width:100%;
  10534. }
  10535. #u8733_text {
  10536. border-width:0px;
  10537. white-space:nowrap;
  10538. text-transform:none;
  10539. }
  10540. #u8734 {
  10541. border-width:0px;
  10542. position:absolute;
  10543. left:20px;
  10544. top:40px;
  10545. width:54px;
  10546. height:20px;
  10547. transition:none;
  10548. }
  10549. #u8735_div {
  10550. border-width:0px;
  10551. position:absolute;
  10552. left:0px;
  10553. top:0px;
  10554. width:32px;
  10555. height:20px;
  10556. background:inherit;
  10557. background-color:rgba(255, 255, 255, 0);
  10558. border-radius:0px;
  10559. filter:drop-shadow(none);
  10560. transition:none;
  10561. }
  10562. #u8735 {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:22px;
  10566. top:0px;
  10567. width:32px;
  10568. height:20px;
  10569. display:flex;
  10570. transition:none;
  10571. transform-origin:50% 50%;
  10572. }
  10573. #u8735 .text {
  10574. position:absolute;
  10575. align-self:center;
  10576. padding:2px 2px 2px 3px;
  10577. box-sizing:border-box;
  10578. width:100%;
  10579. }
  10580. #u8735_text {
  10581. border-width:0px;
  10582. white-space:nowrap;
  10583. text-transform:none;
  10584. }
  10585. #u8736_div {
  10586. border-width:0px;
  10587. position:absolute;
  10588. left:0px;
  10589. top:0px;
  10590. width:25px;
  10591. height:30px;
  10592. background:inherit;
  10593. background-color:rgba(255, 255, 255, 0);
  10594. border-radius:0px;
  10595. filter:drop-shadow(none);
  10596. transition:none;
  10597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. font-size:12px;
  10601. color:#3399FF;
  10602. line-height:30px;
  10603. }
  10604. #u8736 {
  10605. border-width:0px;
  10606. position:absolute;
  10607. left:1641px;
  10608. top:518px;
  10609. width:25px;
  10610. height:30px;
  10611. display:flex;
  10612. transition:none;
  10613. transform-origin:50% 50%;
  10614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10615. font-weight:400;
  10616. font-style:normal;
  10617. font-size:12px;
  10618. color:#3399FF;
  10619. line-height:30px;
  10620. }
  10621. #u8736 .text {
  10622. position:absolute;
  10623. align-self:flex-start;
  10624. padding:0px 0px 0px 0px;
  10625. box-sizing:border-box;
  10626. width:100%;
  10627. }
  10628. #u8736_text {
  10629. border-width:0px;
  10630. word-wrap:break-word;
  10631. text-transform:none;
  10632. }
  10633. #u8737_div {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:0px;
  10637. top:0px;
  10638. width:25px;
  10639. height:30px;
  10640. background:inherit;
  10641. background-color:rgba(255, 255, 255, 0);
  10642. border-radius:0px;
  10643. filter:drop-shadow(none);
  10644. transition:none;
  10645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10646. font-weight:400;
  10647. font-style:normal;
  10648. font-size:12px;
  10649. color:#7F7F7F;
  10650. line-height:30px;
  10651. }
  10652. #u8737 {
  10653. border-width:0px;
  10654. position:absolute;
  10655. left:1679px;
  10656. top:518px;
  10657. width:25px;
  10658. height:30px;
  10659. display:flex;
  10660. transition:none;
  10661. transform-origin:50% 50%;
  10662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10663. font-weight:400;
  10664. font-style:normal;
  10665. font-size:12px;
  10666. color:#7F7F7F;
  10667. line-height:30px;
  10668. }
  10669. #u8737 .text {
  10670. position:absolute;
  10671. align-self:flex-start;
  10672. padding:0px 0px 0px 0px;
  10673. box-sizing:border-box;
  10674. width:100%;
  10675. }
  10676. #u8737_text {
  10677. border-width:0px;
  10678. word-wrap:break-word;
  10679. text-transform:none;
  10680. }
  10681. #u8738_div {
  10682. border-width:0px;
  10683. position:absolute;
  10684. left:0px;
  10685. top:0px;
  10686. width:25px;
  10687. height:30px;
  10688. background:inherit;
  10689. background-color:rgba(255, 255, 255, 0);
  10690. border-radius:0px;
  10691. filter:drop-shadow(none);
  10692. transition:none;
  10693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10694. font-weight:400;
  10695. font-style:normal;
  10696. font-size:12px;
  10697. color:#7F7F7F;
  10698. line-height:30px;
  10699. }
  10700. #u8738 {
  10701. border-width:0px;
  10702. position:absolute;
  10703. left:1715px;
  10704. top:518px;
  10705. width:25px;
  10706. height:30px;
  10707. display:flex;
  10708. transition:none;
  10709. transform-origin:50% 50%;
  10710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10711. font-weight:400;
  10712. font-style:normal;
  10713. font-size:12px;
  10714. color:#7F7F7F;
  10715. line-height:30px;
  10716. }
  10717. #u8738 .text {
  10718. position:absolute;
  10719. align-self:flex-start;
  10720. padding:0px 0px 0px 0px;
  10721. box-sizing:border-box;
  10722. width:100%;
  10723. }
  10724. #u8738_text {
  10725. border-width:0px;
  10726. word-wrap:break-word;
  10727. text-transform:none;
  10728. }
  10729. #u8739_div {
  10730. border-width:0px;
  10731. position:absolute;
  10732. left:0px;
  10733. top:0px;
  10734. width:25px;
  10735. height:30px;
  10736. background:inherit;
  10737. background-color:rgba(255, 255, 255, 0);
  10738. border-radius:0px;
  10739. filter:drop-shadow(none);
  10740. transition:none;
  10741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10742. font-weight:400;
  10743. font-style:normal;
  10744. font-size:12px;
  10745. color:#7F7F7F;
  10746. line-height:30px;
  10747. }
  10748. #u8739 {
  10749. border-width:0px;
  10750. position:absolute;
  10751. left:1753px;
  10752. top:518px;
  10753. width:25px;
  10754. height:30px;
  10755. display:flex;
  10756. transition:none;
  10757. transform-origin:50% 50%;
  10758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10759. font-weight:400;
  10760. font-style:normal;
  10761. font-size:12px;
  10762. color:#7F7F7F;
  10763. line-height:30px;
  10764. }
  10765. #u8739 .text {
  10766. position:absolute;
  10767. align-self:flex-start;
  10768. padding:0px 0px 0px 0px;
  10769. box-sizing:border-box;
  10770. width:100%;
  10771. }
  10772. #u8739_text {
  10773. border-width:0px;
  10774. word-wrap:break-word;
  10775. text-transform:none;
  10776. }
  10777. #u8740 {
  10778. border-width:0px;
  10779. position:absolute;
  10780. left:0px;
  10781. top:0px;
  10782. width:0px;
  10783. height:0px;
  10784. }
  10785. #u8741_input {
  10786. position:absolute;
  10787. left:0px;
  10788. top:0px;
  10789. width:208px;
  10790. height:38px;
  10791. padding:2px 2px 2px 2px;
  10792. font-family:'ArialMT', 'Arial', sans-serif;
  10793. font-weight:400;
  10794. font-style:normal;
  10795. font-size:18px;
  10796. letter-spacing:normal;
  10797. color:#333333;
  10798. vertical-align:none;
  10799. text-align:left;
  10800. text-transform:none;
  10801. background-color:transparent;
  10802. border-color:transparent;
  10803. }
  10804. #u8741_input.disabled {
  10805. position:absolute;
  10806. left:0px;
  10807. top:0px;
  10808. width:208px;
  10809. height:38px;
  10810. padding:2px 2px 2px 2px;
  10811. font-family:'ArialMT', 'Arial', sans-serif;
  10812. font-weight:400;
  10813. font-style:normal;
  10814. font-size:18px;
  10815. letter-spacing:normal;
  10816. color:#333333;
  10817. vertical-align:none;
  10818. text-align:left;
  10819. text-transform:none;
  10820. background-color:transparent;
  10821. border-color:transparent;
  10822. }
  10823. #u8741_div {
  10824. border-width:0px;
  10825. position:absolute;
  10826. left:0px;
  10827. top:0px;
  10828. width:208px;
  10829. height:38px;
  10830. background:inherit;
  10831. background-color:rgba(255, 255, 255, 1);
  10832. border-radius:0px;
  10833. filter:drop-shadow(none);
  10834. transition:none;
  10835. font-size:18px;
  10836. color:#333333;
  10837. }
  10838. #u8741 {
  10839. border-width:0px;
  10840. position:absolute;
  10841. left:1634px;
  10842. top:422px;
  10843. width:208px;
  10844. height:38px;
  10845. display:flex;
  10846. transition:none;
  10847. transform-origin:50% 50%;
  10848. font-size:18px;
  10849. color:#333333;
  10850. }
  10851. #u8741 .text {
  10852. position:absolute;
  10853. align-self:flex-start;
  10854. padding:2px 2px 2px 2px;
  10855. box-sizing:border-box;
  10856. width:100%;
  10857. }
  10858. #u8741_div.disabled {
  10859. border-width:0px;
  10860. position:absolute;
  10861. left:0px;
  10862. top:0px;
  10863. width:208px;
  10864. height:38px;
  10865. background:inherit;
  10866. background-color:rgba(240, 240, 240, 1);
  10867. border-radius:0px;
  10868. filter:drop-shadow(none);
  10869. transition:none;
  10870. font-size:18px;
  10871. color:#333333;
  10872. }
  10873. #u8741.disabled {
  10874. }
  10875. .u8741_input_option {
  10876. font-size:18px;
  10877. }
  10878. #u8742_div {
  10879. border-width:0px;
  10880. position:absolute;
  10881. left:0px;
  10882. top:0px;
  10883. width:29px;
  10884. height:51px;
  10885. background:inherit;
  10886. background-color:rgba(255, 255, 255, 0);
  10887. border-left:0px;
  10888. border-top:0px;
  10889. border-right:0px;
  10890. border-radius:0px;
  10891. border-bottom-right-radius:0px;
  10892. border-bottom-left-radius:0px;
  10893. filter:drop-shadow(none);
  10894. transition:none;
  10895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10896. font-weight:400;
  10897. font-style:normal;
  10898. font-size:14px;
  10899. color:#1890FF;
  10900. }
  10901. #u8742 {
  10902. border-width:0px;
  10903. position:absolute;
  10904. left:1824px;
  10905. top:466px;
  10906. width:29px;
  10907. height:51px;
  10908. display:flex;
  10909. transition:none;
  10910. transform-origin:50% 50%;
  10911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10912. font-weight:400;
  10913. font-style:normal;
  10914. font-size:14px;
  10915. color:#1890FF;
  10916. }
  10917. #u8742 .text {
  10918. position:absolute;
  10919. align-self:center;
  10920. padding:0px 0px 0px 0px;
  10921. box-sizing:border-box;
  10922. width:100%;
  10923. }
  10924. #u8742_text {
  10925. border-width:0px;
  10926. word-wrap:break-word;
  10927. text-transform:none;
  10928. }
  10929. #u8743 {
  10930. border-width:0px;
  10931. position:absolute;
  10932. left:0px;
  10933. top:0px;
  10934. width:0px;
  10935. height:0px;
  10936. }
  10937. #u8744_div {
  10938. border-width:0px;
  10939. position:absolute;
  10940. left:0px;
  10941. top:0px;
  10942. width:182px;
  10943. height:38px;
  10944. background:inherit;
  10945. background-color:rgba(255, 255, 255, 1);
  10946. box-sizing:border-box;
  10947. border-width:1px;
  10948. border-style:solid;
  10949. border-color:rgba(242, 242, 242, 1);
  10950. border-radius:4px;
  10951. filter:drop-shadow(none);
  10952. transition:none;
  10953. font-family:"Microsoft YaHei", sans-serif;
  10954. font-weight:400;
  10955. font-style:normal;
  10956. font-size:14px;
  10957. color:#CCCCCC;
  10958. text-align:left;
  10959. }
  10960. #u8744 {
  10961. border-width:0px;
  10962. position:absolute;
  10963. left:1640px;
  10964. top:472px;
  10965. width:182px;
  10966. height:38px;
  10967. display:flex;
  10968. transition:none;
  10969. transform-origin:50% 50%;
  10970. font-family:"Microsoft YaHei", sans-serif;
  10971. font-weight:400;
  10972. font-style:normal;
  10973. font-size:14px;
  10974. color:#CCCCCC;
  10975. text-align:left;
  10976. }
  10977. #u8744 .text {
  10978. position:absolute;
  10979. align-self:center;
  10980. padding:2px 8px 2px 8px;
  10981. box-sizing:border-box;
  10982. width:100%;
  10983. }
  10984. #u8744_text {
  10985. border-width:0px;
  10986. word-wrap:break-word;
  10987. text-transform:none;
  10988. visibility:hidden;
  10989. }
  10990. #u8745_input {
  10991. position:absolute;
  10992. left:0px;
  10993. top:0px;
  10994. width:142px;
  10995. height:31px;
  10996. padding:2px 2px 2px 2px;
  10997. font-family:"Microsoft YaHei", sans-serif;
  10998. font-weight:400;
  10999. font-style:normal;
  11000. font-size:14px;
  11001. letter-spacing:normal;
  11002. color:#000000;
  11003. vertical-align:none;
  11004. text-align:left;
  11005. text-transform:none;
  11006. background-color:transparent;
  11007. border-color:transparent;
  11008. }
  11009. #u8745_input.hint {
  11010. position:absolute;
  11011. left:0px;
  11012. top:0px;
  11013. width:142px;
  11014. height:31px;
  11015. padding:2px 2px 2px 2px;
  11016. font-family:"Microsoft YaHei", sans-serif;
  11017. font-weight:400;
  11018. font-style:normal;
  11019. font-size:12px;
  11020. letter-spacing:normal;
  11021. color:#AAAAAA;
  11022. vertical-align:none;
  11023. text-align:left;
  11024. text-transform:none;
  11025. background-color:transparent;
  11026. border-color:transparent;
  11027. }
  11028. #u8745_input.disabled {
  11029. position:absolute;
  11030. left:0px;
  11031. top:0px;
  11032. width:142px;
  11033. height:31px;
  11034. padding:2px 2px 2px 2px;
  11035. font-family:"Microsoft YaHei", sans-serif;
  11036. font-weight:400;
  11037. font-style:normal;
  11038. font-size:14px;
  11039. letter-spacing:normal;
  11040. color:#000000;
  11041. vertical-align:none;
  11042. text-align:left;
  11043. text-transform:none;
  11044. background-color:transparent;
  11045. border-color:transparent;
  11046. }
  11047. #u8745_input.hint.disabled {
  11048. position:absolute;
  11049. left:0px;
  11050. top:0px;
  11051. width:142px;
  11052. height:31px;
  11053. padding:2px 2px 2px 2px;
  11054. font-family:"Microsoft YaHei", sans-serif;
  11055. font-weight:400;
  11056. font-style:normal;
  11057. font-size:12px;
  11058. letter-spacing:normal;
  11059. color:#AAAAAA;
  11060. vertical-align:none;
  11061. text-align:left;
  11062. text-transform:none;
  11063. background-color:transparent;
  11064. border-color:transparent;
  11065. }
  11066. #u8745_div {
  11067. border-width:0px;
  11068. position:absolute;
  11069. left:0px;
  11070. top:0px;
  11071. width:142px;
  11072. height:31px;
  11073. background:inherit;
  11074. background-color:rgba(255, 255, 255, 1);
  11075. border-radius:0px;
  11076. filter:drop-shadow(none);
  11077. transition:none;
  11078. font-family:"Microsoft YaHei", sans-serif;
  11079. font-weight:400;
  11080. font-style:normal;
  11081. font-size:14px;
  11082. }
  11083. #u8745 {
  11084. border-width:0px;
  11085. position:absolute;
  11086. left:1648px;
  11087. top:473px;
  11088. width:142px;
  11089. height:31px;
  11090. display:flex;
  11091. transition:none;
  11092. transform-origin:50% 50%;
  11093. font-family:"Microsoft YaHei", sans-serif;
  11094. font-weight:400;
  11095. font-style:normal;
  11096. font-size:14px;
  11097. }
  11098. #u8745 .text {
  11099. position:absolute;
  11100. align-self:center;
  11101. padding:2px 2px 2px 2px;
  11102. box-sizing:border-box;
  11103. width:100%;
  11104. }
  11105. #u8745_div.hint {
  11106. border-width:0px;
  11107. position:absolute;
  11108. left:0px;
  11109. top:0px;
  11110. width:142px;
  11111. height:31px;
  11112. background:inherit;
  11113. background-color:rgba(255, 255, 255, 1);
  11114. border-radius:0px;
  11115. filter:drop-shadow(none);
  11116. transition:none;
  11117. font-family:"Microsoft YaHei", sans-serif;
  11118. font-weight:400;
  11119. font-style:normal;
  11120. font-size:14px;
  11121. }
  11122. #u8745.hint {
  11123. }
  11124. #u8745_div.disabled {
  11125. border-width:0px;
  11126. position:absolute;
  11127. left:0px;
  11128. top:0px;
  11129. width:142px;
  11130. height:31px;
  11131. background:inherit;
  11132. background-color:rgba(240, 240, 240, 1);
  11133. border-radius:0px;
  11134. filter:drop-shadow(none);
  11135. transition:none;
  11136. font-family:"Microsoft YaHei", sans-serif;
  11137. font-weight:400;
  11138. font-style:normal;
  11139. font-size:14px;
  11140. }
  11141. #u8745.disabled {
  11142. }
  11143. #u8745_div.hint.disabled {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:0px;
  11147. top:0px;
  11148. width:142px;
  11149. height:31px;
  11150. background:inherit;
  11151. background-color:rgba(240, 240, 240, 1);
  11152. border-radius:0px;
  11153. filter:drop-shadow(none);
  11154. transition:none;
  11155. font-family:"Microsoft YaHei", sans-serif;
  11156. font-weight:400;
  11157. font-style:normal;
  11158. font-size:14px;
  11159. }
  11160. #u8745.hint.disabled {
  11161. }
  11162. #u8746 {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:1797px;
  11166. top:484px;
  11167. width:14px;
  11168. height:14px;
  11169. display:flex;
  11170. transition:none;
  11171. }
  11172. #u8746 .text {
  11173. position:absolute;
  11174. align-self:center;
  11175. padding:2px 2px 2px 2px;
  11176. box-sizing:border-box;
  11177. width:100%;
  11178. }
  11179. #u8746_img {
  11180. border-width:0px;
  11181. position:absolute;
  11182. left:0px;
  11183. top:0px;
  11184. width:14px;
  11185. height:14px;
  11186. }
  11187. #u8746_text {
  11188. border-width:0px;
  11189. word-wrap:break-word;
  11190. text-transform:none;
  11191. visibility:hidden;
  11192. }
  11193. #u8747_div {
  11194. border-width:0px;
  11195. position:absolute;
  11196. left:0px;
  11197. top:0px;
  11198. width:58px;
  11199. height:30px;
  11200. background:inherit;
  11201. background-color:rgba(255, 255, 255, 0);
  11202. border-radius:0px;
  11203. filter:drop-shadow(none);
  11204. transition:none;
  11205. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11206. font-weight:500;
  11207. font-style:normal;
  11208. font-size:14px;
  11209. color:#000000;
  11210. line-height:30px;
  11211. }
  11212. #u8747 {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:1641px;
  11216. top:99px;
  11217. width:58px;
  11218. height:30px;
  11219. display:flex;
  11220. transition:none;
  11221. transform-origin:50% 50%;
  11222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11223. font-weight:500;
  11224. font-style:normal;
  11225. font-size:14px;
  11226. color:#000000;
  11227. line-height:30px;
  11228. }
  11229. #u8747 .text {
  11230. position:absolute;
  11231. align-self:flex-start;
  11232. padding:0px 0px 0px 0px;
  11233. box-sizing:border-box;
  11234. width:100%;
  11235. }
  11236. #u8747_text {
  11237. border-width:0px;
  11238. word-wrap:break-word;
  11239. text-transform:none;
  11240. }
  11241. #u8748 {
  11242. border-width:0px;
  11243. position:absolute;
  11244. left:0px;
  11245. top:0px;
  11246. width:0px;
  11247. height:0px;
  11248. }
  11249. #u8749_div {
  11250. border-width:0px;
  11251. position:absolute;
  11252. left:0px;
  11253. top:0px;
  11254. width:30px;
  11255. height:30px;
  11256. background:inherit;
  11257. background-color:rgba(255, 255, 255, 1);
  11258. box-sizing:border-box;
  11259. border-width:1px;
  11260. border-style:solid;
  11261. border-color:rgba(121, 121, 121, 1);
  11262. border-radius:0px;
  11263. filter:drop-shadow(none);
  11264. transition:none;
  11265. }
  11266. #u8749 {
  11267. border-width:0px;
  11268. position:absolute;
  11269. left:1642px;
  11270. top:134px;
  11271. width:30px;
  11272. height:30px;
  11273. display:flex;
  11274. transition:none;
  11275. transform-origin:50% 50%;
  11276. }
  11277. #u8749 .text {
  11278. position:absolute;
  11279. align-self:center;
  11280. padding:2px 2px 2px 2px;
  11281. box-sizing:border-box;
  11282. width:100%;
  11283. }
  11284. #u8749_text {
  11285. border-width:0px;
  11286. word-wrap:break-word;
  11287. text-transform:none;
  11288. visibility:hidden;
  11289. }
  11290. #u8750 {
  11291. border-width:0px;
  11292. position:absolute;
  11293. left:1648px;
  11294. top:140px;
  11295. width:19px;
  11296. height:18px;
  11297. display:flex;
  11298. -webkit-transform:rotate(135deg);
  11299. -moz-transform:rotate(135deg);
  11300. -ms-transform:rotate(135deg);
  11301. transform:rotate(135deg);
  11302. transition:none;
  11303. }
  11304. #u8750 .text {
  11305. position:absolute;
  11306. align-self:center;
  11307. padding:2px 2px 2px 2px;
  11308. box-sizing:border-box;
  11309. width:100%;
  11310. }
  11311. #u8750_img {
  11312. border-width:0px;
  11313. position:absolute;
  11314. left:0px;
  11315. top:0px;
  11316. width:19px;
  11317. height:18px;
  11318. }
  11319. #u8750_text {
  11320. border-width:0px;
  11321. word-wrap:break-word;
  11322. text-transform:none;
  11323. visibility:hidden;
  11324. }
  11325. #u8751 {
  11326. border-width:0px;
  11327. position:absolute;
  11328. left:0px;
  11329. top:0px;
  11330. width:0px;
  11331. height:0px;
  11332. }
  11333. #u8752_div {
  11334. border-width:0px;
  11335. position:absolute;
  11336. left:0px;
  11337. top:0px;
  11338. width:30px;
  11339. height:30px;
  11340. background:inherit;
  11341. background-color:rgba(255, 255, 255, 1);
  11342. box-sizing:border-box;
  11343. border-width:1px;
  11344. border-style:solid;
  11345. border-color:rgba(121, 121, 121, 1);
  11346. border-radius:0px;
  11347. filter:drop-shadow(none);
  11348. transition:none;
  11349. }
  11350. #u8752 {
  11351. border-width:0px;
  11352. position:absolute;
  11353. left:1683px;
  11354. top:134px;
  11355. width:30px;
  11356. height:30px;
  11357. display:flex;
  11358. transition:none;
  11359. transform-origin:50% 50%;
  11360. }
  11361. #u8752 .text {
  11362. position:absolute;
  11363. align-self:center;
  11364. padding:2px 2px 2px 2px;
  11365. box-sizing:border-box;
  11366. width:100%;
  11367. }
  11368. #u8752_text {
  11369. border-width:0px;
  11370. word-wrap:break-word;
  11371. text-transform:none;
  11372. visibility:hidden;
  11373. }
  11374. #u8753 {
  11375. border-width:0px;
  11376. position:absolute;
  11377. left:1689px;
  11378. top:140px;
  11379. width:19px;
  11380. height:18px;
  11381. display:flex;
  11382. -webkit-transform:rotate(180deg);
  11383. -moz-transform:rotate(180deg);
  11384. -ms-transform:rotate(180deg);
  11385. transform:rotate(180deg);
  11386. transition:none;
  11387. }
  11388. #u8753 .text {
  11389. position:absolute;
  11390. align-self:center;
  11391. padding:2px 2px 2px 2px;
  11392. box-sizing:border-box;
  11393. width:100%;
  11394. }
  11395. #u8753_img {
  11396. border-width:0px;
  11397. position:absolute;
  11398. left:0px;
  11399. top:0px;
  11400. width:19px;
  11401. height:18px;
  11402. }
  11403. #u8753_text {
  11404. border-width:0px;
  11405. word-wrap:break-word;
  11406. text-transform:none;
  11407. visibility:hidden;
  11408. }
  11409. #u8754 {
  11410. border-width:0px;
  11411. position:absolute;
  11412. left:0px;
  11413. top:0px;
  11414. width:0px;
  11415. height:0px;
  11416. }
  11417. #u8755_div {
  11418. border-width:0px;
  11419. position:absolute;
  11420. left:0px;
  11421. top:0px;
  11422. width:30px;
  11423. height:30px;
  11424. background:inherit;
  11425. background-color:rgba(255, 255, 255, 1);
  11426. box-sizing:border-box;
  11427. border-width:1px;
  11428. border-style:solid;
  11429. border-color:rgba(121, 121, 121, 1);
  11430. border-radius:0px;
  11431. filter:drop-shadow(none);
  11432. transition:none;
  11433. }
  11434. #u8755 {
  11435. border-width:0px;
  11436. position:absolute;
  11437. left:1723px;
  11438. top:134px;
  11439. width:30px;
  11440. height:30px;
  11441. display:flex;
  11442. transition:none;
  11443. transform-origin:50% 50%;
  11444. }
  11445. #u8755 .text {
  11446. position:absolute;
  11447. align-self:center;
  11448. padding:2px 2px 2px 2px;
  11449. box-sizing:border-box;
  11450. width:100%;
  11451. }
  11452. #u8755_text {
  11453. border-width:0px;
  11454. word-wrap:break-word;
  11455. text-transform:none;
  11456. visibility:hidden;
  11457. }
  11458. #u8756 {
  11459. border-width:0px;
  11460. position:absolute;
  11461. left:1729px;
  11462. top:140px;
  11463. width:19px;
  11464. height:18px;
  11465. display:flex;
  11466. -webkit-transform:rotate(225deg);
  11467. -moz-transform:rotate(225deg);
  11468. -ms-transform:rotate(225deg);
  11469. transform:rotate(225deg);
  11470. transition:none;
  11471. }
  11472. #u8756 .text {
  11473. position:absolute;
  11474. align-self:center;
  11475. padding:2px 2px 2px 2px;
  11476. box-sizing:border-box;
  11477. width:100%;
  11478. }
  11479. #u8756_img {
  11480. border-width:0px;
  11481. position:absolute;
  11482. left:0px;
  11483. top:0px;
  11484. width:19px;
  11485. height:18px;
  11486. }
  11487. #u8756_text {
  11488. border-width:0px;
  11489. word-wrap:break-word;
  11490. text-transform:none;
  11491. visibility:hidden;
  11492. }
  11493. #u8757 {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:0px;
  11497. top:0px;
  11498. width:0px;
  11499. height:0px;
  11500. }
  11501. #u8758_div {
  11502. border-width:0px;
  11503. position:absolute;
  11504. left:0px;
  11505. top:0px;
  11506. width:30px;
  11507. height:30px;
  11508. background:inherit;
  11509. background-color:rgba(255, 255, 255, 1);
  11510. box-sizing:border-box;
  11511. border-width:1px;
  11512. border-style:solid;
  11513. border-color:rgba(121, 121, 121, 1);
  11514. border-radius:0px;
  11515. filter:drop-shadow(none);
  11516. transition:none;
  11517. }
  11518. #u8758 {
  11519. border-width:0px;
  11520. position:absolute;
  11521. left:1642px;
  11522. top:174px;
  11523. width:30px;
  11524. height:30px;
  11525. display:flex;
  11526. transition:none;
  11527. transform-origin:50% 50%;
  11528. }
  11529. #u8758 .text {
  11530. position:absolute;
  11531. align-self:center;
  11532. padding:2px 2px 2px 2px;
  11533. box-sizing:border-box;
  11534. width:100%;
  11535. }
  11536. #u8758_text {
  11537. border-width:0px;
  11538. word-wrap:break-word;
  11539. text-transform:none;
  11540. visibility:hidden;
  11541. }
  11542. #u8759 {
  11543. border-width:0px;
  11544. position:absolute;
  11545. left:1648px;
  11546. top:181px;
  11547. width:19px;
  11548. height:18px;
  11549. display:flex;
  11550. -webkit-transform:rotate(90deg);
  11551. -moz-transform:rotate(90deg);
  11552. -ms-transform:rotate(90deg);
  11553. transform:rotate(90deg);
  11554. transition:none;
  11555. }
  11556. #u8759 .text {
  11557. position:absolute;
  11558. align-self:center;
  11559. padding:2px 2px 2px 2px;
  11560. box-sizing:border-box;
  11561. width:100%;
  11562. }
  11563. #u8759_img {
  11564. border-width:0px;
  11565. position:absolute;
  11566. left:0px;
  11567. top:0px;
  11568. width:19px;
  11569. height:18px;
  11570. }
  11571. #u8759_text {
  11572. border-width:0px;
  11573. word-wrap:break-word;
  11574. text-transform:none;
  11575. visibility:hidden;
  11576. }
  11577. #u8760 {
  11578. border-width:0px;
  11579. position:absolute;
  11580. left:0px;
  11581. top:0px;
  11582. width:0px;
  11583. height:0px;
  11584. }
  11585. #u8761_div {
  11586. border-width:0px;
  11587. position:absolute;
  11588. left:0px;
  11589. top:0px;
  11590. width:30px;
  11591. height:30px;
  11592. background:inherit;
  11593. background-color:rgba(255, 255, 255, 1);
  11594. box-sizing:border-box;
  11595. border-width:1px;
  11596. border-style:solid;
  11597. border-color:rgba(121, 121, 121, 1);
  11598. border-radius:0px;
  11599. filter:drop-shadow(none);
  11600. transition:none;
  11601. }
  11602. #u8761 {
  11603. border-width:0px;
  11604. position:absolute;
  11605. left:1723px;
  11606. top:174px;
  11607. width:30px;
  11608. height:30px;
  11609. display:flex;
  11610. transition:none;
  11611. transform-origin:50% 50%;
  11612. }
  11613. #u8761 .text {
  11614. position:absolute;
  11615. align-self:center;
  11616. padding:2px 2px 2px 2px;
  11617. box-sizing:border-box;
  11618. width:100%;
  11619. }
  11620. #u8761_text {
  11621. border-width:0px;
  11622. word-wrap:break-word;
  11623. text-transform:none;
  11624. visibility:hidden;
  11625. }
  11626. #u8762 {
  11627. border-width:0px;
  11628. position:absolute;
  11629. left:1729px;
  11630. top:181px;
  11631. width:19px;
  11632. height:18px;
  11633. display:flex;
  11634. -webkit-transform:rotate(270deg);
  11635. -moz-transform:rotate(270deg);
  11636. -ms-transform:rotate(270deg);
  11637. transform:rotate(270deg);
  11638. transition:none;
  11639. }
  11640. #u8762 .text {
  11641. position:absolute;
  11642. align-self:center;
  11643. padding:2px 2px 2px 2px;
  11644. box-sizing:border-box;
  11645. width:100%;
  11646. }
  11647. #u8762_img {
  11648. border-width:0px;
  11649. position:absolute;
  11650. left:0px;
  11651. top:0px;
  11652. width:19px;
  11653. height:18px;
  11654. }
  11655. #u8762_text {
  11656. border-width:0px;
  11657. word-wrap:break-word;
  11658. text-transform:none;
  11659. visibility:hidden;
  11660. }
  11661. #u8763 {
  11662. border-width:0px;
  11663. position:absolute;
  11664. left:0px;
  11665. top:0px;
  11666. width:0px;
  11667. height:0px;
  11668. }
  11669. #u8764_div {
  11670. border-width:0px;
  11671. position:absolute;
  11672. left:0px;
  11673. top:0px;
  11674. width:30px;
  11675. height:30px;
  11676. background:inherit;
  11677. background-color:rgba(255, 255, 255, 1);
  11678. box-sizing:border-box;
  11679. border-width:1px;
  11680. border-style:solid;
  11681. border-color:rgba(121, 121, 121, 1);
  11682. border-radius:0px;
  11683. filter:drop-shadow(none);
  11684. transition:none;
  11685. }
  11686. #u8764 {
  11687. border-width:0px;
  11688. position:absolute;
  11689. left:1642px;
  11690. top:215px;
  11691. width:30px;
  11692. height:30px;
  11693. display:flex;
  11694. transition:none;
  11695. transform-origin:50% 50%;
  11696. }
  11697. #u8764 .text {
  11698. position:absolute;
  11699. align-self:center;
  11700. padding:2px 2px 2px 2px;
  11701. box-sizing:border-box;
  11702. width:100%;
  11703. }
  11704. #u8764_text {
  11705. border-width:0px;
  11706. word-wrap:break-word;
  11707. text-transform:none;
  11708. visibility:hidden;
  11709. }
  11710. #u8765 {
  11711. border-width:0px;
  11712. position:absolute;
  11713. left:1648px;
  11714. top:221px;
  11715. width:19px;
  11716. height:18px;
  11717. display:flex;
  11718. -webkit-transform:rotate(51deg);
  11719. -moz-transform:rotate(51deg);
  11720. -ms-transform:rotate(51deg);
  11721. transform:rotate(51deg);
  11722. transition:none;
  11723. }
  11724. #u8765 .text {
  11725. position:absolute;
  11726. align-self:center;
  11727. padding:2px 2px 2px 2px;
  11728. box-sizing:border-box;
  11729. width:100%;
  11730. }
  11731. #u8765_img {
  11732. border-width:0px;
  11733. position:absolute;
  11734. left:0px;
  11735. top:0px;
  11736. width:19px;
  11737. height:18px;
  11738. }
  11739. #u8765_text {
  11740. border-width:0px;
  11741. word-wrap:break-word;
  11742. text-transform:none;
  11743. visibility:hidden;
  11744. }
  11745. #u8766 {
  11746. border-width:0px;
  11747. position:absolute;
  11748. left:0px;
  11749. top:0px;
  11750. width:0px;
  11751. height:0px;
  11752. }
  11753. #u8767_div {
  11754. border-width:0px;
  11755. position:absolute;
  11756. left:0px;
  11757. top:0px;
  11758. width:30px;
  11759. height:30px;
  11760. background:inherit;
  11761. background-color:rgba(255, 255, 255, 1);
  11762. box-sizing:border-box;
  11763. border-width:1px;
  11764. border-style:solid;
  11765. border-color:rgba(121, 121, 121, 1);
  11766. border-radius:0px;
  11767. filter:drop-shadow(none);
  11768. transition:none;
  11769. }
  11770. #u8767 {
  11771. border-width:0px;
  11772. position:absolute;
  11773. left:1683px;
  11774. top:215px;
  11775. width:30px;
  11776. height:30px;
  11777. display:flex;
  11778. transition:none;
  11779. transform-origin:50% 50%;
  11780. }
  11781. #u8767 .text {
  11782. position:absolute;
  11783. align-self:center;
  11784. padding:2px 2px 2px 2px;
  11785. box-sizing:border-box;
  11786. width:100%;
  11787. }
  11788. #u8767_text {
  11789. border-width:0px;
  11790. word-wrap:break-word;
  11791. text-transform:none;
  11792. visibility:hidden;
  11793. }
  11794. #u8768 {
  11795. border-width:0px;
  11796. position:absolute;
  11797. left:1689px;
  11798. top:221px;
  11799. width:19px;
  11800. height:18px;
  11801. display:flex;
  11802. transition:none;
  11803. }
  11804. #u8768 .text {
  11805. position:absolute;
  11806. align-self:center;
  11807. padding:2px 2px 2px 2px;
  11808. box-sizing:border-box;
  11809. width:100%;
  11810. }
  11811. #u8768_img {
  11812. border-width:0px;
  11813. position:absolute;
  11814. left:0px;
  11815. top:0px;
  11816. width:19px;
  11817. height:18px;
  11818. }
  11819. #u8768_text {
  11820. border-width:0px;
  11821. word-wrap:break-word;
  11822. text-transform:none;
  11823. visibility:hidden;
  11824. }
  11825. #u8769 {
  11826. border-width:0px;
  11827. position:absolute;
  11828. left:0px;
  11829. top:0px;
  11830. width:0px;
  11831. height:0px;
  11832. }
  11833. #u8770_div {
  11834. border-width:0px;
  11835. position:absolute;
  11836. left:0px;
  11837. top:0px;
  11838. width:30px;
  11839. height:30px;
  11840. background:inherit;
  11841. background-color:rgba(255, 255, 255, 1);
  11842. box-sizing:border-box;
  11843. border-width:1px;
  11844. border-style:solid;
  11845. border-color:rgba(121, 121, 121, 1);
  11846. border-radius:0px;
  11847. filter:drop-shadow(none);
  11848. transition:none;
  11849. }
  11850. #u8770 {
  11851. border-width:0px;
  11852. position:absolute;
  11853. left:1723px;
  11854. top:215px;
  11855. width:30px;
  11856. height:30px;
  11857. display:flex;
  11858. transition:none;
  11859. transform-origin:50% 50%;
  11860. }
  11861. #u8770 .text {
  11862. position:absolute;
  11863. align-self:center;
  11864. padding:2px 2px 2px 2px;
  11865. box-sizing:border-box;
  11866. width:100%;
  11867. }
  11868. #u8770_text {
  11869. border-width:0px;
  11870. word-wrap:break-word;
  11871. text-transform:none;
  11872. visibility:hidden;
  11873. }
  11874. #u8771 {
  11875. border-width:0px;
  11876. position:absolute;
  11877. left:1729px;
  11878. top:221px;
  11879. width:19px;
  11880. height:18px;
  11881. display:flex;
  11882. -webkit-transform:rotate(300deg);
  11883. -moz-transform:rotate(300deg);
  11884. -ms-transform:rotate(300deg);
  11885. transform:rotate(300deg);
  11886. transition:none;
  11887. }
  11888. #u8771 .text {
  11889. position:absolute;
  11890. align-self:center;
  11891. padding:2px 2px 2px 2px;
  11892. box-sizing:border-box;
  11893. width:100%;
  11894. }
  11895. #u8771_img {
  11896. border-width:0px;
  11897. position:absolute;
  11898. left:0px;
  11899. top:0px;
  11900. width:19px;
  11901. height:18px;
  11902. }
  11903. #u8771_text {
  11904. border-width:0px;
  11905. word-wrap:break-word;
  11906. text-transform:none;
  11907. visibility:hidden;
  11908. }
  11909. #u8772_div {
  11910. border-width:0px;
  11911. position:absolute;
  11912. left:0px;
  11913. top:0px;
  11914. width:30px;
  11915. height:30px;
  11916. background:inherit;
  11917. background-color:rgba(255, 255, 255, 1);
  11918. box-sizing:border-box;
  11919. border-width:1px;
  11920. border-style:solid;
  11921. border-color:rgba(121, 121, 121, 1);
  11922. border-radius:0px;
  11923. filter:drop-shadow(none);
  11924. transition:none;
  11925. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11926. font-weight:700;
  11927. font-style:normal;
  11928. font-size:24px;
  11929. }
  11930. #u8772 {
  11931. border-width:0px;
  11932. position:absolute;
  11933. left:1764px;
  11934. top:134px;
  11935. width:30px;
  11936. height:30px;
  11937. display:flex;
  11938. transition:none;
  11939. transform-origin:50% 50%;
  11940. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11941. font-weight:700;
  11942. font-style:normal;
  11943. font-size:24px;
  11944. }
  11945. #u8772 .text {
  11946. position:absolute;
  11947. align-self:center;
  11948. padding:2px 2px 2px 2px;
  11949. box-sizing:border-box;
  11950. width:100%;
  11951. }
  11952. #u8772_text {
  11953. border-width:0px;
  11954. word-wrap:break-word;
  11955. text-transform:none;
  11956. }
  11957. #u8773_div {
  11958. border-width:0px;
  11959. position:absolute;
  11960. left:0px;
  11961. top:0px;
  11962. width:30px;
  11963. height:30px;
  11964. background:inherit;
  11965. background-color:rgba(255, 255, 255, 1);
  11966. box-sizing:border-box;
  11967. border-width:1px;
  11968. border-style:solid;
  11969. border-color:rgba(121, 121, 121, 1);
  11970. border-radius:0px;
  11971. filter:drop-shadow(none);
  11972. transition:none;
  11973. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11974. font-weight:700;
  11975. font-style:normal;
  11976. font-size:24px;
  11977. }
  11978. #u8773 {
  11979. border-width:0px;
  11980. position:absolute;
  11981. left:1764px;
  11982. top:174px;
  11983. width:30px;
  11984. height:30px;
  11985. display:flex;
  11986. transition:none;
  11987. transform-origin:50% 50%;
  11988. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11989. font-weight:700;
  11990. font-style:normal;
  11991. font-size:24px;
  11992. }
  11993. #u8773 .text {
  11994. position:absolute;
  11995. align-self:center;
  11996. padding:2px 2px 2px 2px;
  11997. box-sizing:border-box;
  11998. width:100%;
  11999. }
  12000. #u8773_text {
  12001. border-width:0px;
  12002. word-wrap:break-word;
  12003. text-transform:none;
  12004. }
  12005. #u8774_div {
  12006. border-width:0px;
  12007. position:absolute;
  12008. left:0px;
  12009. top:0px;
  12010. width:30px;
  12011. height:30px;
  12012. background:inherit;
  12013. background-color:rgba(255, 255, 255, 1);
  12014. box-sizing:border-box;
  12015. border-width:1px;
  12016. border-style:solid;
  12017. border-color:rgba(121, 121, 121, 1);
  12018. border-radius:0px;
  12019. filter:drop-shadow(none);
  12020. transition:none;
  12021. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12022. font-weight:700;
  12023. font-style:normal;
  12024. font-size:24px;
  12025. }
  12026. #u8774 {
  12027. border-width:0px;
  12028. position:absolute;
  12029. left:1764px;
  12030. top:215px;
  12031. width:30px;
  12032. height:30px;
  12033. display:flex;
  12034. transition:none;
  12035. transform-origin:50% 50%;
  12036. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12037. font-weight:700;
  12038. font-style:normal;
  12039. font-size:24px;
  12040. }
  12041. #u8774 .text {
  12042. position:absolute;
  12043. align-self:center;
  12044. padding:2px 2px 2px 2px;
  12045. box-sizing:border-box;
  12046. width:100%;
  12047. }
  12048. #u8774_text {
  12049. border-width:0px;
  12050. word-wrap:break-word;
  12051. text-transform:none;
  12052. }
  12053. #u8775 {
  12054. border-width:0px;
  12055. position:absolute;
  12056. left:0px;
  12057. top:0px;
  12058. width:0px;
  12059. height:0px;
  12060. }
  12061. #u8776_div {
  12062. border-width:0px;
  12063. position:absolute;
  12064. left:0px;
  12065. top:0px;
  12066. width:30px;
  12067. height:30px;
  12068. background:inherit;
  12069. background-color:rgba(255, 255, 255, 1);
  12070. box-sizing:border-box;
  12071. border-width:1px;
  12072. border-style:solid;
  12073. border-color:rgba(121, 121, 121, 1);
  12074. border-radius:0px;
  12075. filter:drop-shadow(none);
  12076. transition:none;
  12077. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12078. font-weight:700;
  12079. font-style:normal;
  12080. font-size:18px;
  12081. }
  12082. #u8776 {
  12083. border-width:0px;
  12084. position:absolute;
  12085. left:1804px;
  12086. top:134px;
  12087. width:30px;
  12088. height:30px;
  12089. display:flex;
  12090. transition:none;
  12091. transform-origin:50% 50%;
  12092. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12093. font-weight:700;
  12094. font-style:normal;
  12095. font-size:18px;
  12096. }
  12097. #u8776 .text {
  12098. position:absolute;
  12099. align-self:center;
  12100. padding:2px 2px 2px 2px;
  12101. box-sizing:border-box;
  12102. width:100%;
  12103. }
  12104. #u8776_text {
  12105. border-width:0px;
  12106. word-wrap:break-word;
  12107. text-transform:none;
  12108. visibility:hidden;
  12109. }
  12110. #u8777 {
  12111. border-width:0px;
  12112. position:absolute;
  12113. left:1812px;
  12114. top:142px;
  12115. width:14px;
  12116. height:14px;
  12117. display:flex;
  12118. transition:none;
  12119. }
  12120. #u8777 .text {
  12121. position:absolute;
  12122. align-self:center;
  12123. padding:2px 2px 2px 2px;
  12124. box-sizing:border-box;
  12125. width:100%;
  12126. }
  12127. #u8777_img {
  12128. border-width:0px;
  12129. position:absolute;
  12130. left:0px;
  12131. top:0px;
  12132. width:14px;
  12133. height:14px;
  12134. }
  12135. #u8777_text {
  12136. border-width:0px;
  12137. word-wrap:break-word;
  12138. text-transform:none;
  12139. visibility:hidden;
  12140. }
  12141. #u8778 {
  12142. border-width:0px;
  12143. position:absolute;
  12144. left:0px;
  12145. top:0px;
  12146. width:0px;
  12147. height:0px;
  12148. }
  12149. #u8779_div {
  12150. border-width:0px;
  12151. position:absolute;
  12152. left:0px;
  12153. top:0px;
  12154. width:30px;
  12155. height:30px;
  12156. background:inherit;
  12157. background-color:rgba(255, 255, 255, 1);
  12158. box-sizing:border-box;
  12159. border-width:1px;
  12160. border-style:solid;
  12161. border-color:rgba(121, 121, 121, 1);
  12162. border-radius:0px;
  12163. filter:drop-shadow(none);
  12164. transition:none;
  12165. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12166. font-weight:700;
  12167. font-style:normal;
  12168. font-size:18px;
  12169. }
  12170. #u8779 {
  12171. border-width:0px;
  12172. position:absolute;
  12173. left:1804px;
  12174. top:174px;
  12175. width:30px;
  12176. height:30px;
  12177. display:flex;
  12178. transition:none;
  12179. transform-origin:50% 50%;
  12180. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12181. font-weight:700;
  12182. font-style:normal;
  12183. font-size:18px;
  12184. }
  12185. #u8779 .text {
  12186. position:absolute;
  12187. align-self:center;
  12188. padding:2px 2px 2px 2px;
  12189. box-sizing:border-box;
  12190. width:100%;
  12191. }
  12192. #u8779_text {
  12193. border-width:0px;
  12194. word-wrap:break-word;
  12195. text-transform:none;
  12196. visibility:hidden;
  12197. }
  12198. #u8780 {
  12199. border-width:0px;
  12200. position:absolute;
  12201. left:1812px;
  12202. top:183px;
  12203. width:14px;
  12204. height:14px;
  12205. display:flex;
  12206. transition:none;
  12207. }
  12208. #u8780 .text {
  12209. position:absolute;
  12210. align-self:center;
  12211. padding:2px 2px 2px 2px;
  12212. box-sizing:border-box;
  12213. width:100%;
  12214. }
  12215. #u8780_img {
  12216. border-width:0px;
  12217. position:absolute;
  12218. left:0px;
  12219. top:0px;
  12220. width:14px;
  12221. height:14px;
  12222. }
  12223. #u8780_text {
  12224. border-width:0px;
  12225. word-wrap:break-word;
  12226. text-transform:none;
  12227. visibility:hidden;
  12228. }
  12229. #u8781 {
  12230. border-width:0px;
  12231. position:absolute;
  12232. left:0px;
  12233. top:0px;
  12234. width:0px;
  12235. height:0px;
  12236. }
  12237. #u8782_div {
  12238. border-width:0px;
  12239. position:absolute;
  12240. left:0px;
  12241. top:0px;
  12242. width:30px;
  12243. height:30px;
  12244. background:inherit;
  12245. background-color:rgba(255, 255, 255, 1);
  12246. box-sizing:border-box;
  12247. border-width:1px;
  12248. border-style:solid;
  12249. border-color:rgba(121, 121, 121, 1);
  12250. border-radius:0px;
  12251. filter:drop-shadow(none);
  12252. transition:none;
  12253. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12254. font-weight:700;
  12255. font-style:normal;
  12256. font-size:18px;
  12257. }
  12258. #u8782 {
  12259. border-width:0px;
  12260. position:absolute;
  12261. left:1804px;
  12262. top:215px;
  12263. width:30px;
  12264. height:30px;
  12265. display:flex;
  12266. transition:none;
  12267. transform-origin:50% 50%;
  12268. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  12269. font-weight:700;
  12270. font-style:normal;
  12271. font-size:18px;
  12272. }
  12273. #u8782 .text {
  12274. position:absolute;
  12275. align-self:center;
  12276. padding:2px 2px 2px 2px;
  12277. box-sizing:border-box;
  12278. width:100%;
  12279. }
  12280. #u8782_text {
  12281. border-width:0px;
  12282. word-wrap:break-word;
  12283. text-transform:none;
  12284. visibility:hidden;
  12285. }
  12286. #u8783 {
  12287. border-width:0px;
  12288. position:absolute;
  12289. left:1811px;
  12290. top:225px;
  12291. width:17px;
  12292. height:11px;
  12293. display:flex;
  12294. transition:none;
  12295. }
  12296. #u8783 .text {
  12297. position:absolute;
  12298. align-self:center;
  12299. padding:2px 2px 2px 2px;
  12300. box-sizing:border-box;
  12301. width:100%;
  12302. }
  12303. #u8783_img {
  12304. border-width:0px;
  12305. position:absolute;
  12306. left:0px;
  12307. top:0px;
  12308. width:17px;
  12309. height:11px;
  12310. }
  12311. #u8783_text {
  12312. border-width:0px;
  12313. word-wrap:break-word;
  12314. text-transform:none;
  12315. visibility:hidden;
  12316. }
  12317. #u8784 {
  12318. border-width:0px;
  12319. position:absolute;
  12320. left:0px;
  12321. top:0px;
  12322. width:0px;
  12323. height:0px;
  12324. }
  12325. #u8785_div {
  12326. border-width:0px;
  12327. position:absolute;
  12328. left:0px;
  12329. top:0px;
  12330. width:85px;
  12331. height:21px;
  12332. background:inherit;
  12333. background-color:rgba(51, 51, 51, 1);
  12334. border-radius:11px;
  12335. filter:drop-shadow(none);
  12336. transition:none;
  12337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12338. font-weight:400;
  12339. font-style:normal;
  12340. font-size:12px;
  12341. color:#FFFFFF;
  12342. text-align:center;
  12343. }
  12344. #u8785 {
  12345. border-width:0px;
  12346. position:absolute;
  12347. left:1734px;
  12348. top:241px;
  12349. width:85px;
  12350. height:21px;
  12351. display:flex;
  12352. transition:none;
  12353. transform-origin:50% 50%;
  12354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12355. font-weight:400;
  12356. font-style:normal;
  12357. font-size:12px;
  12358. color:#FFFFFF;
  12359. text-align:center;
  12360. }
  12361. #u8785 .text {
  12362. position:absolute;
  12363. align-self:center;
  12364. padding:2px 2px 2px 2px;
  12365. box-sizing:border-box;
  12366. width:100%;
  12367. }
  12368. #u8785_text {
  12369. border-width:0px;
  12370. word-wrap:break-word;
  12371. text-transform:none;
  12372. }
  12373. #u8786 {
  12374. border-width:0px;
  12375. position:absolute;
  12376. left:1787px;
  12377. top:273px;
  12378. width:11px;
  12379. height:17px;
  12380. display:flex;
  12381. transition:none;
  12382. }
  12383. #u8786 .text {
  12384. position:absolute;
  12385. align-self:center;
  12386. padding:2px 2px 2px 2px;
  12387. box-sizing:border-box;
  12388. width:100%;
  12389. }
  12390. #u8786_img {
  12391. border-width:0px;
  12392. position:absolute;
  12393. left:0px;
  12394. top:0px;
  12395. width:11px;
  12396. height:17px;
  12397. }
  12398. #u8786_text {
  12399. border-width:0px;
  12400. word-wrap:break-word;
  12401. text-transform:none;
  12402. visibility:hidden;
  12403. }
  12404. #u8787_div {
  12405. border-width:0px;
  12406. position:absolute;
  12407. left:0px;
  12408. top:0px;
  12409. width:193px;
  12410. height:6px;
  12411. background:inherit;
  12412. background-color:rgba(255, 255, 255, 1);
  12413. box-sizing:border-box;
  12414. border-width:1px;
  12415. border-style:solid;
  12416. border-color:rgba(228, 228, 228, 1);
  12417. border-radius:0px;
  12418. filter:drop-shadow(none);
  12419. transition:none;
  12420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12421. font-weight:400;
  12422. font-style:normal;
  12423. font-size:12px;
  12424. color:#FFFFFF;
  12425. }
  12426. #u8787 {
  12427. border-width:0px;
  12428. position:absolute;
  12429. left:1641px;
  12430. top:270px;
  12431. width:193px;
  12432. height:6px;
  12433. display:flex;
  12434. transition:none;
  12435. transform-origin:50% 50%;
  12436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12437. font-weight:400;
  12438. font-style:normal;
  12439. font-size:12px;
  12440. color:#FFFFFF;
  12441. }
  12442. #u8787 .text {
  12443. position:absolute;
  12444. align-self:center;
  12445. padding:8px 15px 8px 15px;
  12446. box-sizing:border-box;
  12447. width:100%;
  12448. }
  12449. #u8787_text {
  12450. border-width:0px;
  12451. word-wrap:break-word;
  12452. text-transform:none;
  12453. visibility:hidden;
  12454. }
  12455. #u8788_div {
  12456. border-width:0px;
  12457. position:absolute;
  12458. left:0px;
  12459. top:0px;
  12460. width:142px;
  12461. height:6px;
  12462. background:inherit;
  12463. background-color:rgba(51, 153, 255, 1);
  12464. box-sizing:border-box;
  12465. border-width:1px;
  12466. border-style:solid;
  12467. border-color:rgba(228, 228, 228, 1);
  12468. border-radius:0px;
  12469. filter:drop-shadow(none);
  12470. transition:none;
  12471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12472. font-weight:400;
  12473. font-style:normal;
  12474. font-size:12px;
  12475. color:#FFFFFF;
  12476. }
  12477. #u8788 {
  12478. border-width:0px;
  12479. position:absolute;
  12480. left:1641px;
  12481. top:270px;
  12482. width:142px;
  12483. height:6px;
  12484. display:flex;
  12485. transition:none;
  12486. transform-origin:50% 50%;
  12487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12488. font-weight:400;
  12489. font-style:normal;
  12490. font-size:12px;
  12491. color:#FFFFFF;
  12492. }
  12493. #u8788 .text {
  12494. position:absolute;
  12495. align-self:center;
  12496. padding:8px 15px 8px 15px;
  12497. box-sizing:border-box;
  12498. width:100%;
  12499. }
  12500. #u8788_text {
  12501. border-width:0px;
  12502. word-wrap:break-word;
  12503. text-transform:none;
  12504. visibility:hidden;
  12505. }
  12506. #u8789 {
  12507. border-width:0px;
  12508. position:absolute;
  12509. left:1772px;
  12510. top:266px;
  12511. width:14px;
  12512. height:14px;
  12513. display:flex;
  12514. transition:none;
  12515. }
  12516. #u8789 .text {
  12517. position:absolute;
  12518. align-self:center;
  12519. padding:2px 2px 2px 2px;
  12520. box-sizing:border-box;
  12521. width:100%;
  12522. }
  12523. #u8789_img {
  12524. border-width:0px;
  12525. position:absolute;
  12526. left:-3px;
  12527. top:-3px;
  12528. width:20px;
  12529. height:20px;
  12530. }
  12531. #u8789_text {
  12532. border-width:0px;
  12533. word-wrap:break-word;
  12534. text-transform:none;
  12535. visibility:hidden;
  12536. }
  12537. #u8790 {
  12538. border-width:0px;
  12539. position:absolute;
  12540. left:0px;
  12541. top:0px;
  12542. width:0px;
  12543. height:0px;
  12544. }
  12545. #u8791_div {
  12546. border-width:0px;
  12547. position:absolute;
  12548. left:0px;
  12549. top:0px;
  12550. width:90px;
  12551. height:30px;
  12552. background:inherit;
  12553. background-color:rgba(255, 255, 255, 1);
  12554. box-sizing:border-box;
  12555. border-width:1px;
  12556. border-style:solid;
  12557. border-color:rgba(215, 215, 215, 1);
  12558. border-radius:4px;
  12559. filter:drop-shadow(none);
  12560. transition:none;
  12561. font-size:14px;
  12562. }
  12563. #u8791 {
  12564. border-width:0px;
  12565. position:absolute;
  12566. left:1642px;
  12567. top:325px;
  12568. width:90px;
  12569. height:30px;
  12570. display:flex;
  12571. transition:none;
  12572. transform-origin:50% 50%;
  12573. font-size:14px;
  12574. }
  12575. #u8791 .text {
  12576. position:absolute;
  12577. align-self:center;
  12578. padding:2px 2px 2px 2px;
  12579. box-sizing:border-box;
  12580. width:100%;
  12581. }
  12582. #u8791_text {
  12583. border-width:0px;
  12584. word-wrap:break-word;
  12585. text-transform:none;
  12586. visibility:hidden;
  12587. }
  12588. #u8792_input {
  12589. position:absolute;
  12590. left:0px;
  12591. top:0px;
  12592. width:86px;
  12593. height:23px;
  12594. padding:2px 2px 2px 2px;
  12595. font-family:'ArialMT', 'Arial', sans-serif;
  12596. font-weight:400;
  12597. font-style:normal;
  12598. font-size:14px;
  12599. letter-spacing:normal;
  12600. color:#AAAAAA;
  12601. vertical-align:none;
  12602. text-align:left;
  12603. text-transform:none;
  12604. background-color:transparent;
  12605. border-color:transparent;
  12606. }
  12607. #u8792_input.disabled {
  12608. position:absolute;
  12609. left:0px;
  12610. top:0px;
  12611. width:86px;
  12612. height:23px;
  12613. padding:2px 2px 2px 2px;
  12614. font-family:'ArialMT', 'Arial', sans-serif;
  12615. font-weight:400;
  12616. font-style:normal;
  12617. font-size:14px;
  12618. letter-spacing:normal;
  12619. color:#AAAAAA;
  12620. vertical-align:none;
  12621. text-align:left;
  12622. text-transform:none;
  12623. background-color:transparent;
  12624. border-color:transparent;
  12625. }
  12626. #u8792_div {
  12627. border-width:0px;
  12628. position:absolute;
  12629. left:0px;
  12630. top:0px;
  12631. width:86px;
  12632. height:23px;
  12633. background:inherit;
  12634. background-color:rgba(255, 255, 255, 1);
  12635. border-radius:0px;
  12636. filter:drop-shadow(none);
  12637. transition:none;
  12638. font-size:14px;
  12639. color:#AAAAAA;
  12640. }
  12641. #u8792 {
  12642. border-width:0px;
  12643. position:absolute;
  12644. left:1645px;
  12645. top:327px;
  12646. width:86px;
  12647. height:23px;
  12648. display:flex;
  12649. transition:none;
  12650. transform-origin:50% 50%;
  12651. font-size:14px;
  12652. color:#AAAAAA;
  12653. }
  12654. #u8792 .text {
  12655. position:absolute;
  12656. align-self:flex-start;
  12657. padding:2px 2px 2px 2px;
  12658. box-sizing:border-box;
  12659. width:100%;
  12660. }
  12661. #u8792_div.disabled {
  12662. border-width:0px;
  12663. position:absolute;
  12664. left:0px;
  12665. top:0px;
  12666. width:86px;
  12667. height:23px;
  12668. background:inherit;
  12669. background-color:rgba(240, 240, 240, 1);
  12670. border-radius:0px;
  12671. filter:drop-shadow(none);
  12672. transition:none;
  12673. font-size:14px;
  12674. color:#AAAAAA;
  12675. }
  12676. #u8792.disabled {
  12677. }
  12678. .u8792_input_option {
  12679. font-size:14px;
  12680. }
  12681. #u8793_div {
  12682. border-width:0px;
  12683. position:absolute;
  12684. left:0px;
  12685. top:0px;
  12686. width:58px;
  12687. height:30px;
  12688. background:inherit;
  12689. background-color:rgba(255, 255, 255, 0);
  12690. border-radius:0px;
  12691. filter:drop-shadow(none);
  12692. transition:none;
  12693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12694. font-weight:500;
  12695. font-style:normal;
  12696. font-size:14px;
  12697. color:#000000;
  12698. line-height:30px;
  12699. }
  12700. #u8793 {
  12701. border-width:0px;
  12702. position:absolute;
  12703. left:1641px;
  12704. top:294px;
  12705. width:58px;
  12706. height:30px;
  12707. display:flex;
  12708. transition:none;
  12709. transform-origin:50% 50%;
  12710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12711. font-weight:500;
  12712. font-style:normal;
  12713. font-size:14px;
  12714. color:#000000;
  12715. line-height:30px;
  12716. }
  12717. #u8793 .text {
  12718. position:absolute;
  12719. align-self:flex-start;
  12720. padding:0px 0px 0px 0px;
  12721. box-sizing:border-box;
  12722. width:100%;
  12723. }
  12724. #u8793_text {
  12725. border-width:0px;
  12726. word-wrap:break-word;
  12727. text-transform:none;
  12728. }
  12729. #u8794 {
  12730. border-width:0px;
  12731. position:absolute;
  12732. left:0px;
  12733. top:0px;
  12734. width:0px;
  12735. height:0px;
  12736. }
  12737. #u8795_div {
  12738. border-width:0px;
  12739. position:absolute;
  12740. left:0px;
  12741. top:0px;
  12742. width:114px;
  12743. height:30px;
  12744. background:inherit;
  12745. background-color:rgba(255, 255, 255, 1);
  12746. box-sizing:border-box;
  12747. border-width:1px;
  12748. border-style:solid;
  12749. border-color:rgba(201, 201, 201, 1);
  12750. border-radius:4px;
  12751. filter:drop-shadow(none);
  12752. transition:none;
  12753. font-family:"Microsoft YaHei", sans-serif;
  12754. font-weight:400;
  12755. font-style:normal;
  12756. font-size:14px;
  12757. color:#CCCCCC;
  12758. text-align:left;
  12759. }
  12760. #u8795 {
  12761. border-width:0px;
  12762. position:absolute;
  12763. left:1739px;
  12764. top:325px;
  12765. width:114px;
  12766. height:30px;
  12767. display:flex;
  12768. transition:none;
  12769. transform-origin:50% 50%;
  12770. font-family:"Microsoft YaHei", sans-serif;
  12771. font-weight:400;
  12772. font-style:normal;
  12773. font-size:14px;
  12774. color:#CCCCCC;
  12775. text-align:left;
  12776. }
  12777. #u8795 .text {
  12778. position:absolute;
  12779. align-self:center;
  12780. padding:2px 8px 2px 8px;
  12781. box-sizing:border-box;
  12782. width:100%;
  12783. }
  12784. #u8795_text {
  12785. border-width:0px;
  12786. word-wrap:break-word;
  12787. text-transform:none;
  12788. visibility:hidden;
  12789. }
  12790. #u8796_input {
  12791. position:absolute;
  12792. left:0px;
  12793. top:0px;
  12794. width:104px;
  12795. height:25px;
  12796. padding:2px 2px 2px 2px;
  12797. font-family:"Microsoft YaHei", sans-serif;
  12798. font-weight:400;
  12799. font-style:normal;
  12800. font-size:10px;
  12801. letter-spacing:normal;
  12802. color:#000000;
  12803. vertical-align:none;
  12804. text-align:left;
  12805. text-transform:none;
  12806. background-color:transparent;
  12807. border-color:transparent;
  12808. }
  12809. #u8796_input.hint {
  12810. position:absolute;
  12811. left:0px;
  12812. top:0px;
  12813. width:104px;
  12814. height:25px;
  12815. padding:2px 2px 2px 2px;
  12816. font-family:"Microsoft YaHei", sans-serif;
  12817. font-weight:400;
  12818. font-style:normal;
  12819. font-size:12px;
  12820. letter-spacing:normal;
  12821. color:#AAAAAA;
  12822. vertical-align:none;
  12823. text-align:left;
  12824. text-transform:none;
  12825. background-color:transparent;
  12826. border-color:transparent;
  12827. }
  12828. #u8796_input.disabled {
  12829. position:absolute;
  12830. left:0px;
  12831. top:0px;
  12832. width:104px;
  12833. height:25px;
  12834. padding:2px 2px 2px 2px;
  12835. font-family:"Microsoft YaHei", sans-serif;
  12836. font-weight:400;
  12837. font-style:normal;
  12838. font-size:10px;
  12839. letter-spacing:normal;
  12840. color:#000000;
  12841. vertical-align:none;
  12842. text-align:left;
  12843. text-transform:none;
  12844. background-color:transparent;
  12845. border-color:transparent;
  12846. }
  12847. #u8796_input.hint.disabled {
  12848. position:absolute;
  12849. left:0px;
  12850. top:0px;
  12851. width:104px;
  12852. height:25px;
  12853. padding:2px 2px 2px 2px;
  12854. font-family:"Microsoft YaHei", sans-serif;
  12855. font-weight:400;
  12856. font-style:normal;
  12857. font-size:12px;
  12858. letter-spacing:normal;
  12859. color:#AAAAAA;
  12860. vertical-align:none;
  12861. text-align:left;
  12862. text-transform:none;
  12863. background-color:transparent;
  12864. border-color:transparent;
  12865. }
  12866. #u8796_div {
  12867. border-width:0px;
  12868. position:absolute;
  12869. left:0px;
  12870. top:0px;
  12871. width:104px;
  12872. height:25px;
  12873. background:inherit;
  12874. background-color:rgba(255, 255, 255, 1);
  12875. border-radius:0px;
  12876. filter:drop-shadow(none);
  12877. transition:none;
  12878. font-family:"Microsoft YaHei", sans-serif;
  12879. font-weight:400;
  12880. font-style:normal;
  12881. font-size:10px;
  12882. }
  12883. #u8796 {
  12884. border-width:0px;
  12885. position:absolute;
  12886. left:1745px;
  12887. top:326px;
  12888. width:104px;
  12889. height:25px;
  12890. display:flex;
  12891. transition:none;
  12892. transform-origin:50% 50%;
  12893. font-family:"Microsoft YaHei", sans-serif;
  12894. font-weight:400;
  12895. font-style:normal;
  12896. font-size:10px;
  12897. }
  12898. #u8796 .text {
  12899. position:absolute;
  12900. align-self:center;
  12901. padding:2px 2px 2px 2px;
  12902. box-sizing:border-box;
  12903. width:100%;
  12904. }
  12905. #u8796_div.hint {
  12906. border-width:0px;
  12907. position:absolute;
  12908. left:0px;
  12909. top:0px;
  12910. width:104px;
  12911. height:25px;
  12912. background:inherit;
  12913. background-color:rgba(255, 255, 255, 1);
  12914. border-radius:0px;
  12915. filter:drop-shadow(none);
  12916. transition:none;
  12917. font-family:"Microsoft YaHei", sans-serif;
  12918. font-weight:400;
  12919. font-style:normal;
  12920. font-size:10px;
  12921. }
  12922. #u8796.hint {
  12923. }
  12924. #u8796_div.disabled {
  12925. border-width:0px;
  12926. position:absolute;
  12927. left:0px;
  12928. top:0px;
  12929. width:104px;
  12930. height:25px;
  12931. background:inherit;
  12932. background-color:rgba(240, 240, 240, 1);
  12933. border-radius:0px;
  12934. filter:drop-shadow(none);
  12935. transition:none;
  12936. font-family:"Microsoft YaHei", sans-serif;
  12937. font-weight:400;
  12938. font-style:normal;
  12939. font-size:10px;
  12940. }
  12941. #u8796.disabled {
  12942. }
  12943. #u8796_div.hint.disabled {
  12944. border-width:0px;
  12945. position:absolute;
  12946. left:0px;
  12947. top:0px;
  12948. width:104px;
  12949. height:25px;
  12950. background:inherit;
  12951. background-color:rgba(240, 240, 240, 1);
  12952. border-radius:0px;
  12953. filter:drop-shadow(none);
  12954. transition:none;
  12955. font-family:"Microsoft YaHei", sans-serif;
  12956. font-weight:400;
  12957. font-style:normal;
  12958. font-size:10px;
  12959. }
  12960. #u8796.hint.disabled {
  12961. }
  12962. #u8797_div {
  12963. border-width:0px;
  12964. position:absolute;
  12965. left:0px;
  12966. top:0px;
  12967. width:51px;
  12968. height:30px;
  12969. background:inherit;
  12970. background-color:rgba(255, 138, 5, 1);
  12971. border-radius:4px;
  12972. filter:drop-shadow(none);
  12973. transition:none;
  12974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12975. font-weight:400;
  12976. font-style:normal;
  12977. font-size:12px;
  12978. color:#FFFFFF;
  12979. }
  12980. #u8797 {
  12981. border-width:0px;
  12982. position:absolute;
  12983. left:1642px;
  12984. top:366px;
  12985. width:51px;
  12986. height:30px;
  12987. display:flex;
  12988. transition:none;
  12989. transform-origin:50% 50%;
  12990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12991. font-weight:400;
  12992. font-style:normal;
  12993. font-size:12px;
  12994. color:#FFFFFF;
  12995. }
  12996. #u8797 .text {
  12997. position:absolute;
  12998. align-self:center;
  12999. padding:5px 0px 5px 0px;
  13000. box-sizing:border-box;
  13001. width:100%;
  13002. }
  13003. #u8797_text {
  13004. border-width:0px;
  13005. word-wrap:break-word;
  13006. text-transform:none;
  13007. }
  13008. #u8798_div {
  13009. border-width:0px;
  13010. position:absolute;
  13011. left:0px;
  13012. top:0px;
  13013. width:51px;
  13014. height:30px;
  13015. background:inherit;
  13016. background-color:rgba(255, 138, 5, 1);
  13017. border-radius:4px;
  13018. filter:drop-shadow(none);
  13019. transition:none;
  13020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13021. font-weight:400;
  13022. font-style:normal;
  13023. font-size:12px;
  13024. color:#FFFFFF;
  13025. }
  13026. #u8798 {
  13027. border-width:0px;
  13028. position:absolute;
  13029. left:1703px;
  13030. top:366px;
  13031. width:51px;
  13032. height:30px;
  13033. display:flex;
  13034. transition:none;
  13035. transform-origin:50% 50%;
  13036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13037. font-weight:400;
  13038. font-style:normal;
  13039. font-size:12px;
  13040. color:#FFFFFF;
  13041. }
  13042. #u8798 .text {
  13043. position:absolute;
  13044. align-self:center;
  13045. padding:5px 0px 5px 0px;
  13046. box-sizing:border-box;
  13047. width:100%;
  13048. }
  13049. #u8798_text {
  13050. border-width:0px;
  13051. word-wrap:break-word;
  13052. text-transform:none;
  13053. }
  13054. #u8799_div {
  13055. border-width:0px;
  13056. position:absolute;
  13057. left:0px;
  13058. top:0px;
  13059. width:447px;
  13060. height:286px;
  13061. background:inherit;
  13062. background-color:rgba(255, 255, 255, 0);
  13063. box-sizing:border-box;
  13064. border-width:3px;
  13065. border-style:solid;
  13066. border-color:rgba(24, 144, 255, 1);
  13067. border-radius:0px;
  13068. filter:drop-shadow(none);
  13069. transition:none;
  13070. }
  13071. #u8799 {
  13072. border-width:0px;
  13073. position:absolute;
  13074. left:2321px;
  13075. top:393px;
  13076. width:447px;
  13077. height:286px;
  13078. display:flex;
  13079. transition:none;
  13080. transform-origin:50% 50%;
  13081. }
  13082. #u8799 .text {
  13083. position:absolute;
  13084. align-self:center;
  13085. padding:2px 2px 2px 2px;
  13086. box-sizing:border-box;
  13087. width:100%;
  13088. }
  13089. #u8799_text {
  13090. border-width:0px;
  13091. word-wrap:break-word;
  13092. text-transform:none;
  13093. visibility:hidden;
  13094. }
  13095. #u8800 {
  13096. border-width:0px;
  13097. position:absolute;
  13098. left:0px;
  13099. top:0px;
  13100. width:0px;
  13101. height:0px;
  13102. }
  13103. #u8801 {
  13104. border-width:0px;
  13105. position:absolute;
  13106. left:0px;
  13107. top:0px;
  13108. width:0px;
  13109. height:0px;
  13110. }
  13111. #u8802 {
  13112. border-width:0px;
  13113. position:absolute;
  13114. left:3101px;
  13115. top:65px;
  13116. width:9px;
  13117. height:9px;
  13118. display:flex;
  13119. transition:none;
  13120. }
  13121. #u8802 .text {
  13122. position:absolute;
  13123. align-self:center;
  13124. padding:2px 2px 2px 2px;
  13125. box-sizing:border-box;
  13126. width:100%;
  13127. }
  13128. #u8802_img {
  13129. border-width:0px;
  13130. position:absolute;
  13131. left:0px;
  13132. top:0px;
  13133. width:9px;
  13134. height:9px;
  13135. }
  13136. #u8802_text {
  13137. border-width:0px;
  13138. word-wrap:break-word;
  13139. text-transform:none;
  13140. visibility:hidden;
  13141. }
  13142. #u8803 {
  13143. border-width:0px;
  13144. position:absolute;
  13145. left:3113px;
  13146. top:65px;
  13147. width:9px;
  13148. height:9px;
  13149. display:flex;
  13150. transition:none;
  13151. }
  13152. #u8803 .text {
  13153. position:absolute;
  13154. align-self:center;
  13155. padding:2px 2px 2px 2px;
  13156. box-sizing:border-box;
  13157. width:100%;
  13158. }
  13159. #u8803_img {
  13160. border-width:0px;
  13161. position:absolute;
  13162. left:0px;
  13163. top:0px;
  13164. width:9px;
  13165. height:9px;
  13166. }
  13167. #u8803_text {
  13168. border-width:0px;
  13169. word-wrap:break-word;
  13170. text-transform:none;
  13171. visibility:hidden;
  13172. }
  13173. #u8804 {
  13174. border-width:0px;
  13175. position:absolute;
  13176. left:3101px;
  13177. top:77px;
  13178. width:9px;
  13179. height:9px;
  13180. display:flex;
  13181. transition:none;
  13182. }
  13183. #u8804 .text {
  13184. position:absolute;
  13185. align-self:center;
  13186. padding:2px 2px 2px 2px;
  13187. box-sizing:border-box;
  13188. width:100%;
  13189. }
  13190. #u8804_img {
  13191. border-width:0px;
  13192. position:absolute;
  13193. left:0px;
  13194. top:0px;
  13195. width:9px;
  13196. height:9px;
  13197. }
  13198. #u8804_text {
  13199. border-width:0px;
  13200. word-wrap:break-word;
  13201. text-transform:none;
  13202. visibility:hidden;
  13203. }
  13204. #u8805 {
  13205. border-width:0px;
  13206. position:absolute;
  13207. left:3113px;
  13208. top:77px;
  13209. width:9px;
  13210. height:9px;
  13211. display:flex;
  13212. transition:none;
  13213. }
  13214. #u8805 .text {
  13215. position:absolute;
  13216. align-self:center;
  13217. padding:2px 2px 2px 2px;
  13218. box-sizing:border-box;
  13219. width:100%;
  13220. }
  13221. #u8805_img {
  13222. border-width:0px;
  13223. position:absolute;
  13224. left:0px;
  13225. top:0px;
  13226. width:9px;
  13227. height:9px;
  13228. }
  13229. #u8805_text {
  13230. border-width:0px;
  13231. word-wrap:break-word;
  13232. text-transform:none;
  13233. visibility:hidden;
  13234. }
  13235. #u8806 {
  13236. border-width:0px;
  13237. position:absolute;
  13238. left:0px;
  13239. top:0px;
  13240. width:0px;
  13241. height:0px;
  13242. }
  13243. #u8807 {
  13244. border-width:0px;
  13245. position:absolute;
  13246. left:3061px;
  13247. top:65px;
  13248. width:6px;
  13249. height:6px;
  13250. display:flex;
  13251. transition:none;
  13252. }
  13253. #u8807 .text {
  13254. position:absolute;
  13255. align-self:center;
  13256. padding:2px 2px 2px 2px;
  13257. box-sizing:border-box;
  13258. width:100%;
  13259. }
  13260. #u8807_img {
  13261. border-width:0px;
  13262. position:absolute;
  13263. left:0px;
  13264. top:0px;
  13265. width:6px;
  13266. height:6px;
  13267. }
  13268. #u8807_text {
  13269. border-width:0px;
  13270. word-wrap:break-word;
  13271. text-transform:none;
  13272. visibility:hidden;
  13273. }
  13274. #u8808 {
  13275. border-width:0px;
  13276. position:absolute;
  13277. left:3068px;
  13278. top:65px;
  13279. width:6px;
  13280. height:6px;
  13281. display:flex;
  13282. transition:none;
  13283. }
  13284. #u8808 .text {
  13285. position:absolute;
  13286. align-self:center;
  13287. padding:2px 2px 2px 2px;
  13288. box-sizing:border-box;
  13289. width:100%;
  13290. }
  13291. #u8808_img {
  13292. border-width:0px;
  13293. position:absolute;
  13294. left:0px;
  13295. top:0px;
  13296. width:6px;
  13297. height:6px;
  13298. }
  13299. #u8808_text {
  13300. border-width:0px;
  13301. word-wrap:break-word;
  13302. text-transform:none;
  13303. visibility:hidden;
  13304. }
  13305. #u8809 {
  13306. border-width:0px;
  13307. position:absolute;
  13308. left:3075px;
  13309. top:65px;
  13310. width:6px;
  13311. height:6px;
  13312. display:flex;
  13313. transition:none;
  13314. }
  13315. #u8809 .text {
  13316. position:absolute;
  13317. align-self:center;
  13318. padding:2px 2px 2px 2px;
  13319. box-sizing:border-box;
  13320. width:100%;
  13321. }
  13322. #u8809_img {
  13323. border-width:0px;
  13324. position:absolute;
  13325. left:0px;
  13326. top:0px;
  13327. width:6px;
  13328. height:6px;
  13329. }
  13330. #u8809_text {
  13331. border-width:0px;
  13332. word-wrap:break-word;
  13333. text-transform:none;
  13334. visibility:hidden;
  13335. }
  13336. #u8810 {
  13337. border-width:0px;
  13338. position:absolute;
  13339. left:3061px;
  13340. top:72px;
  13341. width:6px;
  13342. height:6px;
  13343. display:flex;
  13344. transition:none;
  13345. }
  13346. #u8810 .text {
  13347. position:absolute;
  13348. align-self:center;
  13349. padding:2px 2px 2px 2px;
  13350. box-sizing:border-box;
  13351. width:100%;
  13352. }
  13353. #u8810_img {
  13354. border-width:0px;
  13355. position:absolute;
  13356. left:0px;
  13357. top:0px;
  13358. width:6px;
  13359. height:6px;
  13360. }
  13361. #u8810_text {
  13362. border-width:0px;
  13363. word-wrap:break-word;
  13364. text-transform:none;
  13365. visibility:hidden;
  13366. }
  13367. #u8811 {
  13368. border-width:0px;
  13369. position:absolute;
  13370. left:3068px;
  13371. top:72px;
  13372. width:6px;
  13373. height:6px;
  13374. display:flex;
  13375. transition:none;
  13376. }
  13377. #u8811 .text {
  13378. position:absolute;
  13379. align-self:center;
  13380. padding:2px 2px 2px 2px;
  13381. box-sizing:border-box;
  13382. width:100%;
  13383. }
  13384. #u8811_img {
  13385. border-width:0px;
  13386. position:absolute;
  13387. left:0px;
  13388. top:0px;
  13389. width:6px;
  13390. height:6px;
  13391. }
  13392. #u8811_text {
  13393. border-width:0px;
  13394. word-wrap:break-word;
  13395. text-transform:none;
  13396. visibility:hidden;
  13397. }
  13398. #u8812 {
  13399. border-width:0px;
  13400. position:absolute;
  13401. left:3075px;
  13402. top:72px;
  13403. width:6px;
  13404. height:6px;
  13405. display:flex;
  13406. transition:none;
  13407. }
  13408. #u8812 .text {
  13409. position:absolute;
  13410. align-self:center;
  13411. padding:2px 2px 2px 2px;
  13412. box-sizing:border-box;
  13413. width:100%;
  13414. }
  13415. #u8812_img {
  13416. border-width:0px;
  13417. position:absolute;
  13418. left:0px;
  13419. top:0px;
  13420. width:6px;
  13421. height:6px;
  13422. }
  13423. #u8812_text {
  13424. border-width:0px;
  13425. word-wrap:break-word;
  13426. text-transform:none;
  13427. visibility:hidden;
  13428. }
  13429. #u8813 {
  13430. border-width:0px;
  13431. position:absolute;
  13432. left:3061px;
  13433. top:79px;
  13434. width:6px;
  13435. height:6px;
  13436. display:flex;
  13437. transition:none;
  13438. }
  13439. #u8813 .text {
  13440. position:absolute;
  13441. align-self:center;
  13442. padding:2px 2px 2px 2px;
  13443. box-sizing:border-box;
  13444. width:100%;
  13445. }
  13446. #u8813_img {
  13447. border-width:0px;
  13448. position:absolute;
  13449. left:0px;
  13450. top:0px;
  13451. width:6px;
  13452. height:6px;
  13453. }
  13454. #u8813_text {
  13455. border-width:0px;
  13456. word-wrap:break-word;
  13457. text-transform:none;
  13458. visibility:hidden;
  13459. }
  13460. #u8814 {
  13461. border-width:0px;
  13462. position:absolute;
  13463. left:3068px;
  13464. top:79px;
  13465. width:6px;
  13466. height:6px;
  13467. display:flex;
  13468. transition:none;
  13469. }
  13470. #u8814 .text {
  13471. position:absolute;
  13472. align-self:center;
  13473. padding:2px 2px 2px 2px;
  13474. box-sizing:border-box;
  13475. width:100%;
  13476. }
  13477. #u8814_img {
  13478. border-width:0px;
  13479. position:absolute;
  13480. left:0px;
  13481. top:0px;
  13482. width:6px;
  13483. height:6px;
  13484. }
  13485. #u8814_text {
  13486. border-width:0px;
  13487. word-wrap:break-word;
  13488. text-transform:none;
  13489. visibility:hidden;
  13490. }
  13491. #u8815 {
  13492. border-width:0px;
  13493. position:absolute;
  13494. left:3075px;
  13495. top:79px;
  13496. width:6px;
  13497. height:6px;
  13498. display:flex;
  13499. transition:none;
  13500. }
  13501. #u8815 .text {
  13502. position:absolute;
  13503. align-self:center;
  13504. padding:2px 2px 2px 2px;
  13505. box-sizing:border-box;
  13506. width:100%;
  13507. }
  13508. #u8815_img {
  13509. border-width:0px;
  13510. position:absolute;
  13511. left:0px;
  13512. top:0px;
  13513. width:6px;
  13514. height:6px;
  13515. }
  13516. #u8815_text {
  13517. border-width:0px;
  13518. word-wrap:break-word;
  13519. text-transform:none;
  13520. visibility:hidden;
  13521. }
  13522. #u8816 {
  13523. border-width:0px;
  13524. position:absolute;
  13525. left:0px;
  13526. top:0px;
  13527. width:0px;
  13528. height:0px;
  13529. }
  13530. #u8817 {
  13531. border-width:0px;
  13532. position:absolute;
  13533. left:3021px;
  13534. top:66px;
  13535. width:4px;
  13536. height:4px;
  13537. display:flex;
  13538. transition:none;
  13539. }
  13540. #u8817 .text {
  13541. position:absolute;
  13542. align-self:center;
  13543. padding:2px 2px 2px 2px;
  13544. box-sizing:border-box;
  13545. width:100%;
  13546. }
  13547. #u8817_img {
  13548. border-width:0px;
  13549. position:absolute;
  13550. left:0px;
  13551. top:0px;
  13552. width:4px;
  13553. height:4px;
  13554. }
  13555. #u8817_text {
  13556. border-width:0px;
  13557. word-wrap:break-word;
  13558. text-transform:none;
  13559. visibility:hidden;
  13560. }
  13561. #u8818 {
  13562. border-width:0px;
  13563. position:absolute;
  13564. left:3026px;
  13565. top:66px;
  13566. width:4px;
  13567. height:4px;
  13568. display:flex;
  13569. transition:none;
  13570. }
  13571. #u8818 .text {
  13572. position:absolute;
  13573. align-self:center;
  13574. padding:2px 2px 2px 2px;
  13575. box-sizing:border-box;
  13576. width:100%;
  13577. }
  13578. #u8818_img {
  13579. border-width:0px;
  13580. position:absolute;
  13581. left:0px;
  13582. top:0px;
  13583. width:4px;
  13584. height:4px;
  13585. }
  13586. #u8818_text {
  13587. border-width:0px;
  13588. word-wrap:break-word;
  13589. text-transform:none;
  13590. visibility:hidden;
  13591. }
  13592. #u8819 {
  13593. border-width:0px;
  13594. position:absolute;
  13595. left:3031px;
  13596. top:66px;
  13597. width:4px;
  13598. height:4px;
  13599. display:flex;
  13600. transition:none;
  13601. }
  13602. #u8819 .text {
  13603. position:absolute;
  13604. align-self:center;
  13605. padding:2px 2px 2px 2px;
  13606. box-sizing:border-box;
  13607. width:100%;
  13608. }
  13609. #u8819_img {
  13610. border-width:0px;
  13611. position:absolute;
  13612. left:0px;
  13613. top:0px;
  13614. width:4px;
  13615. height:4px;
  13616. }
  13617. #u8819_text {
  13618. border-width:0px;
  13619. word-wrap:break-word;
  13620. text-transform:none;
  13621. visibility:hidden;
  13622. }
  13623. #u8820 {
  13624. border-width:0px;
  13625. position:absolute;
  13626. left:3036px;
  13627. top:66px;
  13628. width:4px;
  13629. height:4px;
  13630. display:flex;
  13631. transition:none;
  13632. }
  13633. #u8820 .text {
  13634. position:absolute;
  13635. align-self:center;
  13636. padding:2px 2px 2px 2px;
  13637. box-sizing:border-box;
  13638. width:100%;
  13639. }
  13640. #u8820_img {
  13641. border-width:0px;
  13642. position:absolute;
  13643. left:0px;
  13644. top:0px;
  13645. width:4px;
  13646. height:4px;
  13647. }
  13648. #u8820_text {
  13649. border-width:0px;
  13650. word-wrap:break-word;
  13651. text-transform:none;
  13652. visibility:hidden;
  13653. }
  13654. #u8821 {
  13655. border-width:0px;
  13656. position:absolute;
  13657. left:3021px;
  13658. top:71px;
  13659. width:4px;
  13660. height:4px;
  13661. display:flex;
  13662. transition:none;
  13663. }
  13664. #u8821 .text {
  13665. position:absolute;
  13666. align-self:center;
  13667. padding:2px 2px 2px 2px;
  13668. box-sizing:border-box;
  13669. width:100%;
  13670. }
  13671. #u8821_img {
  13672. border-width:0px;
  13673. position:absolute;
  13674. left:0px;
  13675. top:0px;
  13676. width:4px;
  13677. height:4px;
  13678. }
  13679. #u8821_text {
  13680. border-width:0px;
  13681. word-wrap:break-word;
  13682. text-transform:none;
  13683. visibility:hidden;
  13684. }
  13685. #u8822 {
  13686. border-width:0px;
  13687. position:absolute;
  13688. left:3026px;
  13689. top:71px;
  13690. width:4px;
  13691. height:4px;
  13692. display:flex;
  13693. transition:none;
  13694. }
  13695. #u8822 .text {
  13696. position:absolute;
  13697. align-self:center;
  13698. padding:2px 2px 2px 2px;
  13699. box-sizing:border-box;
  13700. width:100%;
  13701. }
  13702. #u8822_img {
  13703. border-width:0px;
  13704. position:absolute;
  13705. left:0px;
  13706. top:0px;
  13707. width:4px;
  13708. height:4px;
  13709. }
  13710. #u8822_text {
  13711. border-width:0px;
  13712. word-wrap:break-word;
  13713. text-transform:none;
  13714. visibility:hidden;
  13715. }
  13716. #u8823 {
  13717. border-width:0px;
  13718. position:absolute;
  13719. left:3031px;
  13720. top:71px;
  13721. width:4px;
  13722. height:4px;
  13723. display:flex;
  13724. transition:none;
  13725. }
  13726. #u8823 .text {
  13727. position:absolute;
  13728. align-self:center;
  13729. padding:2px 2px 2px 2px;
  13730. box-sizing:border-box;
  13731. width:100%;
  13732. }
  13733. #u8823_img {
  13734. border-width:0px;
  13735. position:absolute;
  13736. left:0px;
  13737. top:0px;
  13738. width:4px;
  13739. height:4px;
  13740. }
  13741. #u8823_text {
  13742. border-width:0px;
  13743. word-wrap:break-word;
  13744. text-transform:none;
  13745. visibility:hidden;
  13746. }
  13747. #u8824 {
  13748. border-width:0px;
  13749. position:absolute;
  13750. left:3036px;
  13751. top:71px;
  13752. width:4px;
  13753. height:4px;
  13754. display:flex;
  13755. transition:none;
  13756. }
  13757. #u8824 .text {
  13758. position:absolute;
  13759. align-self:center;
  13760. padding:2px 2px 2px 2px;
  13761. box-sizing:border-box;
  13762. width:100%;
  13763. }
  13764. #u8824_img {
  13765. border-width:0px;
  13766. position:absolute;
  13767. left:0px;
  13768. top:0px;
  13769. width:4px;
  13770. height:4px;
  13771. }
  13772. #u8824_text {
  13773. border-width:0px;
  13774. word-wrap:break-word;
  13775. text-transform:none;
  13776. visibility:hidden;
  13777. }
  13778. #u8825 {
  13779. border-width:0px;
  13780. position:absolute;
  13781. left:3021px;
  13782. top:76px;
  13783. width:4px;
  13784. height:4px;
  13785. display:flex;
  13786. transition:none;
  13787. }
  13788. #u8825 .text {
  13789. position:absolute;
  13790. align-self:center;
  13791. padding:2px 2px 2px 2px;
  13792. box-sizing:border-box;
  13793. width:100%;
  13794. }
  13795. #u8825_img {
  13796. border-width:0px;
  13797. position:absolute;
  13798. left:0px;
  13799. top:0px;
  13800. width:4px;
  13801. height:4px;
  13802. }
  13803. #u8825_text {
  13804. border-width:0px;
  13805. word-wrap:break-word;
  13806. text-transform:none;
  13807. visibility:hidden;
  13808. }
  13809. #u8826 {
  13810. border-width:0px;
  13811. position:absolute;
  13812. left:3026px;
  13813. top:76px;
  13814. width:4px;
  13815. height:4px;
  13816. display:flex;
  13817. transition:none;
  13818. }
  13819. #u8826 .text {
  13820. position:absolute;
  13821. align-self:center;
  13822. padding:2px 2px 2px 2px;
  13823. box-sizing:border-box;
  13824. width:100%;
  13825. }
  13826. #u8826_img {
  13827. border-width:0px;
  13828. position:absolute;
  13829. left:0px;
  13830. top:0px;
  13831. width:4px;
  13832. height:4px;
  13833. }
  13834. #u8826_text {
  13835. border-width:0px;
  13836. word-wrap:break-word;
  13837. text-transform:none;
  13838. visibility:hidden;
  13839. }
  13840. #u8827 {
  13841. border-width:0px;
  13842. position:absolute;
  13843. left:3031px;
  13844. top:76px;
  13845. width:4px;
  13846. height:4px;
  13847. display:flex;
  13848. transition:none;
  13849. }
  13850. #u8827 .text {
  13851. position:absolute;
  13852. align-self:center;
  13853. padding:2px 2px 2px 2px;
  13854. box-sizing:border-box;
  13855. width:100%;
  13856. }
  13857. #u8827_img {
  13858. border-width:0px;
  13859. position:absolute;
  13860. left:0px;
  13861. top:0px;
  13862. width:4px;
  13863. height:4px;
  13864. }
  13865. #u8827_text {
  13866. border-width:0px;
  13867. word-wrap:break-word;
  13868. text-transform:none;
  13869. visibility:hidden;
  13870. }
  13871. #u8828 {
  13872. border-width:0px;
  13873. position:absolute;
  13874. left:3036px;
  13875. top:76px;
  13876. width:4px;
  13877. height:4px;
  13878. display:flex;
  13879. transition:none;
  13880. }
  13881. #u8828 .text {
  13882. position:absolute;
  13883. align-self:center;
  13884. padding:2px 2px 2px 2px;
  13885. box-sizing:border-box;
  13886. width:100%;
  13887. }
  13888. #u8828_img {
  13889. border-width:0px;
  13890. position:absolute;
  13891. left:0px;
  13892. top:0px;
  13893. width:4px;
  13894. height:4px;
  13895. }
  13896. #u8828_text {
  13897. border-width:0px;
  13898. word-wrap:break-word;
  13899. text-transform:none;
  13900. visibility:hidden;
  13901. }
  13902. #u8829 {
  13903. border-width:0px;
  13904. position:absolute;
  13905. left:3021px;
  13906. top:81px;
  13907. width:4px;
  13908. height:4px;
  13909. display:flex;
  13910. transition:none;
  13911. }
  13912. #u8829 .text {
  13913. position:absolute;
  13914. align-self:center;
  13915. padding:2px 2px 2px 2px;
  13916. box-sizing:border-box;
  13917. width:100%;
  13918. }
  13919. #u8829_img {
  13920. border-width:0px;
  13921. position:absolute;
  13922. left:0px;
  13923. top:0px;
  13924. width:4px;
  13925. height:4px;
  13926. }
  13927. #u8829_text {
  13928. border-width:0px;
  13929. word-wrap:break-word;
  13930. text-transform:none;
  13931. visibility:hidden;
  13932. }
  13933. #u8830 {
  13934. border-width:0px;
  13935. position:absolute;
  13936. left:3026px;
  13937. top:81px;
  13938. width:4px;
  13939. height:4px;
  13940. display:flex;
  13941. transition:none;
  13942. }
  13943. #u8830 .text {
  13944. position:absolute;
  13945. align-self:center;
  13946. padding:2px 2px 2px 2px;
  13947. box-sizing:border-box;
  13948. width:100%;
  13949. }
  13950. #u8830_img {
  13951. border-width:0px;
  13952. position:absolute;
  13953. left:0px;
  13954. top:0px;
  13955. width:4px;
  13956. height:4px;
  13957. }
  13958. #u8830_text {
  13959. border-width:0px;
  13960. word-wrap:break-word;
  13961. text-transform:none;
  13962. visibility:hidden;
  13963. }
  13964. #u8831 {
  13965. border-width:0px;
  13966. position:absolute;
  13967. left:3031px;
  13968. top:81px;
  13969. width:4px;
  13970. height:4px;
  13971. display:flex;
  13972. transition:none;
  13973. }
  13974. #u8831 .text {
  13975. position:absolute;
  13976. align-self:center;
  13977. padding:2px 2px 2px 2px;
  13978. box-sizing:border-box;
  13979. width:100%;
  13980. }
  13981. #u8831_img {
  13982. border-width:0px;
  13983. position:absolute;
  13984. left:0px;
  13985. top:0px;
  13986. width:4px;
  13987. height:4px;
  13988. }
  13989. #u8831_text {
  13990. border-width:0px;
  13991. word-wrap:break-word;
  13992. text-transform:none;
  13993. visibility:hidden;
  13994. }
  13995. #u8832 {
  13996. border-width:0px;
  13997. position:absolute;
  13998. left:3036px;
  13999. top:81px;
  14000. width:4px;
  14001. height:4px;
  14002. display:flex;
  14003. transition:none;
  14004. }
  14005. #u8832 .text {
  14006. position:absolute;
  14007. align-self:center;
  14008. padding:2px 2px 2px 2px;
  14009. box-sizing:border-box;
  14010. width:100%;
  14011. }
  14012. #u8832_img {
  14013. border-width:0px;
  14014. position:absolute;
  14015. left:0px;
  14016. top:0px;
  14017. width:4px;
  14018. height:4px;
  14019. }
  14020. #u8832_text {
  14021. border-width:0px;
  14022. word-wrap:break-word;
  14023. text-transform:none;
  14024. visibility:hidden;
  14025. }
  14026. #u8833 {
  14027. border-width:0px;
  14028. position:absolute;
  14029. left:3143px;
  14030. top:65px;
  14031. width:20px;
  14032. height:20px;
  14033. display:flex;
  14034. transition:none;
  14035. }
  14036. #u8833 .text {
  14037. position:absolute;
  14038. align-self:center;
  14039. padding:2px 2px 2px 2px;
  14040. box-sizing:border-box;
  14041. width:100%;
  14042. }
  14043. #u8833_img {
  14044. border-width:0px;
  14045. position:absolute;
  14046. left:0px;
  14047. top:0px;
  14048. width:20px;
  14049. height:20px;
  14050. }
  14051. #u8833_text {
  14052. border-width:0px;
  14053. word-wrap:break-word;
  14054. text-transform:none;
  14055. visibility:hidden;
  14056. }
  14057. #u8834 {
  14058. border-width:0px;
  14059. position:absolute;
  14060. left:3192px;
  14061. top:66px;
  14062. width:18px;
  14063. height:18px;
  14064. display:flex;
  14065. transition:none;
  14066. }
  14067. #u8834 .text {
  14068. position:absolute;
  14069. align-self:center;
  14070. padding:2px 2px 2px 2px;
  14071. box-sizing:border-box;
  14072. width:100%;
  14073. }
  14074. #u8834_img {
  14075. border-width:0px;
  14076. position:absolute;
  14077. left:0px;
  14078. top:0px;
  14079. width:18px;
  14080. height:18px;
  14081. }
  14082. #u8834_text {
  14083. border-width:0px;
  14084. word-wrap:break-word;
  14085. text-transform:none;
  14086. visibility:hidden;
  14087. }
  14088. #u8835 {
  14089. border-width:0px;
  14090. position:absolute;
  14091. left:3177px;
  14092. top:68px;
  14093. width:1px;
  14094. height:14px;
  14095. display:flex;
  14096. transition:none;
  14097. }
  14098. #u8835 .text {
  14099. position:absolute;
  14100. align-self:center;
  14101. padding:2px 2px 2px 2px;
  14102. box-sizing:border-box;
  14103. width:100%;
  14104. }
  14105. #u8835_img {
  14106. border-width:0px;
  14107. position:absolute;
  14108. left:0px;
  14109. top:0px;
  14110. width:2px;
  14111. height:15px;
  14112. }
  14113. #u8835_text {
  14114. border-width:0px;
  14115. word-wrap:break-word;
  14116. text-transform:none;
  14117. visibility:hidden;
  14118. }