styles.css 118 KB

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