styles.css 158 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874
  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. #u19112 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u19113_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. #u19113 {
  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. #u19113 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u19113_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u19114_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. #u19114 {
  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. #u19114 .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. #u19114_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u19115_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. #u19115 {
  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. #u19115 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u19115_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u19116 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u19117 {
  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. #u19117 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u19117_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u19117_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u19118_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. #u19118 {
  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. #u19118 .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. #u19118_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u19119_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. #u19119 {
  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. #u19119 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u19119_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u19120 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u19121_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. #u19121 {
  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. #u19121 .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. #u19121_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u19122 {
  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. #u19122 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u19122_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u19122_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u19123 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u19124_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. #u19124 {
  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. #u19124 .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. #u19124_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u19125 {
  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. #u19125 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u19125_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u19125_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u19126 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u19127_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. #u19127 {
  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. #u19127 .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. #u19127_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u19128 {
  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. #u19128 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u19128_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u19128_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u19129 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u19130_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. #u19130 {
  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. #u19130 .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. #u19130_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u19131 {
  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. #u19131 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u19131_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u19131_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u19132 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u19133_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. #u19133 {
  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. #u19133 .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. #u19133_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u19134 {
  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. #u19134 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u19134_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u19134_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u19135 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u19136_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. #u19136 {
  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. #u19136 .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. #u19136_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u19137 {
  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. #u19137 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u19137_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u19137_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u19138 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u19139_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. #u19139 {
  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. #u19139 .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. #u19139_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u19140 {
  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. #u19140 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u19140_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u19140_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u19141 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u19142_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. #u19142 {
  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. #u19142 .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. #u19142_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u19143 {
  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. #u19143 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u19143_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u19143_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u19144 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u19145_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. #u19145 {
  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. #u19145 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u19145_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u19146 {
  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. #u19146 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u19146_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u19146_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u19147 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u19148_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. #u19148 {
  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. #u19148 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u19148_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u19149 {
  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. #u19149 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u19149_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u19149_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u19150 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u19151_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. #u19151 {
  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. #u19151 .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. #u19151_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u19152 {
  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. #u19152 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u19152_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u19152_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u19153 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u19154_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. #u19154_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. #u19154_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. #u19154 {
  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. #u19154 .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. #u19154_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. #u19154.disabled {
  1294. }
  1295. .u19154_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u19155 {
  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. #u19155 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u19155_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u19155_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u19156_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. #u19156 {
  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. #u19156 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u19156_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u19157 {
  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. #u19157 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u19157_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u19157_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u19158 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u19159_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. #u19159 {
  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. #u19159 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u19159_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u19160 {
  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. #u19160 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u19160_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u19160_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u19161 {
  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. #u19161 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u19161_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u19161_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u19162 {
  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. #u19162 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u19162_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u19162_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u19163 {
  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. #u19163 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u19163_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u19163_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u19164 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u19165_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. #u19165 {
  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. #u19165 .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. #u19165_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u19166 {
  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. #u19166 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u19166_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u19166_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u19167_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. #u19167 {
  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. #u19167 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u19167_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u19168 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:350px;
  1708. top:273px;
  1709. width:1219px;
  1710. height:313px;
  1711. }
  1712. #u19169 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:122px;
  1718. height:35px;
  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. #u19169 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u19169_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:122px;
  1740. height:35px;
  1741. }
  1742. #u19169_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u19170 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:122px;
  1751. top:0px;
  1752. width:116px;
  1753. height:35px;
  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. #u19170 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u19170_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:116px;
  1775. height:35px;
  1776. }
  1777. #u19170_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u19171 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:238px;
  1786. top:0px;
  1787. width:114px;
  1788. height:35px;
  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. #u19171 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u19171_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:114px;
  1810. height:35px;
  1811. }
  1812. #u19171_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u19172 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:352px;
  1821. top:0px;
  1822. width:110px;
  1823. height:35px;
  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. #u19172 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u19172_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:110px;
  1845. height:35px;
  1846. }
  1847. #u19172_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u19173 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:462px;
  1856. top:0px;
  1857. width:111px;
  1858. height:35px;
  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. #u19173 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u19173_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:111px;
  1880. height:35px;
  1881. }
  1882. #u19173_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u19174 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:573px;
  1891. top:0px;
  1892. width:110px;
  1893. height:35px;
  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. #u19174 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u19174_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:110px;
  1915. height:35px;
  1916. }
  1917. #u19174_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u19175 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:683px;
  1926. top:0px;
  1927. width:111px;
  1928. height:35px;
  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. #u19175 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u19175_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:111px;
  1950. height:35px;
  1951. }
  1952. #u19175_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u19176 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:794px;
  1961. top:0px;
  1962. width:110px;
  1963. height:35px;
  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. #u19176 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u19176_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:110px;
  1985. height:35px;
  1986. }
  1987. #u19176_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u19177 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:904px;
  1996. top:0px;
  1997. width:110px;
  1998. height:35px;
  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. #u19177 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u19177_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:110px;
  2020. height:35px;
  2021. }
  2022. #u19177_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u19178 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:1014px;
  2031. top:0px;
  2032. width:110px;
  2033. height:35px;
  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. #u19178 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u19178_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:110px;
  2055. height:35px;
  2056. }
  2057. #u19178_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u19179 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:1124px;
  2066. top:0px;
  2067. width:95px;
  2068. height:35px;
  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. #u19179 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u19179_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:95px;
  2090. height:35px;
  2091. }
  2092. #u19179_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u19180 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:35px;
  2102. width:122px;
  2103. height:44px;
  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:#333333;
  2111. line-height:40px;
  2112. }
  2113. #u19180 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u19180_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:122px;
  2126. height:44px;
  2127. }
  2128. #u19180_text {
  2129. border-width:0px;
  2130. word-wrap:break-word;
  2131. text-transform:none;
  2132. }
  2133. #u19181 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:122px;
  2137. top:35px;
  2138. width:116px;
  2139. height:44px;
  2140. display:flex;
  2141. transition:none;
  2142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:12px;
  2146. color:#333333;
  2147. line-height:40px;
  2148. }
  2149. #u19181 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 0px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u19181_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:116px;
  2162. height:44px;
  2163. }
  2164. #u19181_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. visibility:hidden;
  2169. }
  2170. #u19182 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:238px;
  2174. top:35px;
  2175. width:114px;
  2176. height:44px;
  2177. display:flex;
  2178. transition:none;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#333333;
  2184. line-height:40px;
  2185. }
  2186. #u19182 .text {
  2187. position:absolute;
  2188. align-self:center;
  2189. padding:2px 2px 2px 0px;
  2190. box-sizing:border-box;
  2191. width:100%;
  2192. }
  2193. #u19182_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:114px;
  2199. height:44px;
  2200. }
  2201. #u19182_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u19183 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:352px;
  2211. top:35px;
  2212. width:110px;
  2213. height:44px;
  2214. display:flex;
  2215. transition:none;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. }
  2221. #u19183 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 0px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u19183_img {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:110px;
  2234. height:44px;
  2235. }
  2236. #u19183_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. visibility:hidden;
  2241. }
  2242. #u19184 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:462px;
  2246. top:35px;
  2247. width:111px;
  2248. height:44px;
  2249. display:flex;
  2250. transition:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. }
  2256. #u19184 .text {
  2257. position:absolute;
  2258. align-self:center;
  2259. padding:2px 2px 2px 0px;
  2260. box-sizing:border-box;
  2261. width:100%;
  2262. }
  2263. #u19184_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:111px;
  2269. height:44px;
  2270. }
  2271. #u19184_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u19185 {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:573px;
  2281. top:35px;
  2282. width:110px;
  2283. height:44px;
  2284. display:flex;
  2285. transition:none;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. color:#606266;
  2291. }
  2292. #u19185 .text {
  2293. position:absolute;
  2294. align-self:center;
  2295. padding:2px 2px 2px 0px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u19185_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:110px;
  2305. height:44px;
  2306. }
  2307. #u19185_text {
  2308. border-width:0px;
  2309. word-wrap:break-word;
  2310. text-transform:none;
  2311. visibility:hidden;
  2312. }
  2313. #u19186 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:683px;
  2317. top:35px;
  2318. width:111px;
  2319. height:44px;
  2320. display:flex;
  2321. transition:none;
  2322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:12px;
  2326. color:#606266;
  2327. }
  2328. #u19186 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u19186_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:111px;
  2341. height:44px;
  2342. }
  2343. #u19186_text {
  2344. border-width:0px;
  2345. word-wrap:break-word;
  2346. text-transform:none;
  2347. visibility:hidden;
  2348. }
  2349. #u19187 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:794px;
  2353. top:35px;
  2354. width:110px;
  2355. height:44px;
  2356. display:flex;
  2357. transition:none;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. color:#333333;
  2363. }
  2364. #u19187 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u19187_img {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:110px;
  2377. height:44px;
  2378. }
  2379. #u19187_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u19188 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:904px;
  2389. top:35px;
  2390. width:110px;
  2391. height:44px;
  2392. display:flex;
  2393. transition:none;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. color:#333333;
  2399. }
  2400. #u19188 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u19188_img {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:110px;
  2413. height:44px;
  2414. }
  2415. #u19188_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. visibility:hidden;
  2420. }
  2421. #u19189 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:1014px;
  2425. top:35px;
  2426. width:110px;
  2427. height:44px;
  2428. display:flex;
  2429. transition:none;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. color:#333333;
  2435. }
  2436. #u19189 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:2px 2px 2px 0px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u19189_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:110px;
  2449. height:44px;
  2450. }
  2451. #u19189_text {
  2452. border-width:0px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. visibility:hidden;
  2456. }
  2457. #u19190 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:1124px;
  2461. top:35px;
  2462. width:95px;
  2463. height:44px;
  2464. display:flex;
  2465. transition:none;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:12px;
  2470. color:#298FFF;
  2471. line-height:35px;
  2472. }
  2473. #u19190 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:2px 2px 2px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u19190_img {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:95px;
  2486. height:44px;
  2487. }
  2488. #u19190_text {
  2489. border-width:0px;
  2490. word-wrap:break-word;
  2491. text-transform:none;
  2492. }
  2493. #u19191 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:79px;
  2498. width:122px;
  2499. height:44px;
  2500. display:flex;
  2501. transition:none;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:12px;
  2506. color:#333333;
  2507. line-height:40px;
  2508. }
  2509. #u19191 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 0px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u19191_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:122px;
  2522. height:44px;
  2523. }
  2524. #u19191_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. }
  2529. #u19192 {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:122px;
  2533. top:79px;
  2534. width:116px;
  2535. height:44px;
  2536. display:flex;
  2537. transition:none;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. color:#333333;
  2543. line-height:40px;
  2544. }
  2545. #u19192 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 0px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u19192_img {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:116px;
  2558. height:44px;
  2559. }
  2560. #u19192_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. visibility:hidden;
  2565. }
  2566. #u19193 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:238px;
  2570. top:79px;
  2571. width:114px;
  2572. height:44px;
  2573. display:flex;
  2574. transition:none;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:12px;
  2579. color:#333333;
  2580. line-height:40px;
  2581. }
  2582. #u19193 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u19193_img {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:114px;
  2595. height:44px;
  2596. }
  2597. #u19193_text {
  2598. border-width:0px;
  2599. word-wrap:break-word;
  2600. text-transform:none;
  2601. visibility:hidden;
  2602. }
  2603. #u19194 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:352px;
  2607. top:79px;
  2608. width:110px;
  2609. height:44px;
  2610. display:flex;
  2611. transition:none;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. }
  2617. #u19194 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:2px 2px 2px 0px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u19194_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:110px;
  2630. height:44px;
  2631. }
  2632. #u19194_text {
  2633. border-width:0px;
  2634. word-wrap:break-word;
  2635. text-transform:none;
  2636. visibility:hidden;
  2637. }
  2638. #u19195 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:462px;
  2642. top:79px;
  2643. width:111px;
  2644. height:44px;
  2645. display:flex;
  2646. transition:none;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. }
  2652. #u19195 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u19195_img {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:0px;
  2663. top:0px;
  2664. width:111px;
  2665. height:44px;
  2666. }
  2667. #u19195_text {
  2668. border-width:0px;
  2669. word-wrap:break-word;
  2670. text-transform:none;
  2671. visibility:hidden;
  2672. }
  2673. #u19196 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:573px;
  2677. top:79px;
  2678. width:110px;
  2679. height:44px;
  2680. display:flex;
  2681. transition:none;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:12px;
  2686. color:#606266;
  2687. }
  2688. #u19196 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u19196_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:110px;
  2701. height:44px;
  2702. }
  2703. #u19196_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u19197 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:683px;
  2713. top:79px;
  2714. width:111px;
  2715. height:44px;
  2716. display:flex;
  2717. transition:none;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:12px;
  2722. color:#606266;
  2723. }
  2724. #u19197 .text {
  2725. position:absolute;
  2726. align-self:center;
  2727. padding:2px 2px 2px 0px;
  2728. box-sizing:border-box;
  2729. width:100%;
  2730. }
  2731. #u19197_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:111px;
  2737. height:44px;
  2738. }
  2739. #u19197_text {
  2740. border-width:0px;
  2741. word-wrap:break-word;
  2742. text-transform:none;
  2743. visibility:hidden;
  2744. }
  2745. #u19198 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:794px;
  2749. top:79px;
  2750. width:110px;
  2751. height:44px;
  2752. display:flex;
  2753. transition:none;
  2754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:12px;
  2758. color:#333333;
  2759. }
  2760. #u19198 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 2px 2px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u19198_img {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:110px;
  2773. height:44px;
  2774. }
  2775. #u19198_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u19199 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:904px;
  2785. top:79px;
  2786. width:110px;
  2787. height:44px;
  2788. display:flex;
  2789. transition:none;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:12px;
  2794. color:#333333;
  2795. }
  2796. #u19199 .text {
  2797. position:absolute;
  2798. align-self:center;
  2799. padding:2px 2px 2px 0px;
  2800. box-sizing:border-box;
  2801. width:100%;
  2802. }
  2803. #u19199_img {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:0px;
  2807. top:0px;
  2808. width:110px;
  2809. height:44px;
  2810. }
  2811. #u19199_text {
  2812. border-width:0px;
  2813. word-wrap:break-word;
  2814. text-transform:none;
  2815. visibility:hidden;
  2816. }
  2817. #u19200 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:1014px;
  2821. top:79px;
  2822. width:110px;
  2823. height:44px;
  2824. display:flex;
  2825. transition:none;
  2826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:12px;
  2830. color:#333333;
  2831. }
  2832. #u19200 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:2px 2px 2px 0px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u19200_img {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:110px;
  2845. height:44px;
  2846. }
  2847. #u19200_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u19201 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:1124px;
  2857. top:79px;
  2858. width:95px;
  2859. height:44px;
  2860. display:flex;
  2861. transition:none;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:12px;
  2866. color:#1890FF;
  2867. }
  2868. #u19201 .text {
  2869. position:absolute;
  2870. align-self:center;
  2871. padding:2px 2px 2px 0px;
  2872. box-sizing:border-box;
  2873. width:100%;
  2874. }
  2875. #u19201_img {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:95px;
  2881. height:44px;
  2882. }
  2883. #u19201_text {
  2884. border-width:0px;
  2885. word-wrap:break-word;
  2886. text-transform:none;
  2887. visibility:hidden;
  2888. }
  2889. #u19202 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:123px;
  2894. width:122px;
  2895. height:38px;
  2896. display:flex;
  2897. transition:none;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:12px;
  2902. color:#333333;
  2903. line-height:40px;
  2904. }
  2905. #u19202 .text {
  2906. position:absolute;
  2907. align-self:center;
  2908. padding:2px 2px 2px 0px;
  2909. box-sizing:border-box;
  2910. width:100%;
  2911. }
  2912. #u19202_img {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:122px;
  2918. height:38px;
  2919. }
  2920. #u19202_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u19203 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:122px;
  2930. top:123px;
  2931. width:116px;
  2932. height:38px;
  2933. display:flex;
  2934. transition:none;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:12px;
  2939. color:#333333;
  2940. line-height:40px;
  2941. }
  2942. #u19203 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 0px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u19203_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:116px;
  2955. height:38px;
  2956. }
  2957. #u19203_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u19204 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:238px;
  2967. top:123px;
  2968. width:114px;
  2969. height:38px;
  2970. display:flex;
  2971. transition:none;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:12px;
  2976. color:#333333;
  2977. line-height:40px;
  2978. }
  2979. #u19204 .text {
  2980. position:absolute;
  2981. align-self:center;
  2982. padding:2px 2px 2px 0px;
  2983. box-sizing:border-box;
  2984. width:100%;
  2985. }
  2986. #u19204_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:114px;
  2992. height:38px;
  2993. }
  2994. #u19204_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u19205 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:352px;
  3004. top:123px;
  3005. width:110px;
  3006. height:38px;
  3007. display:flex;
  3008. transition:none;
  3009. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:12px;
  3013. color:#606266;
  3014. }
  3015. #u19205 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u19205_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:110px;
  3028. height:38px;
  3029. }
  3030. #u19205_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u19206 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:462px;
  3040. top:123px;
  3041. width:111px;
  3042. height:38px;
  3043. display:flex;
  3044. transition:none;
  3045. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. color:#606266;
  3050. }
  3051. #u19206 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 0px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u19206_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:111px;
  3064. height:38px;
  3065. }
  3066. #u19206_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u19207 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:573px;
  3076. top:123px;
  3077. width:110px;
  3078. height:38px;
  3079. display:flex;
  3080. transition:none;
  3081. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3082. font-weight:400;
  3083. font-style:normal;
  3084. font-size:12px;
  3085. color:#606266;
  3086. }
  3087. #u19207 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 0px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u19207_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:110px;
  3100. height:38px;
  3101. }
  3102. #u19207_text {
  3103. border-width:0px;
  3104. word-wrap:break-word;
  3105. text-transform:none;
  3106. visibility:hidden;
  3107. }
  3108. #u19208 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:683px;
  3112. top:123px;
  3113. width:111px;
  3114. height:38px;
  3115. display:flex;
  3116. transition:none;
  3117. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:12px;
  3121. color:#606266;
  3122. }
  3123. #u19208 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u19208_img {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:111px;
  3136. height:38px;
  3137. }
  3138. #u19208_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u19209 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:794px;
  3148. top:123px;
  3149. width:110px;
  3150. height:38px;
  3151. display:flex;
  3152. transition:none;
  3153. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:12px;
  3157. color:#606266;
  3158. }
  3159. #u19209 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u19209_img {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:110px;
  3172. height:38px;
  3173. }
  3174. #u19209_text {
  3175. border-width:0px;
  3176. word-wrap:break-word;
  3177. text-transform:none;
  3178. visibility:hidden;
  3179. }
  3180. #u19210 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:904px;
  3184. top:123px;
  3185. width:110px;
  3186. height:38px;
  3187. display:flex;
  3188. transition:none;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. color:#606266;
  3194. }
  3195. #u19210 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u19210_img {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:110px;
  3208. height:38px;
  3209. }
  3210. #u19210_text {
  3211. border-width:0px;
  3212. word-wrap:break-word;
  3213. text-transform:none;
  3214. visibility:hidden;
  3215. }
  3216. #u19211 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:1014px;
  3220. top:123px;
  3221. width:110px;
  3222. height:38px;
  3223. display:flex;
  3224. transition:none;
  3225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3226. font-weight:400;
  3227. font-style:normal;
  3228. font-size:12px;
  3229. color:#606266;
  3230. }
  3231. #u19211 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 0px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u19211_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:110px;
  3244. height:38px;
  3245. }
  3246. #u19211_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u19212 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:1124px;
  3256. top:123px;
  3257. width:95px;
  3258. height:38px;
  3259. display:flex;
  3260. transition:none;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. color:#1890FF;
  3266. }
  3267. #u19212 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u19212_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:95px;
  3280. height:38px;
  3281. }
  3282. #u19212_text {
  3283. border-width:0px;
  3284. word-wrap:break-word;
  3285. text-transform:none;
  3286. visibility:hidden;
  3287. }
  3288. #u19213 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:161px;
  3293. width:122px;
  3294. height:38px;
  3295. display:flex;
  3296. transition:none;
  3297. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:12px;
  3301. color:#606266;
  3302. }
  3303. #u19213 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u19213_img {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:0px;
  3314. top:0px;
  3315. width:122px;
  3316. height:38px;
  3317. }
  3318. #u19213_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. visibility:hidden;
  3323. }
  3324. #u19214 {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:122px;
  3328. top:161px;
  3329. width:116px;
  3330. height:38px;
  3331. display:flex;
  3332. transition:none;
  3333. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3334. font-weight:400;
  3335. font-style:normal;
  3336. font-size:12px;
  3337. color:#606266;
  3338. }
  3339. #u19214 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 0px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u19214_img {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:0px;
  3350. top:0px;
  3351. width:116px;
  3352. height:38px;
  3353. }
  3354. #u19214_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u19215 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:238px;
  3364. top:161px;
  3365. width:114px;
  3366. height:38px;
  3367. display:flex;
  3368. transition:none;
  3369. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:12px;
  3373. color:#606266;
  3374. }
  3375. #u19215 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u19215_img {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:114px;
  3388. height:38px;
  3389. }
  3390. #u19215_text {
  3391. border-width:0px;
  3392. word-wrap:break-word;
  3393. text-transform:none;
  3394. visibility:hidden;
  3395. }
  3396. #u19216 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:352px;
  3400. top:161px;
  3401. width:110px;
  3402. height:38px;
  3403. display:flex;
  3404. transition:none;
  3405. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:12px;
  3409. color:#606266;
  3410. }
  3411. #u19216 .text {
  3412. position:absolute;
  3413. align-self:center;
  3414. padding:2px 2px 2px 0px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u19216_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:110px;
  3424. height:38px;
  3425. }
  3426. #u19216_text {
  3427. border-width:0px;
  3428. word-wrap:break-word;
  3429. text-transform:none;
  3430. visibility:hidden;
  3431. }
  3432. #u19217 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:462px;
  3436. top:161px;
  3437. width:111px;
  3438. height:38px;
  3439. display:flex;
  3440. transition:none;
  3441. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3442. font-weight:400;
  3443. font-style:normal;
  3444. font-size:12px;
  3445. color:#606266;
  3446. }
  3447. #u19217 .text {
  3448. position:absolute;
  3449. align-self:center;
  3450. padding:2px 2px 2px 0px;
  3451. box-sizing:border-box;
  3452. width:100%;
  3453. }
  3454. #u19217_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:111px;
  3460. height:38px;
  3461. }
  3462. #u19217_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. visibility:hidden;
  3467. }
  3468. #u19218 {
  3469. border-width:0px;
  3470. position:absolute;
  3471. left:573px;
  3472. top:161px;
  3473. width:110px;
  3474. height:38px;
  3475. display:flex;
  3476. transition:none;
  3477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. color:#606266;
  3482. }
  3483. #u19218 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 0px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u19218_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:110px;
  3496. height:38px;
  3497. }
  3498. #u19218_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. visibility:hidden;
  3503. }
  3504. #u19219 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:683px;
  3508. top:161px;
  3509. width:111px;
  3510. height:38px;
  3511. display:flex;
  3512. transition:none;
  3513. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:12px;
  3517. color:#606266;
  3518. }
  3519. #u19219 .text {
  3520. position:absolute;
  3521. align-self:center;
  3522. padding:2px 2px 2px 0px;
  3523. box-sizing:border-box;
  3524. width:100%;
  3525. }
  3526. #u19219_img {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:111px;
  3532. height:38px;
  3533. }
  3534. #u19219_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. visibility:hidden;
  3539. }
  3540. #u19220 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:794px;
  3544. top:161px;
  3545. width:110px;
  3546. height:38px;
  3547. display:flex;
  3548. transition:none;
  3549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3550. font-weight:400;
  3551. font-style:normal;
  3552. font-size:12px;
  3553. color:#606266;
  3554. }
  3555. #u19220 .text {
  3556. position:absolute;
  3557. align-self:center;
  3558. padding:2px 2px 2px 0px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u19220_img {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:110px;
  3568. height:38px;
  3569. }
  3570. #u19220_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. visibility:hidden;
  3575. }
  3576. #u19221 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:904px;
  3580. top:161px;
  3581. width:110px;
  3582. height:38px;
  3583. display:flex;
  3584. transition:none;
  3585. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3586. font-weight:400;
  3587. font-style:normal;
  3588. font-size:12px;
  3589. color:#606266;
  3590. }
  3591. #u19221 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 0px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u19221_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:110px;
  3604. height:38px;
  3605. }
  3606. #u19221_text {
  3607. border-width:0px;
  3608. word-wrap:break-word;
  3609. text-transform:none;
  3610. visibility:hidden;
  3611. }
  3612. #u19222 {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:1014px;
  3616. top:161px;
  3617. width:110px;
  3618. height:38px;
  3619. display:flex;
  3620. transition:none;
  3621. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:12px;
  3625. color:#606266;
  3626. }
  3627. #u19222 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 0px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u19222_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:110px;
  3640. height:38px;
  3641. }
  3642. #u19222_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u19223 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:1124px;
  3652. top:161px;
  3653. width:95px;
  3654. height:38px;
  3655. display:flex;
  3656. transition:none;
  3657. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:12px;
  3661. color:#606266;
  3662. }
  3663. #u19223 .text {
  3664. position:absolute;
  3665. align-self:center;
  3666. padding:2px 2px 2px 0px;
  3667. box-sizing:border-box;
  3668. width:100%;
  3669. }
  3670. #u19223_img {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:95px;
  3676. height:38px;
  3677. }
  3678. #u19223_text {
  3679. border-width:0px;
  3680. word-wrap:break-word;
  3681. text-transform:none;
  3682. visibility:hidden;
  3683. }
  3684. #u19224 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:199px;
  3689. width:122px;
  3690. height:38px;
  3691. display:flex;
  3692. transition:none;
  3693. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#606266;
  3698. }
  3699. #u19224 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u19224_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:122px;
  3712. height:38px;
  3713. }
  3714. #u19224_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u19225 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:122px;
  3724. top:199px;
  3725. width:116px;
  3726. height:38px;
  3727. display:flex;
  3728. transition:none;
  3729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:12px;
  3733. color:#606266;
  3734. }
  3735. #u19225 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 2px 2px 0px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u19225_img {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:116px;
  3748. height:38px;
  3749. }
  3750. #u19225_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u19226 {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:238px;
  3760. top:199px;
  3761. width:114px;
  3762. height:38px;
  3763. display:flex;
  3764. transition:none;
  3765. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:12px;
  3769. color:#606266;
  3770. }
  3771. #u19226 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u19226_img {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:0px;
  3783. width:114px;
  3784. height:38px;
  3785. }
  3786. #u19226_text {
  3787. border-width:0px;
  3788. word-wrap:break-word;
  3789. text-transform:none;
  3790. visibility:hidden;
  3791. }
  3792. #u19227 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:352px;
  3796. top:199px;
  3797. width:110px;
  3798. height:38px;
  3799. display:flex;
  3800. transition:none;
  3801. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:12px;
  3805. color:#606266;
  3806. }
  3807. #u19227 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 2px 2px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u19227_img {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:110px;
  3820. height:38px;
  3821. }
  3822. #u19227_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u19228 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:462px;
  3832. top:199px;
  3833. width:111px;
  3834. height:38px;
  3835. display:flex;
  3836. transition:none;
  3837. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:#606266;
  3842. }
  3843. #u19228 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u19228_img {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:111px;
  3856. height:38px;
  3857. }
  3858. #u19228_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u19229 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:573px;
  3868. top:199px;
  3869. width:110px;
  3870. height:38px;
  3871. display:flex;
  3872. transition:none;
  3873. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:12px;
  3877. color:#606266;
  3878. }
  3879. #u19229 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u19229_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:110px;
  3892. height:38px;
  3893. }
  3894. #u19229_text {
  3895. border-width:0px;
  3896. word-wrap:break-word;
  3897. text-transform:none;
  3898. visibility:hidden;
  3899. }
  3900. #u19230 {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:683px;
  3904. top:199px;
  3905. width:111px;
  3906. height:38px;
  3907. display:flex;
  3908. transition:none;
  3909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:12px;
  3913. color:#606266;
  3914. }
  3915. #u19230 .text {
  3916. position:absolute;
  3917. align-self:center;
  3918. padding:2px 2px 2px 0px;
  3919. box-sizing:border-box;
  3920. width:100%;
  3921. }
  3922. #u19230_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:111px;
  3928. height:38px;
  3929. }
  3930. #u19230_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u19231 {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:794px;
  3940. top:199px;
  3941. width:110px;
  3942. height:38px;
  3943. display:flex;
  3944. transition:none;
  3945. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3946. font-weight:400;
  3947. font-style:normal;
  3948. font-size:12px;
  3949. color:#606266;
  3950. }
  3951. #u19231 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 0px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u19231_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:110px;
  3964. height:38px;
  3965. }
  3966. #u19231_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u19232 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:904px;
  3976. top:199px;
  3977. width:110px;
  3978. height:38px;
  3979. display:flex;
  3980. transition:none;
  3981. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3982. font-weight:400;
  3983. font-style:normal;
  3984. font-size:12px;
  3985. color:#606266;
  3986. }
  3987. #u19232 .text {
  3988. position:absolute;
  3989. align-self:center;
  3990. padding:2px 2px 2px 0px;
  3991. box-sizing:border-box;
  3992. width:100%;
  3993. }
  3994. #u19232_img {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:110px;
  4000. height:38px;
  4001. }
  4002. #u19232_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u19233 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:1014px;
  4012. top:199px;
  4013. width:110px;
  4014. height:38px;
  4015. display:flex;
  4016. transition:none;
  4017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4018. font-weight:400;
  4019. font-style:normal;
  4020. font-size:12px;
  4021. color:#606266;
  4022. }
  4023. #u19233 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 2px 2px 0px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u19233_img {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:110px;
  4036. height:38px;
  4037. }
  4038. #u19233_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. visibility:hidden;
  4043. }
  4044. #u19234 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:1124px;
  4048. top:199px;
  4049. width:95px;
  4050. height:38px;
  4051. display:flex;
  4052. transition:none;
  4053. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:12px;
  4057. color:#606266;
  4058. }
  4059. #u19234 .text {
  4060. position:absolute;
  4061. align-self:center;
  4062. padding:2px 2px 2px 0px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u19234_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:95px;
  4072. height:38px;
  4073. }
  4074. #u19234_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u19235 {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:237px;
  4085. width:122px;
  4086. height:38px;
  4087. display:flex;
  4088. transition:none;
  4089. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:12px;
  4093. color:#606266;
  4094. }
  4095. #u19235 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 0px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u19235_img {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:122px;
  4108. height:38px;
  4109. }
  4110. #u19235_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u19236 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:122px;
  4120. top:237px;
  4121. width:116px;
  4122. height:38px;
  4123. display:flex;
  4124. transition:none;
  4125. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. color:#606266;
  4130. }
  4131. #u19236 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 0px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u19236_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:116px;
  4144. height:38px;
  4145. }
  4146. #u19236_text {
  4147. border-width:0px;
  4148. word-wrap:break-word;
  4149. text-transform:none;
  4150. visibility:hidden;
  4151. }
  4152. #u19237 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:238px;
  4156. top:237px;
  4157. width:114px;
  4158. height:38px;
  4159. display:flex;
  4160. transition:none;
  4161. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:12px;
  4165. color:#606266;
  4166. }
  4167. #u19237 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:2px 2px 2px 0px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u19237_img {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:114px;
  4180. height:38px;
  4181. }
  4182. #u19237_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u19238 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:352px;
  4192. top:237px;
  4193. width:110px;
  4194. height:38px;
  4195. display:flex;
  4196. transition:none;
  4197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:12px;
  4201. color:#606266;
  4202. }
  4203. #u19238 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 2px 2px 0px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u19238_img {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:110px;
  4216. height:38px;
  4217. }
  4218. #u19238_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u19239 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:462px;
  4228. top:237px;
  4229. width:111px;
  4230. height:38px;
  4231. display:flex;
  4232. transition:none;
  4233. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:12px;
  4237. color:#606266;
  4238. }
  4239. #u19239 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 0px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u19239_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:111px;
  4252. height:38px;
  4253. }
  4254. #u19239_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u19240 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:573px;
  4264. top:237px;
  4265. width:110px;
  4266. height:38px;
  4267. display:flex;
  4268. transition:none;
  4269. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. color:#606266;
  4274. }
  4275. #u19240 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u19240_img {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:110px;
  4288. height:38px;
  4289. }
  4290. #u19240_text {
  4291. border-width:0px;
  4292. word-wrap:break-word;
  4293. text-transform:none;
  4294. visibility:hidden;
  4295. }
  4296. #u19241 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:683px;
  4300. top:237px;
  4301. width:111px;
  4302. height:38px;
  4303. display:flex;
  4304. transition:none;
  4305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:12px;
  4309. color:#606266;
  4310. }
  4311. #u19241 .text {
  4312. position:absolute;
  4313. align-self:center;
  4314. padding:2px 2px 2px 0px;
  4315. box-sizing:border-box;
  4316. width:100%;
  4317. }
  4318. #u19241_img {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:111px;
  4324. height:38px;
  4325. }
  4326. #u19241_text {
  4327. border-width:0px;
  4328. word-wrap:break-word;
  4329. text-transform:none;
  4330. visibility:hidden;
  4331. }
  4332. #u19242 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:794px;
  4336. top:237px;
  4337. width:110px;
  4338. height:38px;
  4339. display:flex;
  4340. transition:none;
  4341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:12px;
  4345. color:#606266;
  4346. }
  4347. #u19242 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 0px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u19242_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:110px;
  4360. height:38px;
  4361. }
  4362. #u19242_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u19243 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:904px;
  4372. top:237px;
  4373. width:110px;
  4374. height:38px;
  4375. display:flex;
  4376. transition:none;
  4377. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4378. font-weight:400;
  4379. font-style:normal;
  4380. font-size:12px;
  4381. color:#606266;
  4382. }
  4383. #u19243 .text {
  4384. position:absolute;
  4385. align-self:center;
  4386. padding:2px 2px 2px 0px;
  4387. box-sizing:border-box;
  4388. width:100%;
  4389. }
  4390. #u19243_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:110px;
  4396. height:38px;
  4397. }
  4398. #u19243_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u19244 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:1014px;
  4408. top:237px;
  4409. width:110px;
  4410. height:38px;
  4411. display:flex;
  4412. transition:none;
  4413. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:12px;
  4417. color:#606266;
  4418. }
  4419. #u19244 .text {
  4420. position:absolute;
  4421. align-self:center;
  4422. padding:2px 2px 2px 0px;
  4423. box-sizing:border-box;
  4424. width:100%;
  4425. }
  4426. #u19244_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:110px;
  4432. height:38px;
  4433. }
  4434. #u19244_text {
  4435. border-width:0px;
  4436. word-wrap:break-word;
  4437. text-transform:none;
  4438. visibility:hidden;
  4439. }
  4440. #u19245 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:1124px;
  4444. top:237px;
  4445. width:95px;
  4446. height:38px;
  4447. display:flex;
  4448. transition:none;
  4449. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:12px;
  4453. color:#606266;
  4454. }
  4455. #u19245 .text {
  4456. position:absolute;
  4457. align-self:center;
  4458. padding:2px 2px 2px 0px;
  4459. box-sizing:border-box;
  4460. width:100%;
  4461. }
  4462. #u19245_img {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:95px;
  4468. height:38px;
  4469. }
  4470. #u19245_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. visibility:hidden;
  4475. }
  4476. #u19246 {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:275px;
  4481. width:122px;
  4482. height:38px;
  4483. display:flex;
  4484. transition:none;
  4485. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. font-size:12px;
  4489. color:#606266;
  4490. }
  4491. #u19246 .text {
  4492. position:absolute;
  4493. align-self:center;
  4494. padding:2px 2px 2px 0px;
  4495. box-sizing:border-box;
  4496. width:100%;
  4497. }
  4498. #u19246_img {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:122px;
  4504. height:38px;
  4505. }
  4506. #u19246_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u19247 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:122px;
  4516. top:275px;
  4517. width:116px;
  4518. height:38px;
  4519. display:flex;
  4520. transition:none;
  4521. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:12px;
  4525. color:#606266;
  4526. }
  4527. #u19247 .text {
  4528. position:absolute;
  4529. align-self:center;
  4530. padding:2px 2px 2px 0px;
  4531. box-sizing:border-box;
  4532. width:100%;
  4533. }
  4534. #u19247_img {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:116px;
  4540. height:38px;
  4541. }
  4542. #u19247_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u19248 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:238px;
  4552. top:275px;
  4553. width:114px;
  4554. height:38px;
  4555. display:flex;
  4556. transition:none;
  4557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. color:#606266;
  4562. }
  4563. #u19248 .text {
  4564. position:absolute;
  4565. align-self:center;
  4566. padding:2px 2px 2px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u19248_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:114px;
  4576. height:38px;
  4577. }
  4578. #u19248_text {
  4579. border-width:0px;
  4580. word-wrap:break-word;
  4581. text-transform:none;
  4582. visibility:hidden;
  4583. }
  4584. #u19249 {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:352px;
  4588. top:275px;
  4589. width:110px;
  4590. height:38px;
  4591. display:flex;
  4592. transition:none;
  4593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4594. font-weight:400;
  4595. font-style:normal;
  4596. font-size:12px;
  4597. color:#606266;
  4598. }
  4599. #u19249 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 0px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u19249_img {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:110px;
  4612. height:38px;
  4613. }
  4614. #u19249_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u19250 {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:462px;
  4624. top:275px;
  4625. width:111px;
  4626. height:38px;
  4627. display:flex;
  4628. transition:none;
  4629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:#606266;
  4634. }
  4635. #u19250 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 0px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u19250_img {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:0px;
  4646. top:0px;
  4647. width:111px;
  4648. height:38px;
  4649. }
  4650. #u19250_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u19251 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:573px;
  4660. top:275px;
  4661. width:110px;
  4662. height:38px;
  4663. display:flex;
  4664. transition:none;
  4665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:12px;
  4669. color:#606266;
  4670. }
  4671. #u19251 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u19251_img {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:110px;
  4684. height:38px;
  4685. }
  4686. #u19251_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u19252 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:683px;
  4696. top:275px;
  4697. width:111px;
  4698. height:38px;
  4699. display:flex;
  4700. transition:none;
  4701. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:12px;
  4705. color:#606266;
  4706. }
  4707. #u19252 .text {
  4708. position:absolute;
  4709. align-self:center;
  4710. padding:2px 2px 2px 0px;
  4711. box-sizing:border-box;
  4712. width:100%;
  4713. }
  4714. #u19252_img {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:111px;
  4720. height:38px;
  4721. }
  4722. #u19252_text {
  4723. border-width:0px;
  4724. word-wrap:break-word;
  4725. text-transform:none;
  4726. visibility:hidden;
  4727. }
  4728. #u19253 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:794px;
  4732. top:275px;
  4733. width:110px;
  4734. height:38px;
  4735. display:flex;
  4736. transition:none;
  4737. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:12px;
  4741. color:#606266;
  4742. }
  4743. #u19253 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u19253_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:110px;
  4756. height:38px;
  4757. }
  4758. #u19253_text {
  4759. border-width:0px;
  4760. word-wrap:break-word;
  4761. text-transform:none;
  4762. visibility:hidden;
  4763. }
  4764. #u19254 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:904px;
  4768. top:275px;
  4769. width:110px;
  4770. height:38px;
  4771. display:flex;
  4772. transition:none;
  4773. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:12px;
  4777. color:#606266;
  4778. }
  4779. #u19254 .text {
  4780. position:absolute;
  4781. align-self:center;
  4782. padding:2px 2px 2px 0px;
  4783. box-sizing:border-box;
  4784. width:100%;
  4785. }
  4786. #u19254_img {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:0px;
  4790. top:0px;
  4791. width:110px;
  4792. height:38px;
  4793. }
  4794. #u19254_text {
  4795. border-width:0px;
  4796. word-wrap:break-word;
  4797. text-transform:none;
  4798. visibility:hidden;
  4799. }
  4800. #u19255 {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:1014px;
  4804. top:275px;
  4805. width:110px;
  4806. height:38px;
  4807. display:flex;
  4808. transition:none;
  4809. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:12px;
  4813. color:#606266;
  4814. }
  4815. #u19255 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 2px 2px 0px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u19255_img {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:110px;
  4828. height:38px;
  4829. }
  4830. #u19255_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. visibility:hidden;
  4835. }
  4836. #u19256 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:1124px;
  4840. top:275px;
  4841. width:95px;
  4842. height:38px;
  4843. display:flex;
  4844. transition:none;
  4845. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. font-size:12px;
  4849. color:#606266;
  4850. }
  4851. #u19256 .text {
  4852. position:absolute;
  4853. align-self:center;
  4854. padding:2px 2px 2px 0px;
  4855. box-sizing:border-box;
  4856. width:100%;
  4857. }
  4858. #u19256_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:95px;
  4864. height:38px;
  4865. }
  4866. #u19256_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u19257_div {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:0px;
  4876. top:0px;
  4877. width:60px;
  4878. height:30px;
  4879. background:inherit;
  4880. background-color:rgba(24, 144, 255, 1);
  4881. border-radius:4px;
  4882. filter:drop-shadow(none);
  4883. transition:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. color:#FFFFFF;
  4889. }
  4890. #u19257 {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:350px;
  4894. top:232px;
  4895. width:60px;
  4896. height:30px;
  4897. display:flex;
  4898. transition:none;
  4899. transform-origin:50% 50%;
  4900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:14px;
  4904. color:#FFFFFF;
  4905. }
  4906. #u19257 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 2px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u19257_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. }
  4918. #u19258_div {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:73px;
  4924. height:50px;
  4925. background:inherit;
  4926. background-color:rgba(255, 255, 255, 0);
  4927. border-left:0px;
  4928. border-top:0px;
  4929. border-right:0px;
  4930. border-radius:0px;
  4931. border-bottom-right-radius:0px;
  4932. border-bottom-left-radius:0px;
  4933. filter:drop-shadow(none);
  4934. transition:none;
  4935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4936. font-weight:400;
  4937. font-style:normal;
  4938. font-size:18px;
  4939. }
  4940. #u19258 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:349px;
  4944. top:52px;
  4945. width:73px;
  4946. height:50px;
  4947. display:flex;
  4948. transition:none;
  4949. transform-origin:50% 50%;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. font-size:18px;
  4954. }
  4955. #u19258 .text {
  4956. position:absolute;
  4957. align-self:center;
  4958. padding:0px 0px 0px 0px;
  4959. box-sizing:border-box;
  4960. width:100%;
  4961. }
  4962. #u19258_text {
  4963. border-width:0px;
  4964. white-space:nowrap;
  4965. text-transform:none;
  4966. }
  4967. #u19259 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:0px;
  4973. height:0px;
  4974. }
  4975. #u19260_div {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:80px;
  4981. height:100px;
  4982. background:inherit;
  4983. background-color:rgba(255, 255, 255, 1);
  4984. box-sizing:border-box;
  4985. border-width:1px;
  4986. border-style:solid;
  4987. border-color:rgba(242, 242, 242, 1);
  4988. border-radius:4px;
  4989. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  4990. transition:none;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:14px;
  4995. text-align:left;
  4996. }
  4997. #u19260 {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:1450px;
  5001. top:347px;
  5002. width:80px;
  5003. height:100px;
  5004. display:flex;
  5005. transition:none;
  5006. transform-origin:50% 50%;
  5007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:14px;
  5011. text-align:left;
  5012. }
  5013. #u19260 .text {
  5014. position:absolute;
  5015. align-self:center;
  5016. padding:2px 2px 2px 2px;
  5017. box-sizing:border-box;
  5018. width:100%;
  5019. }
  5020. #u19260_text {
  5021. border-width:0px;
  5022. word-wrap:break-word;
  5023. text-transform:none;
  5024. visibility:hidden;
  5025. }
  5026. #u19261_div {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:66px;
  5032. height:40px;
  5033. background:inherit;
  5034. background-color:rgba(255, 255, 255, 1);
  5035. box-sizing:border-box;
  5036. border-width:1px;
  5037. border-style:solid;
  5038. border-color:rgba(215, 215, 215, 1);
  5039. border-left:0px;
  5040. border-top:0px;
  5041. border-right:0px;
  5042. border-radius:0px;
  5043. border-bottom-right-radius:0px;
  5044. border-bottom-left-radius:0px;
  5045. filter:drop-shadow(none);
  5046. transition:none;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:14px;
  5051. }
  5052. #u19261 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:1456px;
  5056. top:357px;
  5057. width:66px;
  5058. height:40px;
  5059. display:flex;
  5060. transition:none;
  5061. transform-origin:50% 50%;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. }
  5067. #u19261 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 2px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u19261_text {
  5075. border-width:0px;
  5076. word-wrap:break-word;
  5077. text-transform:none;
  5078. }
  5079. #u19262_div {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:66px;
  5085. height:40px;
  5086. background:inherit;
  5087. background-color:rgba(255, 255, 255, 1);
  5088. border-left:0px;
  5089. border-top:0px;
  5090. border-right:0px;
  5091. border-radius:0px;
  5092. border-bottom-right-radius:0px;
  5093. border-bottom-left-radius:0px;
  5094. filter:drop-shadow(none);
  5095. transition:none;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:14px;
  5100. }
  5101. #u19262 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:1456px;
  5105. top:397px;
  5106. width:66px;
  5107. height:40px;
  5108. display:flex;
  5109. transition:none;
  5110. transform-origin:50% 50%;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:14px;
  5115. }
  5116. #u19262 .text {
  5117. position:absolute;
  5118. align-self:center;
  5119. padding:2px 2px 2px 2px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u19262_text {
  5124. border-width:0px;
  5125. word-wrap:break-word;
  5126. text-transform:none;
  5127. }
  5128. #u19263_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:60px;
  5134. height:30px;
  5135. background:inherit;
  5136. background-color:rgba(24, 144, 255, 1);
  5137. border-radius:4px;
  5138. filter:drop-shadow(none);
  5139. transition:none;
  5140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:14px;
  5144. color:#FFFFFF;
  5145. }
  5146. #u19263 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:500px;
  5150. top:183px;
  5151. width:60px;
  5152. height:30px;
  5153. display:flex;
  5154. transition:none;
  5155. transform-origin:50% 50%;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:14px;
  5160. color:#FFFFFF;
  5161. }
  5162. #u19263 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 2px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u19263_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. }
  5174. #u19264_div {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:60px;
  5180. height:30px;
  5181. background:inherit;
  5182. background-color:rgba(255, 255, 255, 1);
  5183. box-sizing:border-box;
  5184. border-width:1px;
  5185. border-style:solid;
  5186. border-color:rgba(170, 170, 170, 1);
  5187. border-radius:4px;
  5188. filter:drop-shadow(none);
  5189. transition:none;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:14px;
  5194. }
  5195. #u19264 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:570px;
  5199. top:183px;
  5200. width:60px;
  5201. height:30px;
  5202. display:flex;
  5203. transition:none;
  5204. transform-origin:50% 50%;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. }
  5210. #u19264 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u19264_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. }
  5222. #u19265 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:0px;
  5228. height:0px;
  5229. }
  5230. #u19266_div {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:140px;
  5236. height:30px;
  5237. background:inherit;
  5238. background-color:rgba(255, 255, 255, 1);
  5239. box-sizing:border-box;
  5240. border-width:1px;
  5241. border-style:solid;
  5242. border-color:rgba(215, 215, 215, 1);
  5243. border-radius:4px;
  5244. filter:drop-shadow(none);
  5245. transition:none;
  5246. font-size:14px;
  5247. }
  5248. #u19266 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:500px;
  5252. top:143px;
  5253. width:140px;
  5254. height:30px;
  5255. display:flex;
  5256. transition:none;
  5257. transform-origin:50% 50%;
  5258. font-size:14px;
  5259. }
  5260. #u19266 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 2px 2px 2px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u19266_text {
  5268. border-width:0px;
  5269. word-wrap:break-word;
  5270. text-transform:none;
  5271. visibility:hidden;
  5272. }
  5273. #u19267_input {
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:134px;
  5278. height:23px;
  5279. padding:2px 2px 2px 2px;
  5280. font-family:'ArialMT', 'Arial', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:14px;
  5284. letter-spacing:normal;
  5285. color:#AAAAAA;
  5286. vertical-align:none;
  5287. text-align:left;
  5288. text-transform:none;
  5289. background-color:transparent;
  5290. border-color:transparent;
  5291. }
  5292. #u19267_input.disabled {
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:134px;
  5297. height:23px;
  5298. padding:2px 2px 2px 2px;
  5299. font-family:'ArialMT', 'Arial', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:14px;
  5303. letter-spacing:normal;
  5304. color:#AAAAAA;
  5305. vertical-align:none;
  5306. text-align:left;
  5307. text-transform:none;
  5308. background-color:transparent;
  5309. border-color:transparent;
  5310. }
  5311. #u19267_div {
  5312. border-width:0px;
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:134px;
  5317. height:23px;
  5318. background:inherit;
  5319. background-color:rgba(255, 255, 255, 1);
  5320. border-radius:0px;
  5321. filter:drop-shadow(none);
  5322. transition:none;
  5323. font-size:14px;
  5324. color:#AAAAAA;
  5325. }
  5326. #u19267 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:504px;
  5330. top:145px;
  5331. width:134px;
  5332. height:23px;
  5333. display:flex;
  5334. transition:none;
  5335. transform-origin:50% 50%;
  5336. font-size:14px;
  5337. color:#AAAAAA;
  5338. }
  5339. #u19267 .text {
  5340. position:absolute;
  5341. align-self:flex-start;
  5342. padding:2px 2px 2px 2px;
  5343. box-sizing:border-box;
  5344. width:100%;
  5345. }
  5346. #u19267_div.disabled {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:134px;
  5352. height:23px;
  5353. background:inherit;
  5354. background-color:rgba(240, 240, 240, 1);
  5355. border-radius:0px;
  5356. filter:drop-shadow(none);
  5357. transition:none;
  5358. font-size:14px;
  5359. color:#AAAAAA;
  5360. }
  5361. #u19267.disabled {
  5362. }
  5363. .u19267_input_option {
  5364. font-size:14px;
  5365. }
  5366. #u19268 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:0px;
  5372. height:0px;
  5373. }
  5374. #u19269_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:140px;
  5380. height:30px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 1);
  5383. box-sizing:border-box;
  5384. border-width:1px;
  5385. border-style:solid;
  5386. border-color:rgba(201, 201, 201, 1);
  5387. border-radius:4px;
  5388. filter:drop-shadow(none);
  5389. transition:none;
  5390. font-family:"Microsoft YaHei", sans-serif;
  5391. font-weight:400;
  5392. font-style:normal;
  5393. font-size:14px;
  5394. color:#CCCCCC;
  5395. text-align:left;
  5396. }
  5397. #u19269 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:650px;
  5401. top:143px;
  5402. width:140px;
  5403. height:30px;
  5404. display:flex;
  5405. transition:none;
  5406. transform-origin:50% 50%;
  5407. font-family:"Microsoft YaHei", sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:14px;
  5411. color:#CCCCCC;
  5412. text-align:left;
  5413. }
  5414. #u19269 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 8px 2px 8px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u19269_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. visibility:hidden;
  5426. }
  5427. #u19270_input {
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:127px;
  5432. height:25px;
  5433. padding:2px 2px 2px 2px;
  5434. font-family:"Microsoft YaHei", sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:10px;
  5438. letter-spacing:normal;
  5439. color:#000000;
  5440. vertical-align:none;
  5441. text-align:left;
  5442. text-transform:none;
  5443. background-color:transparent;
  5444. border-color:transparent;
  5445. }
  5446. #u19270_input.hint {
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:127px;
  5451. height:25px;
  5452. padding:2px 2px 2px 2px;
  5453. font-family:"Microsoft YaHei", sans-serif;
  5454. font-weight:400;
  5455. font-style:normal;
  5456. font-size:12px;
  5457. letter-spacing:normal;
  5458. color:#AAAAAA;
  5459. vertical-align:none;
  5460. text-align:left;
  5461. text-transform:none;
  5462. background-color:transparent;
  5463. border-color:transparent;
  5464. }
  5465. #u19270_input.disabled {
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:127px;
  5470. height:25px;
  5471. padding:2px 2px 2px 2px;
  5472. font-family:"Microsoft YaHei", sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:10px;
  5476. letter-spacing:normal;
  5477. color:#000000;
  5478. vertical-align:none;
  5479. text-align:left;
  5480. text-transform:none;
  5481. background-color:transparent;
  5482. border-color:transparent;
  5483. }
  5484. #u19270_input.hint.disabled {
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:127px;
  5489. height:25px;
  5490. padding:2px 2px 2px 2px;
  5491. font-family:"Microsoft YaHei", sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:12px;
  5495. letter-spacing:normal;
  5496. color:#AAAAAA;
  5497. vertical-align:none;
  5498. text-align:left;
  5499. text-transform:none;
  5500. background-color:transparent;
  5501. border-color:transparent;
  5502. }
  5503. #u19270_div {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:127px;
  5509. height:25px;
  5510. background:inherit;
  5511. background-color:rgba(255, 255, 255, 1);
  5512. border-radius:0px;
  5513. filter:drop-shadow(none);
  5514. transition:none;
  5515. font-family:"Microsoft YaHei", sans-serif;
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:10px;
  5519. }
  5520. #u19270 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:658px;
  5524. top:144px;
  5525. width:127px;
  5526. height:25px;
  5527. display:flex;
  5528. transition:none;
  5529. transform-origin:50% 50%;
  5530. font-family:"Microsoft YaHei", sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:10px;
  5534. }
  5535. #u19270 .text {
  5536. position:absolute;
  5537. align-self:center;
  5538. padding:2px 2px 2px 2px;
  5539. box-sizing:border-box;
  5540. width:100%;
  5541. }
  5542. #u19270_div.hint {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:127px;
  5548. height:25px;
  5549. background:inherit;
  5550. background-color:rgba(255, 255, 255, 1);
  5551. border-radius:0px;
  5552. filter:drop-shadow(none);
  5553. transition:none;
  5554. font-family:"Microsoft YaHei", sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:10px;
  5558. }
  5559. #u19270.hint {
  5560. }
  5561. #u19270_div.disabled {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:127px;
  5567. height:25px;
  5568. background:inherit;
  5569. background-color:rgba(240, 240, 240, 1);
  5570. border-radius:0px;
  5571. filter:drop-shadow(none);
  5572. transition:none;
  5573. font-family:"Microsoft YaHei", sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:10px;
  5577. }
  5578. #u19270.disabled {
  5579. }
  5580. #u19270_div.hint.disabled {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:0px;
  5584. top:0px;
  5585. width:127px;
  5586. height:25px;
  5587. background:inherit;
  5588. background-color:rgba(240, 240, 240, 1);
  5589. border-radius:0px;
  5590. filter:drop-shadow(none);
  5591. transition:none;
  5592. font-family:"Microsoft YaHei", sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:10px;
  5596. }
  5597. #u19270.hint.disabled {
  5598. }
  5599. #u19271 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:0px;
  5605. height:0px;
  5606. }
  5607. #u19272_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:140px;
  5613. height:30px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 1);
  5616. box-sizing:border-box;
  5617. border-width:1px;
  5618. border-style:solid;
  5619. border-color:rgba(201, 201, 201, 1);
  5620. border-radius:4px;
  5621. filter:drop-shadow(none);
  5622. transition:none;
  5623. font-family:"Microsoft YaHei", sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. color:#CCCCCC;
  5628. text-align:left;
  5629. }
  5630. #u19272 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:1400px;
  5634. top:142px;
  5635. width:140px;
  5636. height:30px;
  5637. display:flex;
  5638. transition:none;
  5639. transform-origin:50% 50%;
  5640. font-family:"Microsoft YaHei", sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:14px;
  5644. color:#CCCCCC;
  5645. text-align:left;
  5646. }
  5647. #u19272 .text {
  5648. position:absolute;
  5649. align-self:center;
  5650. padding:2px 8px 2px 8px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u19272_text {
  5655. border-width:0px;
  5656. word-wrap:break-word;
  5657. text-transform:none;
  5658. visibility:hidden;
  5659. }
  5660. #u19273_input {
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:127px;
  5665. height:25px;
  5666. padding:2px 2px 2px 2px;
  5667. font-family:"Microsoft YaHei", sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:10px;
  5671. letter-spacing:normal;
  5672. color:#000000;
  5673. vertical-align:none;
  5674. text-align:left;
  5675. text-transform:none;
  5676. background-color:transparent;
  5677. border-color:transparent;
  5678. }
  5679. #u19273_input.hint {
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:127px;
  5684. height:25px;
  5685. padding:2px 2px 2px 2px;
  5686. font-family:"Microsoft YaHei", sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:12px;
  5690. letter-spacing:normal;
  5691. color:#AAAAAA;
  5692. vertical-align:none;
  5693. text-align:left;
  5694. text-transform:none;
  5695. background-color:transparent;
  5696. border-color:transparent;
  5697. }
  5698. #u19273_input.disabled {
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:127px;
  5703. height:25px;
  5704. padding:2px 2px 2px 2px;
  5705. font-family:"Microsoft YaHei", sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:10px;
  5709. letter-spacing:normal;
  5710. color:#000000;
  5711. vertical-align:none;
  5712. text-align:left;
  5713. text-transform:none;
  5714. background-color:transparent;
  5715. border-color:transparent;
  5716. }
  5717. #u19273_input.hint.disabled {
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:127px;
  5722. height:25px;
  5723. padding:2px 2px 2px 2px;
  5724. font-family:"Microsoft YaHei", sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. letter-spacing:normal;
  5729. color:#AAAAAA;
  5730. vertical-align:none;
  5731. text-align:left;
  5732. text-transform:none;
  5733. background-color:transparent;
  5734. border-color:transparent;
  5735. }
  5736. #u19273_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:127px;
  5742. height:25px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 1);
  5745. border-radius:0px;
  5746. filter:drop-shadow(none);
  5747. transition:none;
  5748. font-family:"Microsoft YaHei", sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:10px;
  5752. }
  5753. #u19273 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:1408px;
  5757. top:143px;
  5758. width:127px;
  5759. height:25px;
  5760. display:flex;
  5761. transition:none;
  5762. transform-origin:50% 50%;
  5763. font-family:"Microsoft YaHei", sans-serif;
  5764. font-weight:400;
  5765. font-style:normal;
  5766. font-size:10px;
  5767. }
  5768. #u19273 .text {
  5769. position:absolute;
  5770. align-self:center;
  5771. padding:2px 2px 2px 2px;
  5772. box-sizing:border-box;
  5773. width:100%;
  5774. }
  5775. #u19273_div.hint {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:127px;
  5781. height:25px;
  5782. background:inherit;
  5783. background-color:rgba(255, 255, 255, 1);
  5784. border-radius:0px;
  5785. filter:drop-shadow(none);
  5786. transition:none;
  5787. font-family:"Microsoft YaHei", sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:10px;
  5791. }
  5792. #u19273.hint {
  5793. }
  5794. #u19273_div.disabled {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:127px;
  5800. height:25px;
  5801. background:inherit;
  5802. background-color:rgba(240, 240, 240, 1);
  5803. border-radius:0px;
  5804. filter:drop-shadow(none);
  5805. transition:none;
  5806. font-family:"Microsoft YaHei", sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:10px;
  5810. }
  5811. #u19273.disabled {
  5812. }
  5813. #u19273_div.hint.disabled {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:0px;
  5817. top:0px;
  5818. width:127px;
  5819. height:25px;
  5820. background:inherit;
  5821. background-color:rgba(240, 240, 240, 1);
  5822. border-radius:0px;
  5823. filter:drop-shadow(none);
  5824. transition:none;
  5825. font-family:"Microsoft YaHei", sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:10px;
  5829. }
  5830. #u19273.hint.disabled {
  5831. }
  5832. #u19274 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:0px;
  5838. height:0px;
  5839. }
  5840. #u19275_div {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:140px;
  5846. height:30px;
  5847. background:inherit;
  5848. background-color:rgba(255, 255, 255, 1);
  5849. box-sizing:border-box;
  5850. border-width:1px;
  5851. border-style:solid;
  5852. border-color:rgba(201, 201, 201, 1);
  5853. border-radius:4px;
  5854. filter:drop-shadow(none);
  5855. transition:none;
  5856. font-family:"Microsoft YaHei", sans-serif;
  5857. font-weight:400;
  5858. font-style:normal;
  5859. font-size:14px;
  5860. color:#CCCCCC;
  5861. text-align:left;
  5862. }
  5863. #u19275 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:950px;
  5867. top:143px;
  5868. width:140px;
  5869. height:30px;
  5870. display:flex;
  5871. transition:none;
  5872. transform-origin:50% 50%;
  5873. font-family:"Microsoft YaHei", sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. font-size:14px;
  5877. color:#CCCCCC;
  5878. text-align:left;
  5879. }
  5880. #u19275 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:2px 8px 2px 8px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u19275_text {
  5888. border-width:0px;
  5889. word-wrap:break-word;
  5890. text-transform:none;
  5891. visibility:hidden;
  5892. }
  5893. #u19276_input {
  5894. position:absolute;
  5895. left:0px;
  5896. top:0px;
  5897. width:127px;
  5898. height:25px;
  5899. padding:2px 2px 2px 2px;
  5900. font-family:"Microsoft YaHei", sans-serif;
  5901. font-weight:400;
  5902. font-style:normal;
  5903. font-size:10px;
  5904. letter-spacing:normal;
  5905. color:#000000;
  5906. vertical-align:none;
  5907. text-align:left;
  5908. text-transform:none;
  5909. background-color:transparent;
  5910. border-color:transparent;
  5911. }
  5912. #u19276_input.hint {
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:127px;
  5917. height:25px;
  5918. padding:2px 2px 2px 2px;
  5919. font-family:"Microsoft YaHei", sans-serif;
  5920. font-weight:400;
  5921. font-style:normal;
  5922. font-size:12px;
  5923. letter-spacing:normal;
  5924. color:#AAAAAA;
  5925. vertical-align:none;
  5926. text-align:left;
  5927. text-transform:none;
  5928. background-color:transparent;
  5929. border-color:transparent;
  5930. }
  5931. #u19276_input.disabled {
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:127px;
  5936. height:25px;
  5937. padding:2px 2px 2px 2px;
  5938. font-family:"Microsoft YaHei", sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:10px;
  5942. letter-spacing:normal;
  5943. color:#000000;
  5944. vertical-align:none;
  5945. text-align:left;
  5946. text-transform:none;
  5947. background-color:transparent;
  5948. border-color:transparent;
  5949. }
  5950. #u19276_input.hint.disabled {
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:127px;
  5955. height:25px;
  5956. padding:2px 2px 2px 2px;
  5957. font-family:"Microsoft YaHei", sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:12px;
  5961. letter-spacing:normal;
  5962. color:#AAAAAA;
  5963. vertical-align:none;
  5964. text-align:left;
  5965. text-transform:none;
  5966. background-color:transparent;
  5967. border-color:transparent;
  5968. }
  5969. #u19276_div {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:127px;
  5975. height:25px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 1);
  5978. border-radius:0px;
  5979. filter:drop-shadow(none);
  5980. transition:none;
  5981. font-family:"Microsoft YaHei", sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:10px;
  5985. }
  5986. #u19276 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:958px;
  5990. top:144px;
  5991. width:127px;
  5992. height:25px;
  5993. display:flex;
  5994. transition:none;
  5995. transform-origin:50% 50%;
  5996. font-family:"Microsoft YaHei", sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:10px;
  6000. }
  6001. #u19276 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 2px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u19276_div.hint {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:127px;
  6014. height:25px;
  6015. background:inherit;
  6016. background-color:rgba(255, 255, 255, 1);
  6017. border-radius:0px;
  6018. filter:drop-shadow(none);
  6019. transition:none;
  6020. font-family:"Microsoft YaHei", sans-serif;
  6021. font-weight:400;
  6022. font-style:normal;
  6023. font-size:10px;
  6024. }
  6025. #u19276.hint {
  6026. }
  6027. #u19276_div.disabled {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:127px;
  6033. height:25px;
  6034. background:inherit;
  6035. background-color:rgba(240, 240, 240, 1);
  6036. border-radius:0px;
  6037. filter:drop-shadow(none);
  6038. transition:none;
  6039. font-family:"Microsoft YaHei", sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:10px;
  6043. }
  6044. #u19276.disabled {
  6045. }
  6046. #u19276_div.hint.disabled {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:127px;
  6052. height:25px;
  6053. background:inherit;
  6054. background-color:rgba(240, 240, 240, 1);
  6055. border-radius:0px;
  6056. filter:drop-shadow(none);
  6057. transition:none;
  6058. font-family:"Microsoft YaHei", sans-serif;
  6059. font-weight:400;
  6060. font-style:normal;
  6061. font-size:10px;
  6062. }
  6063. #u19276.hint.disabled {
  6064. }
  6065. #u19277 {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:0px;
  6071. height:0px;
  6072. }
  6073. #u19278_div {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:0px;
  6077. top:0px;
  6078. width:140px;
  6079. height:30px;
  6080. background:inherit;
  6081. background-color:rgba(255, 255, 255, 1);
  6082. box-sizing:border-box;
  6083. border-width:1px;
  6084. border-style:solid;
  6085. border-color:rgba(215, 215, 215, 1);
  6086. border-radius:4px;
  6087. filter:drop-shadow(none);
  6088. transition:none;
  6089. font-size:14px;
  6090. }
  6091. #u19278 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:800px;
  6095. top:143px;
  6096. width:140px;
  6097. height:30px;
  6098. display:flex;
  6099. transition:none;
  6100. transform-origin:50% 50%;
  6101. font-size:14px;
  6102. }
  6103. #u19278 .text {
  6104. position:absolute;
  6105. align-self:center;
  6106. padding:2px 2px 2px 2px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u19278_text {
  6111. border-width:0px;
  6112. word-wrap:break-word;
  6113. text-transform:none;
  6114. visibility:hidden;
  6115. }
  6116. #u19279_input {
  6117. position:absolute;
  6118. left:0px;
  6119. top:0px;
  6120. width:134px;
  6121. height:23px;
  6122. padding:2px 2px 2px 2px;
  6123. font-family:'ArialMT', 'Arial', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:14px;
  6127. letter-spacing:normal;
  6128. color:#AAAAAA;
  6129. vertical-align:none;
  6130. text-align:left;
  6131. text-transform:none;
  6132. background-color:transparent;
  6133. border-color:transparent;
  6134. }
  6135. #u19279_input.disabled {
  6136. position:absolute;
  6137. left:0px;
  6138. top:0px;
  6139. width:134px;
  6140. height:23px;
  6141. padding:2px 2px 2px 2px;
  6142. font-family:'ArialMT', 'Arial', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:14px;
  6146. letter-spacing:normal;
  6147. color:#AAAAAA;
  6148. vertical-align:none;
  6149. text-align:left;
  6150. text-transform:none;
  6151. background-color:transparent;
  6152. border-color:transparent;
  6153. }
  6154. #u19279_div {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:134px;
  6160. height:23px;
  6161. background:inherit;
  6162. background-color:rgba(255, 255, 255, 1);
  6163. border-radius:0px;
  6164. filter:drop-shadow(none);
  6165. transition:none;
  6166. font-size:14px;
  6167. color:#AAAAAA;
  6168. }
  6169. #u19279 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:804px;
  6173. top:145px;
  6174. width:134px;
  6175. height:23px;
  6176. display:flex;
  6177. transition:none;
  6178. transform-origin:50% 50%;
  6179. font-size:14px;
  6180. color:#AAAAAA;
  6181. }
  6182. #u19279 .text {
  6183. position:absolute;
  6184. align-self:flex-start;
  6185. padding:2px 2px 2px 2px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u19279_div.disabled {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:134px;
  6195. height:23px;
  6196. background:inherit;
  6197. background-color:rgba(240, 240, 240, 1);
  6198. border-radius:0px;
  6199. filter:drop-shadow(none);
  6200. transition:none;
  6201. font-size:14px;
  6202. color:#AAAAAA;
  6203. }
  6204. #u19279.disabled {
  6205. }
  6206. .u19279_input_option {
  6207. font-size:14px;
  6208. }
  6209. #u19280 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:0px;
  6215. height:0px;
  6216. }
  6217. #u19281_div {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:140px;
  6223. height:30px;
  6224. background:inherit;
  6225. background-color:rgba(255, 255, 255, 1);
  6226. box-sizing:border-box;
  6227. border-width:1px;
  6228. border-style:solid;
  6229. border-color:rgba(215, 215, 215, 1);
  6230. border-radius:4px;
  6231. filter:drop-shadow(none);
  6232. transition:none;
  6233. font-size:14px;
  6234. }
  6235. #u19281 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:350px;
  6239. top:143px;
  6240. width:140px;
  6241. height:30px;
  6242. display:flex;
  6243. transition:none;
  6244. transform-origin:50% 50%;
  6245. font-size:14px;
  6246. }
  6247. #u19281 .text {
  6248. position:absolute;
  6249. align-self:center;
  6250. padding:2px 2px 2px 2px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u19281_text {
  6255. border-width:0px;
  6256. word-wrap:break-word;
  6257. text-transform:none;
  6258. visibility:hidden;
  6259. }
  6260. #u19282_input {
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:134px;
  6265. height:23px;
  6266. padding:2px 2px 2px 2px;
  6267. font-family:'ArialMT', 'Arial', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:14px;
  6271. letter-spacing:normal;
  6272. color:#AAAAAA;
  6273. vertical-align:none;
  6274. text-align:left;
  6275. text-transform:none;
  6276. background-color:transparent;
  6277. border-color:transparent;
  6278. }
  6279. #u19282_input.disabled {
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:134px;
  6284. height:23px;
  6285. padding:2px 2px 2px 2px;
  6286. font-family:'ArialMT', 'Arial', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:14px;
  6290. letter-spacing:normal;
  6291. color:#AAAAAA;
  6292. vertical-align:none;
  6293. text-align:left;
  6294. text-transform:none;
  6295. background-color:transparent;
  6296. border-color:transparent;
  6297. }
  6298. #u19282_div {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:134px;
  6304. height:23px;
  6305. background:inherit;
  6306. background-color:rgba(255, 255, 255, 1);
  6307. border-radius:0px;
  6308. filter:drop-shadow(none);
  6309. transition:none;
  6310. font-size:14px;
  6311. color:#AAAAAA;
  6312. }
  6313. #u19282 {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:354px;
  6317. top:145px;
  6318. width:134px;
  6319. height:23px;
  6320. display:flex;
  6321. transition:none;
  6322. transform-origin:50% 50%;
  6323. font-size:14px;
  6324. color:#AAAAAA;
  6325. }
  6326. #u19282 .text {
  6327. position:absolute;
  6328. align-self:flex-start;
  6329. padding:2px 2px 2px 2px;
  6330. box-sizing:border-box;
  6331. width:100%;
  6332. }
  6333. #u19282_div.disabled {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:134px;
  6339. height:23px;
  6340. background:inherit;
  6341. background-color:rgba(240, 240, 240, 1);
  6342. border-radius:0px;
  6343. filter:drop-shadow(none);
  6344. transition:none;
  6345. font-size:14px;
  6346. color:#AAAAAA;
  6347. }
  6348. #u19282.disabled {
  6349. }
  6350. .u19282_input_option {
  6351. font-size:14px;
  6352. }
  6353. #u19283 {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:0px;
  6359. height:0px;
  6360. }
  6361. #u19284_div {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:0px;
  6365. top:0px;
  6366. width:140px;
  6367. height:30px;
  6368. background:inherit;
  6369. background-color:rgba(255, 255, 255, 1);
  6370. box-sizing:border-box;
  6371. border-width:1px;
  6372. border-style:solid;
  6373. border-color:rgba(215, 215, 215, 1);
  6374. border-radius:4px;
  6375. filter:drop-shadow(none);
  6376. transition:none;
  6377. font-size:14px;
  6378. }
  6379. #u19284 {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:350px;
  6383. top:183px;
  6384. width:140px;
  6385. height:30px;
  6386. display:flex;
  6387. transition:none;
  6388. transform-origin:50% 50%;
  6389. font-size:14px;
  6390. }
  6391. #u19284 .text {
  6392. position:absolute;
  6393. align-self:center;
  6394. padding:2px 2px 2px 2px;
  6395. box-sizing:border-box;
  6396. width:100%;
  6397. }
  6398. #u19284_text {
  6399. border-width:0px;
  6400. word-wrap:break-word;
  6401. text-transform:none;
  6402. visibility:hidden;
  6403. }
  6404. #u19285_input {
  6405. position:absolute;
  6406. left:0px;
  6407. top:0px;
  6408. width:134px;
  6409. height:23px;
  6410. padding:2px 2px 2px 2px;
  6411. font-family:'ArialMT', 'Arial', sans-serif;
  6412. font-weight:400;
  6413. font-style:normal;
  6414. font-size:14px;
  6415. letter-spacing:normal;
  6416. color:#AAAAAA;
  6417. vertical-align:none;
  6418. text-align:left;
  6419. text-transform:none;
  6420. background-color:transparent;
  6421. border-color:transparent;
  6422. }
  6423. #u19285_input.disabled {
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:134px;
  6428. height:23px;
  6429. padding:2px 2px 2px 2px;
  6430. font-family:'ArialMT', 'Arial', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:14px;
  6434. letter-spacing:normal;
  6435. color:#AAAAAA;
  6436. vertical-align:none;
  6437. text-align:left;
  6438. text-transform:none;
  6439. background-color:transparent;
  6440. border-color:transparent;
  6441. }
  6442. #u19285_div {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:134px;
  6448. height:23px;
  6449. background:inherit;
  6450. background-color:rgba(255, 255, 255, 1);
  6451. border-radius:0px;
  6452. filter:drop-shadow(none);
  6453. transition:none;
  6454. font-size:14px;
  6455. color:#AAAAAA;
  6456. }
  6457. #u19285 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:354px;
  6461. top:185px;
  6462. width:134px;
  6463. height:23px;
  6464. display:flex;
  6465. transition:none;
  6466. transform-origin:50% 50%;
  6467. font-size:14px;
  6468. color:#AAAAAA;
  6469. }
  6470. #u19285 .text {
  6471. position:absolute;
  6472. align-self:flex-start;
  6473. padding:2px 2px 2px 2px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u19285_div.disabled {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:134px;
  6483. height:23px;
  6484. background:inherit;
  6485. background-color:rgba(240, 240, 240, 1);
  6486. border-radius:0px;
  6487. filter:drop-shadow(none);
  6488. transition:none;
  6489. font-size:14px;
  6490. color:#AAAAAA;
  6491. }
  6492. #u19285.disabled {
  6493. }
  6494. .u19285_input_option {
  6495. font-size:14px;
  6496. }
  6497. #u19286 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:0px;
  6503. height:0px;
  6504. }
  6505. #u19287_div {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:140px;
  6511. height:30px;
  6512. background:inherit;
  6513. background-color:rgba(255, 255, 255, 1);
  6514. box-sizing:border-box;
  6515. border-width:1px;
  6516. border-style:solid;
  6517. border-color:rgba(201, 201, 201, 1);
  6518. border-radius:4px;
  6519. filter:drop-shadow(none);
  6520. transition:none;
  6521. font-family:"Microsoft YaHei", sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. color:#CCCCCC;
  6526. text-align:left;
  6527. }
  6528. #u19287 {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:1100px;
  6532. top:142px;
  6533. width:140px;
  6534. height:30px;
  6535. display:flex;
  6536. transition:none;
  6537. transform-origin:50% 50%;
  6538. font-family:"Microsoft YaHei", sans-serif;
  6539. font-weight:400;
  6540. font-style:normal;
  6541. font-size:14px;
  6542. color:#CCCCCC;
  6543. text-align:left;
  6544. }
  6545. #u19287 .text {
  6546. position:absolute;
  6547. align-self:center;
  6548. padding:2px 8px 2px 8px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u19287_text {
  6553. border-width:0px;
  6554. word-wrap:break-word;
  6555. text-transform:none;
  6556. visibility:hidden;
  6557. }
  6558. #u19288_input {
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:127px;
  6563. height:25px;
  6564. padding:2px 2px 2px 2px;
  6565. font-family:"Microsoft YaHei", sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:10px;
  6569. letter-spacing:normal;
  6570. color:#000000;
  6571. vertical-align:none;
  6572. text-align:left;
  6573. text-transform:none;
  6574. background-color:transparent;
  6575. border-color:transparent;
  6576. }
  6577. #u19288_input.hint {
  6578. position:absolute;
  6579. left:0px;
  6580. top:0px;
  6581. width:127px;
  6582. height:25px;
  6583. padding:2px 2px 2px 2px;
  6584. font-family:"Microsoft YaHei", sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:12px;
  6588. letter-spacing:normal;
  6589. color:#AAAAAA;
  6590. vertical-align:none;
  6591. text-align:left;
  6592. text-transform:none;
  6593. background-color:transparent;
  6594. border-color:transparent;
  6595. }
  6596. #u19288_input.disabled {
  6597. position:absolute;
  6598. left:0px;
  6599. top:0px;
  6600. width:127px;
  6601. height:25px;
  6602. padding:2px 2px 2px 2px;
  6603. font-family:"Microsoft YaHei", sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:10px;
  6607. letter-spacing:normal;
  6608. color:#000000;
  6609. vertical-align:none;
  6610. text-align:left;
  6611. text-transform:none;
  6612. background-color:transparent;
  6613. border-color:transparent;
  6614. }
  6615. #u19288_input.hint.disabled {
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:127px;
  6620. height:25px;
  6621. padding:2px 2px 2px 2px;
  6622. font-family:"Microsoft YaHei", sans-serif;
  6623. font-weight:400;
  6624. font-style:normal;
  6625. font-size:12px;
  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. #u19288_div {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:127px;
  6640. height:25px;
  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-family:"Microsoft YaHei", sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:10px;
  6650. }
  6651. #u19288 {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:1108px;
  6655. top:143px;
  6656. width:127px;
  6657. height:25px;
  6658. display:flex;
  6659. transition:none;
  6660. transform-origin:50% 50%;
  6661. font-family:"Microsoft YaHei", sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:10px;
  6665. }
  6666. #u19288 .text {
  6667. position:absolute;
  6668. align-self:center;
  6669. padding:2px 2px 2px 2px;
  6670. box-sizing:border-box;
  6671. width:100%;
  6672. }
  6673. #u19288_div.hint {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:0px;
  6677. top:0px;
  6678. width:127px;
  6679. height:25px;
  6680. background:inherit;
  6681. background-color:rgba(255, 255, 255, 1);
  6682. border-radius:0px;
  6683. filter:drop-shadow(none);
  6684. transition:none;
  6685. font-family:"Microsoft YaHei", sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:10px;
  6689. }
  6690. #u19288.hint {
  6691. }
  6692. #u19288_div.disabled {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:0px;
  6696. top:0px;
  6697. width:127px;
  6698. height:25px;
  6699. background:inherit;
  6700. background-color:rgba(240, 240, 240, 1);
  6701. border-radius:0px;
  6702. filter:drop-shadow(none);
  6703. transition:none;
  6704. font-family:"Microsoft YaHei", sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:10px;
  6708. }
  6709. #u19288.disabled {
  6710. }
  6711. #u19288_div.hint.disabled {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:127px;
  6717. height:25px;
  6718. background:inherit;
  6719. background-color:rgba(240, 240, 240, 1);
  6720. border-radius:0px;
  6721. filter:drop-shadow(none);
  6722. transition:none;
  6723. font-family:"Microsoft YaHei", sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:10px;
  6727. }
  6728. #u19288.hint.disabled {
  6729. }
  6730. #u19289 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:120px;
  6734. top:50px;
  6735. width:201px;
  6736. height:1190px;
  6737. }
  6738. #u19290 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:0px;
  6742. top:0px;
  6743. width:0px;
  6744. height:0px;
  6745. }
  6746. #u19291_div {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:0px;
  6750. top:0px;
  6751. width:200px;
  6752. height:1190px;
  6753. background:inherit;
  6754. background-color:rgba(255, 255, 255, 1);
  6755. border-radius:0px;
  6756. filter:drop-shadow(none);
  6757. transition:none;
  6758. }
  6759. #u19291 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:0px;
  6763. top:0px;
  6764. width:200px;
  6765. height:1190px;
  6766. display:flex;
  6767. transition:none;
  6768. transform-origin:50% 50%;
  6769. }
  6770. #u19291 .text {
  6771. position:absolute;
  6772. align-self:center;
  6773. padding:2px 2px 2px 2px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u19291_text {
  6778. border-width:0px;
  6779. word-wrap:break-word;
  6780. text-transform:none;
  6781. visibility:hidden;
  6782. }
  6783. #u19292_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:200px;
  6789. height:60px;
  6790. background:inherit;
  6791. background-color:rgba(224, 231, 247, 1);
  6792. border-radius:0px;
  6793. filter:drop-shadow(none);
  6794. transition:none;
  6795. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6796. font-weight:500;
  6797. font-style:normal;
  6798. font-size:18px;
  6799. }
  6800. #u19292 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:200px;
  6806. height:60px;
  6807. display:flex;
  6808. transition:none;
  6809. transform-origin:50% 50%;
  6810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6811. font-weight:500;
  6812. font-style:normal;
  6813. font-size:18px;
  6814. }
  6815. #u19292 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:0px 0px 0px 20px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u19292_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. }
  6827. #u19293_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:65px;
  6833. height:22px;
  6834. background:inherit;
  6835. background-color:rgba(255, 255, 255, 0);
  6836. border-radius:0px;
  6837. filter:drop-shadow(none);
  6838. transition:none;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:16px;
  6843. }
  6844. #u19293 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:25px;
  6848. top:526px;
  6849. width:65px;
  6850. height:22px;
  6851. display:flex;
  6852. transition:none;
  6853. transform-origin:50% 50%;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:16px;
  6858. }
  6859. #u19293 .text {
  6860. position:absolute;
  6861. align-self:flex-start;
  6862. padding:0px 0px 0px 0px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u19293_text {
  6867. border-width:0px;
  6868. white-space:nowrap;
  6869. text-transform:none;
  6870. }
  6871. #u19294_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:49px;
  6877. height:17px;
  6878. background:inherit;
  6879. background-color:rgba(255, 255, 255, 0);
  6880. border-radius:0px;
  6881. filter:drop-shadow(none);
  6882. transition:none;
  6883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6884. font-weight:400;
  6885. font-style:normal;
  6886. font-size:12px;
  6887. color:#AAAAAA;
  6888. }
  6889. #u19294 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:23px;
  6893. top:489px;
  6894. width:49px;
  6895. height:17px;
  6896. display:flex;
  6897. transition:none;
  6898. transform-origin:50% 50%;
  6899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6900. font-weight:400;
  6901. font-style:normal;
  6902. font-size:12px;
  6903. color:#AAAAAA;
  6904. }
  6905. #u19294 .text {
  6906. position:absolute;
  6907. align-self:flex-start;
  6908. padding:0px 0px 0px 0px;
  6909. box-sizing:border-box;
  6910. width:100%;
  6911. }
  6912. #u19294_text {
  6913. border-width:0px;
  6914. white-space:nowrap;
  6915. text-transform:none;
  6916. }
  6917. #u19295_div {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:49px;
  6923. height:17px;
  6924. background:inherit;
  6925. background-color:rgba(255, 255, 255, 0);
  6926. border-radius:0px;
  6927. filter:drop-shadow(none);
  6928. transition:none;
  6929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6930. font-weight:400;
  6931. font-style:normal;
  6932. font-size:12px;
  6933. color:#AAAAAA;
  6934. }
  6935. #u19295 {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:24px;
  6939. top:81px;
  6940. width:49px;
  6941. height:17px;
  6942. display:flex;
  6943. transition:none;
  6944. transform-origin:50% 50%;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:12px;
  6949. color:#AAAAAA;
  6950. }
  6951. #u19295 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:0px 0px 0px 0px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u19295_text {
  6959. border-width:0px;
  6960. white-space:nowrap;
  6961. text-transform:none;
  6962. }
  6963. #u19296_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:65px;
  6969. height:22px;
  6970. background:inherit;
  6971. background-color:rgba(255, 255, 255, 0);
  6972. border-radius:0px;
  6973. filter:drop-shadow(none);
  6974. transition:none;
  6975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6976. font-weight:400;
  6977. font-style:normal;
  6978. font-size:16px;
  6979. }
  6980. #u19296 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:26px;
  6984. top:118px;
  6985. width:65px;
  6986. height:22px;
  6987. display:flex;
  6988. transition:none;
  6989. transform-origin:50% 50%;
  6990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:16px;
  6994. }
  6995. #u19296 .text {
  6996. position:absolute;
  6997. align-self:flex-start;
  6998. padding:0px 0px 0px 0px;
  6999. box-sizing:border-box;
  7000. width:100%;
  7001. }
  7002. #u19296_text {
  7003. border-width:0px;
  7004. white-space:nowrap;
  7005. text-transform:none;
  7006. }
  7007. #u19297 {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:468px;
  7012. width:200px;
  7013. height:1px;
  7014. display:flex;
  7015. transition:none;
  7016. }
  7017. #u19297 .text {
  7018. position:absolute;
  7019. align-self:center;
  7020. padding:2px 2px 2px 2px;
  7021. box-sizing:border-box;
  7022. width:100%;
  7023. }
  7024. #u19297_img {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:0px;
  7028. top:0px;
  7029. width:201px;
  7030. height:2px;
  7031. }
  7032. #u19297_text {
  7033. border-width:0px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. visibility:hidden;
  7037. }
  7038. #u19298_div {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:0px;
  7042. top:0px;
  7043. width:65px;
  7044. height:22px;
  7045. background:inherit;
  7046. background-color:rgba(255, 255, 255, 0);
  7047. border-radius:0px;
  7048. filter:drop-shadow(none);
  7049. transition:none;
  7050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:16px;
  7054. }
  7055. #u19298 {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:25px;
  7059. top:568px;
  7060. width:65px;
  7061. height:22px;
  7062. display:flex;
  7063. transition:none;
  7064. transform-origin:50% 50%;
  7065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:16px;
  7069. }
  7070. #u19298 .text {
  7071. position:absolute;
  7072. align-self:flex-start;
  7073. padding:0px 0px 0px 0px;
  7074. box-sizing:border-box;
  7075. width:100%;
  7076. }
  7077. #u19298_text {
  7078. border-width:0px;
  7079. white-space:nowrap;
  7080. text-transform:none;
  7081. }
  7082. #u19299_div {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:49px;
  7088. height:17px;
  7089. background:inherit;
  7090. background-color:rgba(255, 255, 255, 0);
  7091. border-radius:0px;
  7092. filter:drop-shadow(none);
  7093. transition:none;
  7094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7095. font-weight:400;
  7096. font-style:normal;
  7097. font-size:12px;
  7098. color:#AAAAAA;
  7099. }
  7100. #u19299 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:24px;
  7104. top:305px;
  7105. width:49px;
  7106. height:17px;
  7107. display:flex;
  7108. transition:none;
  7109. transform-origin:50% 50%;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:12px;
  7114. color:#AAAAAA;
  7115. }
  7116. #u19299 .text {
  7117. position:absolute;
  7118. align-self:flex-start;
  7119. padding:0px 0px 0px 0px;
  7120. box-sizing:border-box;
  7121. width:100%;
  7122. }
  7123. #u19299_text {
  7124. border-width:0px;
  7125. white-space:nowrap;
  7126. text-transform:none;
  7127. }
  7128. #u19300 {
  7129. border-width:0px;
  7130. position:absolute;
  7131. left:1px;
  7132. top:284px;
  7133. width:200px;
  7134. height:1px;
  7135. display:flex;
  7136. transition:none;
  7137. }
  7138. #u19300 .text {
  7139. position:absolute;
  7140. align-self:center;
  7141. padding:2px 2px 2px 2px;
  7142. box-sizing:border-box;
  7143. width:100%;
  7144. }
  7145. #u19300_img {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:201px;
  7151. height:2px;
  7152. }
  7153. #u19300_text {
  7154. border-width:0px;
  7155. word-wrap:break-word;
  7156. text-transform:none;
  7157. visibility:hidden;
  7158. }
  7159. #u19301_div {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:65px;
  7165. height:22px;
  7166. background:inherit;
  7167. background-color:rgba(255, 255, 255, 0);
  7168. border-radius:0px;
  7169. filter:drop-shadow(none);
  7170. transition:none;
  7171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:16px;
  7175. }
  7176. #u19301 {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:26px;
  7180. top:342px;
  7181. width:65px;
  7182. height:22px;
  7183. display:flex;
  7184. transition:none;
  7185. transform-origin:50% 50%;
  7186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7187. font-weight:400;
  7188. font-style:normal;
  7189. font-size:16px;
  7190. }
  7191. #u19301 .text {
  7192. position:absolute;
  7193. align-self:flex-start;
  7194. padding:0px 0px 0px 0px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u19301_text {
  7199. border-width:0px;
  7200. white-space:nowrap;
  7201. text-transform:none;
  7202. }
  7203. #u19302_div {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:0px;
  7207. top:0px;
  7208. width:65px;
  7209. height:22px;
  7210. background:inherit;
  7211. background-color:rgba(255, 255, 255, 0);
  7212. border-radius:0px;
  7213. filter:drop-shadow(none);
  7214. transition:none;
  7215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. font-size:16px;
  7219. }
  7220. #u19302 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:26px;
  7224. top:384px;
  7225. width:65px;
  7226. height:22px;
  7227. display:flex;
  7228. transition:none;
  7229. transform-origin:50% 50%;
  7230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7231. font-weight:400;
  7232. font-style:normal;
  7233. font-size:16px;
  7234. }
  7235. #u19302 .text {
  7236. position:absolute;
  7237. align-self:flex-start;
  7238. padding:0px 0px 0px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u19302_text {
  7243. border-width:0px;
  7244. white-space:nowrap;
  7245. text-transform:none;
  7246. }
  7247. #u19303_div {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:65px;
  7253. height:22px;
  7254. background:inherit;
  7255. background-color:rgba(255, 255, 255, 0);
  7256. border-radius:0px;
  7257. filter:drop-shadow(none);
  7258. transition:none;
  7259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7260. font-weight:400;
  7261. font-style:normal;
  7262. font-size:16px;
  7263. }
  7264. #u19303 {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:25px;
  7268. top:876px;
  7269. width:65px;
  7270. height:22px;
  7271. display:flex;
  7272. transition:none;
  7273. transform-origin:50% 50%;
  7274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7275. font-weight:400;
  7276. font-style:normal;
  7277. font-size:16px;
  7278. }
  7279. #u19303 .text {
  7280. position:absolute;
  7281. align-self:flex-start;
  7282. padding:0px 0px 0px 0px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u19303_text {
  7287. border-width:0px;
  7288. white-space:nowrap;
  7289. text-transform:none;
  7290. }
  7291. #u19304_div {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:97px;
  7297. height:22px;
  7298. background:inherit;
  7299. background-color:rgba(255, 255, 255, 0);
  7300. border-radius:0px;
  7301. filter:drop-shadow(none);
  7302. transition:none;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:16px;
  7307. }
  7308. #u19304 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:25px;
  7312. top:668px;
  7313. width:97px;
  7314. height:22px;
  7315. display:flex;
  7316. transition:none;
  7317. transform-origin:50% 50%;
  7318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:16px;
  7322. }
  7323. #u19304 .text {
  7324. position:absolute;
  7325. align-self:flex-start;
  7326. padding:0px 0px 0px 0px;
  7327. box-sizing:border-box;
  7328. width:100%;
  7329. }
  7330. #u19304_text {
  7331. border-width:0px;
  7332. white-space:nowrap;
  7333. text-transform:none;
  7334. }
  7335. #u19305_div {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:49px;
  7341. height:17px;
  7342. background:inherit;
  7343. background-color:rgba(255, 255, 255, 0);
  7344. border-radius:0px;
  7345. filter:drop-shadow(none);
  7346. transition:none;
  7347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7348. font-weight:400;
  7349. font-style:normal;
  7350. font-size:12px;
  7351. color:#AAAAAA;
  7352. }
  7353. #u19305 {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:23px;
  7357. top:631px;
  7358. width:49px;
  7359. height:17px;
  7360. display:flex;
  7361. transition:none;
  7362. transform-origin:50% 50%;
  7363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7364. font-weight:400;
  7365. font-style:normal;
  7366. font-size:12px;
  7367. color:#AAAAAA;
  7368. }
  7369. #u19305 .text {
  7370. position:absolute;
  7371. align-self:flex-start;
  7372. padding:0px 0px 0px 0px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u19305_text {
  7377. border-width:0px;
  7378. white-space:nowrap;
  7379. text-transform:none;
  7380. }
  7381. #u19306 {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:610px;
  7386. width:200px;
  7387. height:1px;
  7388. display:flex;
  7389. transition:none;
  7390. }
  7391. #u19306 .text {
  7392. position:absolute;
  7393. align-self:center;
  7394. padding:2px 2px 2px 2px;
  7395. box-sizing:border-box;
  7396. width:100%;
  7397. }
  7398. #u19306_img {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:0px;
  7402. top:0px;
  7403. width:201px;
  7404. height:2px;
  7405. }
  7406. #u19306_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. visibility:hidden;
  7411. }
  7412. #u19307_div {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:97px;
  7418. height:22px;
  7419. background:inherit;
  7420. background-color:rgba(255, 255, 255, 0);
  7421. border-radius:0px;
  7422. filter:drop-shadow(none);
  7423. transition:none;
  7424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:16px;
  7428. }
  7429. #u19307 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:25px;
  7433. top:750px;
  7434. width:97px;
  7435. height:22px;
  7436. display:flex;
  7437. transition:none;
  7438. transform-origin:50% 50%;
  7439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:16px;
  7443. }
  7444. #u19307 .text {
  7445. position:absolute;
  7446. align-self:flex-start;
  7447. padding:0px 0px 0px 0px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u19307_text {
  7452. border-width:0px;
  7453. white-space:nowrap;
  7454. text-transform:none;
  7455. }
  7456. #u19308_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:97px;
  7462. height:22px;
  7463. background:inherit;
  7464. background-color:rgba(255, 255, 255, 0);
  7465. border-radius:0px;
  7466. filter:drop-shadow(none);
  7467. transition:none;
  7468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:16px;
  7472. }
  7473. #u19308 {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:25px;
  7477. top:792px;
  7478. width:97px;
  7479. height:22px;
  7480. display:flex;
  7481. transition:none;
  7482. transform-origin:50% 50%;
  7483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7484. font-weight:400;
  7485. font-style:normal;
  7486. font-size:16px;
  7487. }
  7488. #u19308 .text {
  7489. position:absolute;
  7490. align-self:flex-start;
  7491. padding:0px 0px 0px 0px;
  7492. box-sizing:border-box;
  7493. width:100%;
  7494. }
  7495. #u19308_text {
  7496. border-width:0px;
  7497. white-space:nowrap;
  7498. text-transform:none;
  7499. }
  7500. #u19309_div {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:0px;
  7504. top:0px;
  7505. width:65px;
  7506. height:22px;
  7507. background:inherit;
  7508. background-color:rgba(255, 255, 255, 0);
  7509. border-radius:0px;
  7510. filter:drop-shadow(none);
  7511. transition:none;
  7512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7513. font-weight:400;
  7514. font-style:normal;
  7515. font-size:16px;
  7516. }
  7517. #u19309 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:25px;
  7521. top:976px;
  7522. width:65px;
  7523. height:22px;
  7524. display:flex;
  7525. transition:none;
  7526. transform-origin:50% 50%;
  7527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7528. font-weight:400;
  7529. font-style:normal;
  7530. font-size:16px;
  7531. }
  7532. #u19309 .text {
  7533. position:absolute;
  7534. align-self:flex-start;
  7535. padding:0px 0px 0px 0px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u19309_text {
  7540. border-width:0px;
  7541. white-space:nowrap;
  7542. text-transform:none;
  7543. }
  7544. #u19310_div {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:49px;
  7550. height:17px;
  7551. background:inherit;
  7552. background-color:rgba(255, 255, 255, 0);
  7553. border-radius:0px;
  7554. filter:drop-shadow(none);
  7555. transition:none;
  7556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:12px;
  7560. color:#AAAAAA;
  7561. }
  7562. #u19310 {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:23px;
  7566. top:939px;
  7567. width:49px;
  7568. height:17px;
  7569. display:flex;
  7570. transition:none;
  7571. transform-origin:50% 50%;
  7572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7573. font-weight:400;
  7574. font-style:normal;
  7575. font-size:12px;
  7576. color:#AAAAAA;
  7577. }
  7578. #u19310 .text {
  7579. position:absolute;
  7580. align-self:flex-start;
  7581. padding:0px 0px 0px 0px;
  7582. box-sizing:border-box;
  7583. width:100%;
  7584. }
  7585. #u19310_text {
  7586. border-width:0px;
  7587. white-space:nowrap;
  7588. text-transform:none;
  7589. }
  7590. #u19311 {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:918px;
  7595. width:200px;
  7596. height:1px;
  7597. display:flex;
  7598. transition:none;
  7599. }
  7600. #u19311 .text {
  7601. position:absolute;
  7602. align-self:center;
  7603. padding:2px 2px 2px 2px;
  7604. box-sizing:border-box;
  7605. width:100%;
  7606. }
  7607. #u19311_img {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:201px;
  7613. height:2px;
  7614. }
  7615. #u19311_text {
  7616. border-width:0px;
  7617. word-wrap:break-word;
  7618. text-transform:none;
  7619. visibility:hidden;
  7620. }
  7621. #u19312_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:65px;
  7627. height:22px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 0);
  7630. border-radius:0px;
  7631. filter:drop-shadow(none);
  7632. transition:none;
  7633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7634. font-weight:400;
  7635. font-style:normal;
  7636. font-size:16px;
  7637. }
  7638. #u19312 {
  7639. border-width:0px;
  7640. position:absolute;
  7641. left:25px;
  7642. top:1018px;
  7643. width:65px;
  7644. height:22px;
  7645. display:flex;
  7646. transition:none;
  7647. transform-origin:50% 50%;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:16px;
  7652. }
  7653. #u19312 .text {
  7654. position:absolute;
  7655. align-self:flex-start;
  7656. padding:0px 0px 0px 0px;
  7657. box-sizing:border-box;
  7658. width:100%;
  7659. }
  7660. #u19312_text {
  7661. border-width:0px;
  7662. white-space:nowrap;
  7663. text-transform:none;
  7664. }
  7665. #u19313_div {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:97px;
  7671. height:22px;
  7672. background:inherit;
  7673. background-color:rgba(255, 255, 255, 0);
  7674. border-radius:0px;
  7675. filter:drop-shadow(none);
  7676. transition:none;
  7677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:16px;
  7681. }
  7682. #u19313 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:25px;
  7686. top:834px;
  7687. width:97px;
  7688. height:22px;
  7689. display:flex;
  7690. transition:none;
  7691. transform-origin:50% 50%;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:16px;
  7696. }
  7697. #u19313 .text {
  7698. position:absolute;
  7699. align-self:flex-start;
  7700. padding:0px 0px 0px 0px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u19313_text {
  7705. border-width:0px;
  7706. white-space:nowrap;
  7707. text-transform:none;
  7708. }
  7709. #u19314_div {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:81px;
  7715. height:22px;
  7716. background:inherit;
  7717. background-color:rgba(255, 255, 255, 0);
  7718. border-radius:0px;
  7719. filter:drop-shadow(none);
  7720. transition:none;
  7721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:16px;
  7725. }
  7726. #u19314 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:26px;
  7730. top:426px;
  7731. width:81px;
  7732. height:22px;
  7733. display:flex;
  7734. transition:none;
  7735. transform-origin:50% 50%;
  7736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7737. font-weight:400;
  7738. font-style:normal;
  7739. font-size:16px;
  7740. }
  7741. #u19314 .text {
  7742. position:absolute;
  7743. align-self:flex-start;
  7744. padding:0px 0px 0px 0px;
  7745. box-sizing:border-box;
  7746. width:100%;
  7747. }
  7748. #u19314_text {
  7749. border-width:0px;
  7750. white-space:nowrap;
  7751. text-transform:none;
  7752. }
  7753. #u19315_div {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:0px;
  7757. top:0px;
  7758. width:97px;
  7759. height:22px;
  7760. background:inherit;
  7761. background-color:rgba(255, 255, 255, 0);
  7762. border-radius:0px;
  7763. filter:drop-shadow(none);
  7764. transition:none;
  7765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7766. font-weight:400;
  7767. font-style:normal;
  7768. font-size:16px;
  7769. }
  7770. #u19315 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:25px;
  7774. top:710px;
  7775. width:97px;
  7776. height:22px;
  7777. display:flex;
  7778. transition:none;
  7779. transform-origin:50% 50%;
  7780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:16px;
  7784. }
  7785. #u19315 .text {
  7786. position:absolute;
  7787. align-self:flex-start;
  7788. padding:0px 0px 0px 0px;
  7789. box-sizing:border-box;
  7790. width:100%;
  7791. }
  7792. #u19315_text {
  7793. border-width:0px;
  7794. white-space:nowrap;
  7795. text-transform:none;
  7796. }
  7797. #u19316_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:65px;
  7803. height:22px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 0);
  7806. border-radius:0px;
  7807. filter:drop-shadow(none);
  7808. transition:none;
  7809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7810. font-weight:400;
  7811. font-style:normal;
  7812. font-size:16px;
  7813. }
  7814. #u19316 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:25px;
  7818. top:160px;
  7819. width:65px;
  7820. height:22px;
  7821. display:flex;
  7822. transition:none;
  7823. transform-origin:50% 50%;
  7824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:16px;
  7828. }
  7829. #u19316 .text {
  7830. position:absolute;
  7831. align-self:flex-start;
  7832. padding:0px 0px 0px 0px;
  7833. box-sizing:border-box;
  7834. width:100%;
  7835. }
  7836. #u19316_text {
  7837. border-width:0px;
  7838. white-space:nowrap;
  7839. text-transform:none;
  7840. }
  7841. #u19317_div {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:81px;
  7847. height:22px;
  7848. background:inherit;
  7849. background-color:rgba(255, 255, 255, 0);
  7850. border-radius:0px;
  7851. filter:drop-shadow(none);
  7852. transition:none;
  7853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:16px;
  7857. }
  7858. #u19317 {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:26px;
  7862. top:202px;
  7863. width:81px;
  7864. height:22px;
  7865. display:flex;
  7866. transition:none;
  7867. transform-origin:50% 50%;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:16px;
  7872. }
  7873. #u19317 .text {
  7874. position:absolute;
  7875. align-self:flex-start;
  7876. padding:0px 0px 0px 0px;
  7877. box-sizing:border-box;
  7878. width:100%;
  7879. }
  7880. #u19317_text {
  7881. border-width:0px;
  7882. white-space:nowrap;
  7883. text-transform:none;
  7884. }
  7885. #u19318_div {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:65px;
  7891. height:22px;
  7892. background:inherit;
  7893. background-color:rgba(255, 255, 255, 0);
  7894. border-radius:0px;
  7895. filter:drop-shadow(none);
  7896. transition:none;
  7897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7898. font-weight:400;
  7899. font-style:normal;
  7900. font-size:16px;
  7901. }
  7902. #u19318 {
  7903. border-width:0px;
  7904. position:absolute;
  7905. left:26px;
  7906. top:244px;
  7907. width:65px;
  7908. height:22px;
  7909. display:flex;
  7910. transition:none;
  7911. transform-origin:50% 50%;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:16px;
  7916. }
  7917. #u19318 .text {
  7918. position:absolute;
  7919. align-self:flex-start;
  7920. padding:0px 0px 0px 0px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u19318_text {
  7925. border-width:0px;
  7926. white-space:nowrap;
  7927. text-transform:none;
  7928. }
  7929. #u19319_div {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:55px;
  7935. height:30px;
  7936. background:inherit;
  7937. background-color:rgba(255, 255, 255, 1);
  7938. box-sizing:border-box;
  7939. border-width:1px;
  7940. border-style:solid;
  7941. border-color:rgba(170, 170, 170, 1);
  7942. border-radius:4px;
  7943. filter:drop-shadow(none);
  7944. transition:none;
  7945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7946. font-weight:400;
  7947. font-style:normal;
  7948. font-size:12px;
  7949. color:#555555;
  7950. }
  7951. #u19319 {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:489px;
  7955. top:232px;
  7956. width:55px;
  7957. height:30px;
  7958. display:flex;
  7959. transition:none;
  7960. transform-origin:50% 50%;
  7961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7962. font-weight:400;
  7963. font-style:normal;
  7964. font-size:12px;
  7965. color:#555555;
  7966. }
  7967. #u19319 .text {
  7968. position:absolute;
  7969. align-self:center;
  7970. padding:5px 15px 5px 15px;
  7971. box-sizing:border-box;
  7972. width:100%;
  7973. }
  7974. #u19319_text {
  7975. border-width:0px;
  7976. white-space:nowrap;
  7977. text-transform:none;
  7978. }
  7979. #u19320_div {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:0px;
  7983. top:0px;
  7984. width:59px;
  7985. height:30px;
  7986. background:inherit;
  7987. background-color:rgba(255, 255, 255, 1);
  7988. box-sizing:border-box;
  7989. border-width:1px;
  7990. border-style:solid;
  7991. border-color:rgba(170, 170, 170, 1);
  7992. border-radius:4px;
  7993. filter:drop-shadow(none);
  7994. transition:none;
  7995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7996. font-weight:400;
  7997. font-style:normal;
  7998. font-size:14px;
  7999. color:#555555;
  8000. }
  8001. #u19320 {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:420px;
  8005. top:232px;
  8006. width:59px;
  8007. height:30px;
  8008. display:flex;
  8009. transition:none;
  8010. transform-origin:50% 50%;
  8011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:14px;
  8015. color:#555555;
  8016. }
  8017. #u19320 .text {
  8018. position:absolute;
  8019. align-self:center;
  8020. padding:5px 15px 5px 15px;
  8021. box-sizing:border-box;
  8022. width:100%;
  8023. }
  8024. #u19320_text {
  8025. border-width:0px;
  8026. white-space:nowrap;
  8027. text-transform:none;
  8028. }
  8029. #u19321_div {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:575px;
  8035. height:20px;
  8036. background:inherit;
  8037. background-color:rgba(255, 255, 255, 0);
  8038. border-left:0px;
  8039. border-top:0px;
  8040. border-right:0px;
  8041. border-radius:0px;
  8042. border-bottom-right-radius:0px;
  8043. border-bottom-left-radius:0px;
  8044. filter:drop-shadow(none);
  8045. transition:none;
  8046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8047. font-weight:400;
  8048. font-style:normal;
  8049. font-size:14px;
  8050. color:#7F7F7F;
  8051. }
  8052. #u19321 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:352px;
  8056. top:100px;
  8057. width:575px;
  8058. height:20px;
  8059. display:flex;
  8060. transition:none;
  8061. transform-origin:50% 50%;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. color:#7F7F7F;
  8067. }
  8068. #u19321 .text {
  8069. position:absolute;
  8070. align-self:center;
  8071. padding:0px 0px 0px 0px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u19321_text {
  8076. border-width:0px;
  8077. white-space:nowrap;
  8078. text-transform:none;
  8079. }
  8080. #u19322 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:0px;
  8086. height:0px;
  8087. }
  8088. #u19323 {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:0px;
  8094. height:0px;
  8095. }
  8096. #u19324_div {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:380px;
  8102. height:140px;
  8103. background:inherit;
  8104. background-color:rgba(255, 255, 255, 1);
  8105. box-sizing:border-box;
  8106. border-width:1px;
  8107. border-style:solid;
  8108. border-color:rgba(204, 204, 204, 1);
  8109. border-radius:4px;
  8110. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  8111. transition:none;
  8112. font-family:"Microsoft YaHei", sans-serif;
  8113. font-weight:400;
  8114. font-style:normal;
  8115. }
  8116. #u19324 {
  8117. border-width:0px;
  8118. position:absolute;
  8119. left:1031px;
  8120. top:444px;
  8121. width:380px;
  8122. height:140px;
  8123. display:flex;
  8124. transition:none;
  8125. transform-origin:50% 50%;
  8126. font-family:"Microsoft YaHei", sans-serif;
  8127. font-weight:400;
  8128. font-style:normal;
  8129. }
  8130. #u19324 .text {
  8131. position:absolute;
  8132. align-self:center;
  8133. padding:2px 2px 2px 2px;
  8134. box-sizing:border-box;
  8135. width:100%;
  8136. }
  8137. #u19324_text {
  8138. border-width:0px;
  8139. word-wrap:break-word;
  8140. text-transform:none;
  8141. visibility:hidden;
  8142. }
  8143. #u19325_div {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:0px;
  8147. top:0px;
  8148. width:299px;
  8149. height:22px;
  8150. background:inherit;
  8151. background-color:rgba(255, 255, 255, 0);
  8152. border-radius:0px;
  8153. filter:drop-shadow(none);
  8154. transition:none;
  8155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:14px;
  8159. color:#666666;
  8160. line-height:22px;
  8161. }
  8162. #u19325 {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:1091px;
  8166. top:499px;
  8167. width:299px;
  8168. height:22px;
  8169. display:flex;
  8170. transition:none;
  8171. transform-origin:50% 50%;
  8172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8173. font-weight:400;
  8174. font-style:normal;
  8175. font-size:14px;
  8176. color:#666666;
  8177. line-height:22px;
  8178. }
  8179. #u19325 .text {
  8180. position:absolute;
  8181. align-self:flex-start;
  8182. padding:0px 0px 0px 0px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u19325_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. }
  8191. #u19326_div {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:127px;
  8197. height:21px;
  8198. background:inherit;
  8199. background-color:rgba(255, 255, 255, 0);
  8200. border-radius:0px;
  8201. filter:drop-shadow(none);
  8202. transition:none;
  8203. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8204. font-weight:650;
  8205. font-style:normal;
  8206. font-size:18px;
  8207. color:#000000;
  8208. line-height:22px;
  8209. }
  8210. #u19326 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:1091px;
  8214. top:469px;
  8215. width:127px;
  8216. height:21px;
  8217. display:flex;
  8218. transition:none;
  8219. transform-origin:50% 50%;
  8220. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8221. font-weight:650;
  8222. font-style:normal;
  8223. font-size:18px;
  8224. color:#000000;
  8225. line-height:22px;
  8226. }
  8227. #u19326 .text {
  8228. position:absolute;
  8229. align-self:flex-start;
  8230. padding:0px 0px 0px 0px;
  8231. box-sizing:border-box;
  8232. width:100%;
  8233. }
  8234. #u19326_text {
  8235. border-width:0px;
  8236. white-space:nowrap;
  8237. text-transform:none;
  8238. }
  8239. #u19327_div {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:61px;
  8245. height:30px;
  8246. background:inherit;
  8247. background-color:rgba(24, 144, 255, 1);
  8248. border-radius:4px;
  8249. filter:drop-shadow(none);
  8250. transition:none;
  8251. font-family:"Microsoft YaHei", sans-serif;
  8252. font-weight:400;
  8253. font-style:normal;
  8254. font-size:14px;
  8255. color:#FFFFFF;
  8256. }
  8257. #u19327 {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:1333px;
  8261. top:539px;
  8262. width:61px;
  8263. height:30px;
  8264. display:flex;
  8265. transition:none;
  8266. transform-origin:50% 50%;
  8267. font-family:"Microsoft YaHei", sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:14px;
  8271. color:#FFFFFF;
  8272. }
  8273. #u19327 .text {
  8274. position:absolute;
  8275. align-self:center;
  8276. padding:2px 16px 2px 16px;
  8277. box-sizing:border-box;
  8278. width:100%;
  8279. }
  8280. #u19327_text {
  8281. border-width:0px;
  8282. white-space:nowrap;
  8283. text-transform:none;
  8284. }
  8285. #u19328_div {
  8286. border-width:0px;
  8287. position:absolute;
  8288. left:0px;
  8289. top:0px;
  8290. width:66px;
  8291. height:30px;
  8292. background:inherit;
  8293. background-color:rgba(255, 255, 255, 1);
  8294. box-sizing:border-box;
  8295. border-width:1px;
  8296. border-style:solid;
  8297. border-color:rgba(217, 217, 217, 1);
  8298. border-radius:4px;
  8299. filter:drop-shadow(none);
  8300. transition:none;
  8301. font-family:"Microsoft YaHei", sans-serif;
  8302. font-weight:400;
  8303. font-style:normal;
  8304. font-size:14px;
  8305. color:rgba(0, 0, 0, 0.6470588235294118);
  8306. line-height:21px;
  8307. }
  8308. #u19328 {
  8309. border-width:0px;
  8310. position:absolute;
  8311. left:1251px;
  8312. top:539px;
  8313. width:66px;
  8314. height:30px;
  8315. display:flex;
  8316. transition:none;
  8317. transform-origin:50% 50%;
  8318. font-family:"Microsoft YaHei", sans-serif;
  8319. font-weight:400;
  8320. font-style:normal;
  8321. font-size:14px;
  8322. color:rgba(0, 0, 0, 0.6470588235294118);
  8323. line-height:21px;
  8324. }
  8325. #u19328 .text {
  8326. position:absolute;
  8327. align-self:center;
  8328. padding:2px 16px 2px 16px;
  8329. box-sizing:border-box;
  8330. width:100%;
  8331. }
  8332. #u19328_text {
  8333. border-width:0px;
  8334. white-space:nowrap;
  8335. text-transform:none;
  8336. }
  8337. #u19329 {
  8338. border-width:0px;
  8339. position:absolute;
  8340. left:1060px;
  8341. top:473px;
  8342. width:20px;
  8343. height:20px;
  8344. display:flex;
  8345. transition:none;
  8346. }
  8347. #u19329 .text {
  8348. position:absolute;
  8349. align-self:center;
  8350. padding:2px 2px 2px 2px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u19329_img {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:20px;
  8360. height:20px;
  8361. }
  8362. #u19329_text {
  8363. border-width:0px;
  8364. word-wrap:break-word;
  8365. text-transform:none;
  8366. visibility:hidden;
  8367. }
  8368. #u19330 {
  8369. border-width:0px;
  8370. position:absolute;
  8371. left:0px;
  8372. top:0px;
  8373. width:0px;
  8374. height:0px;
  8375. }
  8376. #u19331_div {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:380px;
  8382. height:140px;
  8383. background:inherit;
  8384. background-color:rgba(255, 255, 255, 1);
  8385. box-sizing:border-box;
  8386. border-width:1px;
  8387. border-style:solid;
  8388. border-color:rgba(204, 204, 204, 1);
  8389. border-radius:4px;
  8390. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  8391. transition:none;
  8392. font-family:"Microsoft YaHei", sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. }
  8396. #u19331 {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:1031px;
  8400. top:600px;
  8401. width:380px;
  8402. height:140px;
  8403. display:flex;
  8404. transition:none;
  8405. transform-origin:50% 50%;
  8406. font-family:"Microsoft YaHei", sans-serif;
  8407. font-weight:400;
  8408. font-style:normal;
  8409. }
  8410. #u19331 .text {
  8411. position:absolute;
  8412. align-self:center;
  8413. padding:2px 2px 2px 2px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u19331_text {
  8418. border-width:0px;
  8419. word-wrap:break-word;
  8420. text-transform:none;
  8421. visibility:hidden;
  8422. }
  8423. #u19332_div {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:0px;
  8427. top:0px;
  8428. width:288px;
  8429. height:22px;
  8430. background:inherit;
  8431. background-color:rgba(255, 255, 255, 0);
  8432. border-radius:0px;
  8433. filter:drop-shadow(none);
  8434. transition:none;
  8435. font-size:14px;
  8436. color:#666666;
  8437. line-height:22px;
  8438. }
  8439. #u19332 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:1091px;
  8443. top:655px;
  8444. width:288px;
  8445. height:22px;
  8446. display:flex;
  8447. transition:none;
  8448. transform-origin:50% 50%;
  8449. font-size:14px;
  8450. color:#666666;
  8451. line-height:22px;
  8452. }
  8453. #u19332 .text {
  8454. position:absolute;
  8455. align-self:flex-start;
  8456. padding:0px 0px 0px 0px;
  8457. box-sizing:border-box;
  8458. width:100%;
  8459. }
  8460. #u19332_text {
  8461. border-width:0px;
  8462. word-wrap:break-word;
  8463. text-transform:none;
  8464. }
  8465. #u19333_div {
  8466. border-width:0px;
  8467. position:absolute;
  8468. left:0px;
  8469. top:0px;
  8470. width:91px;
  8471. height:21px;
  8472. background:inherit;
  8473. background-color:rgba(255, 255, 255, 0);
  8474. border-radius:0px;
  8475. filter:drop-shadow(none);
  8476. transition:none;
  8477. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8478. font-weight:650;
  8479. font-style:normal;
  8480. font-size:18px;
  8481. color:#000000;
  8482. line-height:22px;
  8483. }
  8484. #u19333 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:1091px;
  8488. top:625px;
  8489. width:91px;
  8490. height:21px;
  8491. display:flex;
  8492. transition:none;
  8493. transform-origin:50% 50%;
  8494. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8495. font-weight:650;
  8496. font-style:normal;
  8497. font-size:18px;
  8498. color:#000000;
  8499. line-height:22px;
  8500. }
  8501. #u19333 .text {
  8502. position:absolute;
  8503. align-self:flex-start;
  8504. padding:0px 0px 0px 0px;
  8505. box-sizing:border-box;
  8506. width:100%;
  8507. }
  8508. #u19333_text {
  8509. border-width:0px;
  8510. white-space:nowrap;
  8511. text-transform:none;
  8512. }
  8513. #u19334_div {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:0px;
  8517. top:0px;
  8518. width:61px;
  8519. height:30px;
  8520. background:inherit;
  8521. background-color:rgba(24, 144, 255, 1);
  8522. border-radius:4px;
  8523. filter:drop-shadow(none);
  8524. transition:none;
  8525. font-family:"Microsoft YaHei", sans-serif;
  8526. font-weight:400;
  8527. font-style:normal;
  8528. font-size:14px;
  8529. color:#FFFFFF;
  8530. }
  8531. #u19334 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:1330px;
  8535. top:695px;
  8536. width:61px;
  8537. height:30px;
  8538. display:flex;
  8539. transition:none;
  8540. transform-origin:50% 50%;
  8541. font-family:"Microsoft YaHei", sans-serif;
  8542. font-weight:400;
  8543. font-style:normal;
  8544. font-size:14px;
  8545. color:#FFFFFF;
  8546. }
  8547. #u19334 .text {
  8548. position:absolute;
  8549. align-self:center;
  8550. padding:2px 16px 2px 16px;
  8551. box-sizing:border-box;
  8552. width:100%;
  8553. }
  8554. #u19334_text {
  8555. border-width:0px;
  8556. white-space:nowrap;
  8557. text-transform:none;
  8558. }
  8559. #u19335_div {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:66px;
  8565. height:30px;
  8566. background:inherit;
  8567. background-color:rgba(255, 255, 255, 1);
  8568. box-sizing:border-box;
  8569. border-width:1px;
  8570. border-style:solid;
  8571. border-color:rgba(217, 217, 217, 1);
  8572. border-radius:4px;
  8573. filter:drop-shadow(none);
  8574. transition:none;
  8575. font-family:"Microsoft YaHei", sans-serif;
  8576. font-weight:400;
  8577. font-style:normal;
  8578. font-size:14px;
  8579. color:rgba(0, 0, 0, 0.6470588235294118);
  8580. line-height:21px;
  8581. }
  8582. #u19335 {
  8583. border-width:0px;
  8584. position:absolute;
  8585. left:1251px;
  8586. top:695px;
  8587. width:66px;
  8588. height:30px;
  8589. display:flex;
  8590. transition:none;
  8591. transform-origin:50% 50%;
  8592. font-family:"Microsoft YaHei", sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. font-size:14px;
  8596. color:rgba(0, 0, 0, 0.6470588235294118);
  8597. line-height:21px;
  8598. }
  8599. #u19335 .text {
  8600. position:absolute;
  8601. align-self:center;
  8602. padding:2px 16px 2px 16px;
  8603. box-sizing:border-box;
  8604. width:100%;
  8605. }
  8606. #u19335_text {
  8607. border-width:0px;
  8608. white-space:nowrap;
  8609. text-transform:none;
  8610. }
  8611. #u19336 {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:1060px;
  8615. top:627px;
  8616. width:20px;
  8617. height:20px;
  8618. display:flex;
  8619. transition:none;
  8620. }
  8621. #u19336 .text {
  8622. position:absolute;
  8623. align-self:center;
  8624. padding:2px 2px 2px 2px;
  8625. box-sizing:border-box;
  8626. width:100%;
  8627. }
  8628. #u19336_img {
  8629. border-width:0px;
  8630. position:absolute;
  8631. left:0px;
  8632. top:0px;
  8633. width:20px;
  8634. height:20px;
  8635. }
  8636. #u19336_text {
  8637. border-width:0px;
  8638. word-wrap:break-word;
  8639. text-transform:none;
  8640. visibility:hidden;
  8641. }
  8642. #u19337 {
  8643. border-width:0px;
  8644. position:absolute;
  8645. left:0px;
  8646. top:0px;
  8647. width:0px;
  8648. height:0px;
  8649. }
  8650. #u19338_div {
  8651. border-width:0px;
  8652. position:absolute;
  8653. left:0px;
  8654. top:0px;
  8655. width:140px;
  8656. height:30px;
  8657. background:inherit;
  8658. background-color:rgba(255, 255, 255, 1);
  8659. box-sizing:border-box;
  8660. border-width:1px;
  8661. border-style:solid;
  8662. border-color:rgba(201, 201, 201, 1);
  8663. border-radius:4px;
  8664. filter:drop-shadow(none);
  8665. transition:none;
  8666. font-family:"Microsoft YaHei", sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. color:#CCCCCC;
  8671. text-align:left;
  8672. }
  8673. #u19338 {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:1250px;
  8677. top:142px;
  8678. width:140px;
  8679. height:30px;
  8680. display:flex;
  8681. transition:none;
  8682. transform-origin:50% 50%;
  8683. font-family:"Microsoft YaHei", sans-serif;
  8684. font-weight:400;
  8685. font-style:normal;
  8686. font-size:14px;
  8687. color:#CCCCCC;
  8688. text-align:left;
  8689. }
  8690. #u19338 .text {
  8691. position:absolute;
  8692. align-self:center;
  8693. padding:2px 8px 2px 8px;
  8694. box-sizing:border-box;
  8695. width:100%;
  8696. }
  8697. #u19338_text {
  8698. border-width:0px;
  8699. word-wrap:break-word;
  8700. text-transform:none;
  8701. visibility:hidden;
  8702. }
  8703. #u19339_input {
  8704. position:absolute;
  8705. left:0px;
  8706. top:0px;
  8707. width:127px;
  8708. height:25px;
  8709. padding:2px 2px 2px 2px;
  8710. font-family:"Microsoft YaHei", sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:10px;
  8714. letter-spacing:normal;
  8715. color:#000000;
  8716. vertical-align:none;
  8717. text-align:left;
  8718. text-transform:none;
  8719. background-color:transparent;
  8720. border-color:transparent;
  8721. }
  8722. #u19339_input.hint {
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:127px;
  8727. height:25px;
  8728. padding:2px 2px 2px 2px;
  8729. font-family:"Microsoft YaHei", sans-serif;
  8730. font-weight:400;
  8731. font-style:normal;
  8732. font-size:12px;
  8733. letter-spacing:normal;
  8734. color:#AAAAAA;
  8735. vertical-align:none;
  8736. text-align:left;
  8737. text-transform:none;
  8738. background-color:transparent;
  8739. border-color:transparent;
  8740. }
  8741. #u19339_input.disabled {
  8742. position:absolute;
  8743. left:0px;
  8744. top:0px;
  8745. width:127px;
  8746. height:25px;
  8747. padding:2px 2px 2px 2px;
  8748. font-family:"Microsoft YaHei", sans-serif;
  8749. font-weight:400;
  8750. font-style:normal;
  8751. font-size:10px;
  8752. letter-spacing:normal;
  8753. color:#000000;
  8754. vertical-align:none;
  8755. text-align:left;
  8756. text-transform:none;
  8757. background-color:transparent;
  8758. border-color:transparent;
  8759. }
  8760. #u19339_input.hint.disabled {
  8761. position:absolute;
  8762. left:0px;
  8763. top:0px;
  8764. width:127px;
  8765. height:25px;
  8766. padding:2px 2px 2px 2px;
  8767. font-family:"Microsoft YaHei", sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:12px;
  8771. letter-spacing:normal;
  8772. color:#AAAAAA;
  8773. vertical-align:none;
  8774. text-align:left;
  8775. text-transform:none;
  8776. background-color:transparent;
  8777. border-color:transparent;
  8778. }
  8779. #u19339_div {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:0px;
  8783. top:0px;
  8784. width:127px;
  8785. height:25px;
  8786. background:inherit;
  8787. background-color:rgba(255, 255, 255, 1);
  8788. border-radius:0px;
  8789. filter:drop-shadow(none);
  8790. transition:none;
  8791. font-family:"Microsoft YaHei", sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. font-size:10px;
  8795. }
  8796. #u19339 {
  8797. border-width:0px;
  8798. position:absolute;
  8799. left:1258px;
  8800. top:143px;
  8801. width:127px;
  8802. height:25px;
  8803. display:flex;
  8804. transition:none;
  8805. transform-origin:50% 50%;
  8806. font-family:"Microsoft YaHei", sans-serif;
  8807. font-weight:400;
  8808. font-style:normal;
  8809. font-size:10px;
  8810. }
  8811. #u19339 .text {
  8812. position:absolute;
  8813. align-self:center;
  8814. padding:2px 2px 2px 2px;
  8815. box-sizing:border-box;
  8816. width:100%;
  8817. }
  8818. #u19339_div.hint {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:0px;
  8822. top:0px;
  8823. width:127px;
  8824. height:25px;
  8825. background:inherit;
  8826. background-color:rgba(255, 255, 255, 1);
  8827. border-radius:0px;
  8828. filter:drop-shadow(none);
  8829. transition:none;
  8830. font-family:"Microsoft YaHei", sans-serif;
  8831. font-weight:400;
  8832. font-style:normal;
  8833. font-size:10px;
  8834. }
  8835. #u19339.hint {
  8836. }
  8837. #u19339_div.disabled {
  8838. border-width:0px;
  8839. position:absolute;
  8840. left:0px;
  8841. top:0px;
  8842. width:127px;
  8843. height:25px;
  8844. background:inherit;
  8845. background-color:rgba(240, 240, 240, 1);
  8846. border-radius:0px;
  8847. filter:drop-shadow(none);
  8848. transition:none;
  8849. font-family:"Microsoft YaHei", sans-serif;
  8850. font-weight:400;
  8851. font-style:normal;
  8852. font-size:10px;
  8853. }
  8854. #u19339.disabled {
  8855. }
  8856. #u19339_div.hint.disabled {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:0px;
  8860. top:0px;
  8861. width:127px;
  8862. height:25px;
  8863. background:inherit;
  8864. background-color:rgba(240, 240, 240, 1);
  8865. border-radius:0px;
  8866. filter:drop-shadow(none);
  8867. transition:none;
  8868. font-family:"Microsoft YaHei", sans-serif;
  8869. font-weight:400;
  8870. font-style:normal;
  8871. font-size:10px;
  8872. }
  8873. #u19339.hint.disabled {
  8874. }