styles.css 231 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599
  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. #u8147_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u8147 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u8147 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u8147_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u8148_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u8148 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u8148 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u8148_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u8149_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u8149 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u8149 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u8149_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u8150 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u8151_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u8151 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u8151 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u8151_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u8152_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u8152 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u8152 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u8152_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u8153_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u8153 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u8153 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u8153_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u8154 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u8155_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u8155 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u8155 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u8155_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u8156_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u8156 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u8156 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u8156_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u8157 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u8158_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u8158 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u8158 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u8158_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u8159_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u8159 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u8159 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u8159_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u8160 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u8161_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u8161 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u8161 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u8161_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u8162_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u8162 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u8162 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u8162_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u8163 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u8164_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u8164 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u8164 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u8164_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u8165_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u8165 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u8165 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u8165_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u8166 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u8167_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u8167 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u8167 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u8167_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u8168_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u8168 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u8168 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u8168_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u8169 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u8170_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u8170 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u8170 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u8170_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u8171_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u8171 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u8171 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u8171_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u8172 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u8173_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u8173 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u8173 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u8173_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u8174_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u8174 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u8174 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u8174_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u8175 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u8176_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u8176 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  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. #u8176 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u8176_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u8177_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u8177 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u8177 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u8177_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u8178 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u8179_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u8179 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u8179 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u8179_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u8180_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u8180 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u8180 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u8180_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u8181 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u8182_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u8182 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u8182 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u8182_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u8183_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u8183 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u8183 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u8183_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u8184 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u8185_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u8185 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u8185 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u8185_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u8186_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u8186 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u8186 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u8186_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u8187 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u8188_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u8188_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u8188_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u8188 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u8188 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u8188_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u8188.disabled {
  1276. }
  1277. .u8188_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u8189_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u8189 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u8189 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u8189_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u8190_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u8190 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u8190 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u8190_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u8191_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u8191 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u8191 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u8191_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u8192 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u8193_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u8193 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u8193 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u8193_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u8194_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u8194 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u8194 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u8194_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u8195_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u8195 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u8195 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u8195_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u8196_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u8196 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u8196 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u8196_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u8197_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u8197 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u8197 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u8197_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u8198 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u8199_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u8199 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u8199 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u8199_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u8200_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u8200 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u8200 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u8200_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u8201_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1186px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u8201 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:333px;
  1661. top:51px;
  1662. width:1260px;
  1663. height:1186px;
  1664. display:flex;
  1665. }
  1666. #u8201 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u8201_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u8202 {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:0px;
  1685. height:0px;
  1686. }
  1687. #u8203_img {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:993px;
  1693. height:950px;
  1694. }
  1695. #u8203 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:582px;
  1699. top:115px;
  1700. width:993px;
  1701. height:950px;
  1702. display:flex;
  1703. }
  1704. #u8203 .text {
  1705. position:absolute;
  1706. align-self:center;
  1707. padding:2px 2px 2px 2px;
  1708. box-sizing:border-box;
  1709. width:100%;
  1710. }
  1711. #u8203_text {
  1712. border-width:0px;
  1713. word-wrap:break-word;
  1714. text-transform:none;
  1715. visibility:hidden;
  1716. }
  1717. #u8204_div {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:29px;
  1723. height:17px;
  1724. background:inherit;
  1725. background-color:rgba(0, 191, 191, 1);
  1726. border:none;
  1727. border-radius:4px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:10px;
  1735. color:#FFFFFF;
  1736. }
  1737. #u8204 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:582px;
  1741. top:118px;
  1742. width:29px;
  1743. height:17px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:10px;
  1749. color:#FFFFFF;
  1750. }
  1751. #u8204 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:5px 0px 5px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u8204_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u8205_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:29px;
  1769. height:17px;
  1770. background:inherit;
  1771. background-color:rgba(217, 0, 27, 1);
  1772. border:none;
  1773. border-radius:4px;
  1774. -moz-box-shadow:none;
  1775. -webkit-box-shadow:none;
  1776. box-shadow:none;
  1777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1778. font-weight:400;
  1779. font-style:normal;
  1780. font-size:10px;
  1781. color:#FFFFFF;
  1782. }
  1783. #u8205 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:1249px;
  1787. top:115px;
  1788. width:29px;
  1789. height:17px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:10px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u8205 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:5px 0px 5px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u8205_text {
  1805. border-width:0px;
  1806. word-wrap:break-word;
  1807. text-transform:none;
  1808. }
  1809. #u8206_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:29px;
  1815. height:17px;
  1816. background:inherit;
  1817. background-color:rgba(245, 154, 35, 1);
  1818. border:none;
  1819. border-radius:4px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:10px;
  1827. color:#FFFFFF;
  1828. }
  1829. #u8206 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:582px;
  1833. top:346px;
  1834. width:29px;
  1835. height:17px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:10px;
  1841. color:#FFFFFF;
  1842. }
  1843. #u8206 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:5px 0px 5px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u8206_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u8207_div {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:29px;
  1861. height:17px;
  1862. background:inherit;
  1863. background-color:rgba(0, 191, 191, 1);
  1864. border:none;
  1865. border-radius:4px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:10px;
  1873. color:#FFFFFF;
  1874. }
  1875. #u8207 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:913px;
  1879. top:115px;
  1880. width:29px;
  1881. height:17px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:10px;
  1887. color:#FFFFFF;
  1888. }
  1889. #u8207 .text {
  1890. position:absolute;
  1891. align-self:center;
  1892. padding:5px 0px 5px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u8207_text {
  1897. border-width:0px;
  1898. word-wrap:break-word;
  1899. text-transform:none;
  1900. }
  1901. #u8208_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:29px;
  1907. height:17px;
  1908. background:inherit;
  1909. background-color:rgba(0, 191, 191, 1);
  1910. border:none;
  1911. border-radius:4px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:10px;
  1919. color:#FFFFFF;
  1920. }
  1921. #u8208 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:913px;
  1925. top:349px;
  1926. width:29px;
  1927. height:17px;
  1928. display:flex;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:10px;
  1933. color:#FFFFFF;
  1934. }
  1935. #u8208 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:5px 0px 5px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u8208_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u8209_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:29px;
  1953. height:17px;
  1954. background:inherit;
  1955. background-color:rgba(0, 191, 191, 1);
  1956. border:none;
  1957. border-radius:4px;
  1958. -moz-box-shadow:none;
  1959. -webkit-box-shadow:none;
  1960. box-shadow:none;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:10px;
  1965. color:#FFFFFF;
  1966. }
  1967. #u8209 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:1243px;
  1971. top:346px;
  1972. width:29px;
  1973. height:17px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:10px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u8209 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:5px 0px 5px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u8209_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u8210_div {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:29px;
  1999. height:17px;
  2000. background:inherit;
  2001. background-color:rgba(0, 191, 191, 1);
  2002. border:none;
  2003. border-radius:4px;
  2004. -moz-box-shadow:none;
  2005. -webkit-box-shadow:none;
  2006. box-shadow:none;
  2007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:10px;
  2011. color:#FFFFFF;
  2012. }
  2013. #u8210 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:913px;
  2017. top:602px;
  2018. width:29px;
  2019. height:17px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:10px;
  2025. color:#FFFFFF;
  2026. }
  2027. #u8210 .text {
  2028. position:absolute;
  2029. align-self:center;
  2030. padding:5px 0px 5px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u8210_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u8211_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:29px;
  2045. height:17px;
  2046. background:inherit;
  2047. background-color:rgba(0, 191, 191, 1);
  2048. border:none;
  2049. border-radius:4px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:10px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u8211 {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:1243px;
  2063. top:598px;
  2064. width:29px;
  2065. height:17px;
  2066. display:flex;
  2067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2068. font-weight:400;
  2069. font-style:normal;
  2070. font-size:10px;
  2071. color:#FFFFFF;
  2072. }
  2073. #u8211 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:5px 0px 5px 0px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u8211_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. }
  2085. #u8212_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:29px;
  2091. height:17px;
  2092. background:inherit;
  2093. background-color:rgba(0, 191, 191, 1);
  2094. border:none;
  2095. border-radius:4px;
  2096. -moz-box-shadow:none;
  2097. -webkit-box-shadow:none;
  2098. box-shadow:none;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:10px;
  2103. color:#FFFFFF;
  2104. }
  2105. #u8212 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:582px;
  2109. top:602px;
  2110. width:29px;
  2111. height:17px;
  2112. display:flex;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:10px;
  2117. color:#FFFFFF;
  2118. }
  2119. #u8212 .text {
  2120. position:absolute;
  2121. align-self:center;
  2122. padding:5px 0px 5px 0px;
  2123. box-sizing:border-box;
  2124. width:100%;
  2125. }
  2126. #u8212_text {
  2127. border-width:0px;
  2128. word-wrap:break-word;
  2129. text-transform:none;
  2130. }
  2131. #u8213_div {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:29px;
  2137. height:17px;
  2138. background:inherit;
  2139. background-color:rgba(0, 191, 191, 1);
  2140. border:none;
  2141. border-radius:4px;
  2142. -moz-box-shadow:none;
  2143. -webkit-box-shadow:none;
  2144. box-shadow:none;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:10px;
  2149. color:#FFFFFF;
  2150. }
  2151. #u8213 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:913px;
  2155. top:848px;
  2156. width:29px;
  2157. height:17px;
  2158. display:flex;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:10px;
  2163. color:#FFFFFF;
  2164. }
  2165. #u8213 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:5px 0px 5px 0px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u8213_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. }
  2177. #u8214_div {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:29px;
  2183. height:17px;
  2184. background:inherit;
  2185. background-color:rgba(0, 191, 191, 1);
  2186. border:none;
  2187. border-radius:4px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:10px;
  2195. color:#FFFFFF;
  2196. }
  2197. #u8214 {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:1243px;
  2201. top:845px;
  2202. width:29px;
  2203. height:17px;
  2204. display:flex;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:10px;
  2209. color:#FFFFFF;
  2210. }
  2211. #u8214 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:5px 0px 5px 0px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u8214_text {
  2219. border-width:0px;
  2220. word-wrap:break-word;
  2221. text-transform:none;
  2222. }
  2223. #u8215_div {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:29px;
  2229. height:17px;
  2230. background:inherit;
  2231. background-color:rgba(0, 191, 191, 1);
  2232. border:none;
  2233. border-radius:4px;
  2234. -moz-box-shadow:none;
  2235. -webkit-box-shadow:none;
  2236. box-shadow:none;
  2237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2238. font-weight:400;
  2239. font-style:normal;
  2240. font-size:10px;
  2241. color:#FFFFFF;
  2242. }
  2243. #u8215 {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:582px;
  2247. top:848px;
  2248. width:29px;
  2249. height:17px;
  2250. display:flex;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:10px;
  2255. color:#FFFFFF;
  2256. }
  2257. #u8215 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:5px 0px 5px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u8215_text {
  2265. border-width:0px;
  2266. word-wrap:break-word;
  2267. text-transform:none;
  2268. }
  2269. #u8216_div {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:73px;
  2275. height:50px;
  2276. background:inherit;
  2277. background-color:rgba(255, 255, 255, 0);
  2278. border:none;
  2279. border-left:0px;
  2280. border-top:0px;
  2281. border-right:0px;
  2282. border-radius:0px;
  2283. border-bottom-right-radius:0px;
  2284. border-bottom-left-radius:0px;
  2285. -moz-box-shadow:none;
  2286. -webkit-box-shadow:none;
  2287. box-shadow:none;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:18px;
  2292. }
  2293. #u8216 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:352px;
  2297. top:51px;
  2298. width:73px;
  2299. height:50px;
  2300. display:flex;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:18px;
  2305. }
  2306. #u8216 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:0px 0px 0px 0px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u8216_text {
  2314. border-width:0px;
  2315. white-space:nowrap;
  2316. text-transform:none;
  2317. }
  2318. #u8217 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:0px;
  2324. height:0px;
  2325. }
  2326. #u8218_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:230px;
  2332. height:770px;
  2333. background:inherit;
  2334. background-color:rgba(242, 242, 242, 1);
  2335. border:none;
  2336. border-radius:4px;
  2337. -moz-box-shadow:none;
  2338. -webkit-box-shadow:none;
  2339. box-shadow:none;
  2340. }
  2341. #u8218 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:343px;
  2345. top:457px;
  2346. width:230px;
  2347. height:770px;
  2348. display:flex;
  2349. }
  2350. #u8218 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 2px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u8218_text {
  2358. border-width:0px;
  2359. word-wrap:break-word;
  2360. text-transform:none;
  2361. visibility:hidden;
  2362. }
  2363. #u8219 {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:350px;
  2367. top:551px;
  2368. width:127px;
  2369. height:240px;
  2370. }
  2371. #u8219_children {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:0px;
  2377. height:0px;
  2378. }
  2379. #u8220 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:80px;
  2385. height:20px;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. }
  2390. #u8221_img {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:9px;
  2396. height:9px;
  2397. }
  2398. #u8221 {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:6px;
  2402. top:6px;
  2403. width:9px;
  2404. height:9px;
  2405. display:flex;
  2406. }
  2407. #u8221 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 2px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u8221_img.selected {
  2415. }
  2416. #u8221.selected {
  2417. }
  2418. #u8221_text {
  2419. border-width:0px;
  2420. word-wrap:break-word;
  2421. text-transform:none;
  2422. visibility:hidden;
  2423. }
  2424. #u8222_div {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:58px;
  2430. height:20px;
  2431. background:inherit;
  2432. background-color:rgba(255, 255, 255, 0);
  2433. border:none;
  2434. border-radius:0px;
  2435. -moz-box-shadow:none;
  2436. -webkit-box-shadow:none;
  2437. box-shadow:none;
  2438. }
  2439. #u8222 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:22px;
  2443. top:0px;
  2444. width:58px;
  2445. height:20px;
  2446. display:flex;
  2447. }
  2448. #u8222 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 3px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u8222_text {
  2456. border-width:0px;
  2457. white-space:nowrap;
  2458. text-transform:none;
  2459. }
  2460. #u8220_children {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:0px;
  2466. height:0px;
  2467. }
  2468. #u8223 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:20px;
  2472. top:20px;
  2473. width:87px;
  2474. height:20px;
  2475. }
  2476. #u8224_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:9px;
  2482. height:9px;
  2483. }
  2484. #u8224 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:6px;
  2488. top:6px;
  2489. width:9px;
  2490. height:9px;
  2491. display:flex;
  2492. }
  2493. #u8224 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 2px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u8224_img.selected {
  2501. }
  2502. #u8224.selected {
  2503. }
  2504. #u8224_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. visibility:hidden;
  2509. }
  2510. #u8225_div {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:65px;
  2516. height:20px;
  2517. background:inherit;
  2518. background-color:rgba(255, 255, 255, 0);
  2519. border:none;
  2520. border-radius:0px;
  2521. -moz-box-shadow:none;
  2522. -webkit-box-shadow:none;
  2523. box-shadow:none;
  2524. }
  2525. #u8225 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:22px;
  2529. top:0px;
  2530. width:65px;
  2531. height:20px;
  2532. display:flex;
  2533. }
  2534. #u8225 .text {
  2535. position:absolute;
  2536. align-self:center;
  2537. padding:2px 2px 2px 3px;
  2538. box-sizing:border-box;
  2539. width:100%;
  2540. }
  2541. #u8225_text {
  2542. border-width:0px;
  2543. white-space:nowrap;
  2544. text-transform:none;
  2545. }
  2546. #u8223_children {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:0px;
  2552. height:0px;
  2553. }
  2554. #u8226 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:20px;
  2558. top:20px;
  2559. width:87px;
  2560. height:20px;
  2561. }
  2562. #u8227_div {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:65px;
  2568. height:20px;
  2569. background:inherit;
  2570. background-color:rgba(255, 255, 255, 0);
  2571. border:none;
  2572. border-radius:0px;
  2573. -moz-box-shadow:none;
  2574. -webkit-box-shadow:none;
  2575. box-shadow:none;
  2576. }
  2577. #u8227 {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:22px;
  2581. top:0px;
  2582. width:65px;
  2583. height:20px;
  2584. display:flex;
  2585. }
  2586. #u8227 .text {
  2587. position:absolute;
  2588. align-self:center;
  2589. padding:2px 2px 2px 3px;
  2590. box-sizing:border-box;
  2591. width:100%;
  2592. }
  2593. #u8227_text {
  2594. border-width:0px;
  2595. white-space:nowrap;
  2596. text-transform:none;
  2597. }
  2598. #u8228 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:20px;
  2602. top:40px;
  2603. width:87px;
  2604. height:20px;
  2605. color:#1890FF;
  2606. }
  2607. #u8229_div {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:65px;
  2613. height:20px;
  2614. background:inherit;
  2615. background-color:rgba(255, 255, 255, 0);
  2616. border:none;
  2617. border-radius:0px;
  2618. -moz-box-shadow:none;
  2619. -webkit-box-shadow:none;
  2620. box-shadow:none;
  2621. }
  2622. #u8229 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:22px;
  2626. top:0px;
  2627. width:65px;
  2628. height:20px;
  2629. display:flex;
  2630. }
  2631. #u8229 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 3px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u8229_text {
  2639. border-width:0px;
  2640. white-space:nowrap;
  2641. text-transform:none;
  2642. }
  2643. #u8230 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:20px;
  2647. top:60px;
  2648. width:54px;
  2649. height:20px;
  2650. }
  2651. #u8231_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:32px;
  2657. height:20px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 0);
  2660. border:none;
  2661. border-radius:0px;
  2662. -moz-box-shadow:none;
  2663. -webkit-box-shadow:none;
  2664. box-shadow:none;
  2665. }
  2666. #u8231 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:22px;
  2670. top:0px;
  2671. width:32px;
  2672. height:20px;
  2673. display:flex;
  2674. }
  2675. #u8231 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 3px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u8231_text {
  2683. border-width:0px;
  2684. white-space:nowrap;
  2685. text-transform:none;
  2686. }
  2687. #u8232 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:20px;
  2691. top:100px;
  2692. width:87px;
  2693. height:20px;
  2694. }
  2695. #u8233_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:9px;
  2701. height:9px;
  2702. }
  2703. #u8233 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:6px;
  2707. top:6px;
  2708. width:9px;
  2709. height:9px;
  2710. display:flex;
  2711. }
  2712. #u8233 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 2px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u8233_img.selected {
  2720. }
  2721. #u8233.selected {
  2722. }
  2723. #u8233_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u8234_div {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:65px;
  2735. height:20px;
  2736. background:inherit;
  2737. background-color:rgba(255, 255, 255, 0);
  2738. border:none;
  2739. border-radius:0px;
  2740. -moz-box-shadow:none;
  2741. -webkit-box-shadow:none;
  2742. box-shadow:none;
  2743. }
  2744. #u8234 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:22px;
  2748. top:0px;
  2749. width:65px;
  2750. height:20px;
  2751. display:flex;
  2752. }
  2753. #u8234 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 3px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u8234_text {
  2761. border-width:0px;
  2762. white-space:nowrap;
  2763. text-transform:none;
  2764. }
  2765. #u8232_children {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:0px;
  2771. height:0px;
  2772. }
  2773. #u8235 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:20px;
  2777. top:20px;
  2778. width:87px;
  2779. height:20px;
  2780. }
  2781. #u8236_div {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:65px;
  2787. height:20px;
  2788. background:inherit;
  2789. background-color:rgba(255, 255, 255, 0);
  2790. border:none;
  2791. border-radius:0px;
  2792. -moz-box-shadow:none;
  2793. -webkit-box-shadow:none;
  2794. box-shadow:none;
  2795. }
  2796. #u8236 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:22px;
  2800. top:0px;
  2801. width:65px;
  2802. height:20px;
  2803. display:flex;
  2804. }
  2805. #u8236 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 3px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u8236_text {
  2813. border-width:0px;
  2814. white-space:nowrap;
  2815. text-transform:none;
  2816. }
  2817. #u8237 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:20px;
  2821. top:40px;
  2822. width:87px;
  2823. height:20px;
  2824. color:#1890FF;
  2825. }
  2826. #u8238_div {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:65px;
  2832. height:20px;
  2833. background:inherit;
  2834. background-color:rgba(255, 255, 255, 0);
  2835. border:none;
  2836. border-radius:0px;
  2837. -moz-box-shadow:none;
  2838. -webkit-box-shadow:none;
  2839. box-shadow:none;
  2840. }
  2841. #u8238 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:22px;
  2845. top:0px;
  2846. width:65px;
  2847. height:20px;
  2848. display:flex;
  2849. }
  2850. #u8238 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:2px 2px 2px 3px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u8238_text {
  2858. border-width:0px;
  2859. white-space:nowrap;
  2860. text-transform:none;
  2861. }
  2862. #u8239 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:20px;
  2866. top:60px;
  2867. width:54px;
  2868. height:20px;
  2869. }
  2870. #u8240_div {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:32px;
  2876. height:20px;
  2877. background:inherit;
  2878. background-color:rgba(255, 255, 255, 0);
  2879. border:none;
  2880. border-radius:0px;
  2881. -moz-box-shadow:none;
  2882. -webkit-box-shadow:none;
  2883. box-shadow:none;
  2884. }
  2885. #u8240 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:22px;
  2889. top:0px;
  2890. width:32px;
  2891. height:20px;
  2892. display:flex;
  2893. }
  2894. #u8240 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 3px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u8240_text {
  2902. border-width:0px;
  2903. white-space:nowrap;
  2904. text-transform:none;
  2905. }
  2906. #u8241 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:20px;
  2910. top:180px;
  2911. width:87px;
  2912. height:20px;
  2913. }
  2914. #u8242_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:9px;
  2920. height:9px;
  2921. }
  2922. #u8242 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:6px;
  2926. top:6px;
  2927. width:9px;
  2928. height:9px;
  2929. display:flex;
  2930. }
  2931. #u8242 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 2px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u8242_img.selected {
  2939. }
  2940. #u8242.selected {
  2941. }
  2942. #u8242_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. visibility:hidden;
  2947. }
  2948. #u8243_div {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:0px;
  2952. top:0px;
  2953. width:65px;
  2954. height:20px;
  2955. background:inherit;
  2956. background-color:rgba(255, 255, 255, 0);
  2957. border:none;
  2958. border-radius:0px;
  2959. -moz-box-shadow:none;
  2960. -webkit-box-shadow:none;
  2961. box-shadow:none;
  2962. }
  2963. #u8243 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:22px;
  2967. top:0px;
  2968. width:65px;
  2969. height:20px;
  2970. display:flex;
  2971. }
  2972. #u8243 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 3px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u8243_text {
  2980. border-width:0px;
  2981. white-space:nowrap;
  2982. text-transform:none;
  2983. }
  2984. #u8241_children {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:0px;
  2990. height:0px;
  2991. }
  2992. #u8244 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:20px;
  2996. top:20px;
  2997. width:87px;
  2998. height:20px;
  2999. }
  3000. #u8245_div {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:65px;
  3006. height:20px;
  3007. background:inherit;
  3008. background-color:rgba(255, 255, 255, 0);
  3009. border:none;
  3010. border-radius:0px;
  3011. -moz-box-shadow:none;
  3012. -webkit-box-shadow:none;
  3013. box-shadow:none;
  3014. }
  3015. #u8245 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:22px;
  3019. top:0px;
  3020. width:65px;
  3021. height:20px;
  3022. display:flex;
  3023. }
  3024. #u8245 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 3px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u8245_text {
  3032. border-width:0px;
  3033. white-space:nowrap;
  3034. text-transform:none;
  3035. }
  3036. #u8246 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:20px;
  3040. top:40px;
  3041. width:54px;
  3042. height:20px;
  3043. }
  3044. #u8247_div {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:32px;
  3050. height:20px;
  3051. background:inherit;
  3052. background-color:rgba(255, 255, 255, 0);
  3053. border:none;
  3054. border-radius:0px;
  3055. -moz-box-shadow:none;
  3056. -webkit-box-shadow:none;
  3057. box-shadow:none;
  3058. }
  3059. #u8247 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:22px;
  3063. top:0px;
  3064. width:32px;
  3065. height:20px;
  3066. display:flex;
  3067. }
  3068. #u8247 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:2px 2px 2px 3px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u8247_text {
  3076. border-width:0px;
  3077. white-space:nowrap;
  3078. text-transform:none;
  3079. }
  3080. #u8248_div {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:25px;
  3086. height:30px;
  3087. background:inherit;
  3088. background-color:rgba(255, 255, 255, 0);
  3089. border:none;
  3090. border-radius:0px;
  3091. -moz-box-shadow:none;
  3092. -webkit-box-shadow:none;
  3093. box-shadow:none;
  3094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. font-size:12px;
  3098. color:#3399FF;
  3099. line-height:30px;
  3100. }
  3101. #u8248 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:351px;
  3105. top:513px;
  3106. width:25px;
  3107. height:30px;
  3108. display:flex;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. font-size:12px;
  3113. color:#3399FF;
  3114. line-height:30px;
  3115. }
  3116. #u8248 .text {
  3117. position:absolute;
  3118. align-self:flex-start;
  3119. padding:0px 0px 0px 0px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u8248_text {
  3124. border-width:0px;
  3125. white-space:nowrap;
  3126. text-transform:none;
  3127. }
  3128. #u8249_div {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:25px;
  3134. height:30px;
  3135. background:inherit;
  3136. background-color:rgba(255, 255, 255, 0);
  3137. border:none;
  3138. border-radius:0px;
  3139. -moz-box-shadow:none;
  3140. -webkit-box-shadow:none;
  3141. box-shadow:none;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:12px;
  3146. color:#7F7F7F;
  3147. line-height:30px;
  3148. }
  3149. #u8249 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:388px;
  3153. top:513px;
  3154. width:25px;
  3155. height:30px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#7F7F7F;
  3162. line-height:30px;
  3163. }
  3164. #u8249 .text {
  3165. position:absolute;
  3166. align-self:flex-start;
  3167. padding:0px 0px 0px 0px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u8249_text {
  3172. border-width:0px;
  3173. white-space:nowrap;
  3174. text-transform:none;
  3175. }
  3176. #u8250_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:25px;
  3182. height:30px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 0);
  3185. border:none;
  3186. border-radius:0px;
  3187. -moz-box-shadow:none;
  3188. -webkit-box-shadow:none;
  3189. box-shadow:none;
  3190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3191. font-weight:400;
  3192. font-style:normal;
  3193. font-size:12px;
  3194. color:#7F7F7F;
  3195. line-height:30px;
  3196. }
  3197. #u8250 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:424px;
  3201. top:513px;
  3202. width:25px;
  3203. height:30px;
  3204. display:flex;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:12px;
  3209. color:#7F7F7F;
  3210. line-height:30px;
  3211. }
  3212. #u8250 .text {
  3213. position:absolute;
  3214. align-self:flex-start;
  3215. padding:0px 0px 0px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u8250_text {
  3220. border-width:0px;
  3221. white-space:nowrap;
  3222. text-transform:none;
  3223. }
  3224. #u8251_div {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:25px;
  3230. height:30px;
  3231. background:inherit;
  3232. background-color:rgba(255, 255, 255, 0);
  3233. border:none;
  3234. border-radius:0px;
  3235. -moz-box-shadow:none;
  3236. -webkit-box-shadow:none;
  3237. box-shadow:none;
  3238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3239. font-weight:400;
  3240. font-style:normal;
  3241. font-size:12px;
  3242. color:#7F7F7F;
  3243. line-height:30px;
  3244. }
  3245. #u8251 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:461px;
  3249. top:513px;
  3250. width:25px;
  3251. height:30px;
  3252. display:flex;
  3253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:12px;
  3257. color:#7F7F7F;
  3258. line-height:30px;
  3259. }
  3260. #u8251 .text {
  3261. position:absolute;
  3262. align-self:flex-start;
  3263. padding:0px 0px 0px 0px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u8251_text {
  3268. border-width:0px;
  3269. white-space:nowrap;
  3270. text-transform:none;
  3271. }
  3272. #u8252 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:0px;
  3278. height:0px;
  3279. }
  3280. #u8253_input {
  3281. position:absolute;
  3282. left:0px;
  3283. top:0px;
  3284. width:206px;
  3285. height:38px;
  3286. padding:2px 2px 2px 2px;
  3287. font-family:'ArialMT', 'Arial', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:18px;
  3291. letter-spacing:normal;
  3292. color:#333333;
  3293. vertical-align:none;
  3294. text-align:left;
  3295. text-transform:none;
  3296. background-color:transparent;
  3297. border-color:transparent;
  3298. }
  3299. #u8253_input.disabled {
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:206px;
  3304. height:38px;
  3305. padding:2px 2px 2px 2px;
  3306. font-family:'ArialMT', 'Arial', sans-serif;
  3307. font-weight:400;
  3308. font-style:normal;
  3309. font-size:18px;
  3310. letter-spacing:normal;
  3311. color:#333333;
  3312. vertical-align:none;
  3313. text-align:left;
  3314. text-transform:none;
  3315. background-color:transparent;
  3316. border-color:transparent;
  3317. }
  3318. #u8253_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:206px;
  3324. height:38px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 1);
  3327. border:none;
  3328. border-radius:0px;
  3329. -moz-box-shadow:none;
  3330. -webkit-box-shadow:none;
  3331. box-shadow:none;
  3332. font-size:18px;
  3333. color:#333333;
  3334. }
  3335. #u8253 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:344px;
  3339. top:419px;
  3340. width:206px;
  3341. height:38px;
  3342. display:flex;
  3343. font-size:18px;
  3344. color:#333333;
  3345. }
  3346. #u8253 .text {
  3347. position:absolute;
  3348. align-self:flex-start;
  3349. padding:2px 2px 2px 2px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u8253_div.disabled {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:206px;
  3359. height:38px;
  3360. background:inherit;
  3361. background-color:rgba(240, 240, 240, 1);
  3362. border:none;
  3363. border-radius:0px;
  3364. -moz-box-shadow:none;
  3365. -webkit-box-shadow:none;
  3366. box-shadow:none;
  3367. font-size:18px;
  3368. color:#333333;
  3369. }
  3370. #u8253.disabled {
  3371. }
  3372. .u8253_input_option {
  3373. font-size:18px;
  3374. }
  3375. #u8254_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:29px;
  3381. height:50px;
  3382. background:inherit;
  3383. background-color:rgba(255, 255, 255, 0);
  3384. border:none;
  3385. border-left:0px;
  3386. border-top:0px;
  3387. border-right:0px;
  3388. border-radius:0px;
  3389. border-bottom-right-radius:0px;
  3390. border-bottom-left-radius:0px;
  3391. -moz-box-shadow:none;
  3392. -webkit-box-shadow:none;
  3393. box-shadow:none;
  3394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:14px;
  3398. color:#1890FF;
  3399. }
  3400. #u8254 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:532px;
  3404. top:462px;
  3405. width:29px;
  3406. height:50px;
  3407. display:flex;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:14px;
  3412. color:#1890FF;
  3413. }
  3414. #u8254 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:0px 0px 0px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u8254_text {
  3422. border-width:0px;
  3423. white-space:nowrap;
  3424. text-transform:none;
  3425. }
  3426. #u8255 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:0px;
  3432. height:0px;
  3433. }
  3434. #u8256_div {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:180px;
  3440. height:38px;
  3441. background:inherit;
  3442. background-color:rgba(255, 255, 255, 1);
  3443. box-sizing:border-box;
  3444. border-width:1px;
  3445. border-style:solid;
  3446. border-color:rgba(242, 242, 242, 1);
  3447. border-radius:4px;
  3448. -moz-box-shadow:none;
  3449. -webkit-box-shadow:none;
  3450. box-shadow:none;
  3451. font-family:'Microsoft YaHei', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:14px;
  3455. color:#CCCCCC;
  3456. text-align:left;
  3457. }
  3458. #u8256 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:350px;
  3462. top:468px;
  3463. width:180px;
  3464. height:38px;
  3465. display:flex;
  3466. font-family:'Microsoft YaHei', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:14px;
  3470. color:#CCCCCC;
  3471. text-align:left;
  3472. }
  3473. #u8256 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 8px 2px 8px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u8256_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u8257_input {
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:140px;
  3491. height:31px;
  3492. padding:2px 2px 2px 2px;
  3493. font-family:'Microsoft YaHei', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:14px;
  3497. letter-spacing:normal;
  3498. color:#000000;
  3499. vertical-align:none;
  3500. text-align:left;
  3501. text-transform:none;
  3502. background-color:transparent;
  3503. border-color:transparent;
  3504. }
  3505. #u8257_input.disabled {
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:140px;
  3510. height:31px;
  3511. padding:2px 2px 2px 2px;
  3512. font-family:'Microsoft YaHei', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:14px;
  3516. letter-spacing:normal;
  3517. color:#000000;
  3518. vertical-align:none;
  3519. text-align:left;
  3520. text-transform:none;
  3521. background-color:transparent;
  3522. border-color:transparent;
  3523. }
  3524. #u8257_div {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:0px;
  3528. top:0px;
  3529. width:140px;
  3530. height:31px;
  3531. background:inherit;
  3532. background-color:rgba(255, 255, 255, 1);
  3533. border:none;
  3534. border-radius:0px;
  3535. -moz-box-shadow:none;
  3536. -webkit-box-shadow:none;
  3537. box-shadow:none;
  3538. font-family:'Microsoft YaHei', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:14px;
  3542. }
  3543. #u8257 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:358px;
  3547. top:469px;
  3548. width:140px;
  3549. height:31px;
  3550. display:flex;
  3551. font-family:'Microsoft YaHei', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:14px;
  3555. }
  3556. #u8257 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 2px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u8257_div.disabled {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:140px;
  3569. height:31px;
  3570. background:inherit;
  3571. background-color:rgba(240, 240, 240, 1);
  3572. border:none;
  3573. border-radius:0px;
  3574. -moz-box-shadow:none;
  3575. -webkit-box-shadow:none;
  3576. box-shadow:none;
  3577. font-family:'Microsoft YaHei', sans-serif;
  3578. font-weight:400;
  3579. font-style:normal;
  3580. font-size:14px;
  3581. }
  3582. #u8257.disabled {
  3583. }
  3584. #u8258_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:14px;
  3590. height:14px;
  3591. }
  3592. #u8258 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:505px;
  3596. top:480px;
  3597. width:14px;
  3598. height:14px;
  3599. display:flex;
  3600. }
  3601. #u8258 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 2px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u8258_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u8259 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:0px;
  3620. height:0px;
  3621. }
  3622. #u8260_div {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:0px;
  3626. top:0px;
  3627. width:57px;
  3628. height:30px;
  3629. background:inherit;
  3630. background-color:rgba(255, 255, 255, 0);
  3631. border:none;
  3632. border-radius:0px;
  3633. -moz-box-shadow:none;
  3634. -webkit-box-shadow:none;
  3635. box-shadow:none;
  3636. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3637. font-weight:500;
  3638. font-style:normal;
  3639. font-size:14px;
  3640. color:#000000;
  3641. line-height:30px;
  3642. }
  3643. #u8260 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:351px;
  3647. top:99px;
  3648. width:57px;
  3649. height:30px;
  3650. display:flex;
  3651. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3652. font-weight:500;
  3653. font-style:normal;
  3654. font-size:14px;
  3655. color:#000000;
  3656. line-height:30px;
  3657. }
  3658. #u8260 .text {
  3659. position:absolute;
  3660. align-self:flex-start;
  3661. padding:0px 0px 0px 0px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u8260_text {
  3666. border-width:0px;
  3667. white-space:nowrap;
  3668. text-transform:none;
  3669. }
  3670. #u8261 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:0px;
  3676. height:0px;
  3677. }
  3678. #u8262_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:30px;
  3684. height:30px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 1);
  3687. box-sizing:border-box;
  3688. border-width:1px;
  3689. border-style:solid;
  3690. border-color:rgba(121, 121, 121, 1);
  3691. border-radius:0px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. }
  3696. #u8262 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:352px;
  3700. top:134px;
  3701. width:30px;
  3702. height:30px;
  3703. display:flex;
  3704. }
  3705. #u8262 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 2px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u8262_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u8263_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:19px;
  3724. height:18px;
  3725. }
  3726. #u8263 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:358px;
  3730. top:140px;
  3731. width:19px;
  3732. height:18px;
  3733. display:flex;
  3734. -webkit-transform:rotate(135deg);
  3735. -moz-transform:rotate(135deg);
  3736. -ms-transform:rotate(135deg);
  3737. transform:rotate(135deg);
  3738. }
  3739. #u8263 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:2px 2px 2px 2px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u8263_text {
  3747. border-width:0px;
  3748. word-wrap:break-word;
  3749. text-transform:none;
  3750. visibility:hidden;
  3751. }
  3752. #u8264 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:0px;
  3758. height:0px;
  3759. }
  3760. #u8265_div {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:0px;
  3764. top:0px;
  3765. width:30px;
  3766. height:30px;
  3767. background:inherit;
  3768. background-color:rgba(255, 255, 255, 1);
  3769. box-sizing:border-box;
  3770. border-width:1px;
  3771. border-style:solid;
  3772. border-color:rgba(121, 121, 121, 1);
  3773. border-radius:0px;
  3774. -moz-box-shadow:none;
  3775. -webkit-box-shadow:none;
  3776. box-shadow:none;
  3777. }
  3778. #u8265 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:392px;
  3782. top:134px;
  3783. width:30px;
  3784. height:30px;
  3785. display:flex;
  3786. }
  3787. #u8265 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:2px 2px 2px 2px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u8265_text {
  3795. border-width:0px;
  3796. word-wrap:break-word;
  3797. text-transform:none;
  3798. visibility:hidden;
  3799. }
  3800. #u8266_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:19px;
  3806. height:18px;
  3807. }
  3808. #u8266 {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:398px;
  3812. top:140px;
  3813. width:19px;
  3814. height:18px;
  3815. display:flex;
  3816. -webkit-transform:rotate(180deg);
  3817. -moz-transform:rotate(180deg);
  3818. -ms-transform:rotate(180deg);
  3819. transform:rotate(180deg);
  3820. }
  3821. #u8266 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 2px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u8266_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u8267 {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:0px;
  3840. height:0px;
  3841. }
  3842. #u8268_div {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:30px;
  3848. height:30px;
  3849. background:inherit;
  3850. background-color:rgba(255, 255, 255, 1);
  3851. box-sizing:border-box;
  3852. border-width:1px;
  3853. border-style:solid;
  3854. border-color:rgba(121, 121, 121, 1);
  3855. border-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. }
  3860. #u8268 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:432px;
  3864. top:134px;
  3865. width:30px;
  3866. height:30px;
  3867. display:flex;
  3868. }
  3869. #u8268 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 2px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u8268_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u8269_img {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:19px;
  3888. height:18px;
  3889. }
  3890. #u8269 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:438px;
  3894. top:140px;
  3895. width:19px;
  3896. height:18px;
  3897. display:flex;
  3898. -webkit-transform:rotate(225deg);
  3899. -moz-transform:rotate(225deg);
  3900. -ms-transform:rotate(225deg);
  3901. transform:rotate(225deg);
  3902. }
  3903. #u8269 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u8269_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u8270 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:0px;
  3922. height:0px;
  3923. }
  3924. #u8271_div {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:30px;
  3930. height:30px;
  3931. background:inherit;
  3932. background-color:rgba(255, 255, 255, 1);
  3933. box-sizing:border-box;
  3934. border-width:1px;
  3935. border-style:solid;
  3936. border-color:rgba(121, 121, 121, 1);
  3937. border-radius:0px;
  3938. -moz-box-shadow:none;
  3939. -webkit-box-shadow:none;
  3940. box-shadow:none;
  3941. }
  3942. #u8271 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:352px;
  3946. top:174px;
  3947. width:30px;
  3948. height:30px;
  3949. display:flex;
  3950. }
  3951. #u8271 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u8271_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. visibility:hidden;
  3963. }
  3964. #u8272_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:19px;
  3970. height:18px;
  3971. }
  3972. #u8272 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:358px;
  3976. top:180px;
  3977. width:19px;
  3978. height:18px;
  3979. display:flex;
  3980. -webkit-transform:rotate(90deg);
  3981. -moz-transform:rotate(90deg);
  3982. -ms-transform:rotate(90deg);
  3983. transform:rotate(90deg);
  3984. }
  3985. #u8272 .text {
  3986. position:absolute;
  3987. align-self:center;
  3988. padding:2px 2px 2px 2px;
  3989. box-sizing:border-box;
  3990. width:100%;
  3991. }
  3992. #u8272_text {
  3993. border-width:0px;
  3994. word-wrap:break-word;
  3995. text-transform:none;
  3996. visibility:hidden;
  3997. }
  3998. #u8273 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:0px;
  4004. height:0px;
  4005. }
  4006. #u8274_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:30px;
  4012. height:30px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 1);
  4015. box-sizing:border-box;
  4016. border-width:1px;
  4017. border-style:solid;
  4018. border-color:rgba(121, 121, 121, 1);
  4019. border-radius:0px;
  4020. -moz-box-shadow:none;
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none;
  4023. }
  4024. #u8274 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:432px;
  4028. top:174px;
  4029. width:30px;
  4030. height:30px;
  4031. display:flex;
  4032. }
  4033. #u8274 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 2px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u8274_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u8275_img {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:0px;
  4050. top:0px;
  4051. width:19px;
  4052. height:18px;
  4053. }
  4054. #u8275 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:438px;
  4058. top:180px;
  4059. width:19px;
  4060. height:18px;
  4061. display:flex;
  4062. -webkit-transform:rotate(270deg);
  4063. -moz-transform:rotate(270deg);
  4064. -ms-transform:rotate(270deg);
  4065. transform:rotate(270deg);
  4066. }
  4067. #u8275 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u8275_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u8276 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:0px;
  4086. height:0px;
  4087. }
  4088. #u8277_div {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:30px;
  4094. height:30px;
  4095. background:inherit;
  4096. background-color:rgba(255, 255, 255, 1);
  4097. box-sizing:border-box;
  4098. border-width:1px;
  4099. border-style:solid;
  4100. border-color:rgba(121, 121, 121, 1);
  4101. border-radius:0px;
  4102. -moz-box-shadow:none;
  4103. -webkit-box-shadow:none;
  4104. box-shadow:none;
  4105. }
  4106. #u8277 {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:352px;
  4110. top:214px;
  4111. width:30px;
  4112. height:30px;
  4113. display:flex;
  4114. }
  4115. #u8277 .text {
  4116. position:absolute;
  4117. align-self:center;
  4118. padding:2px 2px 2px 2px;
  4119. box-sizing:border-box;
  4120. width:100%;
  4121. }
  4122. #u8277_text {
  4123. border-width:0px;
  4124. word-wrap:break-word;
  4125. text-transform:none;
  4126. visibility:hidden;
  4127. }
  4128. #u8278_img {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:19px;
  4134. height:18px;
  4135. }
  4136. #u8278 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:358px;
  4140. top:220px;
  4141. width:19px;
  4142. height:18px;
  4143. display:flex;
  4144. -webkit-transform:rotate(51deg);
  4145. -moz-transform:rotate(51deg);
  4146. -ms-transform:rotate(51deg);
  4147. transform:rotate(51deg);
  4148. }
  4149. #u8278 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 2px 2px 2px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u8278_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. visibility:hidden;
  4161. }
  4162. #u8279 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:0px;
  4168. height:0px;
  4169. }
  4170. #u8280_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:30px;
  4176. height:30px;
  4177. background:inherit;
  4178. background-color:rgba(255, 255, 255, 1);
  4179. box-sizing:border-box;
  4180. border-width:1px;
  4181. border-style:solid;
  4182. border-color:rgba(121, 121, 121, 1);
  4183. border-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. }
  4188. #u8280 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:392px;
  4192. top:214px;
  4193. width:30px;
  4194. height:30px;
  4195. display:flex;
  4196. }
  4197. #u8280 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 2px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u8280_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u8281_img {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:19px;
  4216. height:18px;
  4217. }
  4218. #u8281 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:398px;
  4222. top:220px;
  4223. width:19px;
  4224. height:18px;
  4225. display:flex;
  4226. }
  4227. #u8281 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 2px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u8281_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. visibility:hidden;
  4239. }
  4240. #u8282 {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:0px;
  4246. height:0px;
  4247. }
  4248. #u8283_div {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:30px;
  4254. height:30px;
  4255. background:inherit;
  4256. background-color:rgba(255, 255, 255, 1);
  4257. box-sizing:border-box;
  4258. border-width:1px;
  4259. border-style:solid;
  4260. border-color:rgba(121, 121, 121, 1);
  4261. border-radius:0px;
  4262. -moz-box-shadow:none;
  4263. -webkit-box-shadow:none;
  4264. box-shadow:none;
  4265. }
  4266. #u8283 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:432px;
  4270. top:214px;
  4271. width:30px;
  4272. height:30px;
  4273. display:flex;
  4274. }
  4275. #u8283 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 2px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u8283_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u8284_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:19px;
  4294. height:18px;
  4295. }
  4296. #u8284 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:438px;
  4300. top:220px;
  4301. width:19px;
  4302. height:18px;
  4303. display:flex;
  4304. -webkit-transform:rotate(300deg);
  4305. -moz-transform:rotate(300deg);
  4306. -ms-transform:rotate(300deg);
  4307. transform:rotate(300deg);
  4308. }
  4309. #u8284 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 2px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u8284_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u8285_div {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:30px;
  4328. height:30px;
  4329. background:inherit;
  4330. background-color:rgba(255, 255, 255, 1);
  4331. box-sizing:border-box;
  4332. border-width:1px;
  4333. border-style:solid;
  4334. border-color:rgba(121, 121, 121, 1);
  4335. border-radius:0px;
  4336. -moz-box-shadow:none;
  4337. -webkit-box-shadow:none;
  4338. box-shadow:none;
  4339. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4340. font-weight:700;
  4341. font-style:normal;
  4342. font-size:24px;
  4343. }
  4344. #u8285 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:472px;
  4348. top:134px;
  4349. width:30px;
  4350. height:30px;
  4351. display:flex;
  4352. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4353. font-weight:700;
  4354. font-style:normal;
  4355. font-size:24px;
  4356. }
  4357. #u8285 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u8285_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. }
  4369. #u8286_div {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:30px;
  4375. height:30px;
  4376. background:inherit;
  4377. background-color:rgba(255, 255, 255, 1);
  4378. box-sizing:border-box;
  4379. border-width:1px;
  4380. border-style:solid;
  4381. border-color:rgba(121, 121, 121, 1);
  4382. border-radius:0px;
  4383. -moz-box-shadow:none;
  4384. -webkit-box-shadow:none;
  4385. box-shadow:none;
  4386. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4387. font-weight:700;
  4388. font-style:normal;
  4389. font-size:24px;
  4390. }
  4391. #u8286 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:472px;
  4395. top:174px;
  4396. width:30px;
  4397. height:30px;
  4398. display:flex;
  4399. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4400. font-weight:700;
  4401. font-style:normal;
  4402. font-size:24px;
  4403. }
  4404. #u8286 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:2px 2px 2px 2px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u8286_text {
  4412. border-width:0px;
  4413. word-wrap:break-word;
  4414. text-transform:none;
  4415. }
  4416. #u8287_div {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:30px;
  4422. height:30px;
  4423. background:inherit;
  4424. background-color:rgba(255, 255, 255, 1);
  4425. box-sizing:border-box;
  4426. border-width:1px;
  4427. border-style:solid;
  4428. border-color:rgba(121, 121, 121, 1);
  4429. border-radius:0px;
  4430. -moz-box-shadow:none;
  4431. -webkit-box-shadow:none;
  4432. box-shadow:none;
  4433. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4434. font-weight:700;
  4435. font-style:normal;
  4436. font-size:24px;
  4437. }
  4438. #u8287 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:472px;
  4442. top:214px;
  4443. width:30px;
  4444. height:30px;
  4445. display:flex;
  4446. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4447. font-weight:700;
  4448. font-style:normal;
  4449. font-size:24px;
  4450. }
  4451. #u8287 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 2px 2px 2px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u8287_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. }
  4463. #u8288 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:0px;
  4469. height:0px;
  4470. }
  4471. #u8289_div {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:30px;
  4477. height:30px;
  4478. background:inherit;
  4479. background-color:rgba(255, 255, 255, 1);
  4480. box-sizing:border-box;
  4481. border-width:1px;
  4482. border-style:solid;
  4483. border-color:rgba(121, 121, 121, 1);
  4484. border-radius:0px;
  4485. -moz-box-shadow:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4489. font-weight:700;
  4490. font-style:normal;
  4491. font-size:18px;
  4492. }
  4493. #u8289 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:512px;
  4497. top:134px;
  4498. width:30px;
  4499. height:30px;
  4500. display:flex;
  4501. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4502. font-weight:700;
  4503. font-style:normal;
  4504. font-size:18px;
  4505. }
  4506. #u8289 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 2px 2px 2px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u8289_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u8290_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:14px;
  4525. height:14px;
  4526. }
  4527. #u8290 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:520px;
  4531. top:142px;
  4532. width:14px;
  4533. height:14px;
  4534. display:flex;
  4535. }
  4536. #u8290 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 2px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u8290_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. visibility:hidden;
  4548. }
  4549. #u8291 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:0px;
  4555. height:0px;
  4556. }
  4557. #u8292_div {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:30px;
  4563. height:30px;
  4564. background:inherit;
  4565. background-color:rgba(255, 255, 255, 1);
  4566. box-sizing:border-box;
  4567. border-width:1px;
  4568. border-style:solid;
  4569. border-color:rgba(121, 121, 121, 1);
  4570. border-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4575. font-weight:700;
  4576. font-style:normal;
  4577. font-size:18px;
  4578. }
  4579. #u8292 {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:512px;
  4583. top:174px;
  4584. width:30px;
  4585. height:30px;
  4586. display:flex;
  4587. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4588. font-weight:700;
  4589. font-style:normal;
  4590. font-size:18px;
  4591. }
  4592. #u8292 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 2px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u8292_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u8293_img {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:14px;
  4611. height:14px;
  4612. }
  4613. #u8293 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:520px;
  4617. top:182px;
  4618. width:14px;
  4619. height:14px;
  4620. display:flex;
  4621. }
  4622. #u8293 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 2px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u8293_text {
  4630. border-width:0px;
  4631. word-wrap:break-word;
  4632. text-transform:none;
  4633. visibility:hidden;
  4634. }
  4635. #u8294 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:0px;
  4641. height:0px;
  4642. }
  4643. #u8295_div {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:0px;
  4647. top:0px;
  4648. width:30px;
  4649. height:30px;
  4650. background:inherit;
  4651. background-color:rgba(255, 255, 255, 1);
  4652. box-sizing:border-box;
  4653. border-width:1px;
  4654. border-style:solid;
  4655. border-color:rgba(121, 121, 121, 1);
  4656. border-radius:0px;
  4657. -moz-box-shadow:none;
  4658. -webkit-box-shadow:none;
  4659. box-shadow:none;
  4660. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4661. font-weight:700;
  4662. font-style:normal;
  4663. font-size:18px;
  4664. }
  4665. #u8295 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:512px;
  4669. top:214px;
  4670. width:30px;
  4671. height:30px;
  4672. display:flex;
  4673. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  4674. font-weight:700;
  4675. font-style:normal;
  4676. font-size:18px;
  4677. }
  4678. #u8295 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 2px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u8295_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u8296_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:17px;
  4697. height:11px;
  4698. }
  4699. #u8296 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:519px;
  4703. top:224px;
  4704. width:17px;
  4705. height:11px;
  4706. display:flex;
  4707. }
  4708. #u8296 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:2px 2px 2px 2px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u8296_text {
  4716. border-width:0px;
  4717. word-wrap:break-word;
  4718. text-transform:none;
  4719. visibility:hidden;
  4720. }
  4721. #u8297 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:0px;
  4727. height:0px;
  4728. }
  4729. #u8298_div {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:84px;
  4735. height:21px;
  4736. background:inherit;
  4737. background-color:rgba(51, 51, 51, 1);
  4738. border:none;
  4739. border-radius:11px;
  4740. -moz-box-shadow:none;
  4741. -webkit-box-shadow:none;
  4742. box-shadow:none;
  4743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:12px;
  4747. color:#FFFFFF;
  4748. text-align:center;
  4749. }
  4750. #u8298 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:443px;
  4754. top:240px;
  4755. width:84px;
  4756. height:21px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:12px;
  4762. color:#FFFFFF;
  4763. text-align:center;
  4764. }
  4765. #u8298 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 2px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u8298_text {
  4773. border-width:0px;
  4774. white-space:nowrap;
  4775. text-transform:none;
  4776. }
  4777. #u8299_img {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:11px;
  4783. height:17px;
  4784. }
  4785. #u8299 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:495px;
  4789. top:271px;
  4790. width:11px;
  4791. height:17px;
  4792. display:flex;
  4793. }
  4794. #u8299 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 2px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u8299_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u8300_div {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:191px;
  4813. height:6px;
  4814. background:inherit;
  4815. background-color:rgba(255, 255, 255, 1);
  4816. box-sizing:border-box;
  4817. border-width:1px;
  4818. border-style:solid;
  4819. border-color:rgba(228, 228, 228, 1);
  4820. border-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:12px;
  4828. color:#FFFFFF;
  4829. }
  4830. #u8300 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:351px;
  4834. top:268px;
  4835. width:191px;
  4836. height:6px;
  4837. display:flex;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#FFFFFF;
  4843. }
  4844. #u8300 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:8px 15px 8px 15px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u8300_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u8301_div {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:140px;
  4863. height:6px;
  4864. background:inherit;
  4865. background-color:rgba(51, 153, 255, 1);
  4866. box-sizing:border-box;
  4867. border-width:1px;
  4868. border-style:solid;
  4869. border-color:rgba(228, 228, 228, 1);
  4870. border-radius:0px;
  4871. -moz-box-shadow:none;
  4872. -webkit-box-shadow:none;
  4873. box-shadow:none;
  4874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:12px;
  4878. color:#FFFFFF;
  4879. }
  4880. #u8301 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:351px;
  4884. top:268px;
  4885. width:140px;
  4886. height:6px;
  4887. display:flex;
  4888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:12px;
  4892. color:#FFFFFF;
  4893. }
  4894. #u8301 .text {
  4895. position:absolute;
  4896. align-self:center;
  4897. padding:8px 15px 8px 15px;
  4898. box-sizing:border-box;
  4899. width:100%;
  4900. }
  4901. #u8301_text {
  4902. border-width:0px;
  4903. word-wrap:break-word;
  4904. text-transform:none;
  4905. visibility:hidden;
  4906. }
  4907. #u8302_img {
  4908. border-width:0px;
  4909. position:absolute;
  4910. left:-3px;
  4911. top:-3px;
  4912. width:20px;
  4913. height:20px;
  4914. }
  4915. #u8302 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:480px;
  4919. top:264px;
  4920. width:14px;
  4921. height:14px;
  4922. display:flex;
  4923. }
  4924. #u8302 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 2px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u8302_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u8303 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:0px;
  4943. height:0px;
  4944. }
  4945. #u8304_img {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:18px;
  4951. height:18px;
  4952. }
  4953. #u8304 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:1550px;
  4957. top:67px;
  4958. width:18px;
  4959. height:18px;
  4960. display:flex;
  4961. }
  4962. #u8304 .text {
  4963. position:absolute;
  4964. align-self:center;
  4965. padding:2px 2px 2px 2px;
  4966. box-sizing:border-box;
  4967. width:100%;
  4968. }
  4969. #u8304_text {
  4970. border-width:0px;
  4971. word-wrap:break-word;
  4972. text-transform:none;
  4973. visibility:hidden;
  4974. }
  4975. #u8305_img {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:2px;
  4981. height:15px;
  4982. }
  4983. #u8305 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:1535px;
  4987. top:69px;
  4988. width:1px;
  4989. height:14px;
  4990. display:flex;
  4991. }
  4992. #u8305 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 2px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u8305_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. visibility:hidden;
  5004. }
  5005. #u8306 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:0px;
  5011. height:0px;
  5012. }
  5013. #u8307_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:9px;
  5019. height:9px;
  5020. }
  5021. #u8307 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:1458px;
  5025. top:66px;
  5026. width:9px;
  5027. height:9px;
  5028. display:flex;
  5029. }
  5030. #u8307 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 2px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u8307_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u8308_img {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:9px;
  5049. height:9px;
  5050. }
  5051. #u8308 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:1470px;
  5055. top:66px;
  5056. width:9px;
  5057. height:9px;
  5058. display:flex;
  5059. }
  5060. #u8308 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 2px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u8308_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u8309_img {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:9px;
  5079. height:9px;
  5080. }
  5081. #u8309 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:1458px;
  5085. top:78px;
  5086. width:9px;
  5087. height:9px;
  5088. display:flex;
  5089. }
  5090. #u8309 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 2px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u8309_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u8310_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:9px;
  5109. height:9px;
  5110. }
  5111. #u8310 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:1470px;
  5115. top:78px;
  5116. width:9px;
  5117. height:9px;
  5118. display:flex;
  5119. }
  5120. #u8310 .text {
  5121. position:absolute;
  5122. align-self:center;
  5123. padding:2px 2px 2px 2px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u8310_text {
  5128. border-width:0px;
  5129. word-wrap:break-word;
  5130. text-transform:none;
  5131. visibility:hidden;
  5132. }
  5133. #u8311 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:0px;
  5139. height:0px;
  5140. }
  5141. #u8312_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:6px;
  5147. height:6px;
  5148. }
  5149. #u8312 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:1418px;
  5153. top:66px;
  5154. width:6px;
  5155. height:6px;
  5156. display:flex;
  5157. }
  5158. #u8312 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 2px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u8312_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u8313_img {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:6px;
  5177. height:6px;
  5178. }
  5179. #u8313 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:1425px;
  5183. top:66px;
  5184. width:6px;
  5185. height:6px;
  5186. display:flex;
  5187. }
  5188. #u8313 .text {
  5189. position:absolute;
  5190. align-self:center;
  5191. padding:2px 2px 2px 2px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u8313_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. visibility:hidden;
  5200. }
  5201. #u8314_img {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:6px;
  5207. height:6px;
  5208. }
  5209. #u8314 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:1432px;
  5213. top:66px;
  5214. width:6px;
  5215. height:6px;
  5216. display:flex;
  5217. }
  5218. #u8314 .text {
  5219. position:absolute;
  5220. align-self:center;
  5221. padding:2px 2px 2px 2px;
  5222. box-sizing:border-box;
  5223. width:100%;
  5224. }
  5225. #u8314_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. visibility:hidden;
  5230. }
  5231. #u8315_img {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:6px;
  5237. height:6px;
  5238. }
  5239. #u8315 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:1418px;
  5243. top:73px;
  5244. width:6px;
  5245. height:6px;
  5246. display:flex;
  5247. }
  5248. #u8315 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u8315_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. visibility:hidden;
  5260. }
  5261. #u8316_img {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:6px;
  5267. height:6px;
  5268. }
  5269. #u8316 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1425px;
  5273. top:73px;
  5274. width:6px;
  5275. height:6px;
  5276. display:flex;
  5277. }
  5278. #u8316 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 2px 2px 2px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u8316_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u8317_img {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:6px;
  5297. height:6px;
  5298. }
  5299. #u8317 {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:1432px;
  5303. top:73px;
  5304. width:6px;
  5305. height:6px;
  5306. display:flex;
  5307. }
  5308. #u8317 .text {
  5309. position:absolute;
  5310. align-self:center;
  5311. padding:2px 2px 2px 2px;
  5312. box-sizing:border-box;
  5313. width:100%;
  5314. }
  5315. #u8317_text {
  5316. border-width:0px;
  5317. word-wrap:break-word;
  5318. text-transform:none;
  5319. visibility:hidden;
  5320. }
  5321. #u8318_img {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:6px;
  5327. height:6px;
  5328. }
  5329. #u8318 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:1418px;
  5333. top:80px;
  5334. width:6px;
  5335. height:6px;
  5336. display:flex;
  5337. }
  5338. #u8318 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 2px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u8318_text {
  5346. border-width:0px;
  5347. word-wrap:break-word;
  5348. text-transform:none;
  5349. visibility:hidden;
  5350. }
  5351. #u8319_img {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:6px;
  5357. height:6px;
  5358. }
  5359. #u8319 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:1425px;
  5363. top:80px;
  5364. width:6px;
  5365. height:6px;
  5366. display:flex;
  5367. }
  5368. #u8319 .text {
  5369. position:absolute;
  5370. align-self:center;
  5371. padding:2px 2px 2px 2px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u8319_text {
  5376. border-width:0px;
  5377. word-wrap:break-word;
  5378. text-transform:none;
  5379. visibility:hidden;
  5380. }
  5381. #u8320_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:6px;
  5387. height:6px;
  5388. }
  5389. #u8320 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:1432px;
  5393. top:80px;
  5394. width:6px;
  5395. height:6px;
  5396. display:flex;
  5397. }
  5398. #u8320 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:2px 2px 2px 2px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u8320_text {
  5406. border-width:0px;
  5407. word-wrap:break-word;
  5408. text-transform:none;
  5409. visibility:hidden;
  5410. }
  5411. #u8321 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:0px;
  5417. height:0px;
  5418. }
  5419. #u8322_img {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:4px;
  5425. height:4px;
  5426. }
  5427. #u8322 {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:1378px;
  5431. top:67px;
  5432. width:4px;
  5433. height:4px;
  5434. display:flex;
  5435. }
  5436. #u8322 .text {
  5437. position:absolute;
  5438. align-self:center;
  5439. padding:2px 2px 2px 2px;
  5440. box-sizing:border-box;
  5441. width:100%;
  5442. }
  5443. #u8322_text {
  5444. border-width:0px;
  5445. word-wrap:break-word;
  5446. text-transform:none;
  5447. visibility:hidden;
  5448. }
  5449. #u8323_img {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:4px;
  5455. height:4px;
  5456. }
  5457. #u8323 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:1383px;
  5461. top:67px;
  5462. width:4px;
  5463. height:4px;
  5464. display:flex;
  5465. }
  5466. #u8323 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 2px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u8323_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. visibility:hidden;
  5478. }
  5479. #u8324_img {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:4px;
  5485. height:4px;
  5486. }
  5487. #u8324 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:1388px;
  5491. top:67px;
  5492. width:4px;
  5493. height:4px;
  5494. display:flex;
  5495. }
  5496. #u8324 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:2px 2px 2px 2px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u8324_text {
  5504. border-width:0px;
  5505. word-wrap:break-word;
  5506. text-transform:none;
  5507. visibility:hidden;
  5508. }
  5509. #u8325_img {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:0px;
  5513. top:0px;
  5514. width:4px;
  5515. height:4px;
  5516. }
  5517. #u8325 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:1393px;
  5521. top:67px;
  5522. width:4px;
  5523. height:4px;
  5524. display:flex;
  5525. }
  5526. #u8325 .text {
  5527. position:absolute;
  5528. align-self:center;
  5529. padding:2px 2px 2px 2px;
  5530. box-sizing:border-box;
  5531. width:100%;
  5532. }
  5533. #u8325_text {
  5534. border-width:0px;
  5535. word-wrap:break-word;
  5536. text-transform:none;
  5537. visibility:hidden;
  5538. }
  5539. #u8326_img {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:4px;
  5545. height:4px;
  5546. }
  5547. #u8326 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:1378px;
  5551. top:72px;
  5552. width:4px;
  5553. height:4px;
  5554. display:flex;
  5555. }
  5556. #u8326 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 2px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u8326_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. visibility:hidden;
  5568. }
  5569. #u8327_img {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:4px;
  5575. height:4px;
  5576. }
  5577. #u8327 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:1383px;
  5581. top:72px;
  5582. width:4px;
  5583. height:4px;
  5584. display:flex;
  5585. }
  5586. #u8327 .text {
  5587. position:absolute;
  5588. align-self:center;
  5589. padding:2px 2px 2px 2px;
  5590. box-sizing:border-box;
  5591. width:100%;
  5592. }
  5593. #u8327_text {
  5594. border-width:0px;
  5595. word-wrap:break-word;
  5596. text-transform:none;
  5597. visibility:hidden;
  5598. }
  5599. #u8328_img {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:4px;
  5605. height:4px;
  5606. }
  5607. #u8328 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:1388px;
  5611. top:72px;
  5612. width:4px;
  5613. height:4px;
  5614. display:flex;
  5615. }
  5616. #u8328 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 2px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u8328_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. visibility:hidden;
  5628. }
  5629. #u8329_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:4px;
  5635. height:4px;
  5636. }
  5637. #u8329 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:1393px;
  5641. top:72px;
  5642. width:4px;
  5643. height:4px;
  5644. display:flex;
  5645. }
  5646. #u8329 .text {
  5647. position:absolute;
  5648. align-self:center;
  5649. padding:2px 2px 2px 2px;
  5650. box-sizing:border-box;
  5651. width:100%;
  5652. }
  5653. #u8329_text {
  5654. border-width:0px;
  5655. word-wrap:break-word;
  5656. text-transform:none;
  5657. visibility:hidden;
  5658. }
  5659. #u8330_img {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:4px;
  5665. height:4px;
  5666. }
  5667. #u8330 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:1378px;
  5671. top:77px;
  5672. width:4px;
  5673. height:4px;
  5674. display:flex;
  5675. }
  5676. #u8330 .text {
  5677. position:absolute;
  5678. align-self:center;
  5679. padding:2px 2px 2px 2px;
  5680. box-sizing:border-box;
  5681. width:100%;
  5682. }
  5683. #u8330_text {
  5684. border-width:0px;
  5685. word-wrap:break-word;
  5686. text-transform:none;
  5687. visibility:hidden;
  5688. }
  5689. #u8331_img {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:4px;
  5695. height:4px;
  5696. }
  5697. #u8331 {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:1383px;
  5701. top:77px;
  5702. width:4px;
  5703. height:4px;
  5704. display:flex;
  5705. }
  5706. #u8331 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 2px 2px 2px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u8331_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u8332_img {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:4px;
  5725. height:4px;
  5726. }
  5727. #u8332 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:1388px;
  5731. top:77px;
  5732. width:4px;
  5733. height:4px;
  5734. display:flex;
  5735. }
  5736. #u8332 .text {
  5737. position:absolute;
  5738. align-self:center;
  5739. padding:2px 2px 2px 2px;
  5740. box-sizing:border-box;
  5741. width:100%;
  5742. }
  5743. #u8332_text {
  5744. border-width:0px;
  5745. word-wrap:break-word;
  5746. text-transform:none;
  5747. visibility:hidden;
  5748. }
  5749. #u8333_img {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:4px;
  5755. height:4px;
  5756. }
  5757. #u8333 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:1393px;
  5761. top:77px;
  5762. width:4px;
  5763. height:4px;
  5764. display:flex;
  5765. }
  5766. #u8333 .text {
  5767. position:absolute;
  5768. align-self:center;
  5769. padding:2px 2px 2px 2px;
  5770. box-sizing:border-box;
  5771. width:100%;
  5772. }
  5773. #u8333_text {
  5774. border-width:0px;
  5775. word-wrap:break-word;
  5776. text-transform:none;
  5777. visibility:hidden;
  5778. }
  5779. #u8334_img {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:4px;
  5785. height:4px;
  5786. }
  5787. #u8334 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:1378px;
  5791. top:82px;
  5792. width:4px;
  5793. height:4px;
  5794. display:flex;
  5795. }
  5796. #u8334 .text {
  5797. position:absolute;
  5798. align-self:center;
  5799. padding:2px 2px 2px 2px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u8334_text {
  5804. border-width:0px;
  5805. word-wrap:break-word;
  5806. text-transform:none;
  5807. visibility:hidden;
  5808. }
  5809. #u8335_img {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:4px;
  5815. height:4px;
  5816. }
  5817. #u8335 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:1383px;
  5821. top:82px;
  5822. width:4px;
  5823. height:4px;
  5824. display:flex;
  5825. }
  5826. #u8335 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 2px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u8335_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u8336_img {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:4px;
  5845. height:4px;
  5846. }
  5847. #u8336 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:1388px;
  5851. top:82px;
  5852. width:4px;
  5853. height:4px;
  5854. display:flex;
  5855. }
  5856. #u8336 .text {
  5857. position:absolute;
  5858. align-self:center;
  5859. padding:2px 2px 2px 2px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u8336_text {
  5864. border-width:0px;
  5865. word-wrap:break-word;
  5866. text-transform:none;
  5867. visibility:hidden;
  5868. }
  5869. #u8337_img {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:4px;
  5875. height:4px;
  5876. }
  5877. #u8337 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:1393px;
  5881. top:82px;
  5882. width:4px;
  5883. height:4px;
  5884. display:flex;
  5885. }
  5886. #u8337 .text {
  5887. position:absolute;
  5888. align-self:center;
  5889. padding:2px 2px 2px 2px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u8337_text {
  5894. border-width:0px;
  5895. word-wrap:break-word;
  5896. text-transform:none;
  5897. visibility:hidden;
  5898. }
  5899. #u8338_img {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:20px;
  5905. height:20px;
  5906. }
  5907. #u8338 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:1500px;
  5911. top:66px;
  5912. width:20px;
  5913. height:20px;
  5914. display:flex;
  5915. }
  5916. #u8338 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u8338_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u8339 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:0px;
  5935. height:0px;
  5936. }
  5937. #u8340_div {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:89px;
  5943. height:30px;
  5944. background:inherit;
  5945. background-color:rgba(255, 255, 255, 1);
  5946. box-sizing:border-box;
  5947. border-width:1px;
  5948. border-style:solid;
  5949. border-color:rgba(215, 215, 215, 1);
  5950. border-radius:4px;
  5951. -moz-box-shadow:none;
  5952. -webkit-box-shadow:none;
  5953. box-shadow:none;
  5954. font-size:14px;
  5955. }
  5956. #u8340 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:352px;
  5960. top:323px;
  5961. width:89px;
  5962. height:30px;
  5963. display:flex;
  5964. font-size:14px;
  5965. }
  5966. #u8340 .text {
  5967. position:absolute;
  5968. align-self:center;
  5969. padding:2px 2px 2px 2px;
  5970. box-sizing:border-box;
  5971. width:100%;
  5972. }
  5973. #u8340_text {
  5974. border-width:0px;
  5975. word-wrap:break-word;
  5976. text-transform:none;
  5977. visibility:hidden;
  5978. }
  5979. #u8341_input {
  5980. position:absolute;
  5981. left:0px;
  5982. top:0px;
  5983. width:85px;
  5984. height:23px;
  5985. padding:2px 2px 2px 2px;
  5986. font-family:'ArialMT', 'Arial', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:14px;
  5990. letter-spacing:normal;
  5991. color:#AAAAAA;
  5992. vertical-align:none;
  5993. text-align:left;
  5994. text-transform:none;
  5995. background-color:transparent;
  5996. border-color:transparent;
  5997. }
  5998. #u8341_input.disabled {
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:85px;
  6003. height:23px;
  6004. padding:2px 2px 2px 2px;
  6005. font-family:'ArialMT', 'Arial', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. font-size:14px;
  6009. letter-spacing:normal;
  6010. color:#AAAAAA;
  6011. vertical-align:none;
  6012. text-align:left;
  6013. text-transform:none;
  6014. background-color:transparent;
  6015. border-color:transparent;
  6016. }
  6017. #u8341_div {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:85px;
  6023. height:23px;
  6024. background:inherit;
  6025. background-color:rgba(255, 255, 255, 1);
  6026. border:none;
  6027. border-radius:0px;
  6028. -moz-box-shadow:none;
  6029. -webkit-box-shadow:none;
  6030. box-shadow:none;
  6031. font-size:14px;
  6032. color:#AAAAAA;
  6033. }
  6034. #u8341 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:355px;
  6038. top:325px;
  6039. width:85px;
  6040. height:23px;
  6041. display:flex;
  6042. font-size:14px;
  6043. color:#AAAAAA;
  6044. }
  6045. #u8341 .text {
  6046. position:absolute;
  6047. align-self:flex-start;
  6048. padding:2px 2px 2px 2px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u8341_div.disabled {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:85px;
  6058. height:23px;
  6059. background:inherit;
  6060. background-color:rgba(240, 240, 240, 1);
  6061. border:none;
  6062. border-radius:0px;
  6063. -moz-box-shadow:none;
  6064. -webkit-box-shadow:none;
  6065. box-shadow:none;
  6066. font-size:14px;
  6067. color:#AAAAAA;
  6068. }
  6069. #u8341.disabled {
  6070. }
  6071. .u8341_input_option {
  6072. font-size:14px;
  6073. }
  6074. #u8342_div {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:57px;
  6080. height:30px;
  6081. background:inherit;
  6082. background-color:rgba(255, 255, 255, 0);
  6083. border:none;
  6084. border-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6089. font-weight:500;
  6090. font-style:normal;
  6091. font-size:14px;
  6092. color:#000000;
  6093. line-height:30px;
  6094. }
  6095. #u8342 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:351px;
  6099. top:292px;
  6100. width:57px;
  6101. height:30px;
  6102. display:flex;
  6103. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6104. font-weight:500;
  6105. font-style:normal;
  6106. font-size:14px;
  6107. color:#000000;
  6108. line-height:30px;
  6109. }
  6110. #u8342 .text {
  6111. position:absolute;
  6112. align-self:flex-start;
  6113. padding:0px 0px 0px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u8342_text {
  6118. border-width:0px;
  6119. white-space:nowrap;
  6120. text-transform:none;
  6121. }
  6122. #u8343 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:0px;
  6128. height:0px;
  6129. }
  6130. #u8344_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:113px;
  6136. height:30px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 1);
  6139. box-sizing:border-box;
  6140. border-width:1px;
  6141. border-style:solid;
  6142. border-color:rgba(201, 201, 201, 1);
  6143. border-radius:4px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-family:'Microsoft YaHei', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:14px;
  6151. color:#CCCCCC;
  6152. text-align:left;
  6153. }
  6154. #u8344 {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:448px;
  6158. top:323px;
  6159. width:113px;
  6160. height:30px;
  6161. display:flex;
  6162. font-family:'Microsoft YaHei', sans-serif;
  6163. font-weight:400;
  6164. font-style:normal;
  6165. font-size:14px;
  6166. color:#CCCCCC;
  6167. text-align:left;
  6168. }
  6169. #u8344 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:2px 8px 2px 8px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u8344_text {
  6177. border-width:0px;
  6178. word-wrap:break-word;
  6179. text-transform:none;
  6180. visibility:hidden;
  6181. }
  6182. #u8345_input {
  6183. position:absolute;
  6184. left:0px;
  6185. top:0px;
  6186. width:103px;
  6187. height:25px;
  6188. padding:2px 2px 2px 2px;
  6189. font-family:'Microsoft YaHei', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:10px;
  6193. letter-spacing:normal;
  6194. color:#000000;
  6195. vertical-align:none;
  6196. text-align:left;
  6197. text-transform:none;
  6198. background-color:transparent;
  6199. border-color:transparent;
  6200. }
  6201. #u8345_input.disabled {
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:103px;
  6206. height:25px;
  6207. padding:2px 2px 2px 2px;
  6208. font-family:'Microsoft YaHei', sans-serif;
  6209. font-weight:400;
  6210. font-style:normal;
  6211. font-size:10px;
  6212. letter-spacing:normal;
  6213. color:#000000;
  6214. vertical-align:none;
  6215. text-align:left;
  6216. text-transform:none;
  6217. background-color:transparent;
  6218. border-color:transparent;
  6219. }
  6220. #u8345_div {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:103px;
  6226. height:25px;
  6227. background:inherit;
  6228. background-color:rgba(255, 255, 255, 1);
  6229. border:none;
  6230. border-radius:0px;
  6231. -moz-box-shadow:none;
  6232. -webkit-box-shadow:none;
  6233. box-shadow:none;
  6234. font-family:'Microsoft YaHei', sans-serif;
  6235. font-weight:400;
  6236. font-style:normal;
  6237. font-size:10px;
  6238. }
  6239. #u8345 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:454px;
  6243. top:324px;
  6244. width:103px;
  6245. height:25px;
  6246. display:flex;
  6247. font-family:'Microsoft YaHei', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:10px;
  6251. }
  6252. #u8345 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u8345_div.disabled {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:103px;
  6265. height:25px;
  6266. background:inherit;
  6267. background-color:rgba(240, 240, 240, 1);
  6268. border:none;
  6269. border-radius:0px;
  6270. -moz-box-shadow:none;
  6271. -webkit-box-shadow:none;
  6272. box-shadow:none;
  6273. font-family:'Microsoft YaHei', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:10px;
  6277. }
  6278. #u8345.disabled {
  6279. }
  6280. #u8346_div {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:50px;
  6286. height:30px;
  6287. background:inherit;
  6288. background-color:rgba(255, 138, 5, 1);
  6289. border:none;
  6290. border-radius:4px;
  6291. -moz-box-shadow:none;
  6292. -webkit-box-shadow:none;
  6293. box-shadow:none;
  6294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:12px;
  6298. color:#FFFFFF;
  6299. }
  6300. #u8346 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:352px;
  6304. top:363px;
  6305. width:50px;
  6306. height:30px;
  6307. display:flex;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:12px;
  6312. color:#FFFFFF;
  6313. }
  6314. #u8346 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:5px 0px 5px 0px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u8346_text {
  6322. border-width:0px;
  6323. word-wrap:break-word;
  6324. text-transform:none;
  6325. }
  6326. #u8347_div {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:50px;
  6332. height:30px;
  6333. background:inherit;
  6334. background-color:rgba(255, 138, 5, 1);
  6335. border:none;
  6336. border-radius:4px;
  6337. -moz-box-shadow:none;
  6338. -webkit-box-shadow:none;
  6339. box-shadow:none;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:12px;
  6344. color:#FFFFFF;
  6345. }
  6346. #u8347 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:412px;
  6350. top:363px;
  6351. width:50px;
  6352. height:30px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#FFFFFF;
  6359. }
  6360. #u8347 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:5px 0px 5px 0px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u8347_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. }
  6372. #u8349 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:0px;
  6378. height:0px;
  6379. }
  6380. #u8350_div {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:200px;
  6386. height:1187px;
  6387. background:inherit;
  6388. background-color:rgba(255, 255, 255, 1);
  6389. border:none;
  6390. border-radius:0px;
  6391. -moz-box-shadow:none;
  6392. -webkit-box-shadow:none;
  6393. box-shadow:none;
  6394. }
  6395. #u8350 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:120px;
  6399. top:50px;
  6400. width:200px;
  6401. height:1187px;
  6402. display:flex;
  6403. }
  6404. #u8350 .text {
  6405. position:absolute;
  6406. align-self:center;
  6407. padding:2px 2px 2px 2px;
  6408. box-sizing:border-box;
  6409. width:100%;
  6410. }
  6411. #u8350_text {
  6412. border-width:0px;
  6413. word-wrap:break-word;
  6414. text-transform:none;
  6415. visibility:hidden;
  6416. }
  6417. #u8351_div {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:200px;
  6423. height:60px;
  6424. background:inherit;
  6425. background-color:rgba(224, 231, 247, 1);
  6426. border:none;
  6427. border-radius:0px;
  6428. -moz-box-shadow:none;
  6429. -webkit-box-shadow:none;
  6430. box-shadow:none;
  6431. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6432. font-weight:500;
  6433. font-style:normal;
  6434. font-size:18px;
  6435. }
  6436. #u8351 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:120px;
  6440. top:50px;
  6441. width:200px;
  6442. height:60px;
  6443. display:flex;
  6444. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6445. font-weight:500;
  6446. font-style:normal;
  6447. font-size:18px;
  6448. }
  6449. #u8351 .text {
  6450. position:absolute;
  6451. align-self:center;
  6452. padding:0px 0px 0px 20px;
  6453. box-sizing:border-box;
  6454. width:100%;
  6455. }
  6456. #u8351_text {
  6457. border-width:0px;
  6458. word-wrap:break-word;
  6459. text-transform:none;
  6460. }
  6461. #u8352_div {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:65px;
  6467. height:22px;
  6468. background:inherit;
  6469. background-color:rgba(255, 255, 255, 0);
  6470. border:none;
  6471. border-radius:0px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:16px;
  6479. }
  6480. #u8352 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:147px;
  6484. top:204px;
  6485. width:65px;
  6486. height:22px;
  6487. display:flex;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:16px;
  6492. }
  6493. #u8352 .text {
  6494. position:absolute;
  6495. align-self:flex-start;
  6496. padding:0px 0px 0px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u8352_text {
  6501. border-width:0px;
  6502. white-space:nowrap;
  6503. text-transform:none;
  6504. }
  6505. #u8353_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:49px;
  6511. height:17px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 0);
  6514. border:none;
  6515. border-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:12px;
  6523. color:#AAAAAA;
  6524. }
  6525. #u8353 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:147px;
  6529. top:125px;
  6530. width:49px;
  6531. height:17px;
  6532. display:flex;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:12px;
  6537. color:#AAAAAA;
  6538. }
  6539. #u8353 .text {
  6540. position:absolute;
  6541. align-self:flex-start;
  6542. padding:0px 0px 0px 0px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u8353_text {
  6547. border-width:0px;
  6548. white-space:nowrap;
  6549. text-transform:none;
  6550. }
  6551. #u8354_div {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:49px;
  6557. height:17px;
  6558. background:inherit;
  6559. background-color:rgba(255, 255, 255, 0);
  6560. border:none;
  6561. border-radius:0px;
  6562. -moz-box-shadow:none;
  6563. -webkit-box-shadow:none;
  6564. box-shadow:none;
  6565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:12px;
  6569. color:#AAAAAA;
  6570. }
  6571. #u8354 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:147px;
  6575. top:461px;
  6576. width:49px;
  6577. height:17px;
  6578. display:flex;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:12px;
  6583. color:#AAAAAA;
  6584. }
  6585. #u8354 .text {
  6586. position:absolute;
  6587. align-self:flex-start;
  6588. padding:0px 0px 0px 0px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u8354_text {
  6593. border-width:0px;
  6594. white-space:nowrap;
  6595. text-transform:none;
  6596. }
  6597. #u8355_img {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:201px;
  6603. height:2px;
  6604. }
  6605. #u8355 {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:120px;
  6609. top:439px;
  6610. width:200px;
  6611. height:1px;
  6612. display:flex;
  6613. }
  6614. #u8355 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:2px 2px 2px 2px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u8355_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. visibility:hidden;
  6626. }
  6627. #u8356_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:65px;
  6633. height:22px;
  6634. background:inherit;
  6635. background-color:rgba(255, 255, 255, 0);
  6636. border:none;
  6637. border-radius:0px;
  6638. -moz-box-shadow:none;
  6639. -webkit-box-shadow:none;
  6640. box-shadow:none;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. font-size:16px;
  6645. }
  6646. #u8356 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:147px;
  6650. top:349px;
  6651. width:65px;
  6652. height:22px;
  6653. display:flex;
  6654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6655. font-weight:400;
  6656. font-style:normal;
  6657. font-size:16px;
  6658. }
  6659. #u8356 .text {
  6660. position:absolute;
  6661. align-self:flex-start;
  6662. padding:0px 0px 0px 0px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u8356_text {
  6667. border-width:0px;
  6668. white-space:nowrap;
  6669. text-transform:none;
  6670. }
  6671. #u8357_div {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:49px;
  6677. height:17px;
  6678. background:inherit;
  6679. background-color:rgba(255, 255, 255, 0);
  6680. border:none;
  6681. border-radius:0px;
  6682. -moz-box-shadow:none;
  6683. -webkit-box-shadow:none;
  6684. box-shadow:none;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:12px;
  6689. color:#AAAAAA;
  6690. }
  6691. #u8357 {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:147px;
  6695. top:265px;
  6696. width:49px;
  6697. height:17px;
  6698. display:flex;
  6699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:12px;
  6703. color:#AAAAAA;
  6704. }
  6705. #u8357 .text {
  6706. position:absolute;
  6707. align-self:flex-start;
  6708. padding:0px 0px 0px 0px;
  6709. box-sizing:border-box;
  6710. width:100%;
  6711. }
  6712. #u8357_text {
  6713. border-width:0px;
  6714. white-space:nowrap;
  6715. text-transform:none;
  6716. }
  6717. #u8358_img {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:201px;
  6723. height:2px;
  6724. }
  6725. #u8358 {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:120px;
  6729. top:243px;
  6730. width:200px;
  6731. height:1px;
  6732. display:flex;
  6733. }
  6734. #u8358 .text {
  6735. position:absolute;
  6736. align-self:center;
  6737. padding:2px 2px 2px 2px;
  6738. box-sizing:border-box;
  6739. width:100%;
  6740. }
  6741. #u8358_text {
  6742. border-width:0px;
  6743. word-wrap:break-word;
  6744. text-transform:none;
  6745. visibility:hidden;
  6746. }
  6747. #u8359_div {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:65px;
  6753. height:22px;
  6754. background:inherit;
  6755. background-color:rgba(255, 255, 255, 0);
  6756. border:none;
  6757. border-radius:0px;
  6758. -moz-box-shadow:none;
  6759. -webkit-box-shadow:none;
  6760. box-shadow:none;
  6761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6762. font-weight:400;
  6763. font-style:normal;
  6764. font-size:16px;
  6765. }
  6766. #u8359 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:147px;
  6770. top:162px;
  6771. width:65px;
  6772. height:22px;
  6773. display:flex;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:16px;
  6778. }
  6779. #u8359 .text {
  6780. position:absolute;
  6781. align-self:flex-start;
  6782. padding:0px 0px 0px 0px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u8359_text {
  6787. border-width:0px;
  6788. white-space:nowrap;
  6789. text-transform:none;
  6790. }
  6791. #u8360_div {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:65px;
  6797. height:22px;
  6798. background:inherit;
  6799. background-color:rgba(255, 255, 255, 0);
  6800. border:none;
  6801. border-radius:0px;
  6802. -moz-box-shadow:none;
  6803. -webkit-box-shadow:none;
  6804. box-shadow:none;
  6805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6806. font-weight:400;
  6807. font-style:normal;
  6808. font-size:16px;
  6809. }
  6810. #u8360 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:148px;
  6814. top:578px;
  6815. width:65px;
  6816. height:22px;
  6817. display:flex;
  6818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:16px;
  6822. }
  6823. #u8360 .text {
  6824. position:absolute;
  6825. align-self:flex-start;
  6826. padding:0px 0px 0px 0px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u8360_text {
  6831. border-width:0px;
  6832. white-space:nowrap;
  6833. text-transform:none;
  6834. }
  6835. #u8361_div {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:65px;
  6841. height:22px;
  6842. background:inherit;
  6843. background-color:rgba(255, 255, 255, 0);
  6844. border:none;
  6845. border-radius:0px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:16px;
  6853. }
  6854. #u8361 {
  6855. border-width:0px;
  6856. position:absolute;
  6857. left:148px;
  6858. top:536px;
  6859. width:65px;
  6860. height:22px;
  6861. display:flex;
  6862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6863. font-weight:400;
  6864. font-style:normal;
  6865. font-size:16px;
  6866. }
  6867. #u8361 .text {
  6868. position:absolute;
  6869. align-self:flex-start;
  6870. padding:0px 0px 0px 0px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u8361_text {
  6875. border-width:0px;
  6876. white-space:nowrap;
  6877. text-transform:none;
  6878. }
  6879. #u8362_div {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:65px;
  6885. height:22px;
  6886. background:inherit;
  6887. background-color:rgba(255, 255, 255, 0);
  6888. border:none;
  6889. border-radius:0px;
  6890. -moz-box-shadow:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:16px;
  6897. }
  6898. #u8362 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:147px;
  6902. top:391px;
  6903. width:65px;
  6904. height:22px;
  6905. display:flex;
  6906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6907. font-weight:400;
  6908. font-style:normal;
  6909. font-size:16px;
  6910. }
  6911. #u8362 .text {
  6912. position:absolute;
  6913. align-self:flex-start;
  6914. padding:0px 0px 0px 0px;
  6915. box-sizing:border-box;
  6916. width:100%;
  6917. }
  6918. #u8362_text {
  6919. border-width:0px;
  6920. white-space:nowrap;
  6921. text-transform:none;
  6922. }
  6923. #u8363_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:65px;
  6929. height:22px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 0);
  6932. border:none;
  6933. border-radius:0px;
  6934. -moz-box-shadow:none;
  6935. -webkit-box-shadow:none;
  6936. box-shadow:none;
  6937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:16px;
  6941. }
  6942. #u8363 {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:147px;
  6946. top:305px;
  6947. width:65px;
  6948. height:22px;
  6949. display:flex;
  6950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6951. font-weight:400;
  6952. font-style:normal;
  6953. font-size:16px;
  6954. }
  6955. #u8363 .text {
  6956. position:absolute;
  6957. align-self:flex-start;
  6958. padding:0px 0px 0px 0px;
  6959. box-sizing:border-box;
  6960. width:100%;
  6961. }
  6962. #u8363_text {
  6963. border-width:0px;
  6964. white-space:nowrap;
  6965. text-transform:none;
  6966. }
  6967. #u8364_div {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:65px;
  6973. height:22px;
  6974. background:inherit;
  6975. background-color:rgba(255, 255, 255, 0);
  6976. border:none;
  6977. border-radius:0px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6982. font-weight:400;
  6983. font-style:normal;
  6984. font-size:16px;
  6985. }
  6986. #u8364 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:147px;
  6990. top:498px;
  6991. width:65px;
  6992. height:22px;
  6993. display:flex;
  6994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6995. font-weight:400;
  6996. font-style:normal;
  6997. font-size:16px;
  6998. }
  6999. #u8364 .text {
  7000. position:absolute;
  7001. align-self:flex-start;
  7002. padding:0px 0px 0px 0px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u8364_text {
  7007. border-width:0px;
  7008. white-space:nowrap;
  7009. text-transform:none;
  7010. }
  7011. #u8365_div {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:738px;
  7017. height:130px;
  7018. background:inherit;
  7019. background-color:rgba(255, 255, 255, 0);
  7020. border:none;
  7021. border-top:0px;
  7022. border-right:0px;
  7023. border-bottom:0px;
  7024. border-radius:0px;
  7025. border-top-left-radius:0px;
  7026. border-bottom-left-radius:0px;
  7027. -moz-box-shadow:none;
  7028. -webkit-box-shadow:none;
  7029. box-shadow:none;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:14px;
  7034. color:#D9001B;
  7035. }
  7036. #u8365 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:377px;
  7040. top:1097px;
  7041. width:738px;
  7042. height:130px;
  7043. display:flex;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:14px;
  7048. color:#D9001B;
  7049. }
  7050. #u8365 .text {
  7051. position:absolute;
  7052. align-self:center;
  7053. padding:5px 0px 5px 0px;
  7054. box-sizing:border-box;
  7055. width:100%;
  7056. }
  7057. #u8365_text {
  7058. border-width:0px;
  7059. white-space:nowrap;
  7060. text-transform:none;
  7061. }
  7062. #u8366 {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:351px;
  7066. top:307px;
  7067. width:0px;
  7068. height:0px;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:12px;
  7073. color:#333333;
  7074. }
  7075. #u8366_seg0 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:-16px;
  7079. top:-5px;
  7080. width:16px;
  7081. height:10px;
  7082. }
  7083. #u8366_seg1 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:-16px;
  7087. top:-5px;
  7088. width:10px;
  7089. height:865px;
  7090. }
  7091. #u8366_seg2 {
  7092. border-width:0px;
  7093. position:absolute;
  7094. left:-16px;
  7095. top:850px;
  7096. width:42px;
  7097. height:10px;
  7098. }
  7099. #u8366_seg3 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:14px;
  7103. top:845px;
  7104. width:20px;
  7105. height:20px;
  7106. }
  7107. #u8366_text {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:-61px;
  7111. top:432px;
  7112. width:100px;
  7113. word-wrap:break-word;
  7114. text-transform:none;
  7115. visibility:hidden;
  7116. }
  7117. #u8367 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:351px;
  7121. top:114px;
  7122. width:0px;
  7123. height:0px;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#333333;
  7129. }
  7130. #u8367_seg0 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:-16px;
  7134. top:-5px;
  7135. width:16px;
  7136. height:10px;
  7137. }
  7138. #u8367_seg1 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:-16px;
  7142. top:-5px;
  7143. width:10px;
  7144. height:1058px;
  7145. }
  7146. #u8367_seg2 {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:-16px;
  7150. top:1043px;
  7151. width:42px;
  7152. height:10px;
  7153. }
  7154. #u8367_seg3 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:14px;
  7158. top:1038px;
  7159. width:20px;
  7160. height:20px;
  7161. }
  7162. #u8367_text {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:-61px;
  7166. top:529px;
  7167. width:100px;
  7168. word-wrap:break-word;
  7169. text-transform:none;
  7170. visibility:hidden;
  7171. }
  7172. #u8368_div {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:330px;
  7178. height:241px;
  7179. background:inherit;
  7180. background-color:rgba(255, 255, 255, 0);
  7181. box-sizing:border-box;
  7182. border-width:3px;
  7183. border-style:solid;
  7184. border-color:rgba(24, 144, 255, 1);
  7185. border-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. }
  7190. #u8368 {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:911px;
  7194. top:349px;
  7195. width:330px;
  7196. height:241px;
  7197. display:flex;
  7198. }
  7199. #u8368 .text {
  7200. position:absolute;
  7201. align-self:center;
  7202. padding:2px 2px 2px 2px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u8368_text {
  7207. border-width:0px;
  7208. word-wrap:break-word;
  7209. text-transform:none;
  7210. visibility:hidden;
  7211. }
  7212. #u8370_div {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:0px;
  7216. top:0px;
  7217. width:1480px;
  7218. height:1200px;
  7219. background:inherit;
  7220. background-color:rgba(242, 242, 242, 1);
  7221. border:none;
  7222. border-radius:0px;
  7223. -moz-box-shadow:none;
  7224. -webkit-box-shadow:none;
  7225. box-shadow:none;
  7226. }
  7227. #u8370 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:1743px;
  7231. top:50px;
  7232. width:1480px;
  7233. height:1200px;
  7234. display:flex;
  7235. }
  7236. #u8370 .text {
  7237. position:absolute;
  7238. align-self:center;
  7239. padding:2px 2px 2px 2px;
  7240. box-sizing:border-box;
  7241. width:100%;
  7242. }
  7243. #u8370_text {
  7244. border-width:0px;
  7245. word-wrap:break-word;
  7246. text-transform:none;
  7247. visibility:hidden;
  7248. }
  7249. #u8371_div {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:129px;
  7255. height:22px;
  7256. background:inherit;
  7257. background-color:rgba(255, 255, 255, 0);
  7258. border:none;
  7259. border-radius:0px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-size:16px;
  7264. color:#FFFFFF;
  7265. }
  7266. #u8371 {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:1672px;
  7270. top:14px;
  7271. width:129px;
  7272. height:22px;
  7273. display:flex;
  7274. font-size:16px;
  7275. color:#FFFFFF;
  7276. }
  7277. #u8371 .text {
  7278. position:absolute;
  7279. align-self:flex-start;
  7280. padding:0px 0px 0px 0px;
  7281. box-sizing:border-box;
  7282. width:100%;
  7283. }
  7284. #u8371_text {
  7285. border-width:0px;
  7286. white-space:nowrap;
  7287. text-transform:none;
  7288. }
  7289. #u8372_div {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:1600px;
  7295. height:50px;
  7296. background:inherit;
  7297. background-color:rgba(30, 42, 68, 1);
  7298. border:none;
  7299. border-radius:0px;
  7300. -moz-box-shadow:none;
  7301. -webkit-box-shadow:none;
  7302. box-shadow:none;
  7303. color:#AFB3B6;
  7304. }
  7305. #u8372 {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:1623px;
  7309. top:0px;
  7310. width:1600px;
  7311. height:50px;
  7312. display:flex;
  7313. color:#AFB3B6;
  7314. }
  7315. #u8372 .text {
  7316. position:absolute;
  7317. align-self:center;
  7318. padding:2px 2px 2px 2px;
  7319. box-sizing:border-box;
  7320. width:100%;
  7321. }
  7322. #u8372_text {
  7323. border-width:0px;
  7324. word-wrap:break-word;
  7325. text-transform:none;
  7326. visibility:hidden;
  7327. }
  7328. #u8373 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:0px;
  7334. height:0px;
  7335. }
  7336. #u8374_img {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:0px;
  7340. top:0px;
  7341. width:31px;
  7342. height:31px;
  7343. }
  7344. #u8374 {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:1642px;
  7348. top:10px;
  7349. width:31px;
  7350. height:31px;
  7351. display:flex;
  7352. }
  7353. #u8374 .text {
  7354. position:absolute;
  7355. align-self:center;
  7356. padding:2px 2px 2px 2px;
  7357. box-sizing:border-box;
  7358. width:100%;
  7359. }
  7360. #u8374_text {
  7361. border-width:0px;
  7362. word-wrap:break-word;
  7363. text-transform:none;
  7364. }
  7365. #u8375_div {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:0px;
  7369. top:0px;
  7370. width:161px;
  7371. height:22px;
  7372. background:inherit;
  7373. background-color:rgba(255, 255, 255, 0);
  7374. border:none;
  7375. border-radius:0px;
  7376. -moz-box-shadow:none;
  7377. -webkit-box-shadow:none;
  7378. box-shadow:none;
  7379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7380. font-weight:400;
  7381. font-style:normal;
  7382. font-size:16px;
  7383. color:#FFFFFF;
  7384. }
  7385. #u8375 {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:1685px;
  7389. top:14px;
  7390. width:161px;
  7391. height:22px;
  7392. display:flex;
  7393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7394. font-weight:400;
  7395. font-style:normal;
  7396. font-size:16px;
  7397. color:#FFFFFF;
  7398. }
  7399. #u8375 .text {
  7400. position:absolute;
  7401. align-self:flex-start;
  7402. padding:0px 0px 0px 0px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u8375_text {
  7407. border-width:0px;
  7408. white-space:nowrap;
  7409. text-transform:none;
  7410. }
  7411. #u8376_div {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:120px;
  7417. height:1200px;
  7418. background:inherit;
  7419. background-color:rgba(30, 42, 68, 1);
  7420. border:none;
  7421. border-radius:0px;
  7422. -moz-box-shadow:none;
  7423. -webkit-box-shadow:none;
  7424. box-shadow:none;
  7425. color:#AFB3B6;
  7426. }
  7427. #u8376 {
  7428. border-width:0px;
  7429. position:absolute;
  7430. left:1623px;
  7431. top:47px;
  7432. width:120px;
  7433. height:1200px;
  7434. display:flex;
  7435. color:#AFB3B6;
  7436. }
  7437. #u8376 .text {
  7438. position:absolute;
  7439. align-self:center;
  7440. padding:2px 2px 2px 2px;
  7441. box-sizing:border-box;
  7442. width:100%;
  7443. }
  7444. #u8376_text {
  7445. border-width:0px;
  7446. word-wrap:break-word;
  7447. text-transform:none;
  7448. visibility:hidden;
  7449. }
  7450. #u8377 {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:0px;
  7454. top:0px;
  7455. width:0px;
  7456. height:0px;
  7457. }
  7458. #u8378_div {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:33px;
  7464. height:22px;
  7465. background:inherit;
  7466. background-color:rgba(255, 255, 255, 0);
  7467. border:none;
  7468. border-radius:0px;
  7469. -moz-box-shadow:none;
  7470. -webkit-box-shadow:none;
  7471. box-shadow:none;
  7472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7473. font-weight:400;
  7474. font-style:normal;
  7475. font-size:16px;
  7476. color:#FFFFFF;
  7477. }
  7478. #u8378 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:1662px;
  7482. top:171px;
  7483. width:33px;
  7484. height:22px;
  7485. display:flex;
  7486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7487. font-weight:400;
  7488. font-style:normal;
  7489. font-size:16px;
  7490. color:#FFFFFF;
  7491. }
  7492. #u8378 .text {
  7493. position:absolute;
  7494. align-self:flex-start;
  7495. padding:0px 0px 0px 0px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u8378_text {
  7500. border-width:0px;
  7501. white-space:nowrap;
  7502. text-transform:none;
  7503. }
  7504. #u8379_img {
  7505. border-width:0px;
  7506. position:absolute;
  7507. left:0px;
  7508. top:0px;
  7509. width:14px;
  7510. height:14px;
  7511. }
  7512. #u8379 {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:1643px;
  7516. top:175px;
  7517. width:14px;
  7518. height:14px;
  7519. display:flex;
  7520. }
  7521. #u8379 .text {
  7522. position:absolute;
  7523. align-self:center;
  7524. padding:2px 2px 2px 2px;
  7525. box-sizing:border-box;
  7526. width:100%;
  7527. }
  7528. #u8379_text {
  7529. border-width:0px;
  7530. word-wrap:break-word;
  7531. text-transform:none;
  7532. visibility:hidden;
  7533. }
  7534. #u8380 {
  7535. border-width:0px;
  7536. position:absolute;
  7537. left:0px;
  7538. top:0px;
  7539. width:0px;
  7540. height:0px;
  7541. }
  7542. #u8381_div {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:0px;
  7546. top:0px;
  7547. width:33px;
  7548. height:22px;
  7549. background:inherit;
  7550. background-color:rgba(255, 255, 255, 0);
  7551. border:none;
  7552. border-radius:0px;
  7553. -moz-box-shadow:none;
  7554. -webkit-box-shadow:none;
  7555. box-shadow:none;
  7556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:16px;
  7560. color:#FFFFFF;
  7561. }
  7562. #u8381 {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:1662px;
  7566. top:381px;
  7567. width:33px;
  7568. height:22px;
  7569. display:flex;
  7570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7571. font-weight:400;
  7572. font-style:normal;
  7573. font-size:16px;
  7574. color:#FFFFFF;
  7575. }
  7576. #u8381 .text {
  7577. position:absolute;
  7578. align-self:flex-start;
  7579. padding:0px 0px 0px 0px;
  7580. box-sizing:border-box;
  7581. width:100%;
  7582. }
  7583. #u8381_text {
  7584. border-width:0px;
  7585. white-space:nowrap;
  7586. text-transform:none;
  7587. }
  7588. #u8382_img {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:0px;
  7592. top:0px;
  7593. width:14px;
  7594. height:14px;
  7595. }
  7596. #u8382 {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:1643px;
  7600. top:385px;
  7601. width:14px;
  7602. height:14px;
  7603. display:flex;
  7604. }
  7605. #u8382 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:2px 2px 2px 2px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u8382_text {
  7613. border-width:0px;
  7614. word-wrap:break-word;
  7615. text-transform:none;
  7616. visibility:hidden;
  7617. }
  7618. #u8383 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:0px;
  7622. top:0px;
  7623. width:0px;
  7624. height:0px;
  7625. }
  7626. #u8384_div {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:49px;
  7632. height:22px;
  7633. background:inherit;
  7634. background-color:rgba(255, 255, 255, 0);
  7635. border:none;
  7636. border-radius:0px;
  7637. -moz-box-shadow:none;
  7638. -webkit-box-shadow:none;
  7639. box-shadow:none;
  7640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:16px;
  7644. color:#FFFFFF;
  7645. }
  7646. #u8384 {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:1662px;
  7650. top:133px;
  7651. width:49px;
  7652. height:22px;
  7653. display:flex;
  7654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:16px;
  7658. color:#FFFFFF;
  7659. }
  7660. #u8384 .text {
  7661. position:absolute;
  7662. align-self:flex-start;
  7663. padding:0px 0px 0px 0px;
  7664. box-sizing:border-box;
  7665. width:100%;
  7666. }
  7667. #u8384_text {
  7668. border-width:0px;
  7669. white-space:nowrap;
  7670. text-transform:none;
  7671. }
  7672. #u8385_img {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:0px;
  7676. top:0px;
  7677. width:14px;
  7678. height:14px;
  7679. }
  7680. #u8385 {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:1643px;
  7684. top:137px;
  7685. width:14px;
  7686. height:14px;
  7687. display:flex;
  7688. }
  7689. #u8385 .text {
  7690. position:absolute;
  7691. align-self:center;
  7692. padding:2px 2px 2px 2px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u8385_text {
  7697. border-width:0px;
  7698. word-wrap:break-word;
  7699. text-transform:none;
  7700. visibility:hidden;
  7701. }
  7702. #u8386 {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:0px;
  7708. height:0px;
  7709. }
  7710. #u8387_div {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:33px;
  7716. height:22px;
  7717. background:inherit;
  7718. background-color:rgba(255, 255, 255, 0);
  7719. border:none;
  7720. border-radius:0px;
  7721. -moz-box-shadow:none;
  7722. -webkit-box-shadow:none;
  7723. box-shadow:none;
  7724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7725. font-weight:400;
  7726. font-style:normal;
  7727. font-size:16px;
  7728. color:#FFFFFF;
  7729. }
  7730. #u8387 {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:1662px;
  7734. top:423px;
  7735. width:33px;
  7736. height:22px;
  7737. display:flex;
  7738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7739. font-weight:400;
  7740. font-style:normal;
  7741. font-size:16px;
  7742. color:#FFFFFF;
  7743. }
  7744. #u8387 .text {
  7745. position:absolute;
  7746. align-self:flex-start;
  7747. padding:0px 0px 0px 0px;
  7748. box-sizing:border-box;
  7749. width:100%;
  7750. }
  7751. #u8387_text {
  7752. border-width:0px;
  7753. white-space:nowrap;
  7754. text-transform:none;
  7755. }
  7756. #u8388_img {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:14px;
  7762. height:14px;
  7763. }
  7764. #u8388 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:1643px;
  7768. top:427px;
  7769. width:14px;
  7770. height:14px;
  7771. display:flex;
  7772. }
  7773. #u8388 .text {
  7774. position:absolute;
  7775. align-self:center;
  7776. padding:2px 2px 2px 2px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u8388_text {
  7781. border-width:0px;
  7782. word-wrap:break-word;
  7783. text-transform:none;
  7784. visibility:hidden;
  7785. }
  7786. #u8389 {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:0px;
  7792. height:0px;
  7793. }
  7794. #u8390_div {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:0px;
  7798. top:0px;
  7799. width:33px;
  7800. height:22px;
  7801. background:inherit;
  7802. background-color:rgba(255, 255, 255, 0);
  7803. border:none;
  7804. border-radius:0px;
  7805. -moz-box-shadow:none;
  7806. -webkit-box-shadow:none;
  7807. box-shadow:none;
  7808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7809. font-weight:400;
  7810. font-style:normal;
  7811. font-size:16px;
  7812. color:#FFFFFF;
  7813. }
  7814. #u8390 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1662px;
  7818. top:297px;
  7819. width:33px;
  7820. height:22px;
  7821. display:flex;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:16px;
  7826. color:#FFFFFF;
  7827. }
  7828. #u8390 .text {
  7829. position:absolute;
  7830. align-self:flex-start;
  7831. padding:0px 0px 0px 0px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u8390_text {
  7836. border-width:0px;
  7837. white-space:nowrap;
  7838. text-transform:none;
  7839. }
  7840. #u8391_img {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:14px;
  7846. height:14px;
  7847. }
  7848. #u8391 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:1643px;
  7852. top:301px;
  7853. width:14px;
  7854. height:14px;
  7855. display:flex;
  7856. }
  7857. #u8391 .text {
  7858. position:absolute;
  7859. align-self:center;
  7860. padding:2px 2px 2px 2px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u8391_text {
  7865. border-width:0px;
  7866. word-wrap:break-word;
  7867. text-transform:none;
  7868. visibility:hidden;
  7869. }
  7870. #u8392 {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:0px;
  7876. height:0px;
  7877. }
  7878. #u8393_div {
  7879. border-width:0px;
  7880. position:absolute;
  7881. left:0px;
  7882. top:0px;
  7883. width:33px;
  7884. height:22px;
  7885. background:inherit;
  7886. background-color:rgba(255, 255, 255, 0);
  7887. border:none;
  7888. border-radius:0px;
  7889. -moz-box-shadow:none;
  7890. -webkit-box-shadow:none;
  7891. box-shadow:none;
  7892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7893. font-weight:400;
  7894. font-style:normal;
  7895. font-size:16px;
  7896. color:#FFFFFF;
  7897. }
  7898. #u8393 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:1662px;
  7902. top:213px;
  7903. width:33px;
  7904. height:22px;
  7905. display:flex;
  7906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:16px;
  7910. color:#FFFFFF;
  7911. }
  7912. #u8393 .text {
  7913. position:absolute;
  7914. align-self:flex-start;
  7915. padding:0px 0px 0px 0px;
  7916. box-sizing:border-box;
  7917. width:100%;
  7918. }
  7919. #u8393_text {
  7920. border-width:0px;
  7921. white-space:nowrap;
  7922. text-transform:none;
  7923. }
  7924. #u8394_img {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:0px;
  7928. top:0px;
  7929. width:14px;
  7930. height:14px;
  7931. }
  7932. #u8394 {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:1643px;
  7936. top:217px;
  7937. width:14px;
  7938. height:14px;
  7939. display:flex;
  7940. }
  7941. #u8394 .text {
  7942. position:absolute;
  7943. align-self:center;
  7944. padding:2px 2px 2px 2px;
  7945. box-sizing:border-box;
  7946. width:100%;
  7947. }
  7948. #u8394_text {
  7949. border-width:0px;
  7950. word-wrap:break-word;
  7951. text-transform:none;
  7952. visibility:hidden;
  7953. }
  7954. #u8395 {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:0px;
  7958. top:0px;
  7959. width:0px;
  7960. height:0px;
  7961. }
  7962. #u8396_div {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:0px;
  7966. top:0px;
  7967. width:33px;
  7968. height:22px;
  7969. background:inherit;
  7970. background-color:rgba(255, 255, 255, 0);
  7971. border:none;
  7972. border-radius:0px;
  7973. -moz-box-shadow:none;
  7974. -webkit-box-shadow:none;
  7975. box-shadow:none;
  7976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7977. font-weight:400;
  7978. font-style:normal;
  7979. font-size:16px;
  7980. color:#FFFFFF;
  7981. }
  7982. #u8396 {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:1662px;
  7986. top:339px;
  7987. width:33px;
  7988. height:22px;
  7989. display:flex;
  7990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7991. font-weight:400;
  7992. font-style:normal;
  7993. font-size:16px;
  7994. color:#FFFFFF;
  7995. }
  7996. #u8396 .text {
  7997. position:absolute;
  7998. align-self:flex-start;
  7999. padding:0px 0px 0px 0px;
  8000. box-sizing:border-box;
  8001. width:100%;
  8002. }
  8003. #u8396_text {
  8004. border-width:0px;
  8005. white-space:nowrap;
  8006. text-transform:none;
  8007. }
  8008. #u8397_img {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:0px;
  8012. top:0px;
  8013. width:14px;
  8014. height:14px;
  8015. }
  8016. #u8397 {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:1643px;
  8020. top:343px;
  8021. width:14px;
  8022. height:14px;
  8023. display:flex;
  8024. }
  8025. #u8397 .text {
  8026. position:absolute;
  8027. align-self:center;
  8028. padding:2px 2px 2px 2px;
  8029. box-sizing:border-box;
  8030. width:100%;
  8031. }
  8032. #u8397_text {
  8033. border-width:0px;
  8034. word-wrap:break-word;
  8035. text-transform:none;
  8036. visibility:hidden;
  8037. }
  8038. #u8398 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:0px;
  8042. top:0px;
  8043. width:0px;
  8044. height:0px;
  8045. }
  8046. #u8399_div {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:33px;
  8052. height:22px;
  8053. background:inherit;
  8054. background-color:rgba(255, 255, 255, 0);
  8055. border:none;
  8056. border-radius:0px;
  8057. -moz-box-shadow:none;
  8058. -webkit-box-shadow:none;
  8059. box-shadow:none;
  8060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8061. font-weight:400;
  8062. font-style:normal;
  8063. font-size:16px;
  8064. color:#FFFFFF;
  8065. }
  8066. #u8399 {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:1662px;
  8070. top:465px;
  8071. width:33px;
  8072. height:22px;
  8073. display:flex;
  8074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8075. font-weight:400;
  8076. font-style:normal;
  8077. font-size:16px;
  8078. color:#FFFFFF;
  8079. }
  8080. #u8399 .text {
  8081. position:absolute;
  8082. align-self:flex-start;
  8083. padding:0px 0px 0px 0px;
  8084. box-sizing:border-box;
  8085. width:100%;
  8086. }
  8087. #u8399_text {
  8088. border-width:0px;
  8089. white-space:nowrap;
  8090. text-transform:none;
  8091. }
  8092. #u8400_img {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:14px;
  8098. height:14px;
  8099. }
  8100. #u8400 {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:1643px;
  8104. top:469px;
  8105. width:14px;
  8106. height:14px;
  8107. display:flex;
  8108. }
  8109. #u8400 .text {
  8110. position:absolute;
  8111. align-self:center;
  8112. padding:2px 2px 2px 2px;
  8113. box-sizing:border-box;
  8114. width:100%;
  8115. }
  8116. #u8400_text {
  8117. border-width:0px;
  8118. word-wrap:break-word;
  8119. text-transform:none;
  8120. visibility:hidden;
  8121. }
  8122. #u8401 {
  8123. border-width:0px;
  8124. position:absolute;
  8125. left:0px;
  8126. top:0px;
  8127. width:0px;
  8128. height:0px;
  8129. }
  8130. #u8402_div {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:0px;
  8134. top:0px;
  8135. width:29px;
  8136. height:20px;
  8137. background:inherit;
  8138. background-color:rgba(255, 255, 255, 0);
  8139. border:none;
  8140. border-radius:25px;
  8141. -moz-box-shadow:none;
  8142. -webkit-box-shadow:none;
  8143. box-shadow:none;
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. color:#FFFFFF;
  8148. }
  8149. #u8402 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:1675px;
  8153. top:1145px;
  8154. width:29px;
  8155. height:20px;
  8156. display:flex;
  8157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. color:#FFFFFF;
  8161. }
  8162. #u8402 .text {
  8163. position:absolute;
  8164. align-self:center;
  8165. padding:0px 0px 0px 0px;
  8166. box-sizing:border-box;
  8167. width:100%;
  8168. }
  8169. #u8402_text {
  8170. border-width:0px;
  8171. white-space:nowrap;
  8172. text-transform:none;
  8173. }
  8174. #u8403_img {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:0px;
  8178. top:0px;
  8179. width:22px;
  8180. height:22px;
  8181. }
  8182. #u8403 {
  8183. border-width:0px;
  8184. position:absolute;
  8185. left:1643px;
  8186. top:1144px;
  8187. width:22px;
  8188. height:22px;
  8189. display:flex;
  8190. }
  8191. #u8403 .text {
  8192. position:absolute;
  8193. align-self:center;
  8194. padding:2px 2px 2px 2px;
  8195. box-sizing:border-box;
  8196. width:100%;
  8197. }
  8198. #u8403_text {
  8199. border-width:0px;
  8200. word-wrap:break-word;
  8201. text-transform:none;
  8202. visibility:hidden;
  8203. }
  8204. #u8404 {
  8205. border-width:0px;
  8206. position:absolute;
  8207. left:0px;
  8208. top:0px;
  8209. width:0px;
  8210. height:0px;
  8211. }
  8212. #u8405_div {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:0px;
  8216. top:0px;
  8217. width:29px;
  8218. height:20px;
  8219. background:inherit;
  8220. background-color:rgba(255, 255, 255, 0);
  8221. border:none;
  8222. border-radius:25px;
  8223. -moz-box-shadow:none;
  8224. -webkit-box-shadow:none;
  8225. box-shadow:none;
  8226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8227. font-weight:400;
  8228. font-style:normal;
  8229. color:#FFFFFF;
  8230. }
  8231. #u8405 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:1675px;
  8235. top:1187px;
  8236. width:29px;
  8237. height:20px;
  8238. display:flex;
  8239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. color:#FFFFFF;
  8243. }
  8244. #u8405 .text {
  8245. position:absolute;
  8246. align-self:center;
  8247. padding:0px 0px 0px 0px;
  8248. box-sizing:border-box;
  8249. width:100%;
  8250. }
  8251. #u8405_text {
  8252. border-width:0px;
  8253. white-space:nowrap;
  8254. text-transform:none;
  8255. }
  8256. #u8406_img {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:22px;
  8262. height:22px;
  8263. }
  8264. #u8406 {
  8265. border-width:0px;
  8266. position:absolute;
  8267. left:1643px;
  8268. top:1186px;
  8269. width:22px;
  8270. height:22px;
  8271. display:flex;
  8272. }
  8273. #u8406 .text {
  8274. position:absolute;
  8275. align-self:center;
  8276. padding:2px 2px 2px 2px;
  8277. box-sizing:border-box;
  8278. width:100%;
  8279. }
  8280. #u8406_text {
  8281. border-width:0px;
  8282. word-wrap:break-word;
  8283. text-transform:none;
  8284. visibility:hidden;
  8285. }
  8286. #u8407 {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:0px;
  8290. top:0px;
  8291. width:0px;
  8292. height:0px;
  8293. }
  8294. #u8408_div {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:0px;
  8298. top:0px;
  8299. width:33px;
  8300. height:22px;
  8301. background:inherit;
  8302. background-color:rgba(255, 255, 255, 0);
  8303. border:none;
  8304. border-radius:0px;
  8305. -moz-box-shadow:none;
  8306. -webkit-box-shadow:none;
  8307. box-shadow:none;
  8308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8309. font-weight:400;
  8310. font-style:normal;
  8311. font-size:16px;
  8312. color:#FFFFFF;
  8313. }
  8314. #u8408 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:1662px;
  8318. top:255px;
  8319. width:33px;
  8320. height:22px;
  8321. display:flex;
  8322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. font-size:16px;
  8326. color:#FFFFFF;
  8327. }
  8328. #u8408 .text {
  8329. position:absolute;
  8330. align-self:flex-start;
  8331. padding:0px 0px 0px 0px;
  8332. box-sizing:border-box;
  8333. width:100%;
  8334. }
  8335. #u8408_text {
  8336. border-width:0px;
  8337. white-space:nowrap;
  8338. text-transform:none;
  8339. }
  8340. #u8409_img {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:14px;
  8346. height:14px;
  8347. }
  8348. #u8409 {
  8349. border-width:0px;
  8350. position:absolute;
  8351. left:1643px;
  8352. top:259px;
  8353. width:14px;
  8354. height:14px;
  8355. display:flex;
  8356. }
  8357. #u8409 .text {
  8358. position:absolute;
  8359. align-self:center;
  8360. padding:2px 2px 2px 2px;
  8361. box-sizing:border-box;
  8362. width:100%;
  8363. }
  8364. #u8409_text {
  8365. border-width:0px;
  8366. word-wrap:break-word;
  8367. text-transform:none;
  8368. visibility:hidden;
  8369. }
  8370. #u8410 {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:0px;
  8374. top:0px;
  8375. width:0px;
  8376. height:0px;
  8377. }
  8378. #u8411_input {
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:214px;
  8383. height:27px;
  8384. padding:2px 2px 2px 2px;
  8385. font-family:'ArialMT', 'Arial', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:14px;
  8389. letter-spacing:normal;
  8390. color:#FFFFFF;
  8391. vertical-align:none;
  8392. text-align:left;
  8393. text-transform:none;
  8394. background-color:transparent;
  8395. border-color:transparent;
  8396. }
  8397. #u8411_input.disabled {
  8398. position:absolute;
  8399. left:0px;
  8400. top:0px;
  8401. width:214px;
  8402. height:27px;
  8403. padding:2px 2px 2px 2px;
  8404. font-family:'ArialMT', 'Arial', sans-serif;
  8405. font-weight:400;
  8406. font-style:normal;
  8407. font-size:14px;
  8408. letter-spacing:normal;
  8409. color:#FFFFFF;
  8410. vertical-align:none;
  8411. text-align:left;
  8412. text-transform:none;
  8413. background-color:transparent;
  8414. border-color:transparent;
  8415. }
  8416. #u8411_div {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:0px;
  8420. top:0px;
  8421. width:214px;
  8422. height:27px;
  8423. background:inherit;
  8424. background-color:rgba(255, 255, 255, 0);
  8425. border:none;
  8426. border-radius:0px;
  8427. -moz-box-shadow:none;
  8428. -webkit-box-shadow:none;
  8429. box-shadow:none;
  8430. font-size:14px;
  8431. color:#FFFFFF;
  8432. }
  8433. #u8411 {
  8434. border-width:0px;
  8435. position:absolute;
  8436. left:2844px;
  8437. top:11px;
  8438. width:214px;
  8439. height:27px;
  8440. display:flex;
  8441. font-size:14px;
  8442. color:#FFFFFF;
  8443. }
  8444. #u8411 .text {
  8445. position:absolute;
  8446. align-self:flex-start;
  8447. padding:2px 2px 2px 2px;
  8448. box-sizing:border-box;
  8449. width:100%;
  8450. }
  8451. #u8411_div.disabled {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:214px;
  8457. height:27px;
  8458. background:inherit;
  8459. background-color:rgba(240, 240, 240, 1);
  8460. border:none;
  8461. border-radius:0px;
  8462. -moz-box-shadow:none;
  8463. -webkit-box-shadow:none;
  8464. box-shadow:none;
  8465. font-size:14px;
  8466. color:#FFFFFF;
  8467. }
  8468. #u8411.disabled {
  8469. }
  8470. .u8411_input_option {
  8471. font-size:14px;
  8472. }
  8473. #u8412_img {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:0px;
  8477. top:0px;
  8478. width:22px;
  8479. height:22px;
  8480. }
  8481. #u8412 {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:2817px;
  8485. top:14px;
  8486. width:22px;
  8487. height:22px;
  8488. display:flex;
  8489. }
  8490. #u8412 .text {
  8491. position:absolute;
  8492. align-self:center;
  8493. padding:2px 2px 2px 2px;
  8494. box-sizing:border-box;
  8495. width:100%;
  8496. }
  8497. #u8412_text {
  8498. border-width:0px;
  8499. word-wrap:break-word;
  8500. text-transform:none;
  8501. visibility:hidden;
  8502. }
  8503. #u8413_div {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:100px;
  8509. height:24px;
  8510. background:inherit;
  8511. background-color:rgba(242, 242, 242, 0.2);
  8512. border:none;
  8513. border-radius:25px;
  8514. -moz-box-shadow:none;
  8515. -webkit-box-shadow:none;
  8516. box-shadow:none;
  8517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8518. font-weight:400;
  8519. font-style:normal;
  8520. color:#FFFFFF;
  8521. text-align:center;
  8522. }
  8523. #u8413 {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:3103px;
  8527. top:13px;
  8528. width:100px;
  8529. height:24px;
  8530. display:flex;
  8531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8532. font-weight:400;
  8533. font-style:normal;
  8534. color:#FFFFFF;
  8535. text-align:center;
  8536. }
  8537. #u8413 .text {
  8538. position:absolute;
  8539. align-self:center;
  8540. padding:0px 0px 0px 0px;
  8541. box-sizing:border-box;
  8542. width:100%;
  8543. }
  8544. #u8413_text {
  8545. border-width:0px;
  8546. word-wrap:break-word;
  8547. text-transform:none;
  8548. }
  8549. #u8414_img {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:0px;
  8553. top:0px;
  8554. width:2px;
  8555. height:12px;
  8556. }
  8557. #u8414 {
  8558. border-width:0px;
  8559. position:absolute;
  8560. left:3075px;
  8561. top:19px;
  8562. width:1px;
  8563. height:11px;
  8564. display:flex;
  8565. }
  8566. #u8414 .text {
  8567. position:absolute;
  8568. align-self:center;
  8569. padding:2px 2px 2px 2px;
  8570. box-sizing:border-box;
  8571. width:100%;
  8572. }
  8573. #u8414_text {
  8574. border-width:0px;
  8575. word-wrap:break-word;
  8576. text-transform:none;
  8577. visibility:hidden;
  8578. }
  8579. #u8415 {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:0px;
  8585. height:0px;
  8586. }
  8587. #u8416_div {
  8588. border-width:0px;
  8589. position:absolute;
  8590. left:0px;
  8591. top:0px;
  8592. width:29px;
  8593. height:20px;
  8594. background:inherit;
  8595. background-color:rgba(255, 255, 255, 0);
  8596. border:none;
  8597. border-radius:25px;
  8598. -moz-box-shadow:none;
  8599. -webkit-box-shadow:none;
  8600. box-shadow:none;
  8601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8602. font-weight:400;
  8603. font-style:normal;
  8604. color:#FFFFFF;
  8605. }
  8606. #u8416 {
  8607. border-width:0px;
  8608. position:absolute;
  8609. left:1675px;
  8610. top:1082px;
  8611. width:29px;
  8612. height:20px;
  8613. display:flex;
  8614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8615. font-weight:400;
  8616. font-style:normal;
  8617. color:#FFFFFF;
  8618. }
  8619. #u8416 .text {
  8620. position:absolute;
  8621. align-self:center;
  8622. padding:0px 0px 0px 0px;
  8623. box-sizing:border-box;
  8624. width:100%;
  8625. }
  8626. #u8416_text {
  8627. border-width:0px;
  8628. white-space:nowrap;
  8629. text-transform:none;
  8630. }
  8631. #u8417_img {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:0px;
  8635. top:0px;
  8636. width:22px;
  8637. height:22px;
  8638. }
  8639. #u8417 {
  8640. border-width:0px;
  8641. position:absolute;
  8642. left:1643px;
  8643. top:1081px;
  8644. width:22px;
  8645. height:22px;
  8646. display:flex;
  8647. }
  8648. #u8417 .text {
  8649. position:absolute;
  8650. align-self:center;
  8651. padding:2px 2px 2px 2px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u8417_text {
  8656. border-width:0px;
  8657. word-wrap:break-word;
  8658. text-transform:none;
  8659. visibility:hidden;
  8660. }
  8661. #u8418_img {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:0px;
  8665. top:0px;
  8666. width:69px;
  8667. height:2px;
  8668. }
  8669. #u8418 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:1643px;
  8673. top:1123px;
  8674. width:68px;
  8675. height:1px;
  8676. display:flex;
  8677. }
  8678. #u8418 .text {
  8679. position:absolute;
  8680. align-self:center;
  8681. padding:2px 2px 2px 2px;
  8682. box-sizing:border-box;
  8683. width:100%;
  8684. }
  8685. #u8418_text {
  8686. border-width:0px;
  8687. word-wrap:break-word;
  8688. text-transform:none;
  8689. visibility:hidden;
  8690. }
  8691. #u8419_img {
  8692. border-width:0px;
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:69px;
  8697. height:2px;
  8698. }
  8699. #u8419 {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:1643px;
  8703. top:1061px;
  8704. width:68px;
  8705. height:1px;
  8706. display:flex;
  8707. }
  8708. #u8419 .text {
  8709. position:absolute;
  8710. align-self:center;
  8711. padding:2px 2px 2px 2px;
  8712. box-sizing:border-box;
  8713. width:100%;
  8714. }
  8715. #u8419_text {
  8716. border-width:0px;
  8717. word-wrap:break-word;
  8718. text-transform:none;
  8719. visibility:hidden;
  8720. }
  8721. #u8420_img {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:57px;
  8727. height:2px;
  8728. }
  8729. #u8420 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:1643px;
  8733. top:112px;
  8734. width:56px;
  8735. height:1px;
  8736. display:flex;
  8737. }
  8738. #u8420 .text {
  8739. position:absolute;
  8740. align-self:center;
  8741. padding:2px 2px 2px 2px;
  8742. box-sizing:border-box;
  8743. width:100%;
  8744. }
  8745. #u8420_text {
  8746. border-width:0px;
  8747. word-wrap:break-word;
  8748. text-transform:none;
  8749. visibility:hidden;
  8750. }
  8751. #u8421 {
  8752. border-width:0px;
  8753. position:absolute;
  8754. left:0px;
  8755. top:0px;
  8756. width:0px;
  8757. height:0px;
  8758. }
  8759. #u8422_div {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:0px;
  8763. top:0px;
  8764. width:33px;
  8765. height:22px;
  8766. background:inherit;
  8767. background-color:rgba(255, 255, 255, 0);
  8768. border:none;
  8769. border-radius:0px;
  8770. -moz-box-shadow:none;
  8771. -webkit-box-shadow:none;
  8772. box-shadow:none;
  8773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8774. font-weight:400;
  8775. font-style:normal;
  8776. font-size:16px;
  8777. color:#FFFFFF;
  8778. }
  8779. #u8422 {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:1666px;
  8783. top:71px;
  8784. width:33px;
  8785. height:22px;
  8786. display:flex;
  8787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8788. font-weight:400;
  8789. font-style:normal;
  8790. font-size:16px;
  8791. color:#FFFFFF;
  8792. }
  8793. #u8422 .text {
  8794. position:absolute;
  8795. align-self:flex-start;
  8796. padding:0px 0px 0px 0px;
  8797. box-sizing:border-box;
  8798. width:100%;
  8799. }
  8800. #u8422_text {
  8801. border-width:0px;
  8802. white-space:nowrap;
  8803. text-transform:none;
  8804. }
  8805. #u8423_img {
  8806. border-width:0px;
  8807. position:absolute;
  8808. left:0px;
  8809. top:0px;
  8810. width:18px;
  8811. height:14px;
  8812. }
  8813. #u8423 {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:1643px;
  8817. top:75px;
  8818. width:18px;
  8819. height:14px;
  8820. display:flex;
  8821. }
  8822. #u8423 .text {
  8823. position:absolute;
  8824. align-self:center;
  8825. padding:2px 2px 2px 2px;
  8826. box-sizing:border-box;
  8827. width:100%;
  8828. }
  8829. #u8423_text {
  8830. border-width:0px;
  8831. word-wrap:break-word;
  8832. text-transform:none;
  8833. visibility:hidden;
  8834. }
  8835. #u8424_div {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:0px;
  8839. top:0px;
  8840. width:1600px;
  8841. height:1200px;
  8842. background:inherit;
  8843. background-color:rgba(255, 255, 255, 1);
  8844. box-sizing:border-box;
  8845. border-width:1px;
  8846. border-style:solid;
  8847. border-color:rgba(121, 121, 121, 1);
  8848. border-radius:0px;
  8849. -moz-box-shadow:none;
  8850. -webkit-box-shadow:none;
  8851. box-shadow:none;
  8852. }
  8853. #u8424 {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:1623px;
  8857. top:50px;
  8858. width:1600px;
  8859. height:1200px;
  8860. display:flex;
  8861. }
  8862. #u8424 .text {
  8863. position:absolute;
  8864. align-self:center;
  8865. padding:2px 2px 2px 2px;
  8866. box-sizing:border-box;
  8867. width:100%;
  8868. }
  8869. #u8424_text {
  8870. border-width:0px;
  8871. word-wrap:break-word;
  8872. text-transform:none;
  8873. visibility:hidden;
  8874. }
  8875. #u8425 {
  8876. border-width:0px;
  8877. position:absolute;
  8878. left:0px;
  8879. top:0px;
  8880. width:0px;
  8881. height:0px;
  8882. }
  8883. #u8426_img {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:1348px;
  8889. height:1125px;
  8890. }
  8891. #u8426 {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:1875px;
  8895. top:115px;
  8896. width:1348px;
  8897. height:1125px;
  8898. display:flex;
  8899. }
  8900. #u8426 .text {
  8901. position:absolute;
  8902. align-self:center;
  8903. padding:2px 2px 2px 2px;
  8904. box-sizing:border-box;
  8905. width:100%;
  8906. }
  8907. #u8426_text {
  8908. border-width:0px;
  8909. word-wrap:break-word;
  8910. text-transform:none;
  8911. visibility:hidden;
  8912. }
  8913. #u8427_div {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:0px;
  8917. top:0px;
  8918. width:39px;
  8919. height:20px;
  8920. background:inherit;
  8921. background-color:rgba(0, 191, 191, 1);
  8922. border:none;
  8923. border-radius:4px;
  8924. -moz-box-shadow:none;
  8925. -webkit-box-shadow:none;
  8926. box-shadow:none;
  8927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8928. font-weight:400;
  8929. font-style:normal;
  8930. font-size:10px;
  8931. color:#FFFFFF;
  8932. }
  8933. #u8427 {
  8934. border-width:0px;
  8935. position:absolute;
  8936. left:1875px;
  8937. top:119px;
  8938. width:39px;
  8939. height:20px;
  8940. display:flex;
  8941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8942. font-weight:400;
  8943. font-style:normal;
  8944. font-size:10px;
  8945. color:#FFFFFF;
  8946. }
  8947. #u8427 .text {
  8948. position:absolute;
  8949. align-self:center;
  8950. padding:5px 0px 5px 0px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u8427_text {
  8955. border-width:0px;
  8956. word-wrap:break-word;
  8957. text-transform:none;
  8958. }
  8959. #u8428_div {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:39px;
  8965. height:20px;
  8966. background:inherit;
  8967. background-color:rgba(217, 0, 27, 1);
  8968. border:none;
  8969. border-radius:4px;
  8970. -moz-box-shadow:none;
  8971. -webkit-box-shadow:none;
  8972. box-shadow:none;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:10px;
  8977. color:#FFFFFF;
  8978. }
  8979. #u8428 {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:2781px;
  8983. top:115px;
  8984. width:39px;
  8985. height:20px;
  8986. display:flex;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:10px;
  8991. color:#FFFFFF;
  8992. }
  8993. #u8428 .text {
  8994. position:absolute;
  8995. align-self:center;
  8996. padding:5px 0px 5px 0px;
  8997. box-sizing:border-box;
  8998. width:100%;
  8999. }
  9000. #u8428_text {
  9001. border-width:0px;
  9002. word-wrap:break-word;
  9003. text-transform:none;
  9004. }
  9005. #u8429_div {
  9006. border-width:0px;
  9007. position:absolute;
  9008. left:0px;
  9009. top:0px;
  9010. width:39px;
  9011. height:20px;
  9012. background:inherit;
  9013. background-color:rgba(245, 154, 35, 1);
  9014. border:none;
  9015. border-radius:4px;
  9016. -moz-box-shadow:none;
  9017. -webkit-box-shadow:none;
  9018. box-shadow:none;
  9019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9020. font-weight:400;
  9021. font-style:normal;
  9022. font-size:10px;
  9023. color:#FFFFFF;
  9024. }
  9025. #u8429 {
  9026. border-width:0px;
  9027. position:absolute;
  9028. left:1875px;
  9029. top:389px;
  9030. width:39px;
  9031. height:20px;
  9032. display:flex;
  9033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9034. font-weight:400;
  9035. font-style:normal;
  9036. font-size:10px;
  9037. color:#FFFFFF;
  9038. }
  9039. #u8429 .text {
  9040. position:absolute;
  9041. align-self:center;
  9042. padding:5px 0px 5px 0px;
  9043. box-sizing:border-box;
  9044. width:100%;
  9045. }
  9046. #u8429_text {
  9047. border-width:0px;
  9048. word-wrap:break-word;
  9049. text-transform:none;
  9050. }
  9051. #u8430_div {
  9052. border-width:0px;
  9053. position:absolute;
  9054. left:0px;
  9055. top:0px;
  9056. width:39px;
  9057. height:20px;
  9058. background:inherit;
  9059. background-color:rgba(0, 191, 191, 1);
  9060. border:none;
  9061. border-radius:4px;
  9062. -moz-box-shadow:none;
  9063. -webkit-box-shadow:none;
  9064. box-shadow:none;
  9065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:10px;
  9069. color:#FFFFFF;
  9070. }
  9071. #u8430 {
  9072. border-width:0px;
  9073. position:absolute;
  9074. left:2324px;
  9075. top:115px;
  9076. width:39px;
  9077. height:20px;
  9078. display:flex;
  9079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9080. font-weight:400;
  9081. font-style:normal;
  9082. font-size:10px;
  9083. color:#FFFFFF;
  9084. }
  9085. #u8430 .text {
  9086. position:absolute;
  9087. align-self:center;
  9088. padding:5px 0px 5px 0px;
  9089. box-sizing:border-box;
  9090. width:100%;
  9091. }
  9092. #u8430_text {
  9093. border-width:0px;
  9094. word-wrap:break-word;
  9095. text-transform:none;
  9096. }
  9097. #u8431_div {
  9098. border-width:0px;
  9099. position:absolute;
  9100. left:0px;
  9101. top:0px;
  9102. width:39px;
  9103. height:20px;
  9104. background:inherit;
  9105. background-color:rgba(0, 191, 191, 1);
  9106. border:none;
  9107. border-radius:4px;
  9108. -moz-box-shadow:none;
  9109. -webkit-box-shadow:none;
  9110. box-shadow:none;
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. font-size:10px;
  9115. color:#FFFFFF;
  9116. }
  9117. #u8431 {
  9118. border-width:0px;
  9119. position:absolute;
  9120. left:2324px;
  9121. top:393px;
  9122. width:39px;
  9123. height:20px;
  9124. display:flex;
  9125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9126. font-weight:400;
  9127. font-style:normal;
  9128. font-size:10px;
  9129. color:#FFFFFF;
  9130. }
  9131. #u8431 .text {
  9132. position:absolute;
  9133. align-self:center;
  9134. padding:5px 0px 5px 0px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u8431_text {
  9139. border-width:0px;
  9140. word-wrap:break-word;
  9141. text-transform:none;
  9142. }
  9143. #u8432_div {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:0px;
  9147. top:0px;
  9148. width:39px;
  9149. height:20px;
  9150. background:inherit;
  9151. background-color:rgba(0, 191, 191, 1);
  9152. border:none;
  9153. border-radius:4px;
  9154. -moz-box-shadow:none;
  9155. -webkit-box-shadow:none;
  9156. box-shadow:none;
  9157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9158. font-weight:400;
  9159. font-style:normal;
  9160. font-size:10px;
  9161. color:#FFFFFF;
  9162. }
  9163. #u8432 {
  9164. border-width:0px;
  9165. position:absolute;
  9166. left:2772px;
  9167. top:389px;
  9168. width:39px;
  9169. height:20px;
  9170. display:flex;
  9171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9172. font-weight:400;
  9173. font-style:normal;
  9174. font-size:10px;
  9175. color:#FFFFFF;
  9176. }
  9177. #u8432 .text {
  9178. position:absolute;
  9179. align-self:center;
  9180. padding:5px 0px 5px 0px;
  9181. box-sizing:border-box;
  9182. width:100%;
  9183. }
  9184. #u8432_text {
  9185. border-width:0px;
  9186. word-wrap:break-word;
  9187. text-transform:none;
  9188. }
  9189. #u8433_div {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:0px;
  9193. top:0px;
  9194. width:39px;
  9195. height:20px;
  9196. background:inherit;
  9197. background-color:rgba(0, 191, 191, 1);
  9198. border:none;
  9199. border-radius:4px;
  9200. -moz-box-shadow:none;
  9201. -webkit-box-shadow:none;
  9202. box-shadow:none;
  9203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9204. font-weight:400;
  9205. font-style:normal;
  9206. font-size:10px;
  9207. color:#FFFFFF;
  9208. }
  9209. #u8433 {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:2324px;
  9213. top:692px;
  9214. width:39px;
  9215. height:20px;
  9216. display:flex;
  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. #u8433 .text {
  9224. position:absolute;
  9225. align-self:center;
  9226. padding:5px 0px 5px 0px;
  9227. box-sizing:border-box;
  9228. width:100%;
  9229. }
  9230. #u8433_text {
  9231. border-width:0px;
  9232. word-wrap:break-word;
  9233. text-transform:none;
  9234. }
  9235. #u8434_div {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:39px;
  9241. height:20px;
  9242. background:inherit;
  9243. background-color:rgba(0, 191, 191, 1);
  9244. border:none;
  9245. border-radius:4px;
  9246. -moz-box-shadow:none;
  9247. -webkit-box-shadow:none;
  9248. box-shadow:none;
  9249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:10px;
  9253. color:#FFFFFF;
  9254. }
  9255. #u8434 {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:2772px;
  9259. top:688px;
  9260. width:39px;
  9261. height:20px;
  9262. display:flex;
  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. #u8434 .text {
  9270. position:absolute;
  9271. align-self:center;
  9272. padding:5px 0px 5px 0px;
  9273. box-sizing:border-box;
  9274. width:100%;
  9275. }
  9276. #u8434_text {
  9277. border-width:0px;
  9278. word-wrap:break-word;
  9279. text-transform:none;
  9280. }
  9281. #u8435_div {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:0px;
  9285. top:0px;
  9286. width:39px;
  9287. height:20px;
  9288. background:inherit;
  9289. background-color:rgba(0, 191, 191, 1);
  9290. border:none;
  9291. border-radius:4px;
  9292. -moz-box-shadow:none;
  9293. -webkit-box-shadow:none;
  9294. box-shadow:none;
  9295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9296. font-weight:400;
  9297. font-style:normal;
  9298. font-size:10px;
  9299. color:#FFFFFF;
  9300. }
  9301. #u8435 {
  9302. border-width:0px;
  9303. position:absolute;
  9304. left:1875px;
  9305. top:692px;
  9306. width:39px;
  9307. height:20px;
  9308. display:flex;
  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. #u8435 .text {
  9316. position:absolute;
  9317. align-self:center;
  9318. padding:5px 0px 5px 0px;
  9319. box-sizing:border-box;
  9320. width:100%;
  9321. }
  9322. #u8435_text {
  9323. border-width:0px;
  9324. word-wrap:break-word;
  9325. text-transform:none;
  9326. }
  9327. #u8436_div {
  9328. border-width:0px;
  9329. position:absolute;
  9330. left:0px;
  9331. top:0px;
  9332. width:39px;
  9333. height:20px;
  9334. background:inherit;
  9335. background-color:rgba(0, 191, 191, 1);
  9336. border:none;
  9337. border-radius:4px;
  9338. -moz-box-shadow:none;
  9339. -webkit-box-shadow:none;
  9340. box-shadow:none;
  9341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9342. font-weight:400;
  9343. font-style:normal;
  9344. font-size:10px;
  9345. color:#FFFFFF;
  9346. }
  9347. #u8436 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:2324px;
  9351. top:983px;
  9352. width:39px;
  9353. height:20px;
  9354. display:flex;
  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. #u8436 .text {
  9362. position:absolute;
  9363. align-self:center;
  9364. padding:5px 0px 5px 0px;
  9365. box-sizing:border-box;
  9366. width:100%;
  9367. }
  9368. #u8436_text {
  9369. border-width:0px;
  9370. word-wrap:break-word;
  9371. text-transform:none;
  9372. }
  9373. #u8437_div {
  9374. border-width:0px;
  9375. position:absolute;
  9376. left:0px;
  9377. top:0px;
  9378. width:39px;
  9379. height:20px;
  9380. background:inherit;
  9381. background-color:rgba(0, 191, 191, 1);
  9382. border:none;
  9383. border-radius:4px;
  9384. -moz-box-shadow:none;
  9385. -webkit-box-shadow:none;
  9386. box-shadow:none;
  9387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9388. font-weight:400;
  9389. font-style:normal;
  9390. font-size:10px;
  9391. color:#FFFFFF;
  9392. }
  9393. #u8437 {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:2772px;
  9397. top:979px;
  9398. width:39px;
  9399. height:20px;
  9400. display:flex;
  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. #u8437 .text {
  9408. position:absolute;
  9409. align-self:center;
  9410. padding:5px 0px 5px 0px;
  9411. box-sizing:border-box;
  9412. width:100%;
  9413. }
  9414. #u8437_text {
  9415. border-width:0px;
  9416. word-wrap:break-word;
  9417. text-transform:none;
  9418. }
  9419. #u8438_div {
  9420. border-width:0px;
  9421. position:absolute;
  9422. left:0px;
  9423. top:0px;
  9424. width:39px;
  9425. height:20px;
  9426. background:inherit;
  9427. background-color:rgba(0, 191, 191, 1);
  9428. border:none;
  9429. border-radius:4px;
  9430. -moz-box-shadow:none;
  9431. -webkit-box-shadow:none;
  9432. box-shadow:none;
  9433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9434. font-weight:400;
  9435. font-style:normal;
  9436. font-size:10px;
  9437. color:#FFFFFF;
  9438. }
  9439. #u8438 {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:1875px;
  9443. top:983px;
  9444. width:39px;
  9445. height:20px;
  9446. display:flex;
  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. #u8438 .text {
  9454. position:absolute;
  9455. align-self:center;
  9456. padding:5px 0px 5px 0px;
  9457. box-sizing:border-box;
  9458. width:100%;
  9459. }
  9460. #u8438_text {
  9461. border-width:0px;
  9462. word-wrap:break-word;
  9463. text-transform:none;
  9464. }
  9465. #u8439_div {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:0px;
  9469. top:0px;
  9470. width:74px;
  9471. height:51px;
  9472. background:inherit;
  9473. background-color:rgba(255, 255, 255, 0);
  9474. border:none;
  9475. border-left:0px;
  9476. border-top:0px;
  9477. border-right:0px;
  9478. border-radius:0px;
  9479. border-bottom-right-radius:0px;
  9480. border-bottom-left-radius:0px;
  9481. -moz-box-shadow:none;
  9482. -webkit-box-shadow:none;
  9483. box-shadow:none;
  9484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9485. font-weight:400;
  9486. font-style:normal;
  9487. font-size:18px;
  9488. }
  9489. #u8439 {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:1642px;
  9493. top:50px;
  9494. width:74px;
  9495. height:51px;
  9496. display:flex;
  9497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:18px;
  9501. }
  9502. #u8439 .text {
  9503. position:absolute;
  9504. align-self:center;
  9505. padding:0px 0px 0px 0px;
  9506. box-sizing:border-box;
  9507. width:100%;
  9508. }
  9509. #u8439_text {
  9510. border-width:0px;
  9511. word-wrap:break-word;
  9512. text-transform:none;
  9513. }
  9514. #u8440 {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:0px;
  9518. top:0px;
  9519. width:0px;
  9520. height:0px;
  9521. }
  9522. #u8441_div {
  9523. border-width:0px;
  9524. position:absolute;
  9525. left:0px;
  9526. top:0px;
  9527. width:233px;
  9528. height:779px;
  9529. background:inherit;
  9530. background-color:rgba(242, 242, 242, 1);
  9531. border:none;
  9532. border-radius:4px;
  9533. -moz-box-shadow:none;
  9534. -webkit-box-shadow:none;
  9535. box-shadow:none;
  9536. }
  9537. #u8441 {
  9538. border-width:0px;
  9539. position:absolute;
  9540. left:1633px;
  9541. top:461px;
  9542. width:233px;
  9543. height:779px;
  9544. display:flex;
  9545. }
  9546. #u8441 .text {
  9547. position:absolute;
  9548. align-self:center;
  9549. padding:2px 2px 2px 2px;
  9550. box-sizing:border-box;
  9551. width:100%;
  9552. }
  9553. #u8441_text {
  9554. border-width:0px;
  9555. word-wrap:break-word;
  9556. text-transform:none;
  9557. visibility:hidden;
  9558. }
  9559. #u8442 {
  9560. border-width:0px;
  9561. position:absolute;
  9562. left:1640px;
  9563. top:556px;
  9564. width:127px;
  9565. height:240px;
  9566. }
  9567. #u8442_children {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:0px;
  9571. top:0px;
  9572. width:0px;
  9573. height:0px;
  9574. }
  9575. #u8443 {
  9576. border-width:0px;
  9577. position:absolute;
  9578. left:0px;
  9579. top:0px;
  9580. width:80px;
  9581. height:20px;
  9582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9583. font-weight:400;
  9584. font-style:normal;
  9585. }
  9586. #u8444_img {
  9587. border-width:0px;
  9588. position:absolute;
  9589. left:0px;
  9590. top:0px;
  9591. width:9px;
  9592. height:9px;
  9593. }
  9594. #u8444 {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:6px;
  9598. top:6px;
  9599. width:9px;
  9600. height:9px;
  9601. display:flex;
  9602. }
  9603. #u8444 .text {
  9604. position:absolute;
  9605. align-self:center;
  9606. padding:2px 2px 2px 2px;
  9607. box-sizing:border-box;
  9608. width:100%;
  9609. }
  9610. #u8444_img.selected {
  9611. }
  9612. #u8444.selected {
  9613. }
  9614. #u8444_text {
  9615. border-width:0px;
  9616. word-wrap:break-word;
  9617. text-transform:none;
  9618. visibility:hidden;
  9619. }
  9620. #u8445_div {
  9621. border-width:0px;
  9622. position:absolute;
  9623. left:0px;
  9624. top:0px;
  9625. width:58px;
  9626. height:20px;
  9627. background:inherit;
  9628. background-color:rgba(255, 255, 255, 0);
  9629. border:none;
  9630. border-radius:0px;
  9631. -moz-box-shadow:none;
  9632. -webkit-box-shadow:none;
  9633. box-shadow:none;
  9634. }
  9635. #u8445 {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:22px;
  9639. top:0px;
  9640. width:58px;
  9641. height:20px;
  9642. display:flex;
  9643. }
  9644. #u8445 .text {
  9645. position:absolute;
  9646. align-self:center;
  9647. padding:2px 2px 2px 3px;
  9648. box-sizing:border-box;
  9649. width:100%;
  9650. }
  9651. #u8445_text {
  9652. border-width:0px;
  9653. white-space:nowrap;
  9654. text-transform:none;
  9655. }
  9656. #u8443_children {
  9657. border-width:0px;
  9658. position:absolute;
  9659. left:0px;
  9660. top:0px;
  9661. width:0px;
  9662. height:0px;
  9663. }
  9664. #u8446 {
  9665. border-width:0px;
  9666. position:absolute;
  9667. left:20px;
  9668. top:20px;
  9669. width:87px;
  9670. height:20px;
  9671. }
  9672. #u8447_img {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:0px;
  9676. top:0px;
  9677. width:9px;
  9678. height:9px;
  9679. }
  9680. #u8447 {
  9681. border-width:0px;
  9682. position:absolute;
  9683. left:6px;
  9684. top:6px;
  9685. width:9px;
  9686. height:9px;
  9687. display:flex;
  9688. }
  9689. #u8447 .text {
  9690. position:absolute;
  9691. align-self:center;
  9692. padding:2px 2px 2px 2px;
  9693. box-sizing:border-box;
  9694. width:100%;
  9695. }
  9696. #u8447_img.selected {
  9697. }
  9698. #u8447.selected {
  9699. }
  9700. #u8447_text {
  9701. border-width:0px;
  9702. word-wrap:break-word;
  9703. text-transform:none;
  9704. visibility:hidden;
  9705. }
  9706. #u8448_div {
  9707. border-width:0px;
  9708. position:absolute;
  9709. left:0px;
  9710. top:0px;
  9711. width:65px;
  9712. height:20px;
  9713. background:inherit;
  9714. background-color:rgba(255, 255, 255, 0);
  9715. border:none;
  9716. border-radius:0px;
  9717. -moz-box-shadow:none;
  9718. -webkit-box-shadow:none;
  9719. box-shadow:none;
  9720. }
  9721. #u8448 {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:22px;
  9725. top:0px;
  9726. width:65px;
  9727. height:20px;
  9728. display:flex;
  9729. }
  9730. #u8448 .text {
  9731. position:absolute;
  9732. align-self:center;
  9733. padding:2px 2px 2px 3px;
  9734. box-sizing:border-box;
  9735. width:100%;
  9736. }
  9737. #u8448_text {
  9738. border-width:0px;
  9739. white-space:nowrap;
  9740. text-transform:none;
  9741. }
  9742. #u8446_children {
  9743. border-width:0px;
  9744. position:absolute;
  9745. left:0px;
  9746. top:0px;
  9747. width:0px;
  9748. height:0px;
  9749. }
  9750. #u8449 {
  9751. border-width:0px;
  9752. position:absolute;
  9753. left:20px;
  9754. top:20px;
  9755. width:87px;
  9756. height:20px;
  9757. }
  9758. #u8450_div {
  9759. border-width:0px;
  9760. position:absolute;
  9761. left:0px;
  9762. top:0px;
  9763. width:65px;
  9764. height:20px;
  9765. background:inherit;
  9766. background-color:rgba(255, 255, 255, 0);
  9767. border:none;
  9768. border-radius:0px;
  9769. -moz-box-shadow:none;
  9770. -webkit-box-shadow:none;
  9771. box-shadow:none;
  9772. }
  9773. #u8450 {
  9774. border-width:0px;
  9775. position:absolute;
  9776. left:22px;
  9777. top:0px;
  9778. width:65px;
  9779. height:20px;
  9780. display:flex;
  9781. }
  9782. #u8450 .text {
  9783. position:absolute;
  9784. align-self:center;
  9785. padding:2px 2px 2px 3px;
  9786. box-sizing:border-box;
  9787. width:100%;
  9788. }
  9789. #u8450_text {
  9790. border-width:0px;
  9791. white-space:nowrap;
  9792. text-transform:none;
  9793. }
  9794. #u8451 {
  9795. border-width:0px;
  9796. position:absolute;
  9797. left:20px;
  9798. top:40px;
  9799. width:87px;
  9800. height:20px;
  9801. color:#1890FF;
  9802. }
  9803. #u8452_div {
  9804. border-width:0px;
  9805. position:absolute;
  9806. left:0px;
  9807. top:0px;
  9808. width:65px;
  9809. height:20px;
  9810. background:inherit;
  9811. background-color:rgba(255, 255, 255, 0);
  9812. border:none;
  9813. border-radius:0px;
  9814. -moz-box-shadow:none;
  9815. -webkit-box-shadow:none;
  9816. box-shadow:none;
  9817. }
  9818. #u8452 {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:22px;
  9822. top:0px;
  9823. width:65px;
  9824. height:20px;
  9825. display:flex;
  9826. }
  9827. #u8452 .text {
  9828. position:absolute;
  9829. align-self:center;
  9830. padding:2px 2px 2px 3px;
  9831. box-sizing:border-box;
  9832. width:100%;
  9833. }
  9834. #u8452_text {
  9835. border-width:0px;
  9836. white-space:nowrap;
  9837. text-transform:none;
  9838. }
  9839. #u8453 {
  9840. border-width:0px;
  9841. position:absolute;
  9842. left:20px;
  9843. top:60px;
  9844. width:54px;
  9845. height:20px;
  9846. }
  9847. #u8454_div {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:0px;
  9851. top:0px;
  9852. width:32px;
  9853. height:20px;
  9854. background:inherit;
  9855. background-color:rgba(255, 255, 255, 0);
  9856. border:none;
  9857. border-radius:0px;
  9858. -moz-box-shadow:none;
  9859. -webkit-box-shadow:none;
  9860. box-shadow:none;
  9861. }
  9862. #u8454 {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:22px;
  9866. top:0px;
  9867. width:32px;
  9868. height:20px;
  9869. display:flex;
  9870. }
  9871. #u8454 .text {
  9872. position:absolute;
  9873. align-self:center;
  9874. padding:2px 2px 2px 3px;
  9875. box-sizing:border-box;
  9876. width:100%;
  9877. }
  9878. #u8454_text {
  9879. border-width:0px;
  9880. white-space:nowrap;
  9881. text-transform:none;
  9882. }
  9883. #u8455 {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:20px;
  9887. top:100px;
  9888. width:87px;
  9889. height:20px;
  9890. }
  9891. #u8456_img {
  9892. border-width:0px;
  9893. position:absolute;
  9894. left:0px;
  9895. top:0px;
  9896. width:9px;
  9897. height:9px;
  9898. }
  9899. #u8456 {
  9900. border-width:0px;
  9901. position:absolute;
  9902. left:6px;
  9903. top:6px;
  9904. width:9px;
  9905. height:9px;
  9906. display:flex;
  9907. }
  9908. #u8456 .text {
  9909. position:absolute;
  9910. align-self:center;
  9911. padding:2px 2px 2px 2px;
  9912. box-sizing:border-box;
  9913. width:100%;
  9914. }
  9915. #u8456_img.selected {
  9916. }
  9917. #u8456.selected {
  9918. }
  9919. #u8456_text {
  9920. border-width:0px;
  9921. word-wrap:break-word;
  9922. text-transform:none;
  9923. visibility:hidden;
  9924. }
  9925. #u8457_div {
  9926. border-width:0px;
  9927. position:absolute;
  9928. left:0px;
  9929. top:0px;
  9930. width:65px;
  9931. height:20px;
  9932. background:inherit;
  9933. background-color:rgba(255, 255, 255, 0);
  9934. border:none;
  9935. border-radius:0px;
  9936. -moz-box-shadow:none;
  9937. -webkit-box-shadow:none;
  9938. box-shadow:none;
  9939. }
  9940. #u8457 {
  9941. border-width:0px;
  9942. position:absolute;
  9943. left:22px;
  9944. top:0px;
  9945. width:65px;
  9946. height:20px;
  9947. display:flex;
  9948. }
  9949. #u8457 .text {
  9950. position:absolute;
  9951. align-self:center;
  9952. padding:2px 2px 2px 3px;
  9953. box-sizing:border-box;
  9954. width:100%;
  9955. }
  9956. #u8457_text {
  9957. border-width:0px;
  9958. white-space:nowrap;
  9959. text-transform:none;
  9960. }
  9961. #u8455_children {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:0px;
  9965. top:0px;
  9966. width:0px;
  9967. height:0px;
  9968. }
  9969. #u8458 {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:20px;
  9973. top:20px;
  9974. width:87px;
  9975. height:20px;
  9976. }
  9977. #u8459_div {
  9978. border-width:0px;
  9979. position:absolute;
  9980. left:0px;
  9981. top:0px;
  9982. width:65px;
  9983. height:20px;
  9984. background:inherit;
  9985. background-color:rgba(255, 255, 255, 0);
  9986. border:none;
  9987. border-radius:0px;
  9988. -moz-box-shadow:none;
  9989. -webkit-box-shadow:none;
  9990. box-shadow:none;
  9991. }
  9992. #u8459 {
  9993. border-width:0px;
  9994. position:absolute;
  9995. left:22px;
  9996. top:0px;
  9997. width:65px;
  9998. height:20px;
  9999. display:flex;
  10000. }
  10001. #u8459 .text {
  10002. position:absolute;
  10003. align-self:center;
  10004. padding:2px 2px 2px 3px;
  10005. box-sizing:border-box;
  10006. width:100%;
  10007. }
  10008. #u8459_text {
  10009. border-width:0px;
  10010. white-space:nowrap;
  10011. text-transform:none;
  10012. }
  10013. #u8460 {
  10014. border-width:0px;
  10015. position:absolute;
  10016. left:20px;
  10017. top:40px;
  10018. width:87px;
  10019. height:20px;
  10020. color:#1890FF;
  10021. }
  10022. #u8461_div {
  10023. border-width:0px;
  10024. position:absolute;
  10025. left:0px;
  10026. top:0px;
  10027. width:65px;
  10028. height:20px;
  10029. background:inherit;
  10030. background-color:rgba(255, 255, 255, 0);
  10031. border:none;
  10032. border-radius:0px;
  10033. -moz-box-shadow:none;
  10034. -webkit-box-shadow:none;
  10035. box-shadow:none;
  10036. }
  10037. #u8461 {
  10038. border-width:0px;
  10039. position:absolute;
  10040. left:22px;
  10041. top:0px;
  10042. width:65px;
  10043. height:20px;
  10044. display:flex;
  10045. }
  10046. #u8461 .text {
  10047. position:absolute;
  10048. align-self:center;
  10049. padding:2px 2px 2px 3px;
  10050. box-sizing:border-box;
  10051. width:100%;
  10052. }
  10053. #u8461_text {
  10054. border-width:0px;
  10055. white-space:nowrap;
  10056. text-transform:none;
  10057. }
  10058. #u8462 {
  10059. border-width:0px;
  10060. position:absolute;
  10061. left:20px;
  10062. top:60px;
  10063. width:54px;
  10064. height:20px;
  10065. }
  10066. #u8463_div {
  10067. border-width:0px;
  10068. position:absolute;
  10069. left:0px;
  10070. top:0px;
  10071. width:32px;
  10072. height:20px;
  10073. background:inherit;
  10074. background-color:rgba(255, 255, 255, 0);
  10075. border:none;
  10076. border-radius:0px;
  10077. -moz-box-shadow:none;
  10078. -webkit-box-shadow:none;
  10079. box-shadow:none;
  10080. }
  10081. #u8463 {
  10082. border-width:0px;
  10083. position:absolute;
  10084. left:22px;
  10085. top:0px;
  10086. width:32px;
  10087. height:20px;
  10088. display:flex;
  10089. }
  10090. #u8463 .text {
  10091. position:absolute;
  10092. align-self:center;
  10093. padding:2px 2px 2px 3px;
  10094. box-sizing:border-box;
  10095. width:100%;
  10096. }
  10097. #u8463_text {
  10098. border-width:0px;
  10099. white-space:nowrap;
  10100. text-transform:none;
  10101. }
  10102. #u8464 {
  10103. border-width:0px;
  10104. position:absolute;
  10105. left:20px;
  10106. top:180px;
  10107. width:87px;
  10108. height:20px;
  10109. }
  10110. #u8465_img {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:9px;
  10116. height:9px;
  10117. }
  10118. #u8465 {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:6px;
  10122. top:6px;
  10123. width:9px;
  10124. height:9px;
  10125. display:flex;
  10126. }
  10127. #u8465 .text {
  10128. position:absolute;
  10129. align-self:center;
  10130. padding:2px 2px 2px 2px;
  10131. box-sizing:border-box;
  10132. width:100%;
  10133. }
  10134. #u8465_img.selected {
  10135. }
  10136. #u8465.selected {
  10137. }
  10138. #u8465_text {
  10139. border-width:0px;
  10140. word-wrap:break-word;
  10141. text-transform:none;
  10142. visibility:hidden;
  10143. }
  10144. #u8466_div {
  10145. border-width:0px;
  10146. position:absolute;
  10147. left:0px;
  10148. top:0px;
  10149. width:65px;
  10150. height:20px;
  10151. background:inherit;
  10152. background-color:rgba(255, 255, 255, 0);
  10153. border:none;
  10154. border-radius:0px;
  10155. -moz-box-shadow:none;
  10156. -webkit-box-shadow:none;
  10157. box-shadow:none;
  10158. }
  10159. #u8466 {
  10160. border-width:0px;
  10161. position:absolute;
  10162. left:22px;
  10163. top:0px;
  10164. width:65px;
  10165. height:20px;
  10166. display:flex;
  10167. }
  10168. #u8466 .text {
  10169. position:absolute;
  10170. align-self:center;
  10171. padding:2px 2px 2px 3px;
  10172. box-sizing:border-box;
  10173. width:100%;
  10174. }
  10175. #u8466_text {
  10176. border-width:0px;
  10177. white-space:nowrap;
  10178. text-transform:none;
  10179. }
  10180. #u8464_children {
  10181. border-width:0px;
  10182. position:absolute;
  10183. left:0px;
  10184. top:0px;
  10185. width:0px;
  10186. height:0px;
  10187. }
  10188. #u8467 {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:20px;
  10192. top:20px;
  10193. width:87px;
  10194. height:20px;
  10195. }
  10196. #u8468_div {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:0px;
  10200. top:0px;
  10201. width:65px;
  10202. height:20px;
  10203. background:inherit;
  10204. background-color:rgba(255, 255, 255, 0);
  10205. border:none;
  10206. border-radius:0px;
  10207. -moz-box-shadow:none;
  10208. -webkit-box-shadow:none;
  10209. box-shadow:none;
  10210. }
  10211. #u8468 {
  10212. border-width:0px;
  10213. position:absolute;
  10214. left:22px;
  10215. top:0px;
  10216. width:65px;
  10217. height:20px;
  10218. display:flex;
  10219. }
  10220. #u8468 .text {
  10221. position:absolute;
  10222. align-self:center;
  10223. padding:2px 2px 2px 3px;
  10224. box-sizing:border-box;
  10225. width:100%;
  10226. }
  10227. #u8468_text {
  10228. border-width:0px;
  10229. white-space:nowrap;
  10230. text-transform:none;
  10231. }
  10232. #u8469 {
  10233. border-width:0px;
  10234. position:absolute;
  10235. left:20px;
  10236. top:40px;
  10237. width:54px;
  10238. height:20px;
  10239. }
  10240. #u8470_div {
  10241. border-width:0px;
  10242. position:absolute;
  10243. left:0px;
  10244. top:0px;
  10245. width:32px;
  10246. height:20px;
  10247. background:inherit;
  10248. background-color:rgba(255, 255, 255, 0);
  10249. border:none;
  10250. border-radius:0px;
  10251. -moz-box-shadow:none;
  10252. -webkit-box-shadow:none;
  10253. box-shadow:none;
  10254. }
  10255. #u8470 {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:22px;
  10259. top:0px;
  10260. width:32px;
  10261. height:20px;
  10262. display:flex;
  10263. }
  10264. #u8470 .text {
  10265. position:absolute;
  10266. align-self:center;
  10267. padding:2px 2px 2px 3px;
  10268. box-sizing:border-box;
  10269. width:100%;
  10270. }
  10271. #u8470_text {
  10272. border-width:0px;
  10273. white-space:nowrap;
  10274. text-transform:none;
  10275. }
  10276. #u8471_div {
  10277. border-width:0px;
  10278. position:absolute;
  10279. left:0px;
  10280. top:0px;
  10281. width:25px;
  10282. height:30px;
  10283. background:inherit;
  10284. background-color:rgba(255, 255, 255, 0);
  10285. border:none;
  10286. border-radius:0px;
  10287. -moz-box-shadow:none;
  10288. -webkit-box-shadow:none;
  10289. box-shadow:none;
  10290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10291. font-weight:400;
  10292. font-style:normal;
  10293. font-size:12px;
  10294. color:#3399FF;
  10295. line-height:30px;
  10296. }
  10297. #u8471 {
  10298. border-width:0px;
  10299. position:absolute;
  10300. left:1641px;
  10301. top:518px;
  10302. width:25px;
  10303. height:30px;
  10304. display:flex;
  10305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10306. font-weight:400;
  10307. font-style:normal;
  10308. font-size:12px;
  10309. color:#3399FF;
  10310. line-height:30px;
  10311. }
  10312. #u8471 .text {
  10313. position:absolute;
  10314. align-self:flex-start;
  10315. padding:0px 0px 0px 0px;
  10316. box-sizing:border-box;
  10317. width:100%;
  10318. }
  10319. #u8471_text {
  10320. border-width:0px;
  10321. word-wrap:break-word;
  10322. text-transform:none;
  10323. }
  10324. #u8472_div {
  10325. border-width:0px;
  10326. position:absolute;
  10327. left:0px;
  10328. top:0px;
  10329. width:25px;
  10330. height:30px;
  10331. background:inherit;
  10332. background-color:rgba(255, 255, 255, 0);
  10333. border:none;
  10334. border-radius:0px;
  10335. -moz-box-shadow:none;
  10336. -webkit-box-shadow:none;
  10337. box-shadow:none;
  10338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10339. font-weight:400;
  10340. font-style:normal;
  10341. font-size:12px;
  10342. color:#7F7F7F;
  10343. line-height:30px;
  10344. }
  10345. #u8472 {
  10346. border-width:0px;
  10347. position:absolute;
  10348. left:1679px;
  10349. top:518px;
  10350. width:25px;
  10351. height:30px;
  10352. display:flex;
  10353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10354. font-weight:400;
  10355. font-style:normal;
  10356. font-size:12px;
  10357. color:#7F7F7F;
  10358. line-height:30px;
  10359. }
  10360. #u8472 .text {
  10361. position:absolute;
  10362. align-self:flex-start;
  10363. padding:0px 0px 0px 0px;
  10364. box-sizing:border-box;
  10365. width:100%;
  10366. }
  10367. #u8472_text {
  10368. border-width:0px;
  10369. word-wrap:break-word;
  10370. text-transform:none;
  10371. }
  10372. #u8473_div {
  10373. border-width:0px;
  10374. position:absolute;
  10375. left:0px;
  10376. top:0px;
  10377. width:25px;
  10378. height:30px;
  10379. background:inherit;
  10380. background-color:rgba(255, 255, 255, 0);
  10381. border:none;
  10382. border-radius:0px;
  10383. -moz-box-shadow:none;
  10384. -webkit-box-shadow:none;
  10385. box-shadow:none;
  10386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10387. font-weight:400;
  10388. font-style:normal;
  10389. font-size:12px;
  10390. color:#7F7F7F;
  10391. line-height:30px;
  10392. }
  10393. #u8473 {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:1715px;
  10397. top:518px;
  10398. width:25px;
  10399. height:30px;
  10400. display:flex;
  10401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10402. font-weight:400;
  10403. font-style:normal;
  10404. font-size:12px;
  10405. color:#7F7F7F;
  10406. line-height:30px;
  10407. }
  10408. #u8473 .text {
  10409. position:absolute;
  10410. align-self:flex-start;
  10411. padding:0px 0px 0px 0px;
  10412. box-sizing:border-box;
  10413. width:100%;
  10414. }
  10415. #u8473_text {
  10416. border-width:0px;
  10417. word-wrap:break-word;
  10418. text-transform:none;
  10419. }
  10420. #u8474_div {
  10421. border-width:0px;
  10422. position:absolute;
  10423. left:0px;
  10424. top:0px;
  10425. width:25px;
  10426. height:30px;
  10427. background:inherit;
  10428. background-color:rgba(255, 255, 255, 0);
  10429. border:none;
  10430. border-radius:0px;
  10431. -moz-box-shadow:none;
  10432. -webkit-box-shadow:none;
  10433. box-shadow:none;
  10434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10435. font-weight:400;
  10436. font-style:normal;
  10437. font-size:12px;
  10438. color:#7F7F7F;
  10439. line-height:30px;
  10440. }
  10441. #u8474 {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:1753px;
  10445. top:518px;
  10446. width:25px;
  10447. height:30px;
  10448. display:flex;
  10449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10450. font-weight:400;
  10451. font-style:normal;
  10452. font-size:12px;
  10453. color:#7F7F7F;
  10454. line-height:30px;
  10455. }
  10456. #u8474 .text {
  10457. position:absolute;
  10458. align-self:flex-start;
  10459. padding:0px 0px 0px 0px;
  10460. box-sizing:border-box;
  10461. width:100%;
  10462. }
  10463. #u8474_text {
  10464. border-width:0px;
  10465. word-wrap:break-word;
  10466. text-transform:none;
  10467. }
  10468. #u8475 {
  10469. border-width:0px;
  10470. position:absolute;
  10471. left:0px;
  10472. top:0px;
  10473. width:0px;
  10474. height:0px;
  10475. }
  10476. #u8476_input {
  10477. position:absolute;
  10478. left:0px;
  10479. top:0px;
  10480. width:208px;
  10481. height:38px;
  10482. padding:2px 2px 2px 2px;
  10483. font-family:'ArialMT', 'Arial', sans-serif;
  10484. font-weight:400;
  10485. font-style:normal;
  10486. font-size:18px;
  10487. letter-spacing:normal;
  10488. color:#333333;
  10489. vertical-align:none;
  10490. text-align:left;
  10491. text-transform:none;
  10492. background-color:transparent;
  10493. border-color:transparent;
  10494. }
  10495. #u8476_input.disabled {
  10496. position:absolute;
  10497. left:0px;
  10498. top:0px;
  10499. width:208px;
  10500. height:38px;
  10501. padding:2px 2px 2px 2px;
  10502. font-family:'ArialMT', 'Arial', sans-serif;
  10503. font-weight:400;
  10504. font-style:normal;
  10505. font-size:18px;
  10506. letter-spacing:normal;
  10507. color:#333333;
  10508. vertical-align:none;
  10509. text-align:left;
  10510. text-transform:none;
  10511. background-color:transparent;
  10512. border-color:transparent;
  10513. }
  10514. #u8476_div {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:0px;
  10518. top:0px;
  10519. width:208px;
  10520. height:38px;
  10521. background:inherit;
  10522. background-color:rgba(255, 255, 255, 1);
  10523. border:none;
  10524. border-radius:0px;
  10525. -moz-box-shadow:none;
  10526. -webkit-box-shadow:none;
  10527. box-shadow:none;
  10528. font-size:18px;
  10529. color:#333333;
  10530. }
  10531. #u8476 {
  10532. border-width:0px;
  10533. position:absolute;
  10534. left:1634px;
  10535. top:422px;
  10536. width:208px;
  10537. height:38px;
  10538. display:flex;
  10539. font-size:18px;
  10540. color:#333333;
  10541. }
  10542. #u8476 .text {
  10543. position:absolute;
  10544. align-self:flex-start;
  10545. padding:2px 2px 2px 2px;
  10546. box-sizing:border-box;
  10547. width:100%;
  10548. }
  10549. #u8476_div.disabled {
  10550. border-width:0px;
  10551. position:absolute;
  10552. left:0px;
  10553. top:0px;
  10554. width:208px;
  10555. height:38px;
  10556. background:inherit;
  10557. background-color:rgba(240, 240, 240, 1);
  10558. border:none;
  10559. border-radius:0px;
  10560. -moz-box-shadow:none;
  10561. -webkit-box-shadow:none;
  10562. box-shadow:none;
  10563. font-size:18px;
  10564. color:#333333;
  10565. }
  10566. #u8476.disabled {
  10567. }
  10568. .u8476_input_option {
  10569. font-size:18px;
  10570. }
  10571. #u8477_div {
  10572. border-width:0px;
  10573. position:absolute;
  10574. left:0px;
  10575. top:0px;
  10576. width:29px;
  10577. height:51px;
  10578. background:inherit;
  10579. background-color:rgba(255, 255, 255, 0);
  10580. border:none;
  10581. border-left:0px;
  10582. border-top:0px;
  10583. border-right:0px;
  10584. border-radius:0px;
  10585. border-bottom-right-radius:0px;
  10586. border-bottom-left-radius:0px;
  10587. -moz-box-shadow:none;
  10588. -webkit-box-shadow:none;
  10589. box-shadow:none;
  10590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10591. font-weight:400;
  10592. font-style:normal;
  10593. font-size:14px;
  10594. color:#1890FF;
  10595. }
  10596. #u8477 {
  10597. border-width:0px;
  10598. position:absolute;
  10599. left:1824px;
  10600. top:466px;
  10601. width:29px;
  10602. height:51px;
  10603. display:flex;
  10604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10605. font-weight:400;
  10606. font-style:normal;
  10607. font-size:14px;
  10608. color:#1890FF;
  10609. }
  10610. #u8477 .text {
  10611. position:absolute;
  10612. align-self:center;
  10613. padding:0px 0px 0px 0px;
  10614. box-sizing:border-box;
  10615. width:100%;
  10616. }
  10617. #u8477_text {
  10618. border-width:0px;
  10619. word-wrap:break-word;
  10620. text-transform:none;
  10621. }
  10622. #u8478 {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:0px;
  10628. height:0px;
  10629. }
  10630. #u8479_div {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:0px;
  10634. top:0px;
  10635. width:182px;
  10636. height:38px;
  10637. background:inherit;
  10638. background-color:rgba(255, 255, 255, 1);
  10639. box-sizing:border-box;
  10640. border-width:1px;
  10641. border-style:solid;
  10642. border-color:rgba(242, 242, 242, 1);
  10643. border-radius:4px;
  10644. -moz-box-shadow:none;
  10645. -webkit-box-shadow:none;
  10646. box-shadow:none;
  10647. font-family:'Microsoft YaHei', sans-serif;
  10648. font-weight:400;
  10649. font-style:normal;
  10650. font-size:14px;
  10651. color:#CCCCCC;
  10652. text-align:left;
  10653. }
  10654. #u8479 {
  10655. border-width:0px;
  10656. position:absolute;
  10657. left:1640px;
  10658. top:472px;
  10659. width:182px;
  10660. height:38px;
  10661. display:flex;
  10662. font-family:'Microsoft YaHei', sans-serif;
  10663. font-weight:400;
  10664. font-style:normal;
  10665. font-size:14px;
  10666. color:#CCCCCC;
  10667. text-align:left;
  10668. }
  10669. #u8479 .text {
  10670. position:absolute;
  10671. align-self:center;
  10672. padding:2px 8px 2px 8px;
  10673. box-sizing:border-box;
  10674. width:100%;
  10675. }
  10676. #u8479_text {
  10677. border-width:0px;
  10678. word-wrap:break-word;
  10679. text-transform:none;
  10680. visibility:hidden;
  10681. }
  10682. #u8480_input {
  10683. position:absolute;
  10684. left:0px;
  10685. top:0px;
  10686. width:142px;
  10687. height:31px;
  10688. padding:2px 2px 2px 2px;
  10689. font-family:'Microsoft YaHei', sans-serif;
  10690. font-weight:400;
  10691. font-style:normal;
  10692. font-size:14px;
  10693. letter-spacing:normal;
  10694. color:#000000;
  10695. vertical-align:none;
  10696. text-align:left;
  10697. text-transform:none;
  10698. background-color:transparent;
  10699. border-color:transparent;
  10700. }
  10701. #u8480_input.disabled {
  10702. position:absolute;
  10703. left:0px;
  10704. top:0px;
  10705. width:142px;
  10706. height:31px;
  10707. padding:2px 2px 2px 2px;
  10708. font-family:'Microsoft YaHei', sans-serif;
  10709. font-weight:400;
  10710. font-style:normal;
  10711. font-size:14px;
  10712. letter-spacing:normal;
  10713. color:#000000;
  10714. vertical-align:none;
  10715. text-align:left;
  10716. text-transform:none;
  10717. background-color:transparent;
  10718. border-color:transparent;
  10719. }
  10720. #u8480_div {
  10721. border-width:0px;
  10722. position:absolute;
  10723. left:0px;
  10724. top:0px;
  10725. width:142px;
  10726. height:31px;
  10727. background:inherit;
  10728. background-color:rgba(255, 255, 255, 1);
  10729. border:none;
  10730. border-radius:0px;
  10731. -moz-box-shadow:none;
  10732. -webkit-box-shadow:none;
  10733. box-shadow:none;
  10734. font-family:'Microsoft YaHei', sans-serif;
  10735. font-weight:400;
  10736. font-style:normal;
  10737. font-size:14px;
  10738. }
  10739. #u8480 {
  10740. border-width:0px;
  10741. position:absolute;
  10742. left:1648px;
  10743. top:473px;
  10744. width:142px;
  10745. height:31px;
  10746. display:flex;
  10747. font-family:'Microsoft YaHei', sans-serif;
  10748. font-weight:400;
  10749. font-style:normal;
  10750. font-size:14px;
  10751. }
  10752. #u8480 .text {
  10753. position:absolute;
  10754. align-self:center;
  10755. padding:2px 2px 2px 2px;
  10756. box-sizing:border-box;
  10757. width:100%;
  10758. }
  10759. #u8480_div.disabled {
  10760. border-width:0px;
  10761. position:absolute;
  10762. left:0px;
  10763. top:0px;
  10764. width:142px;
  10765. height:31px;
  10766. background:inherit;
  10767. background-color:rgba(240, 240, 240, 1);
  10768. border:none;
  10769. border-radius:0px;
  10770. -moz-box-shadow:none;
  10771. -webkit-box-shadow:none;
  10772. box-shadow:none;
  10773. font-family:'Microsoft YaHei', sans-serif;
  10774. font-weight:400;
  10775. font-style:normal;
  10776. font-size:14px;
  10777. }
  10778. #u8480.disabled {
  10779. }
  10780. #u8481_img {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:0px;
  10784. top:0px;
  10785. width:14px;
  10786. height:14px;
  10787. }
  10788. #u8481 {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:1797px;
  10792. top:484px;
  10793. width:14px;
  10794. height:14px;
  10795. display:flex;
  10796. }
  10797. #u8481 .text {
  10798. position:absolute;
  10799. align-self:center;
  10800. padding:2px 2px 2px 2px;
  10801. box-sizing:border-box;
  10802. width:100%;
  10803. }
  10804. #u8481_text {
  10805. border-width:0px;
  10806. word-wrap:break-word;
  10807. text-transform:none;
  10808. visibility:hidden;
  10809. }
  10810. #u8482_div {
  10811. border-width:0px;
  10812. position:absolute;
  10813. left:0px;
  10814. top:0px;
  10815. width:58px;
  10816. height:30px;
  10817. background:inherit;
  10818. background-color:rgba(255, 255, 255, 0);
  10819. border:none;
  10820. border-radius:0px;
  10821. -moz-box-shadow:none;
  10822. -webkit-box-shadow:none;
  10823. box-shadow:none;
  10824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10825. font-weight:500;
  10826. font-style:normal;
  10827. font-size:14px;
  10828. color:#000000;
  10829. line-height:30px;
  10830. }
  10831. #u8482 {
  10832. border-width:0px;
  10833. position:absolute;
  10834. left:1641px;
  10835. top:99px;
  10836. width:58px;
  10837. height:30px;
  10838. display:flex;
  10839. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10840. font-weight:500;
  10841. font-style:normal;
  10842. font-size:14px;
  10843. color:#000000;
  10844. line-height:30px;
  10845. }
  10846. #u8482 .text {
  10847. position:absolute;
  10848. align-self:flex-start;
  10849. padding:0px 0px 0px 0px;
  10850. box-sizing:border-box;
  10851. width:100%;
  10852. }
  10853. #u8482_text {
  10854. border-width:0px;
  10855. word-wrap:break-word;
  10856. text-transform:none;
  10857. }
  10858. #u8483 {
  10859. border-width:0px;
  10860. position:absolute;
  10861. left:0px;
  10862. top:0px;
  10863. width:0px;
  10864. height:0px;
  10865. }
  10866. #u8484_div {
  10867. border-width:0px;
  10868. position:absolute;
  10869. left:0px;
  10870. top:0px;
  10871. width:30px;
  10872. height:30px;
  10873. background:inherit;
  10874. background-color:rgba(255, 255, 255, 1);
  10875. box-sizing:border-box;
  10876. border-width:1px;
  10877. border-style:solid;
  10878. border-color:rgba(121, 121, 121, 1);
  10879. border-radius:0px;
  10880. -moz-box-shadow:none;
  10881. -webkit-box-shadow:none;
  10882. box-shadow:none;
  10883. }
  10884. #u8484 {
  10885. border-width:0px;
  10886. position:absolute;
  10887. left:1642px;
  10888. top:134px;
  10889. width:30px;
  10890. height:30px;
  10891. display:flex;
  10892. }
  10893. #u8484 .text {
  10894. position:absolute;
  10895. align-self:center;
  10896. padding:2px 2px 2px 2px;
  10897. box-sizing:border-box;
  10898. width:100%;
  10899. }
  10900. #u8484_text {
  10901. border-width:0px;
  10902. word-wrap:break-word;
  10903. text-transform:none;
  10904. visibility:hidden;
  10905. }
  10906. #u8485_img {
  10907. border-width:0px;
  10908. position:absolute;
  10909. left:0px;
  10910. top:0px;
  10911. width:19px;
  10912. height:18px;
  10913. }
  10914. #u8485 {
  10915. border-width:0px;
  10916. position:absolute;
  10917. left:1648px;
  10918. top:140px;
  10919. width:19px;
  10920. height:18px;
  10921. display:flex;
  10922. -webkit-transform:rotate(135deg);
  10923. -moz-transform:rotate(135deg);
  10924. -ms-transform:rotate(135deg);
  10925. transform:rotate(135deg);
  10926. }
  10927. #u8485 .text {
  10928. position:absolute;
  10929. align-self:center;
  10930. padding:2px 2px 2px 2px;
  10931. box-sizing:border-box;
  10932. width:100%;
  10933. }
  10934. #u8485_text {
  10935. border-width:0px;
  10936. word-wrap:break-word;
  10937. text-transform:none;
  10938. visibility:hidden;
  10939. }
  10940. #u8486 {
  10941. border-width:0px;
  10942. position:absolute;
  10943. left:0px;
  10944. top:0px;
  10945. width:0px;
  10946. height:0px;
  10947. }
  10948. #u8487_div {
  10949. border-width:0px;
  10950. position:absolute;
  10951. left:0px;
  10952. top:0px;
  10953. width:30px;
  10954. height:30px;
  10955. background:inherit;
  10956. background-color:rgba(255, 255, 255, 1);
  10957. box-sizing:border-box;
  10958. border-width:1px;
  10959. border-style:solid;
  10960. border-color:rgba(121, 121, 121, 1);
  10961. border-radius:0px;
  10962. -moz-box-shadow:none;
  10963. -webkit-box-shadow:none;
  10964. box-shadow:none;
  10965. }
  10966. #u8487 {
  10967. border-width:0px;
  10968. position:absolute;
  10969. left:1683px;
  10970. top:134px;
  10971. width:30px;
  10972. height:30px;
  10973. display:flex;
  10974. }
  10975. #u8487 .text {
  10976. position:absolute;
  10977. align-self:center;
  10978. padding:2px 2px 2px 2px;
  10979. box-sizing:border-box;
  10980. width:100%;
  10981. }
  10982. #u8487_text {
  10983. border-width:0px;
  10984. word-wrap:break-word;
  10985. text-transform:none;
  10986. visibility:hidden;
  10987. }
  10988. #u8488_img {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:19px;
  10994. height:18px;
  10995. }
  10996. #u8488 {
  10997. border-width:0px;
  10998. position:absolute;
  10999. left:1689px;
  11000. top:140px;
  11001. width:19px;
  11002. height:18px;
  11003. display:flex;
  11004. -webkit-transform:rotate(180deg);
  11005. -moz-transform:rotate(180deg);
  11006. -ms-transform:rotate(180deg);
  11007. transform:rotate(180deg);
  11008. }
  11009. #u8488 .text {
  11010. position:absolute;
  11011. align-self:center;
  11012. padding:2px 2px 2px 2px;
  11013. box-sizing:border-box;
  11014. width:100%;
  11015. }
  11016. #u8488_text {
  11017. border-width:0px;
  11018. word-wrap:break-word;
  11019. text-transform:none;
  11020. visibility:hidden;
  11021. }
  11022. #u8489 {
  11023. border-width:0px;
  11024. position:absolute;
  11025. left:0px;
  11026. top:0px;
  11027. width:0px;
  11028. height:0px;
  11029. }
  11030. #u8490_div {
  11031. border-width:0px;
  11032. position:absolute;
  11033. left:0px;
  11034. top:0px;
  11035. width:30px;
  11036. height:30px;
  11037. background:inherit;
  11038. background-color:rgba(255, 255, 255, 1);
  11039. box-sizing:border-box;
  11040. border-width:1px;
  11041. border-style:solid;
  11042. border-color:rgba(121, 121, 121, 1);
  11043. border-radius:0px;
  11044. -moz-box-shadow:none;
  11045. -webkit-box-shadow:none;
  11046. box-shadow:none;
  11047. }
  11048. #u8490 {
  11049. border-width:0px;
  11050. position:absolute;
  11051. left:1723px;
  11052. top:134px;
  11053. width:30px;
  11054. height:30px;
  11055. display:flex;
  11056. }
  11057. #u8490 .text {
  11058. position:absolute;
  11059. align-self:center;
  11060. padding:2px 2px 2px 2px;
  11061. box-sizing:border-box;
  11062. width:100%;
  11063. }
  11064. #u8490_text {
  11065. border-width:0px;
  11066. word-wrap:break-word;
  11067. text-transform:none;
  11068. visibility:hidden;
  11069. }
  11070. #u8491_img {
  11071. border-width:0px;
  11072. position:absolute;
  11073. left:0px;
  11074. top:0px;
  11075. width:19px;
  11076. height:18px;
  11077. }
  11078. #u8491 {
  11079. border-width:0px;
  11080. position:absolute;
  11081. left:1729px;
  11082. top:140px;
  11083. width:19px;
  11084. height:18px;
  11085. display:flex;
  11086. -webkit-transform:rotate(225deg);
  11087. -moz-transform:rotate(225deg);
  11088. -ms-transform:rotate(225deg);
  11089. transform:rotate(225deg);
  11090. }
  11091. #u8491 .text {
  11092. position:absolute;
  11093. align-self:center;
  11094. padding:2px 2px 2px 2px;
  11095. box-sizing:border-box;
  11096. width:100%;
  11097. }
  11098. #u8491_text {
  11099. border-width:0px;
  11100. word-wrap:break-word;
  11101. text-transform:none;
  11102. visibility:hidden;
  11103. }
  11104. #u8492 {
  11105. border-width:0px;
  11106. position:absolute;
  11107. left:0px;
  11108. top:0px;
  11109. width:0px;
  11110. height:0px;
  11111. }
  11112. #u8493_div {
  11113. border-width:0px;
  11114. position:absolute;
  11115. left:0px;
  11116. top:0px;
  11117. width:30px;
  11118. height:30px;
  11119. background:inherit;
  11120. background-color:rgba(255, 255, 255, 1);
  11121. box-sizing:border-box;
  11122. border-width:1px;
  11123. border-style:solid;
  11124. border-color:rgba(121, 121, 121, 1);
  11125. border-radius:0px;
  11126. -moz-box-shadow:none;
  11127. -webkit-box-shadow:none;
  11128. box-shadow:none;
  11129. }
  11130. #u8493 {
  11131. border-width:0px;
  11132. position:absolute;
  11133. left:1642px;
  11134. top:174px;
  11135. width:30px;
  11136. height:30px;
  11137. display:flex;
  11138. }
  11139. #u8493 .text {
  11140. position:absolute;
  11141. align-self:center;
  11142. padding:2px 2px 2px 2px;
  11143. box-sizing:border-box;
  11144. width:100%;
  11145. }
  11146. #u8493_text {
  11147. border-width:0px;
  11148. word-wrap:break-word;
  11149. text-transform:none;
  11150. visibility:hidden;
  11151. }
  11152. #u8494_img {
  11153. border-width:0px;
  11154. position:absolute;
  11155. left:0px;
  11156. top:0px;
  11157. width:19px;
  11158. height:18px;
  11159. }
  11160. #u8494 {
  11161. border-width:0px;
  11162. position:absolute;
  11163. left:1648px;
  11164. top:181px;
  11165. width:19px;
  11166. height:18px;
  11167. display:flex;
  11168. -webkit-transform:rotate(90deg);
  11169. -moz-transform:rotate(90deg);
  11170. -ms-transform:rotate(90deg);
  11171. transform:rotate(90deg);
  11172. }
  11173. #u8494 .text {
  11174. position:absolute;
  11175. align-self:center;
  11176. padding:2px 2px 2px 2px;
  11177. box-sizing:border-box;
  11178. width:100%;
  11179. }
  11180. #u8494_text {
  11181. border-width:0px;
  11182. word-wrap:break-word;
  11183. text-transform:none;
  11184. visibility:hidden;
  11185. }
  11186. #u8495 {
  11187. border-width:0px;
  11188. position:absolute;
  11189. left:0px;
  11190. top:0px;
  11191. width:0px;
  11192. height:0px;
  11193. }
  11194. #u8496_div {
  11195. border-width:0px;
  11196. position:absolute;
  11197. left:0px;
  11198. top:0px;
  11199. width:30px;
  11200. height:30px;
  11201. background:inherit;
  11202. background-color:rgba(255, 255, 255, 1);
  11203. box-sizing:border-box;
  11204. border-width:1px;
  11205. border-style:solid;
  11206. border-color:rgba(121, 121, 121, 1);
  11207. border-radius:0px;
  11208. -moz-box-shadow:none;
  11209. -webkit-box-shadow:none;
  11210. box-shadow:none;
  11211. }
  11212. #u8496 {
  11213. border-width:0px;
  11214. position:absolute;
  11215. left:1723px;
  11216. top:174px;
  11217. width:30px;
  11218. height:30px;
  11219. display:flex;
  11220. }
  11221. #u8496 .text {
  11222. position:absolute;
  11223. align-self:center;
  11224. padding:2px 2px 2px 2px;
  11225. box-sizing:border-box;
  11226. width:100%;
  11227. }
  11228. #u8496_text {
  11229. border-width:0px;
  11230. word-wrap:break-word;
  11231. text-transform:none;
  11232. visibility:hidden;
  11233. }
  11234. #u8497_img {
  11235. border-width:0px;
  11236. position:absolute;
  11237. left:0px;
  11238. top:0px;
  11239. width:19px;
  11240. height:18px;
  11241. }
  11242. #u8497 {
  11243. border-width:0px;
  11244. position:absolute;
  11245. left:1729px;
  11246. top:181px;
  11247. width:19px;
  11248. height:18px;
  11249. display:flex;
  11250. -webkit-transform:rotate(270deg);
  11251. -moz-transform:rotate(270deg);
  11252. -ms-transform:rotate(270deg);
  11253. transform:rotate(270deg);
  11254. }
  11255. #u8497 .text {
  11256. position:absolute;
  11257. align-self:center;
  11258. padding:2px 2px 2px 2px;
  11259. box-sizing:border-box;
  11260. width:100%;
  11261. }
  11262. #u8497_text {
  11263. border-width:0px;
  11264. word-wrap:break-word;
  11265. text-transform:none;
  11266. visibility:hidden;
  11267. }
  11268. #u8498 {
  11269. border-width:0px;
  11270. position:absolute;
  11271. left:0px;
  11272. top:0px;
  11273. width:0px;
  11274. height:0px;
  11275. }
  11276. #u8499_div {
  11277. border-width:0px;
  11278. position:absolute;
  11279. left:0px;
  11280. top:0px;
  11281. width:30px;
  11282. height:30px;
  11283. background:inherit;
  11284. background-color:rgba(255, 255, 255, 1);
  11285. box-sizing:border-box;
  11286. border-width:1px;
  11287. border-style:solid;
  11288. border-color:rgba(121, 121, 121, 1);
  11289. border-radius:0px;
  11290. -moz-box-shadow:none;
  11291. -webkit-box-shadow:none;
  11292. box-shadow:none;
  11293. }
  11294. #u8499 {
  11295. border-width:0px;
  11296. position:absolute;
  11297. left:1642px;
  11298. top:215px;
  11299. width:30px;
  11300. height:30px;
  11301. display:flex;
  11302. }
  11303. #u8499 .text {
  11304. position:absolute;
  11305. align-self:center;
  11306. padding:2px 2px 2px 2px;
  11307. box-sizing:border-box;
  11308. width:100%;
  11309. }
  11310. #u8499_text {
  11311. border-width:0px;
  11312. word-wrap:break-word;
  11313. text-transform:none;
  11314. visibility:hidden;
  11315. }
  11316. #u8500_img {
  11317. border-width:0px;
  11318. position:absolute;
  11319. left:0px;
  11320. top:0px;
  11321. width:19px;
  11322. height:18px;
  11323. }
  11324. #u8500 {
  11325. border-width:0px;
  11326. position:absolute;
  11327. left:1648px;
  11328. top:221px;
  11329. width:19px;
  11330. height:18px;
  11331. display:flex;
  11332. -webkit-transform:rotate(51deg);
  11333. -moz-transform:rotate(51deg);
  11334. -ms-transform:rotate(51deg);
  11335. transform:rotate(51deg);
  11336. }
  11337. #u8500 .text {
  11338. position:absolute;
  11339. align-self:center;
  11340. padding:2px 2px 2px 2px;
  11341. box-sizing:border-box;
  11342. width:100%;
  11343. }
  11344. #u8500_text {
  11345. border-width:0px;
  11346. word-wrap:break-word;
  11347. text-transform:none;
  11348. visibility:hidden;
  11349. }
  11350. #u8501 {
  11351. border-width:0px;
  11352. position:absolute;
  11353. left:0px;
  11354. top:0px;
  11355. width:0px;
  11356. height:0px;
  11357. }
  11358. #u8502_div {
  11359. border-width:0px;
  11360. position:absolute;
  11361. left:0px;
  11362. top:0px;
  11363. width:30px;
  11364. height:30px;
  11365. background:inherit;
  11366. background-color:rgba(255, 255, 255, 1);
  11367. box-sizing:border-box;
  11368. border-width:1px;
  11369. border-style:solid;
  11370. border-color:rgba(121, 121, 121, 1);
  11371. border-radius:0px;
  11372. -moz-box-shadow:none;
  11373. -webkit-box-shadow:none;
  11374. box-shadow:none;
  11375. }
  11376. #u8502 {
  11377. border-width:0px;
  11378. position:absolute;
  11379. left:1683px;
  11380. top:215px;
  11381. width:30px;
  11382. height:30px;
  11383. display:flex;
  11384. }
  11385. #u8502 .text {
  11386. position:absolute;
  11387. align-self:center;
  11388. padding:2px 2px 2px 2px;
  11389. box-sizing:border-box;
  11390. width:100%;
  11391. }
  11392. #u8502_text {
  11393. border-width:0px;
  11394. word-wrap:break-word;
  11395. text-transform:none;
  11396. visibility:hidden;
  11397. }
  11398. #u8503_img {
  11399. border-width:0px;
  11400. position:absolute;
  11401. left:0px;
  11402. top:0px;
  11403. width:19px;
  11404. height:18px;
  11405. }
  11406. #u8503 {
  11407. border-width:0px;
  11408. position:absolute;
  11409. left:1689px;
  11410. top:221px;
  11411. width:19px;
  11412. height:18px;
  11413. display:flex;
  11414. }
  11415. #u8503 .text {
  11416. position:absolute;
  11417. align-self:center;
  11418. padding:2px 2px 2px 2px;
  11419. box-sizing:border-box;
  11420. width:100%;
  11421. }
  11422. #u8503_text {
  11423. border-width:0px;
  11424. word-wrap:break-word;
  11425. text-transform:none;
  11426. visibility:hidden;
  11427. }
  11428. #u8504 {
  11429. border-width:0px;
  11430. position:absolute;
  11431. left:0px;
  11432. top:0px;
  11433. width:0px;
  11434. height:0px;
  11435. }
  11436. #u8505_div {
  11437. border-width:0px;
  11438. position:absolute;
  11439. left:0px;
  11440. top:0px;
  11441. width:30px;
  11442. height:30px;
  11443. background:inherit;
  11444. background-color:rgba(255, 255, 255, 1);
  11445. box-sizing:border-box;
  11446. border-width:1px;
  11447. border-style:solid;
  11448. border-color:rgba(121, 121, 121, 1);
  11449. border-radius:0px;
  11450. -moz-box-shadow:none;
  11451. -webkit-box-shadow:none;
  11452. box-shadow:none;
  11453. }
  11454. #u8505 {
  11455. border-width:0px;
  11456. position:absolute;
  11457. left:1723px;
  11458. top:215px;
  11459. width:30px;
  11460. height:30px;
  11461. display:flex;
  11462. }
  11463. #u8505 .text {
  11464. position:absolute;
  11465. align-self:center;
  11466. padding:2px 2px 2px 2px;
  11467. box-sizing:border-box;
  11468. width:100%;
  11469. }
  11470. #u8505_text {
  11471. border-width:0px;
  11472. word-wrap:break-word;
  11473. text-transform:none;
  11474. visibility:hidden;
  11475. }
  11476. #u8506_img {
  11477. border-width:0px;
  11478. position:absolute;
  11479. left:0px;
  11480. top:0px;
  11481. width:19px;
  11482. height:18px;
  11483. }
  11484. #u8506 {
  11485. border-width:0px;
  11486. position:absolute;
  11487. left:1729px;
  11488. top:221px;
  11489. width:19px;
  11490. height:18px;
  11491. display:flex;
  11492. -webkit-transform:rotate(300deg);
  11493. -moz-transform:rotate(300deg);
  11494. -ms-transform:rotate(300deg);
  11495. transform:rotate(300deg);
  11496. }
  11497. #u8506 .text {
  11498. position:absolute;
  11499. align-self:center;
  11500. padding:2px 2px 2px 2px;
  11501. box-sizing:border-box;
  11502. width:100%;
  11503. }
  11504. #u8506_text {
  11505. border-width:0px;
  11506. word-wrap:break-word;
  11507. text-transform:none;
  11508. visibility:hidden;
  11509. }
  11510. #u8507_div {
  11511. border-width:0px;
  11512. position:absolute;
  11513. left:0px;
  11514. top:0px;
  11515. width:30px;
  11516. height:30px;
  11517. background:inherit;
  11518. background-color:rgba(255, 255, 255, 1);
  11519. box-sizing:border-box;
  11520. border-width:1px;
  11521. border-style:solid;
  11522. border-color:rgba(121, 121, 121, 1);
  11523. border-radius:0px;
  11524. -moz-box-shadow:none;
  11525. -webkit-box-shadow:none;
  11526. box-shadow:none;
  11527. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11528. font-weight:700;
  11529. font-style:normal;
  11530. font-size:24px;
  11531. }
  11532. #u8507 {
  11533. border-width:0px;
  11534. position:absolute;
  11535. left:1764px;
  11536. top:134px;
  11537. width:30px;
  11538. height:30px;
  11539. display:flex;
  11540. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11541. font-weight:700;
  11542. font-style:normal;
  11543. font-size:24px;
  11544. }
  11545. #u8507 .text {
  11546. position:absolute;
  11547. align-self:center;
  11548. padding:2px 2px 2px 2px;
  11549. box-sizing:border-box;
  11550. width:100%;
  11551. }
  11552. #u8507_text {
  11553. border-width:0px;
  11554. word-wrap:break-word;
  11555. text-transform:none;
  11556. }
  11557. #u8508_div {
  11558. border-width:0px;
  11559. position:absolute;
  11560. left:0px;
  11561. top:0px;
  11562. width:30px;
  11563. height:30px;
  11564. background:inherit;
  11565. background-color:rgba(255, 255, 255, 1);
  11566. box-sizing:border-box;
  11567. border-width:1px;
  11568. border-style:solid;
  11569. border-color:rgba(121, 121, 121, 1);
  11570. border-radius:0px;
  11571. -moz-box-shadow:none;
  11572. -webkit-box-shadow:none;
  11573. box-shadow:none;
  11574. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11575. font-weight:700;
  11576. font-style:normal;
  11577. font-size:24px;
  11578. }
  11579. #u8508 {
  11580. border-width:0px;
  11581. position:absolute;
  11582. left:1764px;
  11583. top:174px;
  11584. width:30px;
  11585. height:30px;
  11586. display:flex;
  11587. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11588. font-weight:700;
  11589. font-style:normal;
  11590. font-size:24px;
  11591. }
  11592. #u8508 .text {
  11593. position:absolute;
  11594. align-self:center;
  11595. padding:2px 2px 2px 2px;
  11596. box-sizing:border-box;
  11597. width:100%;
  11598. }
  11599. #u8508_text {
  11600. border-width:0px;
  11601. word-wrap:break-word;
  11602. text-transform:none;
  11603. }
  11604. #u8509_div {
  11605. border-width:0px;
  11606. position:absolute;
  11607. left:0px;
  11608. top:0px;
  11609. width:30px;
  11610. height:30px;
  11611. background:inherit;
  11612. background-color:rgba(255, 255, 255, 1);
  11613. box-sizing:border-box;
  11614. border-width:1px;
  11615. border-style:solid;
  11616. border-color:rgba(121, 121, 121, 1);
  11617. border-radius:0px;
  11618. -moz-box-shadow:none;
  11619. -webkit-box-shadow:none;
  11620. box-shadow:none;
  11621. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11622. font-weight:700;
  11623. font-style:normal;
  11624. font-size:24px;
  11625. }
  11626. #u8509 {
  11627. border-width:0px;
  11628. position:absolute;
  11629. left:1764px;
  11630. top:215px;
  11631. width:30px;
  11632. height:30px;
  11633. display:flex;
  11634. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11635. font-weight:700;
  11636. font-style:normal;
  11637. font-size:24px;
  11638. }
  11639. #u8509 .text {
  11640. position:absolute;
  11641. align-self:center;
  11642. padding:2px 2px 2px 2px;
  11643. box-sizing:border-box;
  11644. width:100%;
  11645. }
  11646. #u8509_text {
  11647. border-width:0px;
  11648. word-wrap:break-word;
  11649. text-transform:none;
  11650. }
  11651. #u8510 {
  11652. border-width:0px;
  11653. position:absolute;
  11654. left:0px;
  11655. top:0px;
  11656. width:0px;
  11657. height:0px;
  11658. }
  11659. #u8511_div {
  11660. border-width:0px;
  11661. position:absolute;
  11662. left:0px;
  11663. top:0px;
  11664. width:30px;
  11665. height:30px;
  11666. background:inherit;
  11667. background-color:rgba(255, 255, 255, 1);
  11668. box-sizing:border-box;
  11669. border-width:1px;
  11670. border-style:solid;
  11671. border-color:rgba(121, 121, 121, 1);
  11672. border-radius:0px;
  11673. -moz-box-shadow:none;
  11674. -webkit-box-shadow:none;
  11675. box-shadow:none;
  11676. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11677. font-weight:700;
  11678. font-style:normal;
  11679. font-size:18px;
  11680. }
  11681. #u8511 {
  11682. border-width:0px;
  11683. position:absolute;
  11684. left:1804px;
  11685. top:134px;
  11686. width:30px;
  11687. height:30px;
  11688. display:flex;
  11689. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11690. font-weight:700;
  11691. font-style:normal;
  11692. font-size:18px;
  11693. }
  11694. #u8511 .text {
  11695. position:absolute;
  11696. align-self:center;
  11697. padding:2px 2px 2px 2px;
  11698. box-sizing:border-box;
  11699. width:100%;
  11700. }
  11701. #u8511_text {
  11702. border-width:0px;
  11703. word-wrap:break-word;
  11704. text-transform:none;
  11705. visibility:hidden;
  11706. }
  11707. #u8512_img {
  11708. border-width:0px;
  11709. position:absolute;
  11710. left:0px;
  11711. top:0px;
  11712. width:14px;
  11713. height:14px;
  11714. }
  11715. #u8512 {
  11716. border-width:0px;
  11717. position:absolute;
  11718. left:1812px;
  11719. top:142px;
  11720. width:14px;
  11721. height:14px;
  11722. display:flex;
  11723. }
  11724. #u8512 .text {
  11725. position:absolute;
  11726. align-self:center;
  11727. padding:2px 2px 2px 2px;
  11728. box-sizing:border-box;
  11729. width:100%;
  11730. }
  11731. #u8512_text {
  11732. border-width:0px;
  11733. word-wrap:break-word;
  11734. text-transform:none;
  11735. visibility:hidden;
  11736. }
  11737. #u8513 {
  11738. border-width:0px;
  11739. position:absolute;
  11740. left:0px;
  11741. top:0px;
  11742. width:0px;
  11743. height:0px;
  11744. }
  11745. #u8514_div {
  11746. border-width:0px;
  11747. position:absolute;
  11748. left:0px;
  11749. top:0px;
  11750. width:30px;
  11751. height:30px;
  11752. background:inherit;
  11753. background-color:rgba(255, 255, 255, 1);
  11754. box-sizing:border-box;
  11755. border-width:1px;
  11756. border-style:solid;
  11757. border-color:rgba(121, 121, 121, 1);
  11758. border-radius:0px;
  11759. -moz-box-shadow:none;
  11760. -webkit-box-shadow:none;
  11761. box-shadow:none;
  11762. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11763. font-weight:700;
  11764. font-style:normal;
  11765. font-size:18px;
  11766. }
  11767. #u8514 {
  11768. border-width:0px;
  11769. position:absolute;
  11770. left:1804px;
  11771. top:174px;
  11772. width:30px;
  11773. height:30px;
  11774. display:flex;
  11775. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11776. font-weight:700;
  11777. font-style:normal;
  11778. font-size:18px;
  11779. }
  11780. #u8514 .text {
  11781. position:absolute;
  11782. align-self:center;
  11783. padding:2px 2px 2px 2px;
  11784. box-sizing:border-box;
  11785. width:100%;
  11786. }
  11787. #u8514_text {
  11788. border-width:0px;
  11789. word-wrap:break-word;
  11790. text-transform:none;
  11791. visibility:hidden;
  11792. }
  11793. #u8515_img {
  11794. border-width:0px;
  11795. position:absolute;
  11796. left:0px;
  11797. top:0px;
  11798. width:14px;
  11799. height:14px;
  11800. }
  11801. #u8515 {
  11802. border-width:0px;
  11803. position:absolute;
  11804. left:1812px;
  11805. top:183px;
  11806. width:14px;
  11807. height:14px;
  11808. display:flex;
  11809. }
  11810. #u8515 .text {
  11811. position:absolute;
  11812. align-self:center;
  11813. padding:2px 2px 2px 2px;
  11814. box-sizing:border-box;
  11815. width:100%;
  11816. }
  11817. #u8515_text {
  11818. border-width:0px;
  11819. word-wrap:break-word;
  11820. text-transform:none;
  11821. visibility:hidden;
  11822. }
  11823. #u8516 {
  11824. border-width:0px;
  11825. position:absolute;
  11826. left:0px;
  11827. top:0px;
  11828. width:0px;
  11829. height:0px;
  11830. }
  11831. #u8517_div {
  11832. border-width:0px;
  11833. position:absolute;
  11834. left:0px;
  11835. top:0px;
  11836. width:30px;
  11837. height:30px;
  11838. background:inherit;
  11839. background-color:rgba(255, 255, 255, 1);
  11840. box-sizing:border-box;
  11841. border-width:1px;
  11842. border-style:solid;
  11843. border-color:rgba(121, 121, 121, 1);
  11844. border-radius:0px;
  11845. -moz-box-shadow:none;
  11846. -webkit-box-shadow:none;
  11847. box-shadow:none;
  11848. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11849. font-weight:700;
  11850. font-style:normal;
  11851. font-size:18px;
  11852. }
  11853. #u8517 {
  11854. border-width:0px;
  11855. position:absolute;
  11856. left:1804px;
  11857. top:215px;
  11858. width:30px;
  11859. height:30px;
  11860. display:flex;
  11861. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  11862. font-weight:700;
  11863. font-style:normal;
  11864. font-size:18px;
  11865. }
  11866. #u8517 .text {
  11867. position:absolute;
  11868. align-self:center;
  11869. padding:2px 2px 2px 2px;
  11870. box-sizing:border-box;
  11871. width:100%;
  11872. }
  11873. #u8517_text {
  11874. border-width:0px;
  11875. word-wrap:break-word;
  11876. text-transform:none;
  11877. visibility:hidden;
  11878. }
  11879. #u8518_img {
  11880. border-width:0px;
  11881. position:absolute;
  11882. left:0px;
  11883. top:0px;
  11884. width:17px;
  11885. height:11px;
  11886. }
  11887. #u8518 {
  11888. border-width:0px;
  11889. position:absolute;
  11890. left:1811px;
  11891. top:225px;
  11892. width:17px;
  11893. height:11px;
  11894. display:flex;
  11895. }
  11896. #u8518 .text {
  11897. position:absolute;
  11898. align-self:center;
  11899. padding:2px 2px 2px 2px;
  11900. box-sizing:border-box;
  11901. width:100%;
  11902. }
  11903. #u8518_text {
  11904. border-width:0px;
  11905. word-wrap:break-word;
  11906. text-transform:none;
  11907. visibility:hidden;
  11908. }
  11909. #u8519 {
  11910. border-width:0px;
  11911. position:absolute;
  11912. left:0px;
  11913. top:0px;
  11914. width:0px;
  11915. height:0px;
  11916. }
  11917. #u8520_div {
  11918. border-width:0px;
  11919. position:absolute;
  11920. left:0px;
  11921. top:0px;
  11922. width:85px;
  11923. height:21px;
  11924. background:inherit;
  11925. background-color:rgba(51, 51, 51, 1);
  11926. border:none;
  11927. border-radius:11px;
  11928. -moz-box-shadow:none;
  11929. -webkit-box-shadow:none;
  11930. box-shadow:none;
  11931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11932. font-weight:400;
  11933. font-style:normal;
  11934. font-size:12px;
  11935. color:#FFFFFF;
  11936. text-align:center;
  11937. }
  11938. #u8520 {
  11939. border-width:0px;
  11940. position:absolute;
  11941. left:1734px;
  11942. top:241px;
  11943. width:85px;
  11944. height:21px;
  11945. display:flex;
  11946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11947. font-weight:400;
  11948. font-style:normal;
  11949. font-size:12px;
  11950. color:#FFFFFF;
  11951. text-align:center;
  11952. }
  11953. #u8520 .text {
  11954. position:absolute;
  11955. align-self:center;
  11956. padding:2px 2px 2px 2px;
  11957. box-sizing:border-box;
  11958. width:100%;
  11959. }
  11960. #u8520_text {
  11961. border-width:0px;
  11962. word-wrap:break-word;
  11963. text-transform:none;
  11964. }
  11965. #u8521_img {
  11966. border-width:0px;
  11967. position:absolute;
  11968. left:0px;
  11969. top:0px;
  11970. width:11px;
  11971. height:17px;
  11972. }
  11973. #u8521 {
  11974. border-width:0px;
  11975. position:absolute;
  11976. left:1787px;
  11977. top:273px;
  11978. width:11px;
  11979. height:17px;
  11980. display:flex;
  11981. }
  11982. #u8521 .text {
  11983. position:absolute;
  11984. align-self:center;
  11985. padding:2px 2px 2px 2px;
  11986. box-sizing:border-box;
  11987. width:100%;
  11988. }
  11989. #u8521_text {
  11990. border-width:0px;
  11991. word-wrap:break-word;
  11992. text-transform:none;
  11993. visibility:hidden;
  11994. }
  11995. #u8522_div {
  11996. border-width:0px;
  11997. position:absolute;
  11998. left:0px;
  11999. top:0px;
  12000. width:193px;
  12001. height:6px;
  12002. background:inherit;
  12003. background-color:rgba(255, 255, 255, 1);
  12004. box-sizing:border-box;
  12005. border-width:1px;
  12006. border-style:solid;
  12007. border-color:rgba(228, 228, 228, 1);
  12008. border-radius:0px;
  12009. -moz-box-shadow:none;
  12010. -webkit-box-shadow:none;
  12011. box-shadow:none;
  12012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12013. font-weight:400;
  12014. font-style:normal;
  12015. font-size:12px;
  12016. color:#FFFFFF;
  12017. }
  12018. #u8522 {
  12019. border-width:0px;
  12020. position:absolute;
  12021. left:1641px;
  12022. top:270px;
  12023. width:193px;
  12024. height:6px;
  12025. display:flex;
  12026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12027. font-weight:400;
  12028. font-style:normal;
  12029. font-size:12px;
  12030. color:#FFFFFF;
  12031. }
  12032. #u8522 .text {
  12033. position:absolute;
  12034. align-self:center;
  12035. padding:8px 15px 8px 15px;
  12036. box-sizing:border-box;
  12037. width:100%;
  12038. }
  12039. #u8522_text {
  12040. border-width:0px;
  12041. word-wrap:break-word;
  12042. text-transform:none;
  12043. visibility:hidden;
  12044. }
  12045. #u8523_div {
  12046. border-width:0px;
  12047. position:absolute;
  12048. left:0px;
  12049. top:0px;
  12050. width:142px;
  12051. height:6px;
  12052. background:inherit;
  12053. background-color:rgba(51, 153, 255, 1);
  12054. box-sizing:border-box;
  12055. border-width:1px;
  12056. border-style:solid;
  12057. border-color:rgba(228, 228, 228, 1);
  12058. border-radius:0px;
  12059. -moz-box-shadow:none;
  12060. -webkit-box-shadow:none;
  12061. box-shadow:none;
  12062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12063. font-weight:400;
  12064. font-style:normal;
  12065. font-size:12px;
  12066. color:#FFFFFF;
  12067. }
  12068. #u8523 {
  12069. border-width:0px;
  12070. position:absolute;
  12071. left:1641px;
  12072. top:270px;
  12073. width:142px;
  12074. height:6px;
  12075. display:flex;
  12076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12077. font-weight:400;
  12078. font-style:normal;
  12079. font-size:12px;
  12080. color:#FFFFFF;
  12081. }
  12082. #u8523 .text {
  12083. position:absolute;
  12084. align-self:center;
  12085. padding:8px 15px 8px 15px;
  12086. box-sizing:border-box;
  12087. width:100%;
  12088. }
  12089. #u8523_text {
  12090. border-width:0px;
  12091. word-wrap:break-word;
  12092. text-transform:none;
  12093. visibility:hidden;
  12094. }
  12095. #u8524_img {
  12096. border-width:0px;
  12097. position:absolute;
  12098. left:-3px;
  12099. top:-3px;
  12100. width:20px;
  12101. height:20px;
  12102. }
  12103. #u8524 {
  12104. border-width:0px;
  12105. position:absolute;
  12106. left:1772px;
  12107. top:266px;
  12108. width:14px;
  12109. height:14px;
  12110. display:flex;
  12111. }
  12112. #u8524 .text {
  12113. position:absolute;
  12114. align-self:center;
  12115. padding:2px 2px 2px 2px;
  12116. box-sizing:border-box;
  12117. width:100%;
  12118. }
  12119. #u8524_text {
  12120. border-width:0px;
  12121. word-wrap:break-word;
  12122. text-transform:none;
  12123. visibility:hidden;
  12124. }
  12125. #u8525 {
  12126. border-width:0px;
  12127. position:absolute;
  12128. left:0px;
  12129. top:0px;
  12130. width:0px;
  12131. height:0px;
  12132. }
  12133. #u8526_div {
  12134. border-width:0px;
  12135. position:absolute;
  12136. left:0px;
  12137. top:0px;
  12138. width:90px;
  12139. height:30px;
  12140. background:inherit;
  12141. background-color:rgba(255, 255, 255, 1);
  12142. box-sizing:border-box;
  12143. border-width:1px;
  12144. border-style:solid;
  12145. border-color:rgba(215, 215, 215, 1);
  12146. border-radius:4px;
  12147. -moz-box-shadow:none;
  12148. -webkit-box-shadow:none;
  12149. box-shadow:none;
  12150. font-size:14px;
  12151. }
  12152. #u8526 {
  12153. border-width:0px;
  12154. position:absolute;
  12155. left:1642px;
  12156. top:325px;
  12157. width:90px;
  12158. height:30px;
  12159. display:flex;
  12160. font-size:14px;
  12161. }
  12162. #u8526 .text {
  12163. position:absolute;
  12164. align-self:center;
  12165. padding:2px 2px 2px 2px;
  12166. box-sizing:border-box;
  12167. width:100%;
  12168. }
  12169. #u8526_text {
  12170. border-width:0px;
  12171. word-wrap:break-word;
  12172. text-transform:none;
  12173. visibility:hidden;
  12174. }
  12175. #u8527_input {
  12176. position:absolute;
  12177. left:0px;
  12178. top:0px;
  12179. width:86px;
  12180. height:23px;
  12181. padding:2px 2px 2px 2px;
  12182. font-family:'ArialMT', 'Arial', sans-serif;
  12183. font-weight:400;
  12184. font-style:normal;
  12185. font-size:14px;
  12186. letter-spacing:normal;
  12187. color:#AAAAAA;
  12188. vertical-align:none;
  12189. text-align:left;
  12190. text-transform:none;
  12191. background-color:transparent;
  12192. border-color:transparent;
  12193. }
  12194. #u8527_input.disabled {
  12195. position:absolute;
  12196. left:0px;
  12197. top:0px;
  12198. width:86px;
  12199. height:23px;
  12200. padding:2px 2px 2px 2px;
  12201. font-family:'ArialMT', 'Arial', sans-serif;
  12202. font-weight:400;
  12203. font-style:normal;
  12204. font-size:14px;
  12205. letter-spacing:normal;
  12206. color:#AAAAAA;
  12207. vertical-align:none;
  12208. text-align:left;
  12209. text-transform:none;
  12210. background-color:transparent;
  12211. border-color:transparent;
  12212. }
  12213. #u8527_div {
  12214. border-width:0px;
  12215. position:absolute;
  12216. left:0px;
  12217. top:0px;
  12218. width:86px;
  12219. height:23px;
  12220. background:inherit;
  12221. background-color:rgba(255, 255, 255, 1);
  12222. border:none;
  12223. border-radius:0px;
  12224. -moz-box-shadow:none;
  12225. -webkit-box-shadow:none;
  12226. box-shadow:none;
  12227. font-size:14px;
  12228. color:#AAAAAA;
  12229. }
  12230. #u8527 {
  12231. border-width:0px;
  12232. position:absolute;
  12233. left:1645px;
  12234. top:327px;
  12235. width:86px;
  12236. height:23px;
  12237. display:flex;
  12238. font-size:14px;
  12239. color:#AAAAAA;
  12240. }
  12241. #u8527 .text {
  12242. position:absolute;
  12243. align-self:flex-start;
  12244. padding:2px 2px 2px 2px;
  12245. box-sizing:border-box;
  12246. width:100%;
  12247. }
  12248. #u8527_div.disabled {
  12249. border-width:0px;
  12250. position:absolute;
  12251. left:0px;
  12252. top:0px;
  12253. width:86px;
  12254. height:23px;
  12255. background:inherit;
  12256. background-color:rgba(240, 240, 240, 1);
  12257. border:none;
  12258. border-radius:0px;
  12259. -moz-box-shadow:none;
  12260. -webkit-box-shadow:none;
  12261. box-shadow:none;
  12262. font-size:14px;
  12263. color:#AAAAAA;
  12264. }
  12265. #u8527.disabled {
  12266. }
  12267. .u8527_input_option {
  12268. font-size:14px;
  12269. }
  12270. #u8528_div {
  12271. border-width:0px;
  12272. position:absolute;
  12273. left:0px;
  12274. top:0px;
  12275. width:58px;
  12276. height:30px;
  12277. background:inherit;
  12278. background-color:rgba(255, 255, 255, 0);
  12279. border:none;
  12280. border-radius:0px;
  12281. -moz-box-shadow:none;
  12282. -webkit-box-shadow:none;
  12283. box-shadow:none;
  12284. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12285. font-weight:500;
  12286. font-style:normal;
  12287. font-size:14px;
  12288. color:#000000;
  12289. line-height:30px;
  12290. }
  12291. #u8528 {
  12292. border-width:0px;
  12293. position:absolute;
  12294. left:1641px;
  12295. top:294px;
  12296. width:58px;
  12297. height:30px;
  12298. display:flex;
  12299. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12300. font-weight:500;
  12301. font-style:normal;
  12302. font-size:14px;
  12303. color:#000000;
  12304. line-height:30px;
  12305. }
  12306. #u8528 .text {
  12307. position:absolute;
  12308. align-self:flex-start;
  12309. padding:0px 0px 0px 0px;
  12310. box-sizing:border-box;
  12311. width:100%;
  12312. }
  12313. #u8528_text {
  12314. border-width:0px;
  12315. word-wrap:break-word;
  12316. text-transform:none;
  12317. }
  12318. #u8529 {
  12319. border-width:0px;
  12320. position:absolute;
  12321. left:0px;
  12322. top:0px;
  12323. width:0px;
  12324. height:0px;
  12325. }
  12326. #u8530_div {
  12327. border-width:0px;
  12328. position:absolute;
  12329. left:0px;
  12330. top:0px;
  12331. width:114px;
  12332. height:30px;
  12333. background:inherit;
  12334. background-color:rgba(255, 255, 255, 1);
  12335. box-sizing:border-box;
  12336. border-width:1px;
  12337. border-style:solid;
  12338. border-color:rgba(201, 201, 201, 1);
  12339. border-radius:4px;
  12340. -moz-box-shadow:none;
  12341. -webkit-box-shadow:none;
  12342. box-shadow:none;
  12343. font-family:'Microsoft YaHei', sans-serif;
  12344. font-weight:400;
  12345. font-style:normal;
  12346. font-size:14px;
  12347. color:#CCCCCC;
  12348. text-align:left;
  12349. }
  12350. #u8530 {
  12351. border-width:0px;
  12352. position:absolute;
  12353. left:1739px;
  12354. top:325px;
  12355. width:114px;
  12356. height:30px;
  12357. display:flex;
  12358. font-family:'Microsoft YaHei', sans-serif;
  12359. font-weight:400;
  12360. font-style:normal;
  12361. font-size:14px;
  12362. color:#CCCCCC;
  12363. text-align:left;
  12364. }
  12365. #u8530 .text {
  12366. position:absolute;
  12367. align-self:center;
  12368. padding:2px 8px 2px 8px;
  12369. box-sizing:border-box;
  12370. width:100%;
  12371. }
  12372. #u8530_text {
  12373. border-width:0px;
  12374. word-wrap:break-word;
  12375. text-transform:none;
  12376. visibility:hidden;
  12377. }
  12378. #u8531_input {
  12379. position:absolute;
  12380. left:0px;
  12381. top:0px;
  12382. width:104px;
  12383. height:25px;
  12384. padding:2px 2px 2px 2px;
  12385. font-family:'Microsoft YaHei', sans-serif;
  12386. font-weight:400;
  12387. font-style:normal;
  12388. font-size:10px;
  12389. letter-spacing:normal;
  12390. color:#000000;
  12391. vertical-align:none;
  12392. text-align:left;
  12393. text-transform:none;
  12394. background-color:transparent;
  12395. border-color:transparent;
  12396. }
  12397. #u8531_input.disabled {
  12398. position:absolute;
  12399. left:0px;
  12400. top:0px;
  12401. width:104px;
  12402. height:25px;
  12403. padding:2px 2px 2px 2px;
  12404. font-family:'Microsoft YaHei', sans-serif;
  12405. font-weight:400;
  12406. font-style:normal;
  12407. font-size:10px;
  12408. letter-spacing:normal;
  12409. color:#000000;
  12410. vertical-align:none;
  12411. text-align:left;
  12412. text-transform:none;
  12413. background-color:transparent;
  12414. border-color:transparent;
  12415. }
  12416. #u8531_div {
  12417. border-width:0px;
  12418. position:absolute;
  12419. left:0px;
  12420. top:0px;
  12421. width:104px;
  12422. height:25px;
  12423. background:inherit;
  12424. background-color:rgba(255, 255, 255, 1);
  12425. border:none;
  12426. border-radius:0px;
  12427. -moz-box-shadow:none;
  12428. -webkit-box-shadow:none;
  12429. box-shadow:none;
  12430. font-family:'Microsoft YaHei', sans-serif;
  12431. font-weight:400;
  12432. font-style:normal;
  12433. font-size:10px;
  12434. }
  12435. #u8531 {
  12436. border-width:0px;
  12437. position:absolute;
  12438. left:1745px;
  12439. top:326px;
  12440. width:104px;
  12441. height:25px;
  12442. display:flex;
  12443. font-family:'Microsoft YaHei', sans-serif;
  12444. font-weight:400;
  12445. font-style:normal;
  12446. font-size:10px;
  12447. }
  12448. #u8531 .text {
  12449. position:absolute;
  12450. align-self:center;
  12451. padding:2px 2px 2px 2px;
  12452. box-sizing:border-box;
  12453. width:100%;
  12454. }
  12455. #u8531_div.disabled {
  12456. border-width:0px;
  12457. position:absolute;
  12458. left:0px;
  12459. top:0px;
  12460. width:104px;
  12461. height:25px;
  12462. background:inherit;
  12463. background-color:rgba(240, 240, 240, 1);
  12464. border:none;
  12465. border-radius:0px;
  12466. -moz-box-shadow:none;
  12467. -webkit-box-shadow:none;
  12468. box-shadow:none;
  12469. font-family:'Microsoft YaHei', sans-serif;
  12470. font-weight:400;
  12471. font-style:normal;
  12472. font-size:10px;
  12473. }
  12474. #u8531.disabled {
  12475. }
  12476. #u8532_div {
  12477. border-width:0px;
  12478. position:absolute;
  12479. left:0px;
  12480. top:0px;
  12481. width:51px;
  12482. height:30px;
  12483. background:inherit;
  12484. background-color:rgba(255, 138, 5, 1);
  12485. border:none;
  12486. border-radius:4px;
  12487. -moz-box-shadow:none;
  12488. -webkit-box-shadow:none;
  12489. box-shadow:none;
  12490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12491. font-weight:400;
  12492. font-style:normal;
  12493. font-size:12px;
  12494. color:#FFFFFF;
  12495. }
  12496. #u8532 {
  12497. border-width:0px;
  12498. position:absolute;
  12499. left:1642px;
  12500. top:366px;
  12501. width:51px;
  12502. height:30px;
  12503. display:flex;
  12504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12505. font-weight:400;
  12506. font-style:normal;
  12507. font-size:12px;
  12508. color:#FFFFFF;
  12509. }
  12510. #u8532 .text {
  12511. position:absolute;
  12512. align-self:center;
  12513. padding:5px 0px 5px 0px;
  12514. box-sizing:border-box;
  12515. width:100%;
  12516. }
  12517. #u8532_text {
  12518. border-width:0px;
  12519. word-wrap:break-word;
  12520. text-transform:none;
  12521. }
  12522. #u8533_div {
  12523. border-width:0px;
  12524. position:absolute;
  12525. left:0px;
  12526. top:0px;
  12527. width:51px;
  12528. height:30px;
  12529. background:inherit;
  12530. background-color:rgba(255, 138, 5, 1);
  12531. border:none;
  12532. border-radius:4px;
  12533. -moz-box-shadow:none;
  12534. -webkit-box-shadow:none;
  12535. box-shadow:none;
  12536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12537. font-weight:400;
  12538. font-style:normal;
  12539. font-size:12px;
  12540. color:#FFFFFF;
  12541. }
  12542. #u8533 {
  12543. border-width:0px;
  12544. position:absolute;
  12545. left:1703px;
  12546. top:366px;
  12547. width:51px;
  12548. height:30px;
  12549. display:flex;
  12550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12551. font-weight:400;
  12552. font-style:normal;
  12553. font-size:12px;
  12554. color:#FFFFFF;
  12555. }
  12556. #u8533 .text {
  12557. position:absolute;
  12558. align-self:center;
  12559. padding:5px 0px 5px 0px;
  12560. box-sizing:border-box;
  12561. width:100%;
  12562. }
  12563. #u8533_text {
  12564. border-width:0px;
  12565. word-wrap:break-word;
  12566. text-transform:none;
  12567. }
  12568. #u8534_div {
  12569. border-width:0px;
  12570. position:absolute;
  12571. left:0px;
  12572. top:0px;
  12573. width:447px;
  12574. height:286px;
  12575. background:inherit;
  12576. background-color:rgba(255, 255, 255, 0);
  12577. box-sizing:border-box;
  12578. border-width:3px;
  12579. border-style:solid;
  12580. border-color:rgba(24, 144, 255, 1);
  12581. border-radius:0px;
  12582. -moz-box-shadow:none;
  12583. -webkit-box-shadow:none;
  12584. box-shadow:none;
  12585. }
  12586. #u8534 {
  12587. border-width:0px;
  12588. position:absolute;
  12589. left:2321px;
  12590. top:393px;
  12591. width:447px;
  12592. height:286px;
  12593. display:flex;
  12594. }
  12595. #u8534 .text {
  12596. position:absolute;
  12597. align-self:center;
  12598. padding:2px 2px 2px 2px;
  12599. box-sizing:border-box;
  12600. width:100%;
  12601. }
  12602. #u8534_text {
  12603. border-width:0px;
  12604. word-wrap:break-word;
  12605. text-transform:none;
  12606. visibility:hidden;
  12607. }
  12608. #u8535 {
  12609. border-width:0px;
  12610. position:absolute;
  12611. left:0px;
  12612. top:0px;
  12613. width:0px;
  12614. height:0px;
  12615. }
  12616. #u8536 {
  12617. border-width:0px;
  12618. position:absolute;
  12619. left:0px;
  12620. top:0px;
  12621. width:0px;
  12622. height:0px;
  12623. }
  12624. #u8537_img {
  12625. border-width:0px;
  12626. position:absolute;
  12627. left:0px;
  12628. top:0px;
  12629. width:9px;
  12630. height:9px;
  12631. }
  12632. #u8537 {
  12633. border-width:0px;
  12634. position:absolute;
  12635. left:3101px;
  12636. top:65px;
  12637. width:9px;
  12638. height:9px;
  12639. display:flex;
  12640. }
  12641. #u8537 .text {
  12642. position:absolute;
  12643. align-self:center;
  12644. padding:2px 2px 2px 2px;
  12645. box-sizing:border-box;
  12646. width:100%;
  12647. }
  12648. #u8537_text {
  12649. border-width:0px;
  12650. word-wrap:break-word;
  12651. text-transform:none;
  12652. visibility:hidden;
  12653. }
  12654. #u8538_img {
  12655. border-width:0px;
  12656. position:absolute;
  12657. left:0px;
  12658. top:0px;
  12659. width:9px;
  12660. height:9px;
  12661. }
  12662. #u8538 {
  12663. border-width:0px;
  12664. position:absolute;
  12665. left:3113px;
  12666. top:65px;
  12667. width:9px;
  12668. height:9px;
  12669. display:flex;
  12670. }
  12671. #u8538 .text {
  12672. position:absolute;
  12673. align-self:center;
  12674. padding:2px 2px 2px 2px;
  12675. box-sizing:border-box;
  12676. width:100%;
  12677. }
  12678. #u8538_text {
  12679. border-width:0px;
  12680. word-wrap:break-word;
  12681. text-transform:none;
  12682. visibility:hidden;
  12683. }
  12684. #u8539_img {
  12685. border-width:0px;
  12686. position:absolute;
  12687. left:0px;
  12688. top:0px;
  12689. width:9px;
  12690. height:9px;
  12691. }
  12692. #u8539 {
  12693. border-width:0px;
  12694. position:absolute;
  12695. left:3101px;
  12696. top:77px;
  12697. width:9px;
  12698. height:9px;
  12699. display:flex;
  12700. }
  12701. #u8539 .text {
  12702. position:absolute;
  12703. align-self:center;
  12704. padding:2px 2px 2px 2px;
  12705. box-sizing:border-box;
  12706. width:100%;
  12707. }
  12708. #u8539_text {
  12709. border-width:0px;
  12710. word-wrap:break-word;
  12711. text-transform:none;
  12712. visibility:hidden;
  12713. }
  12714. #u8540_img {
  12715. border-width:0px;
  12716. position:absolute;
  12717. left:0px;
  12718. top:0px;
  12719. width:9px;
  12720. height:9px;
  12721. }
  12722. #u8540 {
  12723. border-width:0px;
  12724. position:absolute;
  12725. left:3113px;
  12726. top:77px;
  12727. width:9px;
  12728. height:9px;
  12729. display:flex;
  12730. }
  12731. #u8540 .text {
  12732. position:absolute;
  12733. align-self:center;
  12734. padding:2px 2px 2px 2px;
  12735. box-sizing:border-box;
  12736. width:100%;
  12737. }
  12738. #u8540_text {
  12739. border-width:0px;
  12740. word-wrap:break-word;
  12741. text-transform:none;
  12742. visibility:hidden;
  12743. }
  12744. #u8541 {
  12745. border-width:0px;
  12746. position:absolute;
  12747. left:0px;
  12748. top:0px;
  12749. width:0px;
  12750. height:0px;
  12751. }
  12752. #u8542_img {
  12753. border-width:0px;
  12754. position:absolute;
  12755. left:0px;
  12756. top:0px;
  12757. width:6px;
  12758. height:6px;
  12759. }
  12760. #u8542 {
  12761. border-width:0px;
  12762. position:absolute;
  12763. left:3061px;
  12764. top:65px;
  12765. width:6px;
  12766. height:6px;
  12767. display:flex;
  12768. }
  12769. #u8542 .text {
  12770. position:absolute;
  12771. align-self:center;
  12772. padding:2px 2px 2px 2px;
  12773. box-sizing:border-box;
  12774. width:100%;
  12775. }
  12776. #u8542_text {
  12777. border-width:0px;
  12778. word-wrap:break-word;
  12779. text-transform:none;
  12780. visibility:hidden;
  12781. }
  12782. #u8543_img {
  12783. border-width:0px;
  12784. position:absolute;
  12785. left:0px;
  12786. top:0px;
  12787. width:6px;
  12788. height:6px;
  12789. }
  12790. #u8543 {
  12791. border-width:0px;
  12792. position:absolute;
  12793. left:3068px;
  12794. top:65px;
  12795. width:6px;
  12796. height:6px;
  12797. display:flex;
  12798. }
  12799. #u8543 .text {
  12800. position:absolute;
  12801. align-self:center;
  12802. padding:2px 2px 2px 2px;
  12803. box-sizing:border-box;
  12804. width:100%;
  12805. }
  12806. #u8543_text {
  12807. border-width:0px;
  12808. word-wrap:break-word;
  12809. text-transform:none;
  12810. visibility:hidden;
  12811. }
  12812. #u8544_img {
  12813. border-width:0px;
  12814. position:absolute;
  12815. left:0px;
  12816. top:0px;
  12817. width:6px;
  12818. height:6px;
  12819. }
  12820. #u8544 {
  12821. border-width:0px;
  12822. position:absolute;
  12823. left:3075px;
  12824. top:65px;
  12825. width:6px;
  12826. height:6px;
  12827. display:flex;
  12828. }
  12829. #u8544 .text {
  12830. position:absolute;
  12831. align-self:center;
  12832. padding:2px 2px 2px 2px;
  12833. box-sizing:border-box;
  12834. width:100%;
  12835. }
  12836. #u8544_text {
  12837. border-width:0px;
  12838. word-wrap:break-word;
  12839. text-transform:none;
  12840. visibility:hidden;
  12841. }
  12842. #u8545_img {
  12843. border-width:0px;
  12844. position:absolute;
  12845. left:0px;
  12846. top:0px;
  12847. width:6px;
  12848. height:6px;
  12849. }
  12850. #u8545 {
  12851. border-width:0px;
  12852. position:absolute;
  12853. left:3061px;
  12854. top:72px;
  12855. width:6px;
  12856. height:6px;
  12857. display:flex;
  12858. }
  12859. #u8545 .text {
  12860. position:absolute;
  12861. align-self:center;
  12862. padding:2px 2px 2px 2px;
  12863. box-sizing:border-box;
  12864. width:100%;
  12865. }
  12866. #u8545_text {
  12867. border-width:0px;
  12868. word-wrap:break-word;
  12869. text-transform:none;
  12870. visibility:hidden;
  12871. }
  12872. #u8546_img {
  12873. border-width:0px;
  12874. position:absolute;
  12875. left:0px;
  12876. top:0px;
  12877. width:6px;
  12878. height:6px;
  12879. }
  12880. #u8546 {
  12881. border-width:0px;
  12882. position:absolute;
  12883. left:3068px;
  12884. top:72px;
  12885. width:6px;
  12886. height:6px;
  12887. display:flex;
  12888. }
  12889. #u8546 .text {
  12890. position:absolute;
  12891. align-self:center;
  12892. padding:2px 2px 2px 2px;
  12893. box-sizing:border-box;
  12894. width:100%;
  12895. }
  12896. #u8546_text {
  12897. border-width:0px;
  12898. word-wrap:break-word;
  12899. text-transform:none;
  12900. visibility:hidden;
  12901. }
  12902. #u8547_img {
  12903. border-width:0px;
  12904. position:absolute;
  12905. left:0px;
  12906. top:0px;
  12907. width:6px;
  12908. height:6px;
  12909. }
  12910. #u8547 {
  12911. border-width:0px;
  12912. position:absolute;
  12913. left:3075px;
  12914. top:72px;
  12915. width:6px;
  12916. height:6px;
  12917. display:flex;
  12918. }
  12919. #u8547 .text {
  12920. position:absolute;
  12921. align-self:center;
  12922. padding:2px 2px 2px 2px;
  12923. box-sizing:border-box;
  12924. width:100%;
  12925. }
  12926. #u8547_text {
  12927. border-width:0px;
  12928. word-wrap:break-word;
  12929. text-transform:none;
  12930. visibility:hidden;
  12931. }
  12932. #u8548_img {
  12933. border-width:0px;
  12934. position:absolute;
  12935. left:0px;
  12936. top:0px;
  12937. width:6px;
  12938. height:6px;
  12939. }
  12940. #u8548 {
  12941. border-width:0px;
  12942. position:absolute;
  12943. left:3061px;
  12944. top:79px;
  12945. width:6px;
  12946. height:6px;
  12947. display:flex;
  12948. }
  12949. #u8548 .text {
  12950. position:absolute;
  12951. align-self:center;
  12952. padding:2px 2px 2px 2px;
  12953. box-sizing:border-box;
  12954. width:100%;
  12955. }
  12956. #u8548_text {
  12957. border-width:0px;
  12958. word-wrap:break-word;
  12959. text-transform:none;
  12960. visibility:hidden;
  12961. }
  12962. #u8549_img {
  12963. border-width:0px;
  12964. position:absolute;
  12965. left:0px;
  12966. top:0px;
  12967. width:6px;
  12968. height:6px;
  12969. }
  12970. #u8549 {
  12971. border-width:0px;
  12972. position:absolute;
  12973. left:3068px;
  12974. top:79px;
  12975. width:6px;
  12976. height:6px;
  12977. display:flex;
  12978. }
  12979. #u8549 .text {
  12980. position:absolute;
  12981. align-self:center;
  12982. padding:2px 2px 2px 2px;
  12983. box-sizing:border-box;
  12984. width:100%;
  12985. }
  12986. #u8549_text {
  12987. border-width:0px;
  12988. word-wrap:break-word;
  12989. text-transform:none;
  12990. visibility:hidden;
  12991. }
  12992. #u8550_img {
  12993. border-width:0px;
  12994. position:absolute;
  12995. left:0px;
  12996. top:0px;
  12997. width:6px;
  12998. height:6px;
  12999. }
  13000. #u8550 {
  13001. border-width:0px;
  13002. position:absolute;
  13003. left:3075px;
  13004. top:79px;
  13005. width:6px;
  13006. height:6px;
  13007. display:flex;
  13008. }
  13009. #u8550 .text {
  13010. position:absolute;
  13011. align-self:center;
  13012. padding:2px 2px 2px 2px;
  13013. box-sizing:border-box;
  13014. width:100%;
  13015. }
  13016. #u8550_text {
  13017. border-width:0px;
  13018. word-wrap:break-word;
  13019. text-transform:none;
  13020. visibility:hidden;
  13021. }
  13022. #u8551 {
  13023. border-width:0px;
  13024. position:absolute;
  13025. left:0px;
  13026. top:0px;
  13027. width:0px;
  13028. height:0px;
  13029. }
  13030. #u8552_img {
  13031. border-width:0px;
  13032. position:absolute;
  13033. left:0px;
  13034. top:0px;
  13035. width:4px;
  13036. height:4px;
  13037. }
  13038. #u8552 {
  13039. border-width:0px;
  13040. position:absolute;
  13041. left:3021px;
  13042. top:66px;
  13043. width:4px;
  13044. height:4px;
  13045. display:flex;
  13046. }
  13047. #u8552 .text {
  13048. position:absolute;
  13049. align-self:center;
  13050. padding:2px 2px 2px 2px;
  13051. box-sizing:border-box;
  13052. width:100%;
  13053. }
  13054. #u8552_text {
  13055. border-width:0px;
  13056. word-wrap:break-word;
  13057. text-transform:none;
  13058. visibility:hidden;
  13059. }
  13060. #u8553_img {
  13061. border-width:0px;
  13062. position:absolute;
  13063. left:0px;
  13064. top:0px;
  13065. width:4px;
  13066. height:4px;
  13067. }
  13068. #u8553 {
  13069. border-width:0px;
  13070. position:absolute;
  13071. left:3026px;
  13072. top:66px;
  13073. width:4px;
  13074. height:4px;
  13075. display:flex;
  13076. }
  13077. #u8553 .text {
  13078. position:absolute;
  13079. align-self:center;
  13080. padding:2px 2px 2px 2px;
  13081. box-sizing:border-box;
  13082. width:100%;
  13083. }
  13084. #u8553_text {
  13085. border-width:0px;
  13086. word-wrap:break-word;
  13087. text-transform:none;
  13088. visibility:hidden;
  13089. }
  13090. #u8554_img {
  13091. border-width:0px;
  13092. position:absolute;
  13093. left:0px;
  13094. top:0px;
  13095. width:4px;
  13096. height:4px;
  13097. }
  13098. #u8554 {
  13099. border-width:0px;
  13100. position:absolute;
  13101. left:3031px;
  13102. top:66px;
  13103. width:4px;
  13104. height:4px;
  13105. display:flex;
  13106. }
  13107. #u8554 .text {
  13108. position:absolute;
  13109. align-self:center;
  13110. padding:2px 2px 2px 2px;
  13111. box-sizing:border-box;
  13112. width:100%;
  13113. }
  13114. #u8554_text {
  13115. border-width:0px;
  13116. word-wrap:break-word;
  13117. text-transform:none;
  13118. visibility:hidden;
  13119. }
  13120. #u8555_img {
  13121. border-width:0px;
  13122. position:absolute;
  13123. left:0px;
  13124. top:0px;
  13125. width:4px;
  13126. height:4px;
  13127. }
  13128. #u8555 {
  13129. border-width:0px;
  13130. position:absolute;
  13131. left:3036px;
  13132. top:66px;
  13133. width:4px;
  13134. height:4px;
  13135. display:flex;
  13136. }
  13137. #u8555 .text {
  13138. position:absolute;
  13139. align-self:center;
  13140. padding:2px 2px 2px 2px;
  13141. box-sizing:border-box;
  13142. width:100%;
  13143. }
  13144. #u8555_text {
  13145. border-width:0px;
  13146. word-wrap:break-word;
  13147. text-transform:none;
  13148. visibility:hidden;
  13149. }
  13150. #u8556_img {
  13151. border-width:0px;
  13152. position:absolute;
  13153. left:0px;
  13154. top:0px;
  13155. width:4px;
  13156. height:4px;
  13157. }
  13158. #u8556 {
  13159. border-width:0px;
  13160. position:absolute;
  13161. left:3021px;
  13162. top:71px;
  13163. width:4px;
  13164. height:4px;
  13165. display:flex;
  13166. }
  13167. #u8556 .text {
  13168. position:absolute;
  13169. align-self:center;
  13170. padding:2px 2px 2px 2px;
  13171. box-sizing:border-box;
  13172. width:100%;
  13173. }
  13174. #u8556_text {
  13175. border-width:0px;
  13176. word-wrap:break-word;
  13177. text-transform:none;
  13178. visibility:hidden;
  13179. }
  13180. #u8557_img {
  13181. border-width:0px;
  13182. position:absolute;
  13183. left:0px;
  13184. top:0px;
  13185. width:4px;
  13186. height:4px;
  13187. }
  13188. #u8557 {
  13189. border-width:0px;
  13190. position:absolute;
  13191. left:3026px;
  13192. top:71px;
  13193. width:4px;
  13194. height:4px;
  13195. display:flex;
  13196. }
  13197. #u8557 .text {
  13198. position:absolute;
  13199. align-self:center;
  13200. padding:2px 2px 2px 2px;
  13201. box-sizing:border-box;
  13202. width:100%;
  13203. }
  13204. #u8557_text {
  13205. border-width:0px;
  13206. word-wrap:break-word;
  13207. text-transform:none;
  13208. visibility:hidden;
  13209. }
  13210. #u8558_img {
  13211. border-width:0px;
  13212. position:absolute;
  13213. left:0px;
  13214. top:0px;
  13215. width:4px;
  13216. height:4px;
  13217. }
  13218. #u8558 {
  13219. border-width:0px;
  13220. position:absolute;
  13221. left:3031px;
  13222. top:71px;
  13223. width:4px;
  13224. height:4px;
  13225. display:flex;
  13226. }
  13227. #u8558 .text {
  13228. position:absolute;
  13229. align-self:center;
  13230. padding:2px 2px 2px 2px;
  13231. box-sizing:border-box;
  13232. width:100%;
  13233. }
  13234. #u8558_text {
  13235. border-width:0px;
  13236. word-wrap:break-word;
  13237. text-transform:none;
  13238. visibility:hidden;
  13239. }
  13240. #u8559_img {
  13241. border-width:0px;
  13242. position:absolute;
  13243. left:0px;
  13244. top:0px;
  13245. width:4px;
  13246. height:4px;
  13247. }
  13248. #u8559 {
  13249. border-width:0px;
  13250. position:absolute;
  13251. left:3036px;
  13252. top:71px;
  13253. width:4px;
  13254. height:4px;
  13255. display:flex;
  13256. }
  13257. #u8559 .text {
  13258. position:absolute;
  13259. align-self:center;
  13260. padding:2px 2px 2px 2px;
  13261. box-sizing:border-box;
  13262. width:100%;
  13263. }
  13264. #u8559_text {
  13265. border-width:0px;
  13266. word-wrap:break-word;
  13267. text-transform:none;
  13268. visibility:hidden;
  13269. }
  13270. #u8560_img {
  13271. border-width:0px;
  13272. position:absolute;
  13273. left:0px;
  13274. top:0px;
  13275. width:4px;
  13276. height:4px;
  13277. }
  13278. #u8560 {
  13279. border-width:0px;
  13280. position:absolute;
  13281. left:3021px;
  13282. top:76px;
  13283. width:4px;
  13284. height:4px;
  13285. display:flex;
  13286. }
  13287. #u8560 .text {
  13288. position:absolute;
  13289. align-self:center;
  13290. padding:2px 2px 2px 2px;
  13291. box-sizing:border-box;
  13292. width:100%;
  13293. }
  13294. #u8560_text {
  13295. border-width:0px;
  13296. word-wrap:break-word;
  13297. text-transform:none;
  13298. visibility:hidden;
  13299. }
  13300. #u8561_img {
  13301. border-width:0px;
  13302. position:absolute;
  13303. left:0px;
  13304. top:0px;
  13305. width:4px;
  13306. height:4px;
  13307. }
  13308. #u8561 {
  13309. border-width:0px;
  13310. position:absolute;
  13311. left:3026px;
  13312. top:76px;
  13313. width:4px;
  13314. height:4px;
  13315. display:flex;
  13316. }
  13317. #u8561 .text {
  13318. position:absolute;
  13319. align-self:center;
  13320. padding:2px 2px 2px 2px;
  13321. box-sizing:border-box;
  13322. width:100%;
  13323. }
  13324. #u8561_text {
  13325. border-width:0px;
  13326. word-wrap:break-word;
  13327. text-transform:none;
  13328. visibility:hidden;
  13329. }
  13330. #u8562_img {
  13331. border-width:0px;
  13332. position:absolute;
  13333. left:0px;
  13334. top:0px;
  13335. width:4px;
  13336. height:4px;
  13337. }
  13338. #u8562 {
  13339. border-width:0px;
  13340. position:absolute;
  13341. left:3031px;
  13342. top:76px;
  13343. width:4px;
  13344. height:4px;
  13345. display:flex;
  13346. }
  13347. #u8562 .text {
  13348. position:absolute;
  13349. align-self:center;
  13350. padding:2px 2px 2px 2px;
  13351. box-sizing:border-box;
  13352. width:100%;
  13353. }
  13354. #u8562_text {
  13355. border-width:0px;
  13356. word-wrap:break-word;
  13357. text-transform:none;
  13358. visibility:hidden;
  13359. }
  13360. #u8563_img {
  13361. border-width:0px;
  13362. position:absolute;
  13363. left:0px;
  13364. top:0px;
  13365. width:4px;
  13366. height:4px;
  13367. }
  13368. #u8563 {
  13369. border-width:0px;
  13370. position:absolute;
  13371. left:3036px;
  13372. top:76px;
  13373. width:4px;
  13374. height:4px;
  13375. display:flex;
  13376. }
  13377. #u8563 .text {
  13378. position:absolute;
  13379. align-self:center;
  13380. padding:2px 2px 2px 2px;
  13381. box-sizing:border-box;
  13382. width:100%;
  13383. }
  13384. #u8563_text {
  13385. border-width:0px;
  13386. word-wrap:break-word;
  13387. text-transform:none;
  13388. visibility:hidden;
  13389. }
  13390. #u8564_img {
  13391. border-width:0px;
  13392. position:absolute;
  13393. left:0px;
  13394. top:0px;
  13395. width:4px;
  13396. height:4px;
  13397. }
  13398. #u8564 {
  13399. border-width:0px;
  13400. position:absolute;
  13401. left:3021px;
  13402. top:81px;
  13403. width:4px;
  13404. height:4px;
  13405. display:flex;
  13406. }
  13407. #u8564 .text {
  13408. position:absolute;
  13409. align-self:center;
  13410. padding:2px 2px 2px 2px;
  13411. box-sizing:border-box;
  13412. width:100%;
  13413. }
  13414. #u8564_text {
  13415. border-width:0px;
  13416. word-wrap:break-word;
  13417. text-transform:none;
  13418. visibility:hidden;
  13419. }
  13420. #u8565_img {
  13421. border-width:0px;
  13422. position:absolute;
  13423. left:0px;
  13424. top:0px;
  13425. width:4px;
  13426. height:4px;
  13427. }
  13428. #u8565 {
  13429. border-width:0px;
  13430. position:absolute;
  13431. left:3026px;
  13432. top:81px;
  13433. width:4px;
  13434. height:4px;
  13435. display:flex;
  13436. }
  13437. #u8565 .text {
  13438. position:absolute;
  13439. align-self:center;
  13440. padding:2px 2px 2px 2px;
  13441. box-sizing:border-box;
  13442. width:100%;
  13443. }
  13444. #u8565_text {
  13445. border-width:0px;
  13446. word-wrap:break-word;
  13447. text-transform:none;
  13448. visibility:hidden;
  13449. }
  13450. #u8566_img {
  13451. border-width:0px;
  13452. position:absolute;
  13453. left:0px;
  13454. top:0px;
  13455. width:4px;
  13456. height:4px;
  13457. }
  13458. #u8566 {
  13459. border-width:0px;
  13460. position:absolute;
  13461. left:3031px;
  13462. top:81px;
  13463. width:4px;
  13464. height:4px;
  13465. display:flex;
  13466. }
  13467. #u8566 .text {
  13468. position:absolute;
  13469. align-self:center;
  13470. padding:2px 2px 2px 2px;
  13471. box-sizing:border-box;
  13472. width:100%;
  13473. }
  13474. #u8566_text {
  13475. border-width:0px;
  13476. word-wrap:break-word;
  13477. text-transform:none;
  13478. visibility:hidden;
  13479. }
  13480. #u8567_img {
  13481. border-width:0px;
  13482. position:absolute;
  13483. left:0px;
  13484. top:0px;
  13485. width:4px;
  13486. height:4px;
  13487. }
  13488. #u8567 {
  13489. border-width:0px;
  13490. position:absolute;
  13491. left:3036px;
  13492. top:81px;
  13493. width:4px;
  13494. height:4px;
  13495. display:flex;
  13496. }
  13497. #u8567 .text {
  13498. position:absolute;
  13499. align-self:center;
  13500. padding:2px 2px 2px 2px;
  13501. box-sizing:border-box;
  13502. width:100%;
  13503. }
  13504. #u8567_text {
  13505. border-width:0px;
  13506. word-wrap:break-word;
  13507. text-transform:none;
  13508. visibility:hidden;
  13509. }
  13510. #u8568_img {
  13511. border-width:0px;
  13512. position:absolute;
  13513. left:0px;
  13514. top:0px;
  13515. width:20px;
  13516. height:20px;
  13517. }
  13518. #u8568 {
  13519. border-width:0px;
  13520. position:absolute;
  13521. left:3143px;
  13522. top:65px;
  13523. width:20px;
  13524. height:20px;
  13525. display:flex;
  13526. }
  13527. #u8568 .text {
  13528. position:absolute;
  13529. align-self:center;
  13530. padding:2px 2px 2px 2px;
  13531. box-sizing:border-box;
  13532. width:100%;
  13533. }
  13534. #u8568_text {
  13535. border-width:0px;
  13536. word-wrap:break-word;
  13537. text-transform:none;
  13538. visibility:hidden;
  13539. }
  13540. #u8569_img {
  13541. border-width:0px;
  13542. position:absolute;
  13543. left:0px;
  13544. top:0px;
  13545. width:18px;
  13546. height:18px;
  13547. }
  13548. #u8569 {
  13549. border-width:0px;
  13550. position:absolute;
  13551. left:3192px;
  13552. top:66px;
  13553. width:18px;
  13554. height:18px;
  13555. display:flex;
  13556. }
  13557. #u8569 .text {
  13558. position:absolute;
  13559. align-self:center;
  13560. padding:2px 2px 2px 2px;
  13561. box-sizing:border-box;
  13562. width:100%;
  13563. }
  13564. #u8569_text {
  13565. border-width:0px;
  13566. word-wrap:break-word;
  13567. text-transform:none;
  13568. visibility:hidden;
  13569. }
  13570. #u8570_img {
  13571. border-width:0px;
  13572. position:absolute;
  13573. left:0px;
  13574. top:0px;
  13575. width:2px;
  13576. height:15px;
  13577. }
  13578. #u8570 {
  13579. border-width:0px;
  13580. position:absolute;
  13581. left:3177px;
  13582. top:68px;
  13583. width:1px;
  13584. height:14px;
  13585. display:flex;
  13586. }
  13587. #u8570 .text {
  13588. position:absolute;
  13589. align-self:center;
  13590. padding:2px 2px 2px 2px;
  13591. box-sizing:border-box;
  13592. width:100%;
  13593. }
  13594. #u8570_text {
  13595. border-width:0px;
  13596. word-wrap:break-word;
  13597. text-transform:none;
  13598. visibility:hidden;
  13599. }