styles.css 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483
  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. #u16773 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u16774_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u16774 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u16774 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u16774_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u16775_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u16775 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u16775 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u16775_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u16776_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u16776 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u16776 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u16776_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u16777 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u16778 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u16778 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u16778_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u16778_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u16779_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u16779 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u16779 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u16779_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u16780_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u16780 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u16780 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u16780_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u16781 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u16782_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u16782 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u16782 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u16782_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u16783 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u16783 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u16783_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u16783_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u16784 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u16785_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition:none;
  371. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u16785 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u16785 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u16785_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u16786 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u16786 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u16786_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u16786_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u16787 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u16788_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u16788 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u16788 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u16788_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u16789 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u16789 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u16789_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u16789_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u16790 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u16791_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u16791 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u16791 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u16791_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u16792 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u16792 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u16792_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u16792_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u16793 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u16794_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u16794 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u16794 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u16794_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u16795 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u16795 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u16795_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u16795_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u16796 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u16797_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u16797 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u16797 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u16797_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u16798 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u16798 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u16798_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u16798_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u16799 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u16800_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u16800 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u16800 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u16800_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u16801 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u16801 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u16801_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u16801_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u16802 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u16803_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u16803 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u16803 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u16803_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u16804 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u16804 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u16804_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u16804_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u16805 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u16806_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u16806 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u16806 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u16806_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u16807 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u16807 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u16807_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u16807_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u16808 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u16809_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u16809 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u16809 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u16809_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u16810 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u16810 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u16810_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u16810_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u16811 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u16812_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u16812 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u16812 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u16812_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u16813 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u16813 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u16813_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u16813_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u16814 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u16815_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:"ArialMT", "Arial", sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u16815_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:"ArialMT", "Arial", sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u16815_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u16815 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u16815 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u16815_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u16815.disabled {
  1294. }
  1295. .u16815_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u16816 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u16816 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u16816_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u16816_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u16817_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u16817 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u16817 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u16817_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u16818 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u16818 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u16818_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u16818_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u16819 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u16820_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u16820 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u16820 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u16820_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u16821 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u16821 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u16821_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u16821_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u16822 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u16822 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u16822_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u16822_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u16823 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u16823 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u16823_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u16823_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u16824 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u16824 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u16824_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u16824_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u16825 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u16826_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u16826 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u16826 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u16826_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u16827 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u16827 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u16827_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u16827_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u16828_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1259px;
  1673. height:1180px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u16828 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:330px;
  1684. top:50px;
  1685. width:1259px;
  1686. height:1180px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u16828 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u16828_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u16829 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:350px;
  1708. top:233px;
  1709. width:1221px;
  1710. height:316px;
  1711. }
  1712. #u16830 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:86px;
  1718. height:38px;
  1719. display:flex;
  1720. transition:none;
  1721. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:12px;
  1725. color:#FFFFFF;
  1726. }
  1727. #u16830 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u16830_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:86px;
  1740. height:38px;
  1741. }
  1742. #u16830_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u16831 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:86px;
  1751. top:0px;
  1752. width:86px;
  1753. height:38px;
  1754. display:flex;
  1755. transition:none;
  1756. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. color:#FFFFFF;
  1761. }
  1762. #u16831 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u16831_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:86px;
  1775. height:38px;
  1776. }
  1777. #u16831_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u16832 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:172px;
  1786. top:0px;
  1787. width:79px;
  1788. height:38px;
  1789. display:flex;
  1790. transition:none;
  1791. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:12px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u16832 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u16832_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:79px;
  1810. height:38px;
  1811. }
  1812. #u16832_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u16833 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:251px;
  1821. top:0px;
  1822. width:79px;
  1823. height:38px;
  1824. display:flex;
  1825. transition:none;
  1826. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#FFFFFF;
  1831. }
  1832. #u16833 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u16833_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:79px;
  1845. height:38px;
  1846. }
  1847. #u16833_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u16834 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:330px;
  1856. top:0px;
  1857. width:79px;
  1858. height:38px;
  1859. display:flex;
  1860. transition:none;
  1861. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u16834 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u16834_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:79px;
  1880. height:38px;
  1881. }
  1882. #u16834_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u16835 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:409px;
  1891. top:0px;
  1892. width:79px;
  1893. height:38px;
  1894. display:flex;
  1895. transition:none;
  1896. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:12px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u16835 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u16835_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:79px;
  1915. height:38px;
  1916. }
  1917. #u16835_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u16836 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:488px;
  1926. top:0px;
  1927. width:79px;
  1928. height:38px;
  1929. display:flex;
  1930. transition:none;
  1931. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#FFFFFF;
  1936. }
  1937. #u16836 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u16836_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:79px;
  1950. height:38px;
  1951. }
  1952. #u16836_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u16837 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:567px;
  1961. top:0px;
  1962. width:82px;
  1963. height:38px;
  1964. display:flex;
  1965. transition:none;
  1966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u16837 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u16837_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:82px;
  1985. height:38px;
  1986. }
  1987. #u16837_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u16838 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:649px;
  1996. top:0px;
  1997. width:76px;
  1998. height:38px;
  1999. display:flex;
  2000. transition:none;
  2001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u16838 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u16838_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:76px;
  2020. height:38px;
  2021. }
  2022. #u16838_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u16839 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:725px;
  2031. top:0px;
  2032. width:81px;
  2033. height:38px;
  2034. display:flex;
  2035. transition:none;
  2036. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u16839 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u16839_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:81px;
  2055. height:38px;
  2056. }
  2057. #u16839_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u16840 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:806px;
  2066. top:0px;
  2067. width:86px;
  2068. height:38px;
  2069. display:flex;
  2070. transition:none;
  2071. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. color:#FFFFFF;
  2076. }
  2077. #u16840 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u16840_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:86px;
  2090. height:38px;
  2091. }
  2092. #u16840_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u16841 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:892px;
  2101. top:0px;
  2102. width:95px;
  2103. height:38px;
  2104. display:flex;
  2105. transition:none;
  2106. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#FFFFFF;
  2111. }
  2112. #u16841 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u16841_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:95px;
  2125. height:38px;
  2126. }
  2127. #u16841_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. }
  2132. #u16842 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:987px;
  2136. top:0px;
  2137. width:79px;
  2138. height:38px;
  2139. display:flex;
  2140. transition:none;
  2141. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#FFFFFF;
  2146. }
  2147. #u16842 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u16842_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:79px;
  2160. height:38px;
  2161. }
  2162. #u16842_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u16843 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:1066px;
  2171. top:0px;
  2172. width:79px;
  2173. height:38px;
  2174. display:flex;
  2175. transition:none;
  2176. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:#FFFFFF;
  2181. }
  2182. #u16843 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u16843_img {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:79px;
  2195. height:38px;
  2196. }
  2197. #u16843_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. }
  2202. #u16844 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:1145px;
  2206. top:0px;
  2207. width:76px;
  2208. height:38px;
  2209. display:flex;
  2210. transition:none;
  2211. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:12px;
  2215. color:#FFFFFF;
  2216. }
  2217. #u16844 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u16844_img {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:76px;
  2230. height:38px;
  2231. }
  2232. #u16844_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. }
  2237. #u16845 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:38px;
  2242. width:86px;
  2243. height:44px;
  2244. display:flex;
  2245. transition:none;
  2246. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:12px;
  2250. color:#333333;
  2251. line-height:40px;
  2252. }
  2253. #u16845 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u16845_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:86px;
  2266. height:44px;
  2267. }
  2268. #u16845_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u16846 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:86px;
  2278. top:38px;
  2279. width:86px;
  2280. height:44px;
  2281. display:flex;
  2282. transition:none;
  2283. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:12px;
  2287. color:#333333;
  2288. line-height:40px;
  2289. }
  2290. #u16846 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u16846_img {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:86px;
  2303. height:44px;
  2304. }
  2305. #u16846_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. visibility:hidden;
  2310. }
  2311. #u16847 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:172px;
  2315. top:38px;
  2316. width:79px;
  2317. height:44px;
  2318. display:flex;
  2319. transition:none;
  2320. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:12px;
  2324. color:#333333;
  2325. line-height:40px;
  2326. }
  2327. #u16847 .text {
  2328. position:absolute;
  2329. align-self:center;
  2330. padding:2px 2px 2px 0px;
  2331. box-sizing:border-box;
  2332. width:100%;
  2333. }
  2334. #u16847_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:79px;
  2340. height:44px;
  2341. }
  2342. #u16847_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. }
  2347. #u16848 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:251px;
  2351. top:38px;
  2352. width:79px;
  2353. height:44px;
  2354. display:flex;
  2355. transition:none;
  2356. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:12px;
  2360. }
  2361. #u16848 .text {
  2362. position:absolute;
  2363. align-self:center;
  2364. padding:2px 2px 2px 0px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u16848_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:79px;
  2374. height:44px;
  2375. }
  2376. #u16848_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u16849 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:330px;
  2385. top:38px;
  2386. width:79px;
  2387. height:44px;
  2388. display:flex;
  2389. transition:none;
  2390. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:12px;
  2394. color:#606266;
  2395. }
  2396. #u16849 .text {
  2397. position:absolute;
  2398. align-self:center;
  2399. padding:2px 2px 2px 0px;
  2400. box-sizing:border-box;
  2401. width:100%;
  2402. }
  2403. #u16849_img {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:79px;
  2409. height:44px;
  2410. }
  2411. #u16849_text {
  2412. border-width:0px;
  2413. word-wrap:break-word;
  2414. text-transform:none;
  2415. }
  2416. #u16850 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:409px;
  2420. top:38px;
  2421. width:79px;
  2422. height:44px;
  2423. display:flex;
  2424. transition:none;
  2425. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. color:#333333;
  2430. }
  2431. #u16850 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 0px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u16850_img {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:79px;
  2444. height:44px;
  2445. }
  2446. #u16850_text {
  2447. border-width:0px;
  2448. word-wrap:break-word;
  2449. text-transform:none;
  2450. visibility:hidden;
  2451. }
  2452. #u16851 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:488px;
  2456. top:38px;
  2457. width:79px;
  2458. height:44px;
  2459. display:flex;
  2460. transition:none;
  2461. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:#333333;
  2466. }
  2467. #u16851 .text {
  2468. position:absolute;
  2469. align-self:center;
  2470. padding:2px 2px 2px 0px;
  2471. box-sizing:border-box;
  2472. width:100%;
  2473. }
  2474. #u16851_img {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:0px;
  2478. top:0px;
  2479. width:79px;
  2480. height:44px;
  2481. }
  2482. #u16851_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u16852 {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:567px;
  2492. top:38px;
  2493. width:82px;
  2494. height:44px;
  2495. display:flex;
  2496. transition:none;
  2497. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:12px;
  2501. color:#333333;
  2502. }
  2503. #u16852 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:2px 2px 2px 0px;
  2507. box-sizing:border-box;
  2508. width:100%;
  2509. }
  2510. #u16852_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:82px;
  2516. height:44px;
  2517. }
  2518. #u16852_text {
  2519. border-width:0px;
  2520. word-wrap:break-word;
  2521. text-transform:none;
  2522. visibility:hidden;
  2523. }
  2524. #u16853 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:649px;
  2528. top:38px;
  2529. width:76px;
  2530. height:44px;
  2531. display:flex;
  2532. transition:none;
  2533. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#333333;
  2538. }
  2539. #u16853 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u16853_img {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:0px;
  2550. top:0px;
  2551. width:76px;
  2552. height:44px;
  2553. }
  2554. #u16853_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. }
  2559. #u16854 {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:725px;
  2563. top:38px;
  2564. width:81px;
  2565. height:44px;
  2566. display:flex;
  2567. transition:none;
  2568. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:12px;
  2572. color:#333333;
  2573. }
  2574. #u16854 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u16854_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:81px;
  2587. height:44px;
  2588. }
  2589. #u16854_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. visibility:hidden;
  2594. }
  2595. #u16855 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:806px;
  2599. top:38px;
  2600. width:86px;
  2601. height:44px;
  2602. display:flex;
  2603. transition:none;
  2604. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:12px;
  2608. color:#333333;
  2609. }
  2610. #u16855 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u16855_img {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:86px;
  2623. height:44px;
  2624. }
  2625. #u16855_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. }
  2630. #u16856 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:892px;
  2634. top:38px;
  2635. width:95px;
  2636. height:44px;
  2637. display:flex;
  2638. transition:none;
  2639. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2640. font-weight:400;
  2641. font-style:normal;
  2642. font-size:12px;
  2643. color:#333333;
  2644. }
  2645. #u16856 .text {
  2646. position:absolute;
  2647. align-self:center;
  2648. padding:2px 2px 2px 0px;
  2649. box-sizing:border-box;
  2650. width:100%;
  2651. }
  2652. #u16856_img {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:95px;
  2658. height:44px;
  2659. }
  2660. #u16856_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. }
  2665. #u16857 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:987px;
  2669. top:38px;
  2670. width:79px;
  2671. height:44px;
  2672. display:flex;
  2673. transition:none;
  2674. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:12px;
  2678. color:#333333;
  2679. }
  2680. #u16857 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:2px 2px 2px 0px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u16857_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:79px;
  2693. height:44px;
  2694. }
  2695. #u16857_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u16858 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:1066px;
  2705. top:38px;
  2706. width:79px;
  2707. height:44px;
  2708. display:flex;
  2709. transition:none;
  2710. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:12px;
  2714. color:#333333;
  2715. }
  2716. #u16858 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 0px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u16858_img {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:79px;
  2729. height:44px;
  2730. }
  2731. #u16858_text {
  2732. border-width:0px;
  2733. word-wrap:break-word;
  2734. text-transform:none;
  2735. visibility:hidden;
  2736. }
  2737. #u16859 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:1145px;
  2741. top:38px;
  2742. width:76px;
  2743. height:44px;
  2744. display:flex;
  2745. transition:none;
  2746. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:12px;
  2750. color:#298FFF;
  2751. line-height:35px;
  2752. }
  2753. #u16859 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u16859_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:76px;
  2766. height:44px;
  2767. }
  2768. #u16859_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. }
  2773. #u16860 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:82px;
  2778. width:86px;
  2779. height:44px;
  2780. display:flex;
  2781. transition:none;
  2782. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. color:#333333;
  2787. line-height:40px;
  2788. }
  2789. #u16860 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 0px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u16860_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:86px;
  2802. height:44px;
  2803. }
  2804. #u16860_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u16861 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:86px;
  2814. top:82px;
  2815. width:86px;
  2816. height:44px;
  2817. display:flex;
  2818. transition:none;
  2819. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:12px;
  2823. color:#333333;
  2824. line-height:40px;
  2825. }
  2826. #u16861 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 0px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u16861_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:86px;
  2839. height:44px;
  2840. }
  2841. #u16861_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u16862 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:172px;
  2851. top:82px;
  2852. width:79px;
  2853. height:44px;
  2854. display:flex;
  2855. transition:none;
  2856. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:12px;
  2860. color:#333333;
  2861. line-height:40px;
  2862. }
  2863. #u16862 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u16862_img {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:79px;
  2876. height:44px;
  2877. }
  2878. #u16862_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. }
  2883. #u16863 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:251px;
  2887. top:82px;
  2888. width:79px;
  2889. height:44px;
  2890. display:flex;
  2891. transition:none;
  2892. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. }
  2897. #u16863 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u16863_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:79px;
  2910. height:44px;
  2911. }
  2912. #u16863_text {
  2913. border-width:0px;
  2914. word-wrap:break-word;
  2915. text-transform:none;
  2916. visibility:hidden;
  2917. }
  2918. #u16864 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:330px;
  2922. top:82px;
  2923. width:79px;
  2924. height:44px;
  2925. display:flex;
  2926. transition:none;
  2927. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. color:#606266;
  2932. }
  2933. #u16864 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u16864_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:79px;
  2946. height:44px;
  2947. }
  2948. #u16864_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. }
  2953. #u16865 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:409px;
  2957. top:82px;
  2958. width:79px;
  2959. height:44px;
  2960. display:flex;
  2961. transition:none;
  2962. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. color:#333333;
  2967. }
  2968. #u16865 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u16865_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:79px;
  2981. height:44px;
  2982. }
  2983. #u16865_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u16866 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:488px;
  2993. top:82px;
  2994. width:79px;
  2995. height:44px;
  2996. display:flex;
  2997. transition:none;
  2998. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:12px;
  3002. color:#333333;
  3003. }
  3004. #u16866 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 0px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u16866_img {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:79px;
  3017. height:44px;
  3018. }
  3019. #u16866_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. visibility:hidden;
  3024. }
  3025. #u16867 {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:567px;
  3029. top:82px;
  3030. width:82px;
  3031. height:44px;
  3032. display:flex;
  3033. transition:none;
  3034. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:12px;
  3038. color:#333333;
  3039. }
  3040. #u16867 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u16867_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:82px;
  3053. height:44px;
  3054. }
  3055. #u16867_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. visibility:hidden;
  3060. }
  3061. #u16868 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:649px;
  3065. top:82px;
  3066. width:76px;
  3067. height:44px;
  3068. display:flex;
  3069. transition:none;
  3070. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:12px;
  3074. color:#333333;
  3075. }
  3076. #u16868 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 0px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u16868_img {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:76px;
  3089. height:44px;
  3090. }
  3091. #u16868_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. }
  3096. #u16869 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:725px;
  3100. top:82px;
  3101. width:81px;
  3102. height:44px;
  3103. display:flex;
  3104. transition:none;
  3105. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. color:#333333;
  3110. }
  3111. #u16869 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 0px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u16869_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:81px;
  3124. height:44px;
  3125. }
  3126. #u16869_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u16870 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:806px;
  3136. top:82px;
  3137. width:86px;
  3138. height:44px;
  3139. display:flex;
  3140. transition:none;
  3141. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3142. font-weight:400;
  3143. font-style:normal;
  3144. font-size:12px;
  3145. color:#333333;
  3146. }
  3147. #u16870 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 0px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u16870_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:86px;
  3160. height:44px;
  3161. }
  3162. #u16870_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u16871 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:892px;
  3172. top:82px;
  3173. width:95px;
  3174. height:44px;
  3175. display:flex;
  3176. transition:none;
  3177. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. color:#333333;
  3182. }
  3183. #u16871 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u16871_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:95px;
  3196. height:44px;
  3197. }
  3198. #u16871_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. }
  3203. #u16872 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:987px;
  3207. top:82px;
  3208. width:79px;
  3209. height:44px;
  3210. display:flex;
  3211. transition:none;
  3212. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:12px;
  3216. color:#333333;
  3217. }
  3218. #u16872 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u16872_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:79px;
  3231. height:44px;
  3232. }
  3233. #u16872_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u16873 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:1066px;
  3243. top:82px;
  3244. width:79px;
  3245. height:44px;
  3246. display:flex;
  3247. transition:none;
  3248. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:12px;
  3252. color:#333333;
  3253. }
  3254. #u16873 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u16873_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:79px;
  3267. height:44px;
  3268. }
  3269. #u16873_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u16874 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:1145px;
  3279. top:82px;
  3280. width:76px;
  3281. height:44px;
  3282. display:flex;
  3283. transition:none;
  3284. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:12px;
  3288. color:#1890FF;
  3289. }
  3290. #u16874 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 0px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u16874_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:76px;
  3303. height:44px;
  3304. }
  3305. #u16874_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u16875 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:0px;
  3315. top:126px;
  3316. width:86px;
  3317. height:38px;
  3318. display:flex;
  3319. transition:none;
  3320. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:12px;
  3324. color:#333333;
  3325. line-height:40px;
  3326. }
  3327. #u16875 .text {
  3328. position:absolute;
  3329. align-self:center;
  3330. padding:2px 2px 2px 0px;
  3331. box-sizing:border-box;
  3332. width:100%;
  3333. }
  3334. #u16875_img {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:86px;
  3340. height:38px;
  3341. }
  3342. #u16875_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u16876 {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:86px;
  3352. top:126px;
  3353. width:86px;
  3354. height:38px;
  3355. display:flex;
  3356. transition:none;
  3357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:12px;
  3361. color:#333333;
  3362. line-height:40px;
  3363. }
  3364. #u16876 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 0px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u16876_img {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:86px;
  3377. height:38px;
  3378. }
  3379. #u16876_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u16877 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:172px;
  3389. top:126px;
  3390. width:79px;
  3391. height:38px;
  3392. display:flex;
  3393. transition:none;
  3394. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. color:#333333;
  3399. line-height:40px;
  3400. }
  3401. #u16877 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 0px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u16877_img {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:79px;
  3414. height:38px;
  3415. }
  3416. #u16877_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. visibility:hidden;
  3421. }
  3422. #u16878 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:251px;
  3426. top:126px;
  3427. width:79px;
  3428. height:38px;
  3429. display:flex;
  3430. transition:none;
  3431. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3432. font-weight:400;
  3433. font-style:normal;
  3434. font-size:12px;
  3435. color:#606266;
  3436. }
  3437. #u16878 .text {
  3438. position:absolute;
  3439. align-self:center;
  3440. padding:2px 2px 2px 0px;
  3441. box-sizing:border-box;
  3442. width:100%;
  3443. }
  3444. #u16878_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:79px;
  3450. height:38px;
  3451. }
  3452. #u16878_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u16879 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:330px;
  3462. top:126px;
  3463. width:79px;
  3464. height:38px;
  3465. display:flex;
  3466. transition:none;
  3467. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3468. font-weight:400;
  3469. font-style:normal;
  3470. font-size:12px;
  3471. color:#606266;
  3472. }
  3473. #u16879 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 2px 2px 0px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u16879_img {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:79px;
  3486. height:38px;
  3487. }
  3488. #u16879_text {
  3489. border-width:0px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. visibility:hidden;
  3493. }
  3494. #u16880 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:409px;
  3498. top:126px;
  3499. width:79px;
  3500. height:38px;
  3501. display:flex;
  3502. transition:none;
  3503. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. font-size:12px;
  3507. color:#606266;
  3508. }
  3509. #u16880 .text {
  3510. position:absolute;
  3511. align-self:center;
  3512. padding:2px 2px 2px 0px;
  3513. box-sizing:border-box;
  3514. width:100%;
  3515. }
  3516. #u16880_img {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:79px;
  3522. height:38px;
  3523. }
  3524. #u16880_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. visibility:hidden;
  3529. }
  3530. #u16881 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:488px;
  3534. top:126px;
  3535. width:79px;
  3536. height:38px;
  3537. display:flex;
  3538. transition:none;
  3539. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#606266;
  3544. }
  3545. #u16881 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u16881_img {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:79px;
  3558. height:38px;
  3559. }
  3560. #u16881_text {
  3561. border-width:0px;
  3562. word-wrap:break-word;
  3563. text-transform:none;
  3564. visibility:hidden;
  3565. }
  3566. #u16882 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:567px;
  3570. top:126px;
  3571. width:82px;
  3572. height:38px;
  3573. display:flex;
  3574. transition:none;
  3575. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:12px;
  3579. color:#606266;
  3580. }
  3581. #u16882 .text {
  3582. position:absolute;
  3583. align-self:center;
  3584. padding:2px 2px 2px 0px;
  3585. box-sizing:border-box;
  3586. width:100%;
  3587. }
  3588. #u16882_img {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:82px;
  3594. height:38px;
  3595. }
  3596. #u16882_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u16883 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:649px;
  3606. top:126px;
  3607. width:76px;
  3608. height:38px;
  3609. display:flex;
  3610. transition:none;
  3611. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:12px;
  3615. color:#333333;
  3616. }
  3617. #u16883 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 0px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u16883_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:76px;
  3630. height:38px;
  3631. }
  3632. #u16883_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. }
  3637. #u16884 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:725px;
  3641. top:126px;
  3642. width:81px;
  3643. height:38px;
  3644. display:flex;
  3645. transition:none;
  3646. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:12px;
  3650. color:#333333;
  3651. }
  3652. #u16884 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u16884_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:81px;
  3665. height:38px;
  3666. }
  3667. #u16884_text {
  3668. border-width:0px;
  3669. word-wrap:break-word;
  3670. text-transform:none;
  3671. visibility:hidden;
  3672. }
  3673. #u16885 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:806px;
  3677. top:126px;
  3678. width:86px;
  3679. height:38px;
  3680. display:flex;
  3681. transition:none;
  3682. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:12px;
  3686. color:#333333;
  3687. }
  3688. #u16885 .text {
  3689. position:absolute;
  3690. align-self:center;
  3691. padding:2px 2px 2px 0px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u16885_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:86px;
  3701. height:38px;
  3702. }
  3703. #u16885_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u16886 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:892px;
  3713. top:126px;
  3714. width:95px;
  3715. height:38px;
  3716. display:flex;
  3717. transition:none;
  3718. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:12px;
  3722. color:#333333;
  3723. }
  3724. #u16886 .text {
  3725. position:absolute;
  3726. align-self:center;
  3727. padding:2px 2px 2px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u16886_img {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:95px;
  3737. height:38px;
  3738. }
  3739. #u16886_text {
  3740. border-width:0px;
  3741. word-wrap:break-word;
  3742. text-transform:none;
  3743. }
  3744. #u16887 {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:987px;
  3748. top:126px;
  3749. width:79px;
  3750. height:38px;
  3751. display:flex;
  3752. transition:none;
  3753. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3754. font-weight:400;
  3755. font-style:normal;
  3756. font-size:12px;
  3757. color:#606266;
  3758. }
  3759. #u16887 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 0px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u16887_img {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:79px;
  3772. height:38px;
  3773. }
  3774. #u16887_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u16888 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:1066px;
  3784. top:126px;
  3785. width:79px;
  3786. height:38px;
  3787. display:flex;
  3788. transition:none;
  3789. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:#606266;
  3794. }
  3795. #u16888 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u16888_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:79px;
  3808. height:38px;
  3809. }
  3810. #u16888_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u16889 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:1145px;
  3820. top:126px;
  3821. width:76px;
  3822. height:38px;
  3823. display:flex;
  3824. transition:none;
  3825. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:12px;
  3829. color:#1890FF;
  3830. }
  3831. #u16889 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 2px 2px 0px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u16889_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:76px;
  3844. height:38px;
  3845. }
  3846. #u16889_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u16890 {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:164px;
  3857. width:86px;
  3858. height:38px;
  3859. display:flex;
  3860. transition:none;
  3861. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:12px;
  3865. color:#606266;
  3866. }
  3867. #u16890 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:2px 2px 2px 0px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u16890_img {
  3875. border-width:0px;
  3876. position:absolute;
  3877. left:0px;
  3878. top:0px;
  3879. width:86px;
  3880. height:38px;
  3881. }
  3882. #u16890_text {
  3883. border-width:0px;
  3884. word-wrap:break-word;
  3885. text-transform:none;
  3886. visibility:hidden;
  3887. }
  3888. #u16891 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:86px;
  3892. top:164px;
  3893. width:86px;
  3894. height:38px;
  3895. display:flex;
  3896. transition:none;
  3897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3898. font-weight:400;
  3899. font-style:normal;
  3900. font-size:12px;
  3901. color:#606266;
  3902. }
  3903. #u16891 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 0px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u16891_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:86px;
  3916. height:38px;
  3917. }
  3918. #u16891_text {
  3919. border-width:0px;
  3920. word-wrap:break-word;
  3921. text-transform:none;
  3922. visibility:hidden;
  3923. }
  3924. #u16892 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:172px;
  3928. top:164px;
  3929. width:79px;
  3930. height:38px;
  3931. display:flex;
  3932. transition:none;
  3933. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. color:#606266;
  3938. }
  3939. #u16892 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u16892_img {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:79px;
  3952. height:38px;
  3953. }
  3954. #u16892_text {
  3955. border-width:0px;
  3956. word-wrap:break-word;
  3957. text-transform:none;
  3958. visibility:hidden;
  3959. }
  3960. #u16893 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:251px;
  3964. top:164px;
  3965. width:79px;
  3966. height:38px;
  3967. display:flex;
  3968. transition:none;
  3969. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:12px;
  3973. color:#606266;
  3974. }
  3975. #u16893 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 0px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u16893_img {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:79px;
  3988. height:38px;
  3989. }
  3990. #u16893_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u16894 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:330px;
  4000. top:164px;
  4001. width:79px;
  4002. height:38px;
  4003. display:flex;
  4004. transition:none;
  4005. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4006. font-weight:400;
  4007. font-style:normal;
  4008. font-size:12px;
  4009. color:#606266;
  4010. }
  4011. #u16894 .text {
  4012. position:absolute;
  4013. align-self:center;
  4014. padding:2px 2px 2px 0px;
  4015. box-sizing:border-box;
  4016. width:100%;
  4017. }
  4018. #u16894_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:79px;
  4024. height:38px;
  4025. }
  4026. #u16894_text {
  4027. border-width:0px;
  4028. word-wrap:break-word;
  4029. text-transform:none;
  4030. visibility:hidden;
  4031. }
  4032. #u16895 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:409px;
  4036. top:164px;
  4037. width:79px;
  4038. height:38px;
  4039. display:flex;
  4040. transition:none;
  4041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:12px;
  4045. color:#606266;
  4046. }
  4047. #u16895 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:2px 2px 2px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u16895_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:79px;
  4060. height:38px;
  4061. }
  4062. #u16895_text {
  4063. border-width:0px;
  4064. word-wrap:break-word;
  4065. text-transform:none;
  4066. visibility:hidden;
  4067. }
  4068. #u16896 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:488px;
  4072. top:164px;
  4073. width:79px;
  4074. height:38px;
  4075. display:flex;
  4076. transition:none;
  4077. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:12px;
  4081. color:#606266;
  4082. }
  4083. #u16896 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u16896_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:79px;
  4096. height:38px;
  4097. }
  4098. #u16896_text {
  4099. border-width:0px;
  4100. word-wrap:break-word;
  4101. text-transform:none;
  4102. visibility:hidden;
  4103. }
  4104. #u16897 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:567px;
  4108. top:164px;
  4109. width:82px;
  4110. height:38px;
  4111. display:flex;
  4112. transition:none;
  4113. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:12px;
  4117. color:#606266;
  4118. }
  4119. #u16897 .text {
  4120. position:absolute;
  4121. align-self:center;
  4122. padding:2px 2px 2px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u16897_img {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:82px;
  4132. height:38px;
  4133. }
  4134. #u16897_text {
  4135. border-width:0px;
  4136. word-wrap:break-word;
  4137. text-transform:none;
  4138. visibility:hidden;
  4139. }
  4140. #u16898 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:649px;
  4144. top:164px;
  4145. width:76px;
  4146. height:38px;
  4147. display:flex;
  4148. transition:none;
  4149. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4150. font-weight:400;
  4151. font-style:normal;
  4152. font-size:12px;
  4153. color:#606266;
  4154. }
  4155. #u16898 .text {
  4156. position:absolute;
  4157. align-self:center;
  4158. padding:2px 2px 2px 0px;
  4159. box-sizing:border-box;
  4160. width:100%;
  4161. }
  4162. #u16898_img {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:76px;
  4168. height:38px;
  4169. }
  4170. #u16898_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u16899 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:725px;
  4180. top:164px;
  4181. width:81px;
  4182. height:38px;
  4183. display:flex;
  4184. transition:none;
  4185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:12px;
  4189. color:#606266;
  4190. }
  4191. #u16899 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 0px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u16899_img {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:81px;
  4204. height:38px;
  4205. }
  4206. #u16899_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. visibility:hidden;
  4211. }
  4212. #u16900 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:806px;
  4216. top:164px;
  4217. width:86px;
  4218. height:38px;
  4219. display:flex;
  4220. transition:none;
  4221. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:12px;
  4225. color:#606266;
  4226. }
  4227. #u16900 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 0px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u16900_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:86px;
  4240. height:38px;
  4241. }
  4242. #u16900_text {
  4243. border-width:0px;
  4244. word-wrap:break-word;
  4245. text-transform:none;
  4246. visibility:hidden;
  4247. }
  4248. #u16901 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:892px;
  4252. top:164px;
  4253. width:95px;
  4254. height:38px;
  4255. display:flex;
  4256. transition:none;
  4257. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#333333;
  4262. }
  4263. #u16901 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u16901_img {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:95px;
  4276. height:38px;
  4277. }
  4278. #u16901_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. }
  4283. #u16902 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:987px;
  4287. top:164px;
  4288. width:79px;
  4289. height:38px;
  4290. display:flex;
  4291. transition:none;
  4292. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#606266;
  4297. }
  4298. #u16902 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u16902_img {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:79px;
  4311. height:38px;
  4312. }
  4313. #u16902_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u16903 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:1066px;
  4323. top:164px;
  4324. width:79px;
  4325. height:38px;
  4326. display:flex;
  4327. transition:none;
  4328. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4329. font-weight:400;
  4330. font-style:normal;
  4331. font-size:12px;
  4332. color:#606266;
  4333. }
  4334. #u16903 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 0px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u16903_img {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:79px;
  4347. height:38px;
  4348. }
  4349. #u16903_text {
  4350. border-width:0px;
  4351. word-wrap:break-word;
  4352. text-transform:none;
  4353. visibility:hidden;
  4354. }
  4355. #u16904 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:1145px;
  4359. top:164px;
  4360. width:76px;
  4361. height:38px;
  4362. display:flex;
  4363. transition:none;
  4364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:12px;
  4368. color:#606266;
  4369. }
  4370. #u16904 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:2px 2px 2px 0px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u16904_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:76px;
  4383. height:38px;
  4384. }
  4385. #u16904_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u16905 {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:202px;
  4396. width:86px;
  4397. height:38px;
  4398. display:flex;
  4399. transition:none;
  4400. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:12px;
  4404. color:#606266;
  4405. }
  4406. #u16905 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:2px 2px 2px 0px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u16905_img {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:86px;
  4419. height:38px;
  4420. }
  4421. #u16905_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u16906 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:86px;
  4431. top:202px;
  4432. width:86px;
  4433. height:38px;
  4434. display:flex;
  4435. transition:none;
  4436. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:12px;
  4440. color:#606266;
  4441. }
  4442. #u16906 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 0px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u16906_img {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:86px;
  4455. height:38px;
  4456. }
  4457. #u16906_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u16907 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:172px;
  4467. top:202px;
  4468. width:79px;
  4469. height:38px;
  4470. display:flex;
  4471. transition:none;
  4472. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:12px;
  4476. color:#606266;
  4477. }
  4478. #u16907 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 0px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u16907_img {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:79px;
  4491. height:38px;
  4492. }
  4493. #u16907_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u16908 {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:251px;
  4503. top:202px;
  4504. width:79px;
  4505. height:38px;
  4506. display:flex;
  4507. transition:none;
  4508. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4509. font-weight:400;
  4510. font-style:normal;
  4511. font-size:12px;
  4512. color:#606266;
  4513. }
  4514. #u16908 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:2px 2px 2px 0px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u16908_img {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:79px;
  4527. height:38px;
  4528. }
  4529. #u16908_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u16909 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:330px;
  4539. top:202px;
  4540. width:79px;
  4541. height:38px;
  4542. display:flex;
  4543. transition:none;
  4544. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. color:#606266;
  4549. }
  4550. #u16909 .text {
  4551. position:absolute;
  4552. align-self:center;
  4553. padding:2px 2px 2px 0px;
  4554. box-sizing:border-box;
  4555. width:100%;
  4556. }
  4557. #u16909_img {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:79px;
  4563. height:38px;
  4564. }
  4565. #u16909_text {
  4566. border-width:0px;
  4567. word-wrap:break-word;
  4568. text-transform:none;
  4569. visibility:hidden;
  4570. }
  4571. #u16910 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:409px;
  4575. top:202px;
  4576. width:79px;
  4577. height:38px;
  4578. display:flex;
  4579. transition:none;
  4580. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:12px;
  4584. color:#606266;
  4585. }
  4586. #u16910 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 0px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u16910_img {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:0px;
  4597. top:0px;
  4598. width:79px;
  4599. height:38px;
  4600. }
  4601. #u16910_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u16911 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:488px;
  4611. top:202px;
  4612. width:79px;
  4613. height:38px;
  4614. display:flex;
  4615. transition:none;
  4616. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:12px;
  4620. color:#606266;
  4621. }
  4622. #u16911 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 0px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u16911_img {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:79px;
  4635. height:38px;
  4636. }
  4637. #u16911_text {
  4638. border-width:0px;
  4639. word-wrap:break-word;
  4640. text-transform:none;
  4641. visibility:hidden;
  4642. }
  4643. #u16912 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:567px;
  4647. top:202px;
  4648. width:82px;
  4649. height:38px;
  4650. display:flex;
  4651. transition:none;
  4652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:12px;
  4656. color:#606266;
  4657. }
  4658. #u16912 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 0px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u16912_img {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:82px;
  4671. height:38px;
  4672. }
  4673. #u16912_text {
  4674. border-width:0px;
  4675. word-wrap:break-word;
  4676. text-transform:none;
  4677. visibility:hidden;
  4678. }
  4679. #u16913 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:649px;
  4683. top:202px;
  4684. width:76px;
  4685. height:38px;
  4686. display:flex;
  4687. transition:none;
  4688. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:12px;
  4692. color:#606266;
  4693. }
  4694. #u16913 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 0px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u16913_img {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:76px;
  4707. height:38px;
  4708. }
  4709. #u16913_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u16914 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:725px;
  4719. top:202px;
  4720. width:81px;
  4721. height:38px;
  4722. display:flex;
  4723. transition:none;
  4724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:12px;
  4728. color:#606266;
  4729. }
  4730. #u16914 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 0px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u16914_img {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:81px;
  4743. height:38px;
  4744. }
  4745. #u16914_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. visibility:hidden;
  4750. }
  4751. #u16915 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:806px;
  4755. top:202px;
  4756. width:86px;
  4757. height:38px;
  4758. display:flex;
  4759. transition:none;
  4760. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. font-size:12px;
  4764. color:#606266;
  4765. }
  4766. #u16915 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 2px 2px 0px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u16915_img {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:86px;
  4779. height:38px;
  4780. }
  4781. #u16915_text {
  4782. border-width:0px;
  4783. word-wrap:break-word;
  4784. text-transform:none;
  4785. visibility:hidden;
  4786. }
  4787. #u16916 {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:892px;
  4791. top:202px;
  4792. width:95px;
  4793. height:38px;
  4794. display:flex;
  4795. transition:none;
  4796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:12px;
  4800. color:#606266;
  4801. }
  4802. #u16916 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 0px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u16916_img {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:95px;
  4815. height:38px;
  4816. }
  4817. #u16916_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u16917 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:987px;
  4827. top:202px;
  4828. width:79px;
  4829. height:38px;
  4830. display:flex;
  4831. transition:none;
  4832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:12px;
  4836. color:#606266;
  4837. }
  4838. #u16917 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:2px 2px 2px 0px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u16917_img {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:79px;
  4851. height:38px;
  4852. }
  4853. #u16917_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u16918 {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:1066px;
  4863. top:202px;
  4864. width:79px;
  4865. height:38px;
  4866. display:flex;
  4867. transition:none;
  4868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:12px;
  4872. color:#606266;
  4873. }
  4874. #u16918 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 0px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u16918_img {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:79px;
  4887. height:38px;
  4888. }
  4889. #u16918_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. visibility:hidden;
  4894. }
  4895. #u16919 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:1145px;
  4899. top:202px;
  4900. width:76px;
  4901. height:38px;
  4902. display:flex;
  4903. transition:none;
  4904. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4905. font-weight:400;
  4906. font-style:normal;
  4907. font-size:12px;
  4908. color:#606266;
  4909. }
  4910. #u16919 .text {
  4911. position:absolute;
  4912. align-self:center;
  4913. padding:2px 2px 2px 0px;
  4914. box-sizing:border-box;
  4915. width:100%;
  4916. }
  4917. #u16919_img {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:76px;
  4923. height:38px;
  4924. }
  4925. #u16919_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u16920 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:240px;
  4936. width:86px;
  4937. height:38px;
  4938. display:flex;
  4939. transition:none;
  4940. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4941. font-weight:400;
  4942. font-style:normal;
  4943. font-size:12px;
  4944. color:#606266;
  4945. }
  4946. #u16920 .text {
  4947. position:absolute;
  4948. align-self:center;
  4949. padding:2px 2px 2px 0px;
  4950. box-sizing:border-box;
  4951. width:100%;
  4952. }
  4953. #u16920_img {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:0px;
  4957. top:0px;
  4958. width:86px;
  4959. height:38px;
  4960. }
  4961. #u16920_text {
  4962. border-width:0px;
  4963. word-wrap:break-word;
  4964. text-transform:none;
  4965. visibility:hidden;
  4966. }
  4967. #u16921 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:86px;
  4971. top:240px;
  4972. width:86px;
  4973. height:38px;
  4974. display:flex;
  4975. transition:none;
  4976. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. color:#606266;
  4981. }
  4982. #u16921 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 0px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u16921_img {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:0px;
  4993. top:0px;
  4994. width:86px;
  4995. height:38px;
  4996. }
  4997. #u16921_text {
  4998. border-width:0px;
  4999. word-wrap:break-word;
  5000. text-transform:none;
  5001. visibility:hidden;
  5002. }
  5003. #u16922 {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:172px;
  5007. top:240px;
  5008. width:79px;
  5009. height:38px;
  5010. display:flex;
  5011. transition:none;
  5012. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5013. font-weight:400;
  5014. font-style:normal;
  5015. font-size:12px;
  5016. color:#606266;
  5017. }
  5018. #u16922 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 0px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u16922_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:79px;
  5031. height:38px;
  5032. }
  5033. #u16922_text {
  5034. border-width:0px;
  5035. word-wrap:break-word;
  5036. text-transform:none;
  5037. visibility:hidden;
  5038. }
  5039. #u16923 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:251px;
  5043. top:240px;
  5044. width:79px;
  5045. height:38px;
  5046. display:flex;
  5047. transition:none;
  5048. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. color:#606266;
  5053. }
  5054. #u16923 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 2px 2px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u16923_img {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:79px;
  5067. height:38px;
  5068. }
  5069. #u16923_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u16924 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:330px;
  5079. top:240px;
  5080. width:79px;
  5081. height:38px;
  5082. display:flex;
  5083. transition:none;
  5084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:12px;
  5088. color:#606266;
  5089. }
  5090. #u16924 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u16924_img {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:79px;
  5103. height:38px;
  5104. }
  5105. #u16924_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u16925 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:409px;
  5115. top:240px;
  5116. width:79px;
  5117. height:38px;
  5118. display:flex;
  5119. transition:none;
  5120. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#606266;
  5125. }
  5126. #u16925 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u16925_img {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:79px;
  5139. height:38px;
  5140. }
  5141. #u16925_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u16926 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:488px;
  5151. top:240px;
  5152. width:79px;
  5153. height:38px;
  5154. display:flex;
  5155. transition:none;
  5156. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:12px;
  5160. color:#606266;
  5161. }
  5162. #u16926 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 0px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u16926_img {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:79px;
  5175. height:38px;
  5176. }
  5177. #u16926_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u16927 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:567px;
  5187. top:240px;
  5188. width:82px;
  5189. height:38px;
  5190. display:flex;
  5191. transition:none;
  5192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5193. font-weight:400;
  5194. font-style:normal;
  5195. font-size:12px;
  5196. color:#606266;
  5197. }
  5198. #u16927 .text {
  5199. position:absolute;
  5200. align-self:center;
  5201. padding:2px 2px 2px 0px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u16927_img {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:82px;
  5211. height:38px;
  5212. }
  5213. #u16927_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. visibility:hidden;
  5218. }
  5219. #u16928 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:649px;
  5223. top:240px;
  5224. width:76px;
  5225. height:38px;
  5226. display:flex;
  5227. transition:none;
  5228. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:12px;
  5232. color:#606266;
  5233. }
  5234. #u16928 .text {
  5235. position:absolute;
  5236. align-self:center;
  5237. padding:2px 2px 2px 0px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u16928_img {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:76px;
  5247. height:38px;
  5248. }
  5249. #u16928_text {
  5250. border-width:0px;
  5251. word-wrap:break-word;
  5252. text-transform:none;
  5253. visibility:hidden;
  5254. }
  5255. #u16929 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:725px;
  5259. top:240px;
  5260. width:81px;
  5261. height:38px;
  5262. display:flex;
  5263. transition:none;
  5264. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:12px;
  5268. color:#606266;
  5269. }
  5270. #u16929 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 0px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u16929_img {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:81px;
  5283. height:38px;
  5284. }
  5285. #u16929_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u16930 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:806px;
  5295. top:240px;
  5296. width:86px;
  5297. height:38px;
  5298. display:flex;
  5299. transition:none;
  5300. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:12px;
  5304. color:#606266;
  5305. }
  5306. #u16930 .text {
  5307. position:absolute;
  5308. align-self:center;
  5309. padding:2px 2px 2px 0px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u16930_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:86px;
  5319. height:38px;
  5320. }
  5321. #u16930_text {
  5322. border-width:0px;
  5323. word-wrap:break-word;
  5324. text-transform:none;
  5325. visibility:hidden;
  5326. }
  5327. #u16931 {
  5328. border-width:0px;
  5329. position:absolute;
  5330. left:892px;
  5331. top:240px;
  5332. width:95px;
  5333. height:38px;
  5334. display:flex;
  5335. transition:none;
  5336. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:12px;
  5340. color:#606266;
  5341. }
  5342. #u16931 .text {
  5343. position:absolute;
  5344. align-self:center;
  5345. padding:2px 2px 2px 0px;
  5346. box-sizing:border-box;
  5347. width:100%;
  5348. }
  5349. #u16931_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:95px;
  5355. height:38px;
  5356. }
  5357. #u16931_text {
  5358. border-width:0px;
  5359. word-wrap:break-word;
  5360. text-transform:none;
  5361. visibility:hidden;
  5362. }
  5363. #u16932 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:987px;
  5367. top:240px;
  5368. width:79px;
  5369. height:38px;
  5370. display:flex;
  5371. transition:none;
  5372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. color:#606266;
  5377. }
  5378. #u16932 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u16932_img {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:79px;
  5391. height:38px;
  5392. }
  5393. #u16932_text {
  5394. border-width:0px;
  5395. word-wrap:break-word;
  5396. text-transform:none;
  5397. visibility:hidden;
  5398. }
  5399. #u16933 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:1066px;
  5403. top:240px;
  5404. width:79px;
  5405. height:38px;
  5406. display:flex;
  5407. transition:none;
  5408. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:12px;
  5412. color:#606266;
  5413. }
  5414. #u16933 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 0px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u16933_img {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:79px;
  5427. height:38px;
  5428. }
  5429. #u16933_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. visibility:hidden;
  5434. }
  5435. #u16934 {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:1145px;
  5439. top:240px;
  5440. width:76px;
  5441. height:38px;
  5442. display:flex;
  5443. transition:none;
  5444. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. color:#606266;
  5449. }
  5450. #u16934 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u16934_img {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:76px;
  5463. height:38px;
  5464. }
  5465. #u16934_text {
  5466. border-width:0px;
  5467. word-wrap:break-word;
  5468. text-transform:none;
  5469. visibility:hidden;
  5470. }
  5471. #u16935 {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:278px;
  5476. width:86px;
  5477. height:38px;
  5478. display:flex;
  5479. transition:none;
  5480. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. font-size:12px;
  5484. color:#606266;
  5485. }
  5486. #u16935 .text {
  5487. position:absolute;
  5488. align-self:center;
  5489. padding:2px 2px 2px 0px;
  5490. box-sizing:border-box;
  5491. width:100%;
  5492. }
  5493. #u16935_img {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:86px;
  5499. height:38px;
  5500. }
  5501. #u16935_text {
  5502. border-width:0px;
  5503. word-wrap:break-word;
  5504. text-transform:none;
  5505. visibility:hidden;
  5506. }
  5507. #u16936 {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:86px;
  5511. top:278px;
  5512. width:86px;
  5513. height:38px;
  5514. display:flex;
  5515. transition:none;
  5516. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:12px;
  5520. color:#606266;
  5521. }
  5522. #u16936 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:2px 2px 2px 0px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u16936_img {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:86px;
  5535. height:38px;
  5536. }
  5537. #u16936_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. visibility:hidden;
  5542. }
  5543. #u16937 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:172px;
  5547. top:278px;
  5548. width:79px;
  5549. height:38px;
  5550. display:flex;
  5551. transition:none;
  5552. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:12px;
  5556. color:#606266;
  5557. }
  5558. #u16937 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 0px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u16937_img {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:79px;
  5571. height:38px;
  5572. }
  5573. #u16937_text {
  5574. border-width:0px;
  5575. word-wrap:break-word;
  5576. text-transform:none;
  5577. visibility:hidden;
  5578. }
  5579. #u16938 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:251px;
  5583. top:278px;
  5584. width:79px;
  5585. height:38px;
  5586. display:flex;
  5587. transition:none;
  5588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:12px;
  5592. color:#606266;
  5593. }
  5594. #u16938 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 0px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u16938_img {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:79px;
  5607. height:38px;
  5608. }
  5609. #u16938_text {
  5610. border-width:0px;
  5611. word-wrap:break-word;
  5612. text-transform:none;
  5613. visibility:hidden;
  5614. }
  5615. #u16939 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:330px;
  5619. top:278px;
  5620. width:79px;
  5621. height:38px;
  5622. display:flex;
  5623. transition:none;
  5624. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5625. font-weight:400;
  5626. font-style:normal;
  5627. font-size:12px;
  5628. color:#606266;
  5629. }
  5630. #u16939 .text {
  5631. position:absolute;
  5632. align-self:center;
  5633. padding:2px 2px 2px 0px;
  5634. box-sizing:border-box;
  5635. width:100%;
  5636. }
  5637. #u16939_img {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:79px;
  5643. height:38px;
  5644. }
  5645. #u16939_text {
  5646. border-width:0px;
  5647. word-wrap:break-word;
  5648. text-transform:none;
  5649. visibility:hidden;
  5650. }
  5651. #u16940 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:409px;
  5655. top:278px;
  5656. width:79px;
  5657. height:38px;
  5658. display:flex;
  5659. transition:none;
  5660. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5661. font-weight:400;
  5662. font-style:normal;
  5663. font-size:12px;
  5664. color:#606266;
  5665. }
  5666. #u16940 .text {
  5667. position:absolute;
  5668. align-self:center;
  5669. padding:2px 2px 2px 0px;
  5670. box-sizing:border-box;
  5671. width:100%;
  5672. }
  5673. #u16940_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:79px;
  5679. height:38px;
  5680. }
  5681. #u16940_text {
  5682. border-width:0px;
  5683. word-wrap:break-word;
  5684. text-transform:none;
  5685. visibility:hidden;
  5686. }
  5687. #u16941 {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:488px;
  5691. top:278px;
  5692. width:79px;
  5693. height:38px;
  5694. display:flex;
  5695. transition:none;
  5696. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5697. font-weight:400;
  5698. font-style:normal;
  5699. font-size:12px;
  5700. color:#606266;
  5701. }
  5702. #u16941 .text {
  5703. position:absolute;
  5704. align-self:center;
  5705. padding:2px 2px 2px 0px;
  5706. box-sizing:border-box;
  5707. width:100%;
  5708. }
  5709. #u16941_img {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:0px;
  5714. width:79px;
  5715. height:38px;
  5716. }
  5717. #u16941_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u16942 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:567px;
  5727. top:278px;
  5728. width:82px;
  5729. height:38px;
  5730. display:flex;
  5731. transition:none;
  5732. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5733. font-weight:400;
  5734. font-style:normal;
  5735. font-size:12px;
  5736. color:#606266;
  5737. }
  5738. #u16942 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 0px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u16942_img {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:82px;
  5751. height:38px;
  5752. }
  5753. #u16942_text {
  5754. border-width:0px;
  5755. word-wrap:break-word;
  5756. text-transform:none;
  5757. visibility:hidden;
  5758. }
  5759. #u16943 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:649px;
  5763. top:278px;
  5764. width:76px;
  5765. height:38px;
  5766. display:flex;
  5767. transition:none;
  5768. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:12px;
  5772. color:#606266;
  5773. }
  5774. #u16943 .text {
  5775. position:absolute;
  5776. align-self:center;
  5777. padding:2px 2px 2px 0px;
  5778. box-sizing:border-box;
  5779. width:100%;
  5780. }
  5781. #u16943_img {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:76px;
  5787. height:38px;
  5788. }
  5789. #u16943_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u16944 {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:725px;
  5799. top:278px;
  5800. width:81px;
  5801. height:38px;
  5802. display:flex;
  5803. transition:none;
  5804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5805. font-weight:400;
  5806. font-style:normal;
  5807. font-size:12px;
  5808. color:#606266;
  5809. }
  5810. #u16944 .text {
  5811. position:absolute;
  5812. align-self:center;
  5813. padding:2px 2px 2px 0px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u16944_img {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:81px;
  5823. height:38px;
  5824. }
  5825. #u16944_text {
  5826. border-width:0px;
  5827. word-wrap:break-word;
  5828. text-transform:none;
  5829. visibility:hidden;
  5830. }
  5831. #u16945 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:806px;
  5835. top:278px;
  5836. width:86px;
  5837. height:38px;
  5838. display:flex;
  5839. transition:none;
  5840. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:12px;
  5844. color:#606266;
  5845. }
  5846. #u16945 .text {
  5847. position:absolute;
  5848. align-self:center;
  5849. padding:2px 2px 2px 0px;
  5850. box-sizing:border-box;
  5851. width:100%;
  5852. }
  5853. #u16945_img {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:86px;
  5859. height:38px;
  5860. }
  5861. #u16945_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u16946 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:892px;
  5871. top:278px;
  5872. width:95px;
  5873. height:38px;
  5874. display:flex;
  5875. transition:none;
  5876. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:12px;
  5880. color:#606266;
  5881. }
  5882. #u16946 .text {
  5883. position:absolute;
  5884. align-self:center;
  5885. padding:2px 2px 2px 0px;
  5886. box-sizing:border-box;
  5887. width:100%;
  5888. }
  5889. #u16946_img {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:95px;
  5895. height:38px;
  5896. }
  5897. #u16946_text {
  5898. border-width:0px;
  5899. word-wrap:break-word;
  5900. text-transform:none;
  5901. visibility:hidden;
  5902. }
  5903. #u16947 {
  5904. border-width:0px;
  5905. position:absolute;
  5906. left:987px;
  5907. top:278px;
  5908. width:79px;
  5909. height:38px;
  5910. display:flex;
  5911. transition:none;
  5912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5913. font-weight:400;
  5914. font-style:normal;
  5915. font-size:12px;
  5916. color:#606266;
  5917. }
  5918. #u16947 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 0px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u16947_img {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:79px;
  5931. height:38px;
  5932. }
  5933. #u16947_text {
  5934. border-width:0px;
  5935. word-wrap:break-word;
  5936. text-transform:none;
  5937. visibility:hidden;
  5938. }
  5939. #u16948 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:1066px;
  5943. top:278px;
  5944. width:79px;
  5945. height:38px;
  5946. display:flex;
  5947. transition:none;
  5948. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5949. font-weight:400;
  5950. font-style:normal;
  5951. font-size:12px;
  5952. color:#606266;
  5953. }
  5954. #u16948 .text {
  5955. position:absolute;
  5956. align-self:center;
  5957. padding:2px 2px 2px 0px;
  5958. box-sizing:border-box;
  5959. width:100%;
  5960. }
  5961. #u16948_img {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:79px;
  5967. height:38px;
  5968. }
  5969. #u16948_text {
  5970. border-width:0px;
  5971. word-wrap:break-word;
  5972. text-transform:none;
  5973. visibility:hidden;
  5974. }
  5975. #u16949 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:1145px;
  5979. top:278px;
  5980. width:76px;
  5981. height:38px;
  5982. display:flex;
  5983. transition:none;
  5984. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:12px;
  5988. color:#606266;
  5989. }
  5990. #u16949 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 2px 2px 0px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u16949_img {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:0px;
  6001. top:0px;
  6002. width:76px;
  6003. height:38px;
  6004. }
  6005. #u16949_text {
  6006. border-width:0px;
  6007. word-wrap:break-word;
  6008. text-transform:none;
  6009. visibility:hidden;
  6010. }
  6011. #u16950 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:0px;
  6015. top:0px;
  6016. width:0px;
  6017. height:0px;
  6018. }
  6019. #u16951_div {
  6020. border-width:0px;
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:60px;
  6025. height:30px;
  6026. background:inherit;
  6027. background-color:rgba(24, 144, 255, 1);
  6028. border-radius:4px;
  6029. filter:drop-shadow(none);
  6030. transition:none;
  6031. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6032. font-weight:400;
  6033. font-style:normal;
  6034. font-size:14px;
  6035. color:#FFFFFF;
  6036. }
  6037. #u16951 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:950px;
  6041. top:183px;
  6042. width:60px;
  6043. height:30px;
  6044. display:flex;
  6045. transition:none;
  6046. transform-origin:50% 50%;
  6047. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:14px;
  6051. color:#FFFFFF;
  6052. }
  6053. #u16951 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 2px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u16951_text {
  6061. border-width:0px;
  6062. word-wrap:break-word;
  6063. text-transform:none;
  6064. }
  6065. #u16952_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:60px;
  6071. height:30px;
  6072. background:inherit;
  6073. background-color:rgba(255, 255, 255, 1);
  6074. box-sizing:border-box;
  6075. border-width:1px;
  6076. border-style:solid;
  6077. border-color:rgba(170, 170, 170, 1);
  6078. border-radius:4px;
  6079. filter:drop-shadow(none);
  6080. transition:none;
  6081. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. font-size:14px;
  6085. }
  6086. #u16952 {
  6087. border-width:0px;
  6088. position:absolute;
  6089. left:1020px;
  6090. top:183px;
  6091. width:60px;
  6092. height:30px;
  6093. display:flex;
  6094. transition:none;
  6095. transform-origin:50% 50%;
  6096. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:14px;
  6100. }
  6101. #u16952 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:2px 2px 2px 2px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u16952_text {
  6109. border-width:0px;
  6110. word-wrap:break-word;
  6111. text-transform:none;
  6112. }
  6113. #u16953 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:0px;
  6119. height:0px;
  6120. }
  6121. #u16954_div {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:0px;
  6125. top:0px;
  6126. width:140px;
  6127. height:30px;
  6128. background:inherit;
  6129. background-color:rgba(255, 255, 255, 1);
  6130. box-sizing:border-box;
  6131. border-width:1px;
  6132. border-style:solid;
  6133. border-color:rgba(215, 215, 215, 1);
  6134. border-radius:4px;
  6135. filter:drop-shadow(none);
  6136. transition:none;
  6137. font-size:14px;
  6138. }
  6139. #u16954 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:350px;
  6143. top:143px;
  6144. width:140px;
  6145. height:30px;
  6146. display:flex;
  6147. transition:none;
  6148. transform-origin:50% 50%;
  6149. font-size:14px;
  6150. }
  6151. #u16954 .text {
  6152. position:absolute;
  6153. align-self:center;
  6154. padding:2px 2px 2px 2px;
  6155. box-sizing:border-box;
  6156. width:100%;
  6157. }
  6158. #u16954_text {
  6159. border-width:0px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. visibility:hidden;
  6163. }
  6164. #u16955_input {
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:134px;
  6169. height:23px;
  6170. padding:2px 2px 2px 2px;
  6171. font-family:"ArialMT", "Arial", sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:14px;
  6175. letter-spacing:normal;
  6176. color:#AAAAAA;
  6177. vertical-align:none;
  6178. text-align:left;
  6179. text-transform:none;
  6180. background-color:transparent;
  6181. border-color:transparent;
  6182. }
  6183. #u16955_input.disabled {
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:134px;
  6188. height:23px;
  6189. padding:2px 2px 2px 2px;
  6190. font-family:"ArialMT", "Arial", sans-serif;
  6191. font-weight:400;
  6192. font-style:normal;
  6193. font-size:14px;
  6194. letter-spacing:normal;
  6195. color:#AAAAAA;
  6196. vertical-align:none;
  6197. text-align:left;
  6198. text-transform:none;
  6199. background-color:transparent;
  6200. border-color:transparent;
  6201. }
  6202. #u16955_div {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:134px;
  6208. height:23px;
  6209. background:inherit;
  6210. background-color:rgba(255, 255, 255, 1);
  6211. border-radius:0px;
  6212. filter:drop-shadow(none);
  6213. transition:none;
  6214. font-size:14px;
  6215. color:#AAAAAA;
  6216. }
  6217. #u16955 {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:354px;
  6221. top:145px;
  6222. width:134px;
  6223. height:23px;
  6224. display:flex;
  6225. transition:none;
  6226. transform-origin:50% 50%;
  6227. font-size:14px;
  6228. color:#AAAAAA;
  6229. }
  6230. #u16955 .text {
  6231. position:absolute;
  6232. align-self:flex-start;
  6233. padding:2px 2px 2px 2px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u16955_div.disabled {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:134px;
  6243. height:23px;
  6244. background:inherit;
  6245. background-color:rgba(240, 240, 240, 1);
  6246. border-radius:0px;
  6247. filter:drop-shadow(none);
  6248. transition:none;
  6249. font-size:14px;
  6250. color:#AAAAAA;
  6251. }
  6252. #u16955.disabled {
  6253. }
  6254. .u16955_input_option {
  6255. font-size:14px;
  6256. }
  6257. #u16956 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:0px;
  6263. height:0px;
  6264. }
  6265. #u16957_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:140px;
  6271. height:30px;
  6272. background:inherit;
  6273. background-color:rgba(255, 255, 255, 1);
  6274. box-sizing:border-box;
  6275. border-width:1px;
  6276. border-style:solid;
  6277. border-color:rgba(215, 215, 215, 1);
  6278. border-radius:4px;
  6279. filter:drop-shadow(none);
  6280. transition:none;
  6281. font-size:14px;
  6282. }
  6283. #u16957 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:650px;
  6287. top:143px;
  6288. width:140px;
  6289. height:30px;
  6290. display:flex;
  6291. transition:none;
  6292. transform-origin:50% 50%;
  6293. font-size:14px;
  6294. }
  6295. #u16957 .text {
  6296. position:absolute;
  6297. align-self:center;
  6298. padding:2px 2px 2px 2px;
  6299. box-sizing:border-box;
  6300. width:100%;
  6301. }
  6302. #u16957_text {
  6303. border-width:0px;
  6304. word-wrap:break-word;
  6305. text-transform:none;
  6306. visibility:hidden;
  6307. }
  6308. #u16958_input {
  6309. position:absolute;
  6310. left:0px;
  6311. top:0px;
  6312. width:134px;
  6313. height:23px;
  6314. padding:2px 2px 2px 2px;
  6315. font-family:"ArialMT", "Arial", sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:14px;
  6319. letter-spacing:normal;
  6320. color:#AAAAAA;
  6321. vertical-align:none;
  6322. text-align:left;
  6323. text-transform:none;
  6324. background-color:transparent;
  6325. border-color:transparent;
  6326. }
  6327. #u16958_input.disabled {
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:134px;
  6332. height:23px;
  6333. padding:2px 2px 2px 2px;
  6334. font-family:"ArialMT", "Arial", sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:14px;
  6338. letter-spacing:normal;
  6339. color:#AAAAAA;
  6340. vertical-align:none;
  6341. text-align:left;
  6342. text-transform:none;
  6343. background-color:transparent;
  6344. border-color:transparent;
  6345. }
  6346. #u16958_div {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:134px;
  6352. height:23px;
  6353. background:inherit;
  6354. background-color:rgba(255, 255, 255, 1);
  6355. border-radius:0px;
  6356. filter:drop-shadow(none);
  6357. transition:none;
  6358. font-size:14px;
  6359. color:#AAAAAA;
  6360. }
  6361. #u16958 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:654px;
  6365. top:145px;
  6366. width:134px;
  6367. height:23px;
  6368. display:flex;
  6369. transition:none;
  6370. transform-origin:50% 50%;
  6371. font-size:14px;
  6372. color:#AAAAAA;
  6373. }
  6374. #u16958 .text {
  6375. position:absolute;
  6376. align-self:flex-start;
  6377. padding:2px 2px 2px 2px;
  6378. box-sizing:border-box;
  6379. width:100%;
  6380. }
  6381. #u16958_div.disabled {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:134px;
  6387. height:23px;
  6388. background:inherit;
  6389. background-color:rgba(240, 240, 240, 1);
  6390. border-radius:0px;
  6391. filter:drop-shadow(none);
  6392. transition:none;
  6393. font-size:14px;
  6394. color:#AAAAAA;
  6395. }
  6396. #u16958.disabled {
  6397. }
  6398. .u16958_input_option {
  6399. font-size:14px;
  6400. }
  6401. #u16959 {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:0px;
  6407. height:0px;
  6408. }
  6409. #u16960_div {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:140px;
  6415. height:30px;
  6416. background:inherit;
  6417. background-color:rgba(255, 255, 255, 1);
  6418. box-sizing:border-box;
  6419. border-width:1px;
  6420. border-style:solid;
  6421. border-color:rgba(215, 215, 215, 1);
  6422. border-radius:4px;
  6423. filter:drop-shadow(none);
  6424. transition:none;
  6425. font-size:14px;
  6426. }
  6427. #u16960 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:500px;
  6431. top:143px;
  6432. width:140px;
  6433. height:30px;
  6434. display:flex;
  6435. transition:none;
  6436. transform-origin:50% 50%;
  6437. font-size:14px;
  6438. }
  6439. #u16960 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:2px 2px 2px 2px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u16960_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. visibility:hidden;
  6451. }
  6452. #u16961_input {
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:134px;
  6457. height:23px;
  6458. padding:2px 2px 2px 2px;
  6459. font-family:"ArialMT", "Arial", sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:14px;
  6463. letter-spacing:normal;
  6464. color:#AAAAAA;
  6465. vertical-align:none;
  6466. text-align:left;
  6467. text-transform:none;
  6468. background-color:transparent;
  6469. border-color:transparent;
  6470. }
  6471. #u16961_input.disabled {
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:134px;
  6476. height:23px;
  6477. padding:2px 2px 2px 2px;
  6478. font-family:"ArialMT", "Arial", sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. font-size:14px;
  6482. letter-spacing:normal;
  6483. color:#AAAAAA;
  6484. vertical-align:none;
  6485. text-align:left;
  6486. text-transform:none;
  6487. background-color:transparent;
  6488. border-color:transparent;
  6489. }
  6490. #u16961_div {
  6491. border-width:0px;
  6492. position:absolute;
  6493. left:0px;
  6494. top:0px;
  6495. width:134px;
  6496. height:23px;
  6497. background:inherit;
  6498. background-color:rgba(255, 255, 255, 1);
  6499. border-radius:0px;
  6500. filter:drop-shadow(none);
  6501. transition:none;
  6502. font-size:14px;
  6503. color:#AAAAAA;
  6504. }
  6505. #u16961 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:504px;
  6509. top:145px;
  6510. width:134px;
  6511. height:23px;
  6512. display:flex;
  6513. transition:none;
  6514. transform-origin:50% 50%;
  6515. font-size:14px;
  6516. color:#AAAAAA;
  6517. }
  6518. #u16961 .text {
  6519. position:absolute;
  6520. align-self:flex-start;
  6521. padding:2px 2px 2px 2px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u16961_div.disabled {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:0px;
  6529. top:0px;
  6530. width:134px;
  6531. height:23px;
  6532. background:inherit;
  6533. background-color:rgba(240, 240, 240, 1);
  6534. border-radius:0px;
  6535. filter:drop-shadow(none);
  6536. transition:none;
  6537. font-size:14px;
  6538. color:#AAAAAA;
  6539. }
  6540. #u16961.disabled {
  6541. }
  6542. .u16961_input_option {
  6543. font-size:14px;
  6544. }
  6545. #u16962 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:0px;
  6551. height:0px;
  6552. }
  6553. #u16963_div {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:140px;
  6559. height:30px;
  6560. background:inherit;
  6561. background-color:rgba(255, 255, 255, 1);
  6562. box-sizing:border-box;
  6563. border-width:1px;
  6564. border-style:solid;
  6565. border-color:rgba(215, 215, 215, 1);
  6566. border-radius:4px;
  6567. filter:drop-shadow(none);
  6568. transition:none;
  6569. font-size:14px;
  6570. }
  6571. #u16963 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:800px;
  6575. top:143px;
  6576. width:140px;
  6577. height:30px;
  6578. display:flex;
  6579. transition:none;
  6580. transform-origin:50% 50%;
  6581. font-size:14px;
  6582. }
  6583. #u16963 .text {
  6584. position:absolute;
  6585. align-self:center;
  6586. padding:2px 2px 2px 2px;
  6587. box-sizing:border-box;
  6588. width:100%;
  6589. }
  6590. #u16963_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. visibility:hidden;
  6595. }
  6596. #u16964_input {
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:134px;
  6601. height:23px;
  6602. padding:2px 2px 2px 2px;
  6603. font-family:"ArialMT", "Arial", sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. letter-spacing:normal;
  6608. color:#AAAAAA;
  6609. vertical-align:none;
  6610. text-align:left;
  6611. text-transform:none;
  6612. background-color:transparent;
  6613. border-color:transparent;
  6614. }
  6615. #u16964_input.disabled {
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:134px;
  6620. height:23px;
  6621. padding:2px 2px 2px 2px;
  6622. font-family:"ArialMT", "Arial", sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:14px;
  6626. letter-spacing:normal;
  6627. color:#AAAAAA;
  6628. vertical-align:none;
  6629. text-align:left;
  6630. text-transform:none;
  6631. background-color:transparent;
  6632. border-color:transparent;
  6633. }
  6634. #u16964_div {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:134px;
  6640. height:23px;
  6641. background:inherit;
  6642. background-color:rgba(255, 255, 255, 1);
  6643. border-radius:0px;
  6644. filter:drop-shadow(none);
  6645. transition:none;
  6646. font-size:14px;
  6647. color:#AAAAAA;
  6648. }
  6649. #u16964 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:804px;
  6653. top:145px;
  6654. width:134px;
  6655. height:23px;
  6656. display:flex;
  6657. transition:none;
  6658. transform-origin:50% 50%;
  6659. font-size:14px;
  6660. color:#AAAAAA;
  6661. }
  6662. #u16964 .text {
  6663. position:absolute;
  6664. align-self:flex-start;
  6665. padding:2px 2px 2px 2px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u16964_div.disabled {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:134px;
  6675. height:23px;
  6676. background:inherit;
  6677. background-color:rgba(240, 240, 240, 1);
  6678. border-radius:0px;
  6679. filter:drop-shadow(none);
  6680. transition:none;
  6681. font-size:14px;
  6682. color:#AAAAAA;
  6683. }
  6684. #u16964.disabled {
  6685. }
  6686. .u16964_input_option {
  6687. font-size:14px;
  6688. }
  6689. #u16965 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:0px;
  6695. height:0px;
  6696. }
  6697. #u16966_div {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:140px;
  6703. height:30px;
  6704. background:inherit;
  6705. background-color:rgba(255, 255, 255, 1);
  6706. box-sizing:border-box;
  6707. border-width:1px;
  6708. border-style:solid;
  6709. border-color:rgba(215, 215, 215, 1);
  6710. border-radius:4px;
  6711. filter:drop-shadow(none);
  6712. transition:none;
  6713. font-size:14px;
  6714. }
  6715. #u16966 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:350px;
  6719. top:183px;
  6720. width:140px;
  6721. height:30px;
  6722. display:flex;
  6723. transition:none;
  6724. transform-origin:50% 50%;
  6725. font-size:14px;
  6726. }
  6727. #u16966 .text {
  6728. position:absolute;
  6729. align-self:center;
  6730. padding:2px 2px 2px 2px;
  6731. box-sizing:border-box;
  6732. width:100%;
  6733. }
  6734. #u16966_text {
  6735. border-width:0px;
  6736. word-wrap:break-word;
  6737. text-transform:none;
  6738. visibility:hidden;
  6739. }
  6740. #u16967_input {
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:134px;
  6745. height:23px;
  6746. padding:2px 2px 2px 2px;
  6747. font-family:"ArialMT", "Arial", sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:14px;
  6751. letter-spacing:normal;
  6752. color:#AAAAAA;
  6753. vertical-align:none;
  6754. text-align:left;
  6755. text-transform:none;
  6756. background-color:transparent;
  6757. border-color:transparent;
  6758. }
  6759. #u16967_input.disabled {
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:134px;
  6764. height:23px;
  6765. padding:2px 2px 2px 2px;
  6766. font-family:"ArialMT", "Arial", sans-serif;
  6767. font-weight:400;
  6768. font-style:normal;
  6769. font-size:14px;
  6770. letter-spacing:normal;
  6771. color:#AAAAAA;
  6772. vertical-align:none;
  6773. text-align:left;
  6774. text-transform:none;
  6775. background-color:transparent;
  6776. border-color:transparent;
  6777. }
  6778. #u16967_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:134px;
  6784. height:23px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 1);
  6787. border-radius:0px;
  6788. filter:drop-shadow(none);
  6789. transition:none;
  6790. font-size:14px;
  6791. color:#AAAAAA;
  6792. }
  6793. #u16967 {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:354px;
  6797. top:185px;
  6798. width:134px;
  6799. height:23px;
  6800. display:flex;
  6801. transition:none;
  6802. transform-origin:50% 50%;
  6803. font-size:14px;
  6804. color:#AAAAAA;
  6805. }
  6806. #u16967 .text {
  6807. position:absolute;
  6808. align-self:flex-start;
  6809. padding:2px 2px 2px 2px;
  6810. box-sizing:border-box;
  6811. width:100%;
  6812. }
  6813. #u16967_div.disabled {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:134px;
  6819. height:23px;
  6820. background:inherit;
  6821. background-color:rgba(240, 240, 240, 1);
  6822. border-radius:0px;
  6823. filter:drop-shadow(none);
  6824. transition:none;
  6825. font-size:14px;
  6826. color:#AAAAAA;
  6827. }
  6828. #u16967.disabled {
  6829. }
  6830. .u16967_input_option {
  6831. font-size:14px;
  6832. }
  6833. #u16968 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:0px;
  6839. height:0px;
  6840. }
  6841. #u16969_div {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:140px;
  6847. height:30px;
  6848. background:inherit;
  6849. background-color:rgba(255, 255, 255, 1);
  6850. box-sizing:border-box;
  6851. border-width:1px;
  6852. border-style:solid;
  6853. border-color:rgba(215, 215, 215, 1);
  6854. border-radius:4px;
  6855. filter:drop-shadow(none);
  6856. transition:none;
  6857. font-size:14px;
  6858. }
  6859. #u16969 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:950px;
  6863. top:143px;
  6864. width:140px;
  6865. height:30px;
  6866. display:flex;
  6867. transition:none;
  6868. transform-origin:50% 50%;
  6869. font-size:14px;
  6870. }
  6871. #u16969 .text {
  6872. position:absolute;
  6873. align-self:center;
  6874. padding:2px 2px 2px 2px;
  6875. box-sizing:border-box;
  6876. width:100%;
  6877. }
  6878. #u16969_text {
  6879. border-width:0px;
  6880. word-wrap:break-word;
  6881. text-transform:none;
  6882. visibility:hidden;
  6883. }
  6884. #u16970_input {
  6885. position:absolute;
  6886. left:0px;
  6887. top:0px;
  6888. width:134px;
  6889. height:23px;
  6890. padding:2px 2px 2px 2px;
  6891. font-family:"ArialMT", "Arial", sans-serif;
  6892. font-weight:400;
  6893. font-style:normal;
  6894. font-size:14px;
  6895. letter-spacing:normal;
  6896. color:#AAAAAA;
  6897. vertical-align:none;
  6898. text-align:left;
  6899. text-transform:none;
  6900. background-color:transparent;
  6901. border-color:transparent;
  6902. }
  6903. #u16970_input.disabled {
  6904. position:absolute;
  6905. left:0px;
  6906. top:0px;
  6907. width:134px;
  6908. height:23px;
  6909. padding:2px 2px 2px 2px;
  6910. font-family:"ArialMT", "Arial", sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:14px;
  6914. letter-spacing:normal;
  6915. color:#AAAAAA;
  6916. vertical-align:none;
  6917. text-align:left;
  6918. text-transform:none;
  6919. background-color:transparent;
  6920. border-color:transparent;
  6921. }
  6922. #u16970_div {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:134px;
  6928. height:23px;
  6929. background:inherit;
  6930. background-color:rgba(255, 255, 255, 1);
  6931. border-radius:0px;
  6932. filter:drop-shadow(none);
  6933. transition:none;
  6934. font-size:14px;
  6935. color:#AAAAAA;
  6936. }
  6937. #u16970 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:954px;
  6941. top:145px;
  6942. width:134px;
  6943. height:23px;
  6944. display:flex;
  6945. transition:none;
  6946. transform-origin:50% 50%;
  6947. font-size:14px;
  6948. color:#AAAAAA;
  6949. }
  6950. #u16970 .text {
  6951. position:absolute;
  6952. align-self:flex-start;
  6953. padding:2px 2px 2px 2px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u16970_div.disabled {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:134px;
  6963. height:23px;
  6964. background:inherit;
  6965. background-color:rgba(240, 240, 240, 1);
  6966. border-radius:0px;
  6967. filter:drop-shadow(none);
  6968. transition:none;
  6969. font-size:14px;
  6970. color:#AAAAAA;
  6971. }
  6972. #u16970.disabled {
  6973. }
  6974. .u16970_input_option {
  6975. font-size:14px;
  6976. }
  6977. #u16971 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:0px;
  6983. height:0px;
  6984. }
  6985. #u16972_div {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:140px;
  6991. height:30px;
  6992. background:inherit;
  6993. background-color:rgba(255, 255, 255, 1);
  6994. box-sizing:border-box;
  6995. border-width:1px;
  6996. border-style:solid;
  6997. border-color:rgba(201, 201, 201, 1);
  6998. border-radius:4px;
  6999. filter:drop-shadow(none);
  7000. transition:none;
  7001. font-family:"Microsoft YaHei", sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:14px;
  7005. color:#CCCCCC;
  7006. text-align:left;
  7007. }
  7008. #u16972 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:1400px;
  7012. top:143px;
  7013. width:140px;
  7014. height:30px;
  7015. display:flex;
  7016. transition:none;
  7017. transform-origin:50% 50%;
  7018. font-family:"Microsoft YaHei", sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:14px;
  7022. color:#CCCCCC;
  7023. text-align:left;
  7024. }
  7025. #u16972 .text {
  7026. position:absolute;
  7027. align-self:center;
  7028. padding:2px 8px 2px 8px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u16972_text {
  7033. border-width:0px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. visibility:hidden;
  7037. }
  7038. #u16973_input {
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:127px;
  7043. height:25px;
  7044. padding:2px 2px 2px 2px;
  7045. font-family:"Microsoft YaHei", sans-serif;
  7046. font-weight:400;
  7047. font-style:normal;
  7048. font-size:10px;
  7049. letter-spacing:normal;
  7050. color:#000000;
  7051. vertical-align:none;
  7052. text-align:left;
  7053. text-transform:none;
  7054. background-color:transparent;
  7055. border-color:transparent;
  7056. }
  7057. #u16973_input.hint {
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:127px;
  7062. height:25px;
  7063. padding:2px 2px 2px 2px;
  7064. font-family:"Microsoft YaHei", sans-serif;
  7065. font-weight:400;
  7066. font-style:normal;
  7067. font-size:12px;
  7068. letter-spacing:normal;
  7069. color:#AAAAAA;
  7070. vertical-align:none;
  7071. text-align:left;
  7072. text-transform:none;
  7073. background-color:transparent;
  7074. border-color:transparent;
  7075. }
  7076. #u16973_input.disabled {
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:127px;
  7081. height:25px;
  7082. padding:2px 2px 2px 2px;
  7083. font-family:"Microsoft YaHei", sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:10px;
  7087. letter-spacing:normal;
  7088. color:#000000;
  7089. vertical-align:none;
  7090. text-align:left;
  7091. text-transform:none;
  7092. background-color:transparent;
  7093. border-color:transparent;
  7094. }
  7095. #u16973_input.hint.disabled {
  7096. position:absolute;
  7097. left:0px;
  7098. top:0px;
  7099. width:127px;
  7100. height:25px;
  7101. padding:2px 2px 2px 2px;
  7102. font-family:"Microsoft YaHei", sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:12px;
  7106. letter-spacing:normal;
  7107. color:#AAAAAA;
  7108. vertical-align:none;
  7109. text-align:left;
  7110. text-transform:none;
  7111. background-color:transparent;
  7112. border-color:transparent;
  7113. }
  7114. #u16973_div {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:127px;
  7120. height:25px;
  7121. background:inherit;
  7122. background-color:rgba(255, 255, 255, 1);
  7123. border-radius:0px;
  7124. filter:drop-shadow(none);
  7125. transition:none;
  7126. font-family:"Microsoft YaHei", sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:10px;
  7130. }
  7131. #u16973 {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:1408px;
  7135. top:144px;
  7136. width:127px;
  7137. height:25px;
  7138. display:flex;
  7139. transition:none;
  7140. transform-origin:50% 50%;
  7141. font-family:"Microsoft YaHei", sans-serif;
  7142. font-weight:400;
  7143. font-style:normal;
  7144. font-size:10px;
  7145. }
  7146. #u16973 .text {
  7147. position:absolute;
  7148. align-self:center;
  7149. padding:2px 2px 2px 2px;
  7150. box-sizing:border-box;
  7151. width:100%;
  7152. }
  7153. #u16973_div.hint {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:127px;
  7159. height:25px;
  7160. background:inherit;
  7161. background-color:rgba(255, 255, 255, 1);
  7162. border-radius:0px;
  7163. filter:drop-shadow(none);
  7164. transition:none;
  7165. font-family:"Microsoft YaHei", sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:10px;
  7169. }
  7170. #u16973.hint {
  7171. }
  7172. #u16973_div.disabled {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:127px;
  7178. height:25px;
  7179. background:inherit;
  7180. background-color:rgba(240, 240, 240, 1);
  7181. border-radius:0px;
  7182. filter:drop-shadow(none);
  7183. transition:none;
  7184. font-family:"Microsoft YaHei", sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:10px;
  7188. }
  7189. #u16973.disabled {
  7190. }
  7191. #u16973_div.hint.disabled {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:0px;
  7195. top:0px;
  7196. width:127px;
  7197. height:25px;
  7198. background:inherit;
  7199. background-color:rgba(240, 240, 240, 1);
  7200. border-radius:0px;
  7201. filter:drop-shadow(none);
  7202. transition:none;
  7203. font-family:"Microsoft YaHei", sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. font-size:10px;
  7207. }
  7208. #u16973.hint.disabled {
  7209. }
  7210. #u16974 {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:0px;
  7214. top:0px;
  7215. width:0px;
  7216. height:0px;
  7217. }
  7218. #u16975_div {
  7219. border-width:0px;
  7220. position:absolute;
  7221. left:0px;
  7222. top:0px;
  7223. width:140px;
  7224. height:30px;
  7225. background:inherit;
  7226. background-color:rgba(255, 255, 255, 1);
  7227. box-sizing:border-box;
  7228. border-width:1px;
  7229. border-style:solid;
  7230. border-color:rgba(201, 201, 201, 1);
  7231. border-radius:4px;
  7232. filter:drop-shadow(none);
  7233. transition:none;
  7234. font-family:"Microsoft YaHei", sans-serif;
  7235. font-weight:400;
  7236. font-style:normal;
  7237. font-size:14px;
  7238. color:#CCCCCC;
  7239. text-align:left;
  7240. }
  7241. #u16975 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:1250px;
  7245. top:143px;
  7246. width:140px;
  7247. height:30px;
  7248. display:flex;
  7249. transition:none;
  7250. transform-origin:50% 50%;
  7251. font-family:"Microsoft YaHei", sans-serif;
  7252. font-weight:400;
  7253. font-style:normal;
  7254. font-size:14px;
  7255. color:#CCCCCC;
  7256. text-align:left;
  7257. }
  7258. #u16975 .text {
  7259. position:absolute;
  7260. align-self:center;
  7261. padding:2px 8px 2px 8px;
  7262. box-sizing:border-box;
  7263. width:100%;
  7264. }
  7265. #u16975_text {
  7266. border-width:0px;
  7267. word-wrap:break-word;
  7268. text-transform:none;
  7269. visibility:hidden;
  7270. }
  7271. #u16976_input {
  7272. position:absolute;
  7273. left:0px;
  7274. top:0px;
  7275. width:127px;
  7276. height:25px;
  7277. padding:2px 2px 2px 2px;
  7278. font-family:"Microsoft YaHei", sans-serif;
  7279. font-weight:400;
  7280. font-style:normal;
  7281. font-size:10px;
  7282. letter-spacing:normal;
  7283. color:#000000;
  7284. vertical-align:none;
  7285. text-align:left;
  7286. text-transform:none;
  7287. background-color:transparent;
  7288. border-color:transparent;
  7289. }
  7290. #u16976_input.hint {
  7291. position:absolute;
  7292. left:0px;
  7293. top:0px;
  7294. width:127px;
  7295. height:25px;
  7296. padding:2px 2px 2px 2px;
  7297. font-family:"Microsoft YaHei", sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:12px;
  7301. letter-spacing:normal;
  7302. color:#AAAAAA;
  7303. vertical-align:none;
  7304. text-align:left;
  7305. text-transform:none;
  7306. background-color:transparent;
  7307. border-color:transparent;
  7308. }
  7309. #u16976_input.disabled {
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:127px;
  7314. height:25px;
  7315. padding:2px 2px 2px 2px;
  7316. font-family:"Microsoft YaHei", sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:10px;
  7320. letter-spacing:normal;
  7321. color:#000000;
  7322. vertical-align:none;
  7323. text-align:left;
  7324. text-transform:none;
  7325. background-color:transparent;
  7326. border-color:transparent;
  7327. }
  7328. #u16976_input.hint.disabled {
  7329. position:absolute;
  7330. left:0px;
  7331. top:0px;
  7332. width:127px;
  7333. height:25px;
  7334. padding:2px 2px 2px 2px;
  7335. font-family:"Microsoft YaHei", sans-serif;
  7336. font-weight:400;
  7337. font-style:normal;
  7338. font-size:12px;
  7339. letter-spacing:normal;
  7340. color:#AAAAAA;
  7341. vertical-align:none;
  7342. text-align:left;
  7343. text-transform:none;
  7344. background-color:transparent;
  7345. border-color:transparent;
  7346. }
  7347. #u16976_div {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:0px;
  7351. top:0px;
  7352. width:127px;
  7353. height:25px;
  7354. background:inherit;
  7355. background-color:rgba(255, 255, 255, 1);
  7356. border-radius:0px;
  7357. filter:drop-shadow(none);
  7358. transition:none;
  7359. font-family:"Microsoft YaHei", sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:10px;
  7363. }
  7364. #u16976 {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:1258px;
  7368. top:144px;
  7369. width:127px;
  7370. height:25px;
  7371. display:flex;
  7372. transition:none;
  7373. transform-origin:50% 50%;
  7374. font-family:"Microsoft YaHei", sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:10px;
  7378. }
  7379. #u16976 .text {
  7380. position:absolute;
  7381. align-self:center;
  7382. padding:2px 2px 2px 2px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u16976_div.hint {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:127px;
  7392. height:25px;
  7393. background:inherit;
  7394. background-color:rgba(255, 255, 255, 1);
  7395. border-radius:0px;
  7396. filter:drop-shadow(none);
  7397. transition:none;
  7398. font-family:"Microsoft YaHei", sans-serif;
  7399. font-weight:400;
  7400. font-style:normal;
  7401. font-size:10px;
  7402. }
  7403. #u16976.hint {
  7404. }
  7405. #u16976_div.disabled {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:127px;
  7411. height:25px;
  7412. background:inherit;
  7413. background-color:rgba(240, 240, 240, 1);
  7414. border-radius:0px;
  7415. filter:drop-shadow(none);
  7416. transition:none;
  7417. font-family:"Microsoft YaHei", sans-serif;
  7418. font-weight:400;
  7419. font-style:normal;
  7420. font-size:10px;
  7421. }
  7422. #u16976.disabled {
  7423. }
  7424. #u16976_div.hint.disabled {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:0px;
  7428. top:0px;
  7429. width:127px;
  7430. height:25px;
  7431. background:inherit;
  7432. background-color:rgba(240, 240, 240, 1);
  7433. border-radius:0px;
  7434. filter:drop-shadow(none);
  7435. transition:none;
  7436. font-family:"Microsoft YaHei", sans-serif;
  7437. font-weight:400;
  7438. font-style:normal;
  7439. font-size:10px;
  7440. }
  7441. #u16976.hint.disabled {
  7442. }
  7443. #u16977 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:0px;
  7449. height:0px;
  7450. }
  7451. #u16978_div {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:140px;
  7457. height:30px;
  7458. background:inherit;
  7459. background-color:rgba(255, 255, 255, 1);
  7460. box-sizing:border-box;
  7461. border-width:1px;
  7462. border-style:solid;
  7463. border-color:rgba(215, 215, 215, 1);
  7464. border-radius:4px;
  7465. filter:drop-shadow(none);
  7466. transition:none;
  7467. font-size:14px;
  7468. }
  7469. #u16978 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:1100px;
  7473. top:143px;
  7474. width:140px;
  7475. height:30px;
  7476. display:flex;
  7477. transition:none;
  7478. transform-origin:50% 50%;
  7479. font-size:14px;
  7480. }
  7481. #u16978 .text {
  7482. position:absolute;
  7483. align-self:center;
  7484. padding:2px 2px 2px 2px;
  7485. box-sizing:border-box;
  7486. width:100%;
  7487. }
  7488. #u16978_text {
  7489. border-width:0px;
  7490. word-wrap:break-word;
  7491. text-transform:none;
  7492. visibility:hidden;
  7493. }
  7494. #u16979_input {
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:134px;
  7499. height:23px;
  7500. padding:2px 2px 2px 2px;
  7501. font-family:"ArialMT", "Arial", sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. font-size:14px;
  7505. letter-spacing:normal;
  7506. color:#AAAAAA;
  7507. vertical-align:none;
  7508. text-align:left;
  7509. text-transform:none;
  7510. background-color:transparent;
  7511. border-color:transparent;
  7512. }
  7513. #u16979_input.disabled {
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:134px;
  7518. height:23px;
  7519. padding:2px 2px 2px 2px;
  7520. font-family:"ArialMT", "Arial", sans-serif;
  7521. font-weight:400;
  7522. font-style:normal;
  7523. font-size:14px;
  7524. letter-spacing:normal;
  7525. color:#AAAAAA;
  7526. vertical-align:none;
  7527. text-align:left;
  7528. text-transform:none;
  7529. background-color:transparent;
  7530. border-color:transparent;
  7531. }
  7532. #u16979_div {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:134px;
  7538. height:23px;
  7539. background:inherit;
  7540. background-color:rgba(255, 255, 255, 1);
  7541. border-radius:0px;
  7542. filter:drop-shadow(none);
  7543. transition:none;
  7544. font-size:14px;
  7545. color:#AAAAAA;
  7546. }
  7547. #u16979 {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:1104px;
  7551. top:145px;
  7552. width:134px;
  7553. height:23px;
  7554. display:flex;
  7555. transition:none;
  7556. transform-origin:50% 50%;
  7557. font-size:14px;
  7558. color:#AAAAAA;
  7559. }
  7560. #u16979 .text {
  7561. position:absolute;
  7562. align-self:flex-start;
  7563. padding:2px 2px 2px 2px;
  7564. box-sizing:border-box;
  7565. width:100%;
  7566. }
  7567. #u16979_div.disabled {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:134px;
  7573. height:23px;
  7574. background:inherit;
  7575. background-color:rgba(240, 240, 240, 1);
  7576. border-radius:0px;
  7577. filter:drop-shadow(none);
  7578. transition:none;
  7579. font-size:14px;
  7580. color:#AAAAAA;
  7581. }
  7582. #u16979.disabled {
  7583. }
  7584. .u16979_input_option {
  7585. font-size:14px;
  7586. }
  7587. #u16980_div {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:109px;
  7593. height:50px;
  7594. background:inherit;
  7595. background-color:rgba(255, 255, 255, 0);
  7596. border-left:0px;
  7597. border-top:0px;
  7598. border-right:0px;
  7599. border-radius:0px;
  7600. border-bottom-right-radius:0px;
  7601. border-bottom-left-radius:0px;
  7602. filter:drop-shadow(none);
  7603. transition:none;
  7604. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:18px;
  7608. }
  7609. #u16980 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:354px;
  7613. top:50px;
  7614. width:109px;
  7615. height:50px;
  7616. display:flex;
  7617. transition:none;
  7618. transform-origin:50% 50%;
  7619. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7620. font-weight:400;
  7621. font-style:normal;
  7622. font-size:18px;
  7623. }
  7624. #u16980 .text {
  7625. position:absolute;
  7626. align-self:center;
  7627. padding:0px 0px 0px 0px;
  7628. box-sizing:border-box;
  7629. width:100%;
  7630. }
  7631. #u16980_text {
  7632. border-width:0px;
  7633. white-space:nowrap;
  7634. text-transform:none;
  7635. }
  7636. #u16981 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:120px;
  7640. top:50px;
  7641. width:201px;
  7642. height:1190px;
  7643. }
  7644. #u16982 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:0px;
  7648. top:0px;
  7649. width:0px;
  7650. height:0px;
  7651. }
  7652. #u16983_div {
  7653. border-width:0px;
  7654. position:absolute;
  7655. left:0px;
  7656. top:0px;
  7657. width:200px;
  7658. height:1190px;
  7659. background:inherit;
  7660. background-color:rgba(255, 255, 255, 1);
  7661. border-radius:0px;
  7662. filter:drop-shadow(none);
  7663. transition:none;
  7664. }
  7665. #u16983 {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:200px;
  7671. height:1190px;
  7672. display:flex;
  7673. transition:none;
  7674. transform-origin:50% 50%;
  7675. }
  7676. #u16983 .text {
  7677. position:absolute;
  7678. align-self:center;
  7679. padding:2px 2px 2px 2px;
  7680. box-sizing:border-box;
  7681. width:100%;
  7682. }
  7683. #u16983_text {
  7684. border-width:0px;
  7685. word-wrap:break-word;
  7686. text-transform:none;
  7687. visibility:hidden;
  7688. }
  7689. #u16984_div {
  7690. border-width:0px;
  7691. position:absolute;
  7692. left:0px;
  7693. top:0px;
  7694. width:200px;
  7695. height:60px;
  7696. background:inherit;
  7697. background-color:rgba(224, 231, 247, 1);
  7698. border-radius:0px;
  7699. filter:drop-shadow(none);
  7700. transition:none;
  7701. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7702. font-weight:500;
  7703. font-style:normal;
  7704. font-size:18px;
  7705. }
  7706. #u16984 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:0px;
  7710. top:0px;
  7711. width:200px;
  7712. height:60px;
  7713. display:flex;
  7714. transition:none;
  7715. transform-origin:50% 50%;
  7716. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  7717. font-weight:500;
  7718. font-style:normal;
  7719. font-size:18px;
  7720. }
  7721. #u16984 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:0px 0px 0px 20px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u16984_text {
  7729. border-width:0px;
  7730. word-wrap:break-word;
  7731. text-transform:none;
  7732. }
  7733. #u16985_div {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:65px;
  7739. height:22px;
  7740. background:inherit;
  7741. background-color:rgba(255, 255, 255, 0);
  7742. border-radius:0px;
  7743. filter:drop-shadow(none);
  7744. transition:none;
  7745. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7746. font-weight:400;
  7747. font-style:normal;
  7748. font-size:16px;
  7749. }
  7750. #u16985 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:25px;
  7754. top:456px;
  7755. width:65px;
  7756. height:22px;
  7757. display:flex;
  7758. transition:none;
  7759. transform-origin:50% 50%;
  7760. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7761. font-weight:400;
  7762. font-style:normal;
  7763. font-size:16px;
  7764. }
  7765. #u16985 .text {
  7766. position:absolute;
  7767. align-self:flex-start;
  7768. padding:0px 0px 0px 0px;
  7769. box-sizing:border-box;
  7770. width:100%;
  7771. }
  7772. #u16985_text {
  7773. border-width:0px;
  7774. white-space:nowrap;
  7775. text-transform:none;
  7776. }
  7777. #u16986_div {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:49px;
  7783. height:17px;
  7784. background:inherit;
  7785. background-color:rgba(255, 255, 255, 0);
  7786. border-radius:0px;
  7787. filter:drop-shadow(none);
  7788. transition:none;
  7789. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:12px;
  7793. color:#AAAAAA;
  7794. }
  7795. #u16986 {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:23px;
  7799. top:419px;
  7800. width:49px;
  7801. height:17px;
  7802. display:flex;
  7803. transition:none;
  7804. transform-origin:50% 50%;
  7805. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:12px;
  7809. color:#AAAAAA;
  7810. }
  7811. #u16986 .text {
  7812. position:absolute;
  7813. align-self:flex-start;
  7814. padding:0px 0px 0px 0px;
  7815. box-sizing:border-box;
  7816. width:100%;
  7817. }
  7818. #u16986_text {
  7819. border-width:0px;
  7820. white-space:nowrap;
  7821. text-transform:none;
  7822. }
  7823. #u16987_div {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:49px;
  7829. height:17px;
  7830. background:inherit;
  7831. background-color:rgba(255, 255, 255, 0);
  7832. border-radius:0px;
  7833. filter:drop-shadow(none);
  7834. transition:none;
  7835. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7836. font-weight:400;
  7837. font-style:normal;
  7838. font-size:12px;
  7839. color:#AAAAAA;
  7840. }
  7841. #u16987 {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:24px;
  7845. top:81px;
  7846. width:49px;
  7847. height:17px;
  7848. display:flex;
  7849. transition:none;
  7850. transform-origin:50% 50%;
  7851. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7852. font-weight:400;
  7853. font-style:normal;
  7854. font-size:12px;
  7855. color:#AAAAAA;
  7856. }
  7857. #u16987 .text {
  7858. position:absolute;
  7859. align-self:flex-start;
  7860. padding:0px 0px 0px 0px;
  7861. box-sizing:border-box;
  7862. width:100%;
  7863. }
  7864. #u16987_text {
  7865. border-width:0px;
  7866. white-space:nowrap;
  7867. text-transform:none;
  7868. }
  7869. #u16988_div {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:0px;
  7873. top:0px;
  7874. width:65px;
  7875. height:22px;
  7876. background:inherit;
  7877. background-color:rgba(255, 255, 255, 0);
  7878. border-radius:0px;
  7879. filter:drop-shadow(none);
  7880. transition:none;
  7881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7882. font-weight:400;
  7883. font-style:normal;
  7884. font-size:16px;
  7885. }
  7886. #u16988 {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:26px;
  7890. top:118px;
  7891. width:65px;
  7892. height:22px;
  7893. display:flex;
  7894. transition:none;
  7895. transform-origin:50% 50%;
  7896. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7897. font-weight:400;
  7898. font-style:normal;
  7899. font-size:16px;
  7900. }
  7901. #u16988 .text {
  7902. position:absolute;
  7903. align-self:flex-start;
  7904. padding:0px 0px 0px 0px;
  7905. box-sizing:border-box;
  7906. width:100%;
  7907. }
  7908. #u16988_text {
  7909. border-width:0px;
  7910. white-space:nowrap;
  7911. text-transform:none;
  7912. }
  7913. #u16989 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:398px;
  7918. width:200px;
  7919. height:1px;
  7920. display:flex;
  7921. transition:none;
  7922. }
  7923. #u16989 .text {
  7924. position:absolute;
  7925. align-self:center;
  7926. padding:2px 2px 2px 2px;
  7927. box-sizing:border-box;
  7928. width:100%;
  7929. }
  7930. #u16989_img {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:0px;
  7934. top:0px;
  7935. width:201px;
  7936. height:2px;
  7937. }
  7938. #u16989_text {
  7939. border-width:0px;
  7940. word-wrap:break-word;
  7941. text-transform:none;
  7942. visibility:hidden;
  7943. }
  7944. #u16990_div {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:65px;
  7950. height:22px;
  7951. background:inherit;
  7952. background-color:rgba(255, 255, 255, 0);
  7953. border-radius:0px;
  7954. filter:drop-shadow(none);
  7955. transition:none;
  7956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7957. font-weight:400;
  7958. font-style:normal;
  7959. font-size:16px;
  7960. }
  7961. #u16990 {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:25px;
  7965. top:498px;
  7966. width:65px;
  7967. height:22px;
  7968. display:flex;
  7969. transition:none;
  7970. transform-origin:50% 50%;
  7971. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:16px;
  7975. }
  7976. #u16990 .text {
  7977. position:absolute;
  7978. align-self:flex-start;
  7979. padding:0px 0px 0px 0px;
  7980. box-sizing:border-box;
  7981. width:100%;
  7982. }
  7983. #u16990_text {
  7984. border-width:0px;
  7985. white-space:nowrap;
  7986. text-transform:none;
  7987. }
  7988. #u16991_div {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:0px;
  7992. top:0px;
  7993. width:49px;
  7994. height:17px;
  7995. background:inherit;
  7996. background-color:rgba(255, 255, 255, 0);
  7997. border-radius:0px;
  7998. filter:drop-shadow(none);
  7999. transition:none;
  8000. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:12px;
  8004. color:#AAAAAA;
  8005. }
  8006. #u16991 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:24px;
  8010. top:235px;
  8011. width:49px;
  8012. height:17px;
  8013. display:flex;
  8014. transition:none;
  8015. transform-origin:50% 50%;
  8016. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:12px;
  8020. color:#AAAAAA;
  8021. }
  8022. #u16991 .text {
  8023. position:absolute;
  8024. align-self:flex-start;
  8025. padding:0px 0px 0px 0px;
  8026. box-sizing:border-box;
  8027. width:100%;
  8028. }
  8029. #u16991_text {
  8030. border-width:0px;
  8031. white-space:nowrap;
  8032. text-transform:none;
  8033. }
  8034. #u16992 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:1px;
  8038. top:214px;
  8039. width:200px;
  8040. height:1px;
  8041. display:flex;
  8042. transition:none;
  8043. }
  8044. #u16992 .text {
  8045. position:absolute;
  8046. align-self:center;
  8047. padding:2px 2px 2px 2px;
  8048. box-sizing:border-box;
  8049. width:100%;
  8050. }
  8051. #u16992_img {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:0px;
  8055. top:0px;
  8056. width:201px;
  8057. height:2px;
  8058. }
  8059. #u16992_text {
  8060. border-width:0px;
  8061. word-wrap:break-word;
  8062. text-transform:none;
  8063. visibility:hidden;
  8064. }
  8065. #u16993_div {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:0px;
  8069. top:0px;
  8070. width:65px;
  8071. height:22px;
  8072. background:inherit;
  8073. background-color:rgba(255, 255, 255, 0);
  8074. border-radius:0px;
  8075. filter:drop-shadow(none);
  8076. transition:none;
  8077. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8078. font-weight:400;
  8079. font-style:normal;
  8080. font-size:16px;
  8081. }
  8082. #u16993 {
  8083. border-width:0px;
  8084. position:absolute;
  8085. left:26px;
  8086. top:272px;
  8087. width:65px;
  8088. height:22px;
  8089. display:flex;
  8090. transition:none;
  8091. transform-origin:50% 50%;
  8092. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8093. font-weight:400;
  8094. font-style:normal;
  8095. font-size:16px;
  8096. }
  8097. #u16993 .text {
  8098. position:absolute;
  8099. align-self:flex-start;
  8100. padding:0px 0px 0px 0px;
  8101. box-sizing:border-box;
  8102. width:100%;
  8103. }
  8104. #u16993_text {
  8105. border-width:0px;
  8106. white-space:nowrap;
  8107. text-transform:none;
  8108. }
  8109. #u16994_div {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:0px;
  8113. top:0px;
  8114. width:65px;
  8115. height:22px;
  8116. background:inherit;
  8117. background-color:rgba(255, 255, 255, 0);
  8118. border-radius:0px;
  8119. filter:drop-shadow(none);
  8120. transition:none;
  8121. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:16px;
  8125. }
  8126. #u16994 {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:26px;
  8130. top:314px;
  8131. width:65px;
  8132. height:22px;
  8133. display:flex;
  8134. transition:none;
  8135. transform-origin:50% 50%;
  8136. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:16px;
  8140. }
  8141. #u16994 .text {
  8142. position:absolute;
  8143. align-self:flex-start;
  8144. padding:0px 0px 0px 0px;
  8145. box-sizing:border-box;
  8146. width:100%;
  8147. }
  8148. #u16994_text {
  8149. border-width:0px;
  8150. white-space:nowrap;
  8151. text-transform:none;
  8152. }
  8153. #u16995_div {
  8154. border-width:0px;
  8155. position:absolute;
  8156. left:0px;
  8157. top:0px;
  8158. width:129px;
  8159. height:22px;
  8160. background:inherit;
  8161. background-color:rgba(255, 255, 255, 0);
  8162. border-radius:0px;
  8163. filter:drop-shadow(none);
  8164. transition:none;
  8165. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8166. font-weight:400;
  8167. font-style:normal;
  8168. font-size:16px;
  8169. }
  8170. #u16995 {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:25px;
  8174. top:956px;
  8175. width:129px;
  8176. height:22px;
  8177. display:flex;
  8178. transition:none;
  8179. transform-origin:50% 50%;
  8180. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8181. font-weight:400;
  8182. font-style:normal;
  8183. font-size:16px;
  8184. }
  8185. #u16995 .text {
  8186. position:absolute;
  8187. align-self:flex-start;
  8188. padding:0px 0px 0px 0px;
  8189. box-sizing:border-box;
  8190. width:100%;
  8191. }
  8192. #u16995_text {
  8193. border-width:0px;
  8194. white-space:nowrap;
  8195. text-transform:none;
  8196. }
  8197. #u16996_div {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:0px;
  8201. top:0px;
  8202. width:129px;
  8203. height:22px;
  8204. background:inherit;
  8205. background-color:rgba(255, 255, 255, 0);
  8206. border-radius:0px;
  8207. filter:drop-shadow(none);
  8208. transition:none;
  8209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8210. font-weight:400;
  8211. font-style:normal;
  8212. font-size:16px;
  8213. }
  8214. #u16996 {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:25px;
  8218. top:748px;
  8219. width:129px;
  8220. height:22px;
  8221. display:flex;
  8222. transition:none;
  8223. transform-origin:50% 50%;
  8224. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8225. font-weight:400;
  8226. font-style:normal;
  8227. font-size:16px;
  8228. }
  8229. #u16996 .text {
  8230. position:absolute;
  8231. align-self:flex-start;
  8232. padding:0px 0px 0px 0px;
  8233. box-sizing:border-box;
  8234. width:100%;
  8235. }
  8236. #u16996_text {
  8237. border-width:0px;
  8238. white-space:nowrap;
  8239. text-transform:none;
  8240. }
  8241. #u16997_div {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:97px;
  8247. height:17px;
  8248. background:inherit;
  8249. background-color:rgba(255, 255, 255, 0);
  8250. border-radius:0px;
  8251. filter:drop-shadow(none);
  8252. transition:none;
  8253. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8254. font-weight:400;
  8255. font-style:normal;
  8256. font-size:12px;
  8257. color:#AAAAAA;
  8258. }
  8259. #u16997 {
  8260. border-width:0px;
  8261. position:absolute;
  8262. left:23px;
  8263. top:711px;
  8264. width:97px;
  8265. height:17px;
  8266. display:flex;
  8267. transition:none;
  8268. transform-origin:50% 50%;
  8269. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8270. font-weight:400;
  8271. font-style:normal;
  8272. font-size:12px;
  8273. color:#AAAAAA;
  8274. }
  8275. #u16997 .text {
  8276. position:absolute;
  8277. align-self:flex-start;
  8278. padding:0px 0px 0px 0px;
  8279. box-sizing:border-box;
  8280. width:100%;
  8281. }
  8282. #u16997_text {
  8283. border-width:0px;
  8284. white-space:nowrap;
  8285. text-transform:none;
  8286. }
  8287. #u16998 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:0px;
  8291. top:690px;
  8292. width:200px;
  8293. height:1px;
  8294. display:flex;
  8295. transition:none;
  8296. }
  8297. #u16998 .text {
  8298. position:absolute;
  8299. align-self:center;
  8300. padding:2px 2px 2px 2px;
  8301. box-sizing:border-box;
  8302. width:100%;
  8303. }
  8304. #u16998_img {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:201px;
  8310. height:2px;
  8311. }
  8312. #u16998_text {
  8313. border-width:0px;
  8314. word-wrap:break-word;
  8315. text-transform:none;
  8316. visibility:hidden;
  8317. }
  8318. #u16999_div {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:0px;
  8322. top:0px;
  8323. width:129px;
  8324. height:22px;
  8325. background:inherit;
  8326. background-color:rgba(255, 255, 255, 0);
  8327. border-radius:0px;
  8328. filter:drop-shadow(none);
  8329. transition:none;
  8330. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8331. font-weight:400;
  8332. font-style:normal;
  8333. font-size:16px;
  8334. }
  8335. #u16999 {
  8336. border-width:0px;
  8337. position:absolute;
  8338. left:25px;
  8339. top:830px;
  8340. width:129px;
  8341. height:22px;
  8342. display:flex;
  8343. transition:none;
  8344. transform-origin:50% 50%;
  8345. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8346. font-weight:400;
  8347. font-style:normal;
  8348. font-size:16px;
  8349. }
  8350. #u16999 .text {
  8351. position:absolute;
  8352. align-self:flex-start;
  8353. padding:0px 0px 0px 0px;
  8354. box-sizing:border-box;
  8355. width:100%;
  8356. }
  8357. #u16999_text {
  8358. border-width:0px;
  8359. white-space:nowrap;
  8360. text-transform:none;
  8361. }
  8362. #u17000_div {
  8363. border-width:0px;
  8364. position:absolute;
  8365. left:0px;
  8366. top:0px;
  8367. width:129px;
  8368. height:22px;
  8369. background:inherit;
  8370. background-color:rgba(255, 255, 255, 0);
  8371. border-radius:0px;
  8372. filter:drop-shadow(none);
  8373. transition:none;
  8374. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8375. font-weight:400;
  8376. font-style:normal;
  8377. font-size:16px;
  8378. }
  8379. #u17000 {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:25px;
  8383. top:872px;
  8384. width:129px;
  8385. height:22px;
  8386. display:flex;
  8387. transition:none;
  8388. transform-origin:50% 50%;
  8389. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8390. font-weight:400;
  8391. font-style:normal;
  8392. font-size:16px;
  8393. }
  8394. #u17000 .text {
  8395. position:absolute;
  8396. align-self:flex-start;
  8397. padding:0px 0px 0px 0px;
  8398. box-sizing:border-box;
  8399. width:100%;
  8400. }
  8401. #u17000_text {
  8402. border-width:0px;
  8403. white-space:nowrap;
  8404. text-transform:none;
  8405. }
  8406. #u17001_div {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:0px;
  8410. top:0px;
  8411. width:65px;
  8412. height:22px;
  8413. background:inherit;
  8414. background-color:rgba(255, 255, 255, 0);
  8415. border-radius:0px;
  8416. filter:drop-shadow(none);
  8417. transition:none;
  8418. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:16px;
  8422. }
  8423. #u17001 {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:25px;
  8427. top:1056px;
  8428. width:65px;
  8429. height:22px;
  8430. display:flex;
  8431. transition:none;
  8432. transform-origin:50% 50%;
  8433. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:16px;
  8437. }
  8438. #u17001 .text {
  8439. position:absolute;
  8440. align-self:flex-start;
  8441. padding:0px 0px 0px 0px;
  8442. box-sizing:border-box;
  8443. width:100%;
  8444. }
  8445. #u17001_text {
  8446. border-width:0px;
  8447. white-space:nowrap;
  8448. text-transform:none;
  8449. }
  8450. #u17002_div {
  8451. border-width:0px;
  8452. position:absolute;
  8453. left:0px;
  8454. top:0px;
  8455. width:49px;
  8456. height:17px;
  8457. background:inherit;
  8458. background-color:rgba(255, 255, 255, 0);
  8459. border-radius:0px;
  8460. filter:drop-shadow(none);
  8461. transition:none;
  8462. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:12px;
  8466. color:#AAAAAA;
  8467. }
  8468. #u17002 {
  8469. border-width:0px;
  8470. position:absolute;
  8471. left:23px;
  8472. top:1019px;
  8473. width:49px;
  8474. height:17px;
  8475. display:flex;
  8476. transition:none;
  8477. transform-origin:50% 50%;
  8478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8479. font-weight:400;
  8480. font-style:normal;
  8481. font-size:12px;
  8482. color:#AAAAAA;
  8483. }
  8484. #u17002 .text {
  8485. position:absolute;
  8486. align-self:flex-start;
  8487. padding:0px 0px 0px 0px;
  8488. box-sizing:border-box;
  8489. width:100%;
  8490. }
  8491. #u17002_text {
  8492. border-width:0px;
  8493. white-space:nowrap;
  8494. text-transform:none;
  8495. }
  8496. #u17003 {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:998px;
  8501. width:200px;
  8502. height:1px;
  8503. display:flex;
  8504. transition:none;
  8505. }
  8506. #u17003 .text {
  8507. position:absolute;
  8508. align-self:center;
  8509. padding:2px 2px 2px 2px;
  8510. box-sizing:border-box;
  8511. width:100%;
  8512. }
  8513. #u17003_img {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:0px;
  8517. top:0px;
  8518. width:201px;
  8519. height:2px;
  8520. }
  8521. #u17003_text {
  8522. border-width:0px;
  8523. word-wrap:break-word;
  8524. text-transform:none;
  8525. visibility:hidden;
  8526. }
  8527. #u17004_div {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:0px;
  8531. top:0px;
  8532. width:65px;
  8533. height:22px;
  8534. background:inherit;
  8535. background-color:rgba(255, 255, 255, 0);
  8536. border-radius:0px;
  8537. filter:drop-shadow(none);
  8538. transition:none;
  8539. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:16px;
  8543. }
  8544. #u17004 {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:25px;
  8548. top:1098px;
  8549. width:65px;
  8550. height:22px;
  8551. display:flex;
  8552. transition:none;
  8553. transform-origin:50% 50%;
  8554. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8555. font-weight:400;
  8556. font-style:normal;
  8557. font-size:16px;
  8558. }
  8559. #u17004 .text {
  8560. position:absolute;
  8561. align-self:flex-start;
  8562. padding:0px 0px 0px 0px;
  8563. box-sizing:border-box;
  8564. width:100%;
  8565. }
  8566. #u17004_text {
  8567. border-width:0px;
  8568. white-space:nowrap;
  8569. text-transform:none;
  8570. }
  8571. #u17005_div {
  8572. border-width:0px;
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:129px;
  8577. height:22px;
  8578. background:inherit;
  8579. background-color:rgba(255, 255, 255, 0);
  8580. border-radius:0px;
  8581. filter:drop-shadow(none);
  8582. transition:none;
  8583. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. font-size:16px;
  8587. }
  8588. #u17005 {
  8589. border-width:0px;
  8590. position:absolute;
  8591. left:25px;
  8592. top:914px;
  8593. width:129px;
  8594. height:22px;
  8595. display:flex;
  8596. transition:none;
  8597. transform-origin:50% 50%;
  8598. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8599. font-weight:400;
  8600. font-style:normal;
  8601. font-size:16px;
  8602. }
  8603. #u17005 .text {
  8604. position:absolute;
  8605. align-self:flex-start;
  8606. padding:0px 0px 0px 0px;
  8607. box-sizing:border-box;
  8608. width:100%;
  8609. }
  8610. #u17005_text {
  8611. border-width:0px;
  8612. white-space:nowrap;
  8613. text-transform:none;
  8614. }
  8615. #u17006_div {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:0px;
  8619. top:0px;
  8620. width:81px;
  8621. height:22px;
  8622. background:inherit;
  8623. background-color:rgba(255, 255, 255, 0);
  8624. border-radius:0px;
  8625. filter:drop-shadow(none);
  8626. transition:none;
  8627. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. font-size:16px;
  8631. }
  8632. #u17006 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:26px;
  8636. top:356px;
  8637. width:81px;
  8638. height:22px;
  8639. display:flex;
  8640. transition:none;
  8641. transform-origin:50% 50%;
  8642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8643. font-weight:400;
  8644. font-style:normal;
  8645. font-size:16px;
  8646. }
  8647. #u17006 .text {
  8648. position:absolute;
  8649. align-self:flex-start;
  8650. padding:0px 0px 0px 0px;
  8651. box-sizing:border-box;
  8652. width:100%;
  8653. }
  8654. #u17006_text {
  8655. border-width:0px;
  8656. white-space:nowrap;
  8657. text-transform:none;
  8658. }
  8659. #u17007_div {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:0px;
  8664. width:129px;
  8665. height:22px;
  8666. background:inherit;
  8667. background-color:rgba(255, 255, 255, 0);
  8668. border-radius:0px;
  8669. filter:drop-shadow(none);
  8670. transition:none;
  8671. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8672. font-weight:400;
  8673. font-style:normal;
  8674. font-size:16px;
  8675. }
  8676. #u17007 {
  8677. border-width:0px;
  8678. position:absolute;
  8679. left:25px;
  8680. top:790px;
  8681. width:129px;
  8682. height:22px;
  8683. display:flex;
  8684. transition:none;
  8685. transform-origin:50% 50%;
  8686. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8687. font-weight:400;
  8688. font-style:normal;
  8689. font-size:16px;
  8690. }
  8691. #u17007 .text {
  8692. position:absolute;
  8693. align-self:flex-start;
  8694. padding:0px 0px 0px 0px;
  8695. box-sizing:border-box;
  8696. width:100%;
  8697. }
  8698. #u17007_text {
  8699. border-width:0px;
  8700. white-space:nowrap;
  8701. text-transform:none;
  8702. }
  8703. #u17008_div {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:0px;
  8707. top:0px;
  8708. width:65px;
  8709. height:22px;
  8710. background:inherit;
  8711. background-color:rgba(255, 255, 255, 0);
  8712. border-radius:0px;
  8713. filter:drop-shadow(none);
  8714. transition:none;
  8715. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:16px;
  8719. }
  8720. #u17008 {
  8721. border-width:0px;
  8722. position:absolute;
  8723. left:25px;
  8724. top:160px;
  8725. width:65px;
  8726. height:22px;
  8727. display:flex;
  8728. transition:none;
  8729. transform-origin:50% 50%;
  8730. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:16px;
  8734. }
  8735. #u17008 .text {
  8736. position:absolute;
  8737. align-self:flex-start;
  8738. padding:0px 0px 0px 0px;
  8739. box-sizing:border-box;
  8740. width:100%;
  8741. }
  8742. #u17008_text {
  8743. border-width:0px;
  8744. white-space:nowrap;
  8745. text-transform:none;
  8746. }
  8747. #u17009_div {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:0px;
  8751. top:0px;
  8752. width:81px;
  8753. height:22px;
  8754. background:inherit;
  8755. background-color:rgba(255, 255, 255, 0);
  8756. border-radius:0px;
  8757. filter:drop-shadow(none);
  8758. transition:none;
  8759. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8760. font-weight:400;
  8761. font-style:normal;
  8762. font-size:16px;
  8763. }
  8764. #u17009 {
  8765. border-width:0px;
  8766. position:absolute;
  8767. left:25px;
  8768. top:598px;
  8769. width:81px;
  8770. height:22px;
  8771. display:flex;
  8772. transition:none;
  8773. transform-origin:50% 50%;
  8774. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8775. font-weight:400;
  8776. font-style:normal;
  8777. font-size:16px;
  8778. }
  8779. #u17009 .text {
  8780. position:absolute;
  8781. align-self:flex-start;
  8782. padding:0px 0px 0px 0px;
  8783. box-sizing:border-box;
  8784. width:100%;
  8785. }
  8786. #u17009_text {
  8787. border-width:0px;
  8788. white-space:nowrap;
  8789. text-transform:none;
  8790. }
  8791. #u17010_div {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:0px;
  8795. top:0px;
  8796. width:65px;
  8797. height:22px;
  8798. background:inherit;
  8799. background-color:rgba(255, 255, 255, 0);
  8800. border-radius:0px;
  8801. filter:drop-shadow(none);
  8802. transition:none;
  8803. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8804. font-weight:400;
  8805. font-style:normal;
  8806. font-size:16px;
  8807. }
  8808. #u17010 {
  8809. border-width:0px;
  8810. position:absolute;
  8811. left:25px;
  8812. top:640px;
  8813. width:65px;
  8814. height:22px;
  8815. display:flex;
  8816. transition:none;
  8817. transform-origin:50% 50%;
  8818. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8819. font-weight:400;
  8820. font-style:normal;
  8821. font-size:16px;
  8822. }
  8823. #u17010 .text {
  8824. position:absolute;
  8825. align-self:flex-start;
  8826. padding:0px 0px 0px 0px;
  8827. box-sizing:border-box;
  8828. width:100%;
  8829. }
  8830. #u17010_text {
  8831. border-width:0px;
  8832. white-space:nowrap;
  8833. text-transform:none;
  8834. }
  8835. #u17011_div {
  8836. border-width:0px;
  8837. position:absolute;
  8838. left:0px;
  8839. top:0px;
  8840. width:73px;
  8841. height:17px;
  8842. background:inherit;
  8843. background-color:rgba(255, 255, 255, 0);
  8844. border-radius:0px;
  8845. filter:drop-shadow(none);
  8846. transition:none;
  8847. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8848. font-weight:400;
  8849. font-style:normal;
  8850. font-size:12px;
  8851. color:#AAAAAA;
  8852. }
  8853. #u17011 {
  8854. border-width:0px;
  8855. position:absolute;
  8856. left:23px;
  8857. top:561px;
  8858. width:73px;
  8859. height:17px;
  8860. display:flex;
  8861. transition:none;
  8862. transform-origin:50% 50%;
  8863. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8864. font-weight:400;
  8865. font-style:normal;
  8866. font-size:12px;
  8867. color:#AAAAAA;
  8868. }
  8869. #u17011 .text {
  8870. position:absolute;
  8871. align-self:flex-start;
  8872. padding:0px 0px 0px 0px;
  8873. box-sizing:border-box;
  8874. width:100%;
  8875. }
  8876. #u17011_text {
  8877. border-width:0px;
  8878. white-space:nowrap;
  8879. text-transform:none;
  8880. }
  8881. #u17012 {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:0px;
  8885. top:540px;
  8886. width:200px;
  8887. height:1px;
  8888. display:flex;
  8889. transition:none;
  8890. }
  8891. #u17012 .text {
  8892. position:absolute;
  8893. align-self:center;
  8894. padding:2px 2px 2px 2px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u17012_img {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:0px;
  8903. width:201px;
  8904. height:2px;
  8905. }
  8906. #u17012_text {
  8907. border-width:0px;
  8908. word-wrap:break-word;
  8909. text-transform:none;
  8910. visibility:hidden;
  8911. }
  8912. #u17013_div {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:0px;
  8916. top:0px;
  8917. width:799px;
  8918. height:20px;
  8919. background:inherit;
  8920. background-color:rgba(255, 255, 255, 0);
  8921. border-left:0px;
  8922. border-top:0px;
  8923. border-right:0px;
  8924. border-radius:0px;
  8925. border-bottom-right-radius:0px;
  8926. border-bottom-left-radius:0px;
  8927. filter:drop-shadow(none);
  8928. transition:none;
  8929. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:14px;
  8933. color:#7F7F7F;
  8934. }
  8935. #u17013 {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:352px;
  8939. top:100px;
  8940. width:799px;
  8941. height:20px;
  8942. display:flex;
  8943. transition:none;
  8944. transform-origin:50% 50%;
  8945. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8946. font-weight:400;
  8947. font-style:normal;
  8948. font-size:14px;
  8949. color:#7F7F7F;
  8950. }
  8951. #u17013 .text {
  8952. position:absolute;
  8953. align-self:center;
  8954. padding:0px 0px 0px 0px;
  8955. box-sizing:border-box;
  8956. width:100%;
  8957. }
  8958. #u17013_text {
  8959. border-width:0px;
  8960. white-space:nowrap;
  8961. text-transform:none;
  8962. }
  8963. #u17014 {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:0px;
  8969. height:0px;
  8970. }
  8971. #u17015_div {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:140px;
  8977. height:30px;
  8978. background:inherit;
  8979. background-color:rgba(255, 255, 255, 1);
  8980. box-sizing:border-box;
  8981. border-width:1px;
  8982. border-style:solid;
  8983. border-color:rgba(215, 215, 215, 1);
  8984. border-radius:4px;
  8985. filter:drop-shadow(none);
  8986. transition:none;
  8987. font-size:14px;
  8988. }
  8989. #u17015 {
  8990. border-width:0px;
  8991. position:absolute;
  8992. left:500px;
  8993. top:183px;
  8994. width:140px;
  8995. height:30px;
  8996. display:flex;
  8997. transition:none;
  8998. transform-origin:50% 50%;
  8999. font-size:14px;
  9000. }
  9001. #u17015 .text {
  9002. position:absolute;
  9003. align-self:center;
  9004. padding:2px 2px 2px 2px;
  9005. box-sizing:border-box;
  9006. width:100%;
  9007. }
  9008. #u17015_text {
  9009. border-width:0px;
  9010. word-wrap:break-word;
  9011. text-transform:none;
  9012. visibility:hidden;
  9013. }
  9014. #u17016_input {
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:134px;
  9019. height:23px;
  9020. padding:2px 2px 2px 2px;
  9021. font-family:"ArialMT", "Arial", sans-serif;
  9022. font-weight:400;
  9023. font-style:normal;
  9024. font-size:14px;
  9025. letter-spacing:normal;
  9026. color:#AAAAAA;
  9027. vertical-align:none;
  9028. text-align:left;
  9029. text-transform:none;
  9030. background-color:transparent;
  9031. border-color:transparent;
  9032. }
  9033. #u17016_input.disabled {
  9034. position:absolute;
  9035. left:0px;
  9036. top:0px;
  9037. width:134px;
  9038. height:23px;
  9039. padding:2px 2px 2px 2px;
  9040. font-family:"ArialMT", "Arial", sans-serif;
  9041. font-weight:400;
  9042. font-style:normal;
  9043. font-size:14px;
  9044. letter-spacing:normal;
  9045. color:#AAAAAA;
  9046. vertical-align:none;
  9047. text-align:left;
  9048. text-transform:none;
  9049. background-color:transparent;
  9050. border-color:transparent;
  9051. }
  9052. #u17016_div {
  9053. border-width:0px;
  9054. position:absolute;
  9055. left:0px;
  9056. top:0px;
  9057. width:134px;
  9058. height:23px;
  9059. background:inherit;
  9060. background-color:rgba(255, 255, 255, 1);
  9061. border-radius:0px;
  9062. filter:drop-shadow(none);
  9063. transition:none;
  9064. font-size:14px;
  9065. color:#AAAAAA;
  9066. }
  9067. #u17016 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:504px;
  9071. top:185px;
  9072. width:134px;
  9073. height:23px;
  9074. display:flex;
  9075. transition:none;
  9076. transform-origin:50% 50%;
  9077. font-size:14px;
  9078. color:#AAAAAA;
  9079. }
  9080. #u17016 .text {
  9081. position:absolute;
  9082. align-self:flex-start;
  9083. padding:2px 2px 2px 2px;
  9084. box-sizing:border-box;
  9085. width:100%;
  9086. }
  9087. #u17016_div.disabled {
  9088. border-width:0px;
  9089. position:absolute;
  9090. left:0px;
  9091. top:0px;
  9092. width:134px;
  9093. height:23px;
  9094. background:inherit;
  9095. background-color:rgba(240, 240, 240, 1);
  9096. border-radius:0px;
  9097. filter:drop-shadow(none);
  9098. transition:none;
  9099. font-size:14px;
  9100. color:#AAAAAA;
  9101. }
  9102. #u17016.disabled {
  9103. }
  9104. .u17016_input_option {
  9105. font-size:14px;
  9106. }
  9107. #u17017 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:0px;
  9113. height:0px;
  9114. }
  9115. #u17018_div {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:0px;
  9119. top:0px;
  9120. width:140px;
  9121. height:30px;
  9122. background:inherit;
  9123. background-color:rgba(255, 255, 255, 1);
  9124. box-sizing:border-box;
  9125. border-width:1px;
  9126. border-style:solid;
  9127. border-color:rgba(215, 215, 215, 1);
  9128. border-radius:4px;
  9129. filter:drop-shadow(none);
  9130. transition:none;
  9131. font-size:14px;
  9132. }
  9133. #u17018 {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:800px;
  9137. top:183px;
  9138. width:140px;
  9139. height:30px;
  9140. display:flex;
  9141. transition:none;
  9142. transform-origin:50% 50%;
  9143. font-size:14px;
  9144. }
  9145. #u17018 .text {
  9146. position:absolute;
  9147. align-self:center;
  9148. padding:2px 2px 2px 2px;
  9149. box-sizing:border-box;
  9150. width:100%;
  9151. }
  9152. #u17018_text {
  9153. border-width:0px;
  9154. word-wrap:break-word;
  9155. text-transform:none;
  9156. visibility:hidden;
  9157. }
  9158. #u17019_input {
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:134px;
  9163. height:23px;
  9164. padding:2px 2px 2px 2px;
  9165. font-family:"ArialMT", "Arial", sans-serif;
  9166. font-weight:400;
  9167. font-style:normal;
  9168. font-size:14px;
  9169. letter-spacing:normal;
  9170. color:#AAAAAA;
  9171. vertical-align:none;
  9172. text-align:left;
  9173. text-transform:none;
  9174. background-color:transparent;
  9175. border-color:transparent;
  9176. }
  9177. #u17019_input.disabled {
  9178. position:absolute;
  9179. left:0px;
  9180. top:0px;
  9181. width:134px;
  9182. height:23px;
  9183. padding:2px 2px 2px 2px;
  9184. font-family:"ArialMT", "Arial", sans-serif;
  9185. font-weight:400;
  9186. font-style:normal;
  9187. font-size:14px;
  9188. letter-spacing:normal;
  9189. color:#AAAAAA;
  9190. vertical-align:none;
  9191. text-align:left;
  9192. text-transform:none;
  9193. background-color:transparent;
  9194. border-color:transparent;
  9195. }
  9196. #u17019_div {
  9197. border-width:0px;
  9198. position:absolute;
  9199. left:0px;
  9200. top:0px;
  9201. width:134px;
  9202. height:23px;
  9203. background:inherit;
  9204. background-color:rgba(255, 255, 255, 1);
  9205. border-radius:0px;
  9206. filter:drop-shadow(none);
  9207. transition:none;
  9208. font-size:14px;
  9209. color:#AAAAAA;
  9210. }
  9211. #u17019 {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:804px;
  9215. top:185px;
  9216. width:134px;
  9217. height:23px;
  9218. display:flex;
  9219. transition:none;
  9220. transform-origin:50% 50%;
  9221. font-size:14px;
  9222. color:#AAAAAA;
  9223. }
  9224. #u17019 .text {
  9225. position:absolute;
  9226. align-self:flex-start;
  9227. padding:2px 2px 2px 2px;
  9228. box-sizing:border-box;
  9229. width:100%;
  9230. }
  9231. #u17019_div.disabled {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:0px;
  9235. top:0px;
  9236. width:134px;
  9237. height:23px;
  9238. background:inherit;
  9239. background-color:rgba(240, 240, 240, 1);
  9240. border-radius:0px;
  9241. filter:drop-shadow(none);
  9242. transition:none;
  9243. font-size:14px;
  9244. color:#AAAAAA;
  9245. }
  9246. #u17019.disabled {
  9247. }
  9248. .u17019_input_option {
  9249. font-size:14px;
  9250. }
  9251. #u17020 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:0px;
  9257. height:0px;
  9258. }
  9259. #u17021_div {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:140px;
  9265. height:30px;
  9266. background:inherit;
  9267. background-color:rgba(255, 255, 255, 1);
  9268. box-sizing:border-box;
  9269. border-width:1px;
  9270. border-style:solid;
  9271. border-color:rgba(201, 201, 201, 1);
  9272. border-radius:4px;
  9273. filter:drop-shadow(none);
  9274. transition:none;
  9275. font-family:"Microsoft YaHei", sans-serif;
  9276. font-weight:400;
  9277. font-style:normal;
  9278. font-size:14px;
  9279. color:#CCCCCC;
  9280. text-align:left;
  9281. }
  9282. #u17021 {
  9283. border-width:0px;
  9284. position:absolute;
  9285. left:650px;
  9286. top:183px;
  9287. width:140px;
  9288. height:30px;
  9289. display:flex;
  9290. transition:none;
  9291. transform-origin:50% 50%;
  9292. font-family:"Microsoft YaHei", sans-serif;
  9293. font-weight:400;
  9294. font-style:normal;
  9295. font-size:14px;
  9296. color:#CCCCCC;
  9297. text-align:left;
  9298. }
  9299. #u17021 .text {
  9300. position:absolute;
  9301. align-self:center;
  9302. padding:2px 8px 2px 8px;
  9303. box-sizing:border-box;
  9304. width:100%;
  9305. }
  9306. #u17021_text {
  9307. border-width:0px;
  9308. word-wrap:break-word;
  9309. text-transform:none;
  9310. visibility:hidden;
  9311. }
  9312. #u17022_input {
  9313. position:absolute;
  9314. left:0px;
  9315. top:0px;
  9316. width:127px;
  9317. height:25px;
  9318. padding:2px 2px 2px 2px;
  9319. font-family:"Microsoft YaHei", sans-serif;
  9320. font-weight:400;
  9321. font-style:normal;
  9322. font-size:10px;
  9323. letter-spacing:normal;
  9324. color:#000000;
  9325. vertical-align:none;
  9326. text-align:left;
  9327. text-transform:none;
  9328. background-color:transparent;
  9329. border-color:transparent;
  9330. }
  9331. #u17022_input.hint {
  9332. position:absolute;
  9333. left:0px;
  9334. top:0px;
  9335. width:127px;
  9336. height:25px;
  9337. padding:2px 2px 2px 2px;
  9338. font-family:"Microsoft YaHei", sans-serif;
  9339. font-weight:400;
  9340. font-style:normal;
  9341. font-size:12px;
  9342. letter-spacing:normal;
  9343. color:#AAAAAA;
  9344. vertical-align:none;
  9345. text-align:left;
  9346. text-transform:none;
  9347. background-color:transparent;
  9348. border-color:transparent;
  9349. }
  9350. #u17022_input.disabled {
  9351. position:absolute;
  9352. left:0px;
  9353. top:0px;
  9354. width:127px;
  9355. height:25px;
  9356. padding:2px 2px 2px 2px;
  9357. font-family:"Microsoft YaHei", sans-serif;
  9358. font-weight:400;
  9359. font-style:normal;
  9360. font-size:10px;
  9361. letter-spacing:normal;
  9362. color:#000000;
  9363. vertical-align:none;
  9364. text-align:left;
  9365. text-transform:none;
  9366. background-color:transparent;
  9367. border-color:transparent;
  9368. }
  9369. #u17022_input.hint.disabled {
  9370. position:absolute;
  9371. left:0px;
  9372. top:0px;
  9373. width:127px;
  9374. height:25px;
  9375. padding:2px 2px 2px 2px;
  9376. font-family:"Microsoft YaHei", sans-serif;
  9377. font-weight:400;
  9378. font-style:normal;
  9379. font-size:12px;
  9380. letter-spacing:normal;
  9381. color:#AAAAAA;
  9382. vertical-align:none;
  9383. text-align:left;
  9384. text-transform:none;
  9385. background-color:transparent;
  9386. border-color:transparent;
  9387. }
  9388. #u17022_div {
  9389. border-width:0px;
  9390. position:absolute;
  9391. left:0px;
  9392. top:0px;
  9393. width:127px;
  9394. height:25px;
  9395. background:inherit;
  9396. background-color:rgba(255, 255, 255, 1);
  9397. border-radius:0px;
  9398. filter:drop-shadow(none);
  9399. transition:none;
  9400. font-family:"Microsoft YaHei", sans-serif;
  9401. font-weight:400;
  9402. font-style:normal;
  9403. font-size:10px;
  9404. }
  9405. #u17022 {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:658px;
  9409. top:184px;
  9410. width:127px;
  9411. height:25px;
  9412. display:flex;
  9413. transition:none;
  9414. transform-origin:50% 50%;
  9415. font-family:"Microsoft YaHei", sans-serif;
  9416. font-weight:400;
  9417. font-style:normal;
  9418. font-size:10px;
  9419. }
  9420. #u17022 .text {
  9421. position:absolute;
  9422. align-self:center;
  9423. padding:2px 2px 2px 2px;
  9424. box-sizing:border-box;
  9425. width:100%;
  9426. }
  9427. #u17022_div.hint {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:0px;
  9431. top:0px;
  9432. width:127px;
  9433. height:25px;
  9434. background:inherit;
  9435. background-color:rgba(255, 255, 255, 1);
  9436. border-radius:0px;
  9437. filter:drop-shadow(none);
  9438. transition:none;
  9439. font-family:"Microsoft YaHei", sans-serif;
  9440. font-weight:400;
  9441. font-style:normal;
  9442. font-size:10px;
  9443. }
  9444. #u17022.hint {
  9445. }
  9446. #u17022_div.disabled {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:127px;
  9452. height:25px;
  9453. background:inherit;
  9454. background-color:rgba(240, 240, 240, 1);
  9455. border-radius:0px;
  9456. filter:drop-shadow(none);
  9457. transition:none;
  9458. font-family:"Microsoft YaHei", sans-serif;
  9459. font-weight:400;
  9460. font-style:normal;
  9461. font-size:10px;
  9462. }
  9463. #u17022.disabled {
  9464. }
  9465. #u17022_div.hint.disabled {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:0px;
  9469. top:0px;
  9470. width:127px;
  9471. height:25px;
  9472. background:inherit;
  9473. background-color:rgba(240, 240, 240, 1);
  9474. border-radius:0px;
  9475. filter:drop-shadow(none);
  9476. transition:none;
  9477. font-family:"Microsoft YaHei", sans-serif;
  9478. font-weight:400;
  9479. font-style:normal;
  9480. font-size:10px;
  9481. }
  9482. #u17022.hint.disabled {
  9483. }