styles.css 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094
  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. #u19497 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u19498_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. #u19498 {
  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. #u19498 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u19498_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u19499_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. #u19499 {
  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. #u19499 .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. #u19499_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u19500_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. #u19500 {
  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. #u19500 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u19500_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u19501 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u19502 {
  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. #u19502 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u19502_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u19502_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u19503_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. #u19503 {
  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. #u19503 .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. #u19503_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u19504_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. #u19504 {
  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. #u19504 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u19504_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u19505 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u19506_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. #u19506 {
  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. #u19506 .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. #u19506_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u19507 {
  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. #u19507 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u19507_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u19507_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u19508 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u19509_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. #u19509 {
  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. #u19509 .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. #u19509_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u19510 {
  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. #u19510 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u19510_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u19510_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u19511 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u19512_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. #u19512 {
  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. #u19512 .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. #u19512_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u19513 {
  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. #u19513 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u19513_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u19513_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u19514 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u19515_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. #u19515 {
  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. #u19515 .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. #u19515_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u19516 {
  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. #u19516 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u19516_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u19516_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u19517 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u19518_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. #u19518 {
  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. #u19518 .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. #u19518_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u19519 {
  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. #u19519 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u19519_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u19519_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u19520 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u19521_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. #u19521 {
  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. #u19521 .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. #u19521_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u19522 {
  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. #u19522 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u19522_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u19522_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u19523 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u19524_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. #u19524 {
  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. #u19524 .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. #u19524_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u19525 {
  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. #u19525 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u19525_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u19525_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u19526 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u19527_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. #u19527 {
  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. #u19527 .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. #u19527_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u19528 {
  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. #u19528 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u19528_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u19528_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u19529 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u19530_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. #u19530 {
  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. #u19530 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u19530_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u19531 {
  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. #u19531 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u19531_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u19531_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u19532 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u19533_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. #u19533 {
  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. #u19533 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u19533_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u19534 {
  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. #u19534 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u19534_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u19534_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u19535 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u19536_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. #u19536 {
  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. #u19536 .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. #u19536_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u19537 {
  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. #u19537 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u19537_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u19537_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u19538 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u19539_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. #u19539_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. #u19539_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. #u19539 {
  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. #u19539 .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. #u19539_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. #u19539.disabled {
  1294. }
  1295. .u19539_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u19540 {
  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. #u19540 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u19540_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u19540_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u19541_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. #u19541 {
  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. #u19541 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u19541_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u19542 {
  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. #u19542 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u19542_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u19542_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u19543 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u19544_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. #u19544 {
  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. #u19544 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u19544_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u19545 {
  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. #u19545 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u19545_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u19545_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u19546 {
  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. #u19546 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u19546_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u19546_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u19547 {
  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. #u19547 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u19547_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u19547_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u19548 {
  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. #u19548 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u19548_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u19548_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u19549 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u19550_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. #u19550 {
  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. #u19550 .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. #u19550_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u19551 {
  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. #u19551 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u19551_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u19551_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u19552_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. #u19552 {
  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. #u19552 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u19552_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u19553 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:350px;
  1708. top:236px;
  1709. width:1219px;
  1710. height:275px;
  1711. }
  1712. #u19554 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:119px;
  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. #u19554 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u19554_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:119px;
  1740. height:35px;
  1741. }
  1742. #u19554_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u19555 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:119px;
  1751. top:0px;
  1752. width:106px;
  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. #u19555 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u19555_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:106px;
  1775. height:35px;
  1776. }
  1777. #u19555_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u19556 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:225px;
  1786. top:0px;
  1787. width:84px;
  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. #u19556 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u19556_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:84px;
  1810. height:35px;
  1811. }
  1812. #u19556_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u19557 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:309px;
  1821. top:0px;
  1822. width:84px;
  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. #u19557 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u19557_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:84px;
  1845. height:35px;
  1846. }
  1847. #u19557_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u19558 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:393px;
  1856. top:0px;
  1857. width:106px;
  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. #u19558 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u19558_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:106px;
  1880. height:35px;
  1881. }
  1882. #u19558_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u19559 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:499px;
  1891. top:0px;
  1892. width:84px;
  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. #u19559 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u19559_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:84px;
  1915. height:35px;
  1916. }
  1917. #u19559_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u19560 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:583px;
  1926. top:0px;
  1927. width:106px;
  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. #u19560 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u19560_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:106px;
  1950. height:35px;
  1951. }
  1952. #u19560_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u19561 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:689px;
  1961. top:0px;
  1962. width:93px;
  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. #u19561 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u19561_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:93px;
  1985. height:35px;
  1986. }
  1987. #u19561_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u19562 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:783px;
  1996. top:0px;
  1997. width:92px;
  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. #u19562 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u19562_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:92px;
  2020. height:35px;
  2021. }
  2022. #u19562_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u19563 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:875px;
  2031. top:0px;
  2032. width:96px;
  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. #u19563 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u19563_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:96px;
  2055. height:35px;
  2056. }
  2057. #u19563_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u19564 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:971px;
  2066. top:0px;
  2067. width:83px;
  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. #u19564 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u19564_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:83px;
  2090. height:35px;
  2091. }
  2092. #u19564_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u19565 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:1053px;
  2101. top:0px;
  2102. width:83px;
  2103. height:35px;
  2104. display:flex;
  2105. transition:none;
  2106. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#FFFFFF;
  2111. }
  2112. #u19565 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u19565_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:83px;
  2125. height:35px;
  2126. }
  2127. #u19565_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. }
  2132. #u19566 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:1136px;
  2136. top:0px;
  2137. width:83px;
  2138. height:35px;
  2139. display:flex;
  2140. transition:none;
  2141. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#FFFFFF;
  2146. }
  2147. #u19566 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u19566_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:83px;
  2160. height:35px;
  2161. }
  2162. #u19566_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u19567 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:35px;
  2172. width:119px;
  2173. height:44px;
  2174. display:flex;
  2175. transition:none;
  2176. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:#333333;
  2181. line-height:40px;
  2182. }
  2183. #u19567 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:2px 2px 2px 0px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u19567_img {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:119px;
  2196. height:44px;
  2197. }
  2198. #u19567_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. }
  2203. #u19568 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:119px;
  2207. top:35px;
  2208. width:106px;
  2209. height:44px;
  2210. display:flex;
  2211. transition:none;
  2212. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:12px;
  2216. color:#333333;
  2217. line-height:40px;
  2218. }
  2219. #u19568 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u19568_img {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:106px;
  2232. height:44px;
  2233. }
  2234. #u19568_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. }
  2239. #u19569 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:225px;
  2243. top:35px;
  2244. width:84px;
  2245. height:44px;
  2246. display:flex;
  2247. transition:none;
  2248. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. }
  2253. #u19569 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u19569_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:84px;
  2266. height:44px;
  2267. }
  2268. #u19569_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u19570 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:309px;
  2277. top:35px;
  2278. width:84px;
  2279. height:44px;
  2280. display:flex;
  2281. transition:none;
  2282. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#606266;
  2287. }
  2288. #u19570 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u19570_img {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:0px;
  2299. top:0px;
  2300. width:84px;
  2301. height:44px;
  2302. }
  2303. #u19570_text {
  2304. border-width:0px;
  2305. word-wrap:break-word;
  2306. text-transform:none;
  2307. }
  2308. #u19571 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:393px;
  2312. top:35px;
  2313. width:106px;
  2314. height:44px;
  2315. display:flex;
  2316. transition:none;
  2317. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:12px;
  2321. color:#333333;
  2322. }
  2323. #u19571 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 0px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u19571_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:106px;
  2336. height:44px;
  2337. }
  2338. #u19571_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. }
  2343. #u19572 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:499px;
  2347. top:35px;
  2348. width:84px;
  2349. height:44px;
  2350. display:flex;
  2351. transition:none;
  2352. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:12px;
  2356. color:#333333;
  2357. }
  2358. #u19572 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 0px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u19572_img {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:84px;
  2371. height:44px;
  2372. }
  2373. #u19572_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u19573 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:583px;
  2383. top:35px;
  2384. width:106px;
  2385. height:44px;
  2386. display:flex;
  2387. transition:none;
  2388. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. font-size:12px;
  2392. color:#333333;
  2393. }
  2394. #u19573 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 0px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u19573_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:106px;
  2407. height:44px;
  2408. }
  2409. #u19573_text {
  2410. border-width:0px;
  2411. word-wrap:break-word;
  2412. text-transform:none;
  2413. }
  2414. #u19574 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:689px;
  2418. top:35px;
  2419. width:93px;
  2420. height:44px;
  2421. display:flex;
  2422. transition:none;
  2423. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:12px;
  2427. color:#333333;
  2428. }
  2429. #u19574 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u19574_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:93px;
  2442. height:44px;
  2443. }
  2444. #u19574_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. visibility:hidden;
  2449. }
  2450. #u19575 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:783px;
  2454. top:35px;
  2455. width:92px;
  2456. height:44px;
  2457. display:flex;
  2458. transition:none;
  2459. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:12px;
  2463. color:#333333;
  2464. }
  2465. #u19575 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u19575_img {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:92px;
  2478. height:44px;
  2479. }
  2480. #u19575_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. }
  2485. #u19576 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:875px;
  2489. top:35px;
  2490. width:96px;
  2491. height:44px;
  2492. display:flex;
  2493. transition:none;
  2494. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:12px;
  2498. color:#333333;
  2499. }
  2500. #u19576 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 0px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u19576_img {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:96px;
  2513. height:44px;
  2514. }
  2515. #u19576_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. }
  2520. #u19577 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:971px;
  2524. top:35px;
  2525. width:83px;
  2526. height:44px;
  2527. display:flex;
  2528. transition:none;
  2529. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:12px;
  2533. color:#333333;
  2534. }
  2535. #u19577 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 0px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u19577_img {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:83px;
  2548. height:44px;
  2549. }
  2550. #u19577_text {
  2551. border-width:0px;
  2552. word-wrap:break-word;
  2553. text-transform:none;
  2554. visibility:hidden;
  2555. }
  2556. #u19578 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:1053px;
  2560. top:35px;
  2561. width:83px;
  2562. height:44px;
  2563. display:flex;
  2564. transition:none;
  2565. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:12px;
  2569. color:#333333;
  2570. }
  2571. #u19578 .text {
  2572. position:absolute;
  2573. align-self:center;
  2574. padding:2px 2px 2px 0px;
  2575. box-sizing:border-box;
  2576. width:100%;
  2577. }
  2578. #u19578_img {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:83px;
  2584. height:44px;
  2585. }
  2586. #u19578_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. visibility:hidden;
  2591. }
  2592. #u19579 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:1136px;
  2596. top:35px;
  2597. width:83px;
  2598. height:44px;
  2599. display:flex;
  2600. transition:none;
  2601. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#298FFF;
  2606. line-height:35px;
  2607. }
  2608. #u19579 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u19579_img {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:0px;
  2619. top:0px;
  2620. width:83px;
  2621. height:44px;
  2622. }
  2623. #u19579_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. }
  2628. #u19580 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:79px;
  2633. width:119px;
  2634. height:44px;
  2635. display:flex;
  2636. transition:none;
  2637. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:12px;
  2641. color:#333333;
  2642. line-height:40px;
  2643. }
  2644. #u19580 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u19580_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:119px;
  2657. height:44px;
  2658. }
  2659. #u19580_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. visibility:hidden;
  2664. }
  2665. #u19581 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:119px;
  2669. top:79px;
  2670. width:106px;
  2671. height:44px;
  2672. display:flex;
  2673. transition:none;
  2674. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:12px;
  2678. color:#333333;
  2679. line-height:40px;
  2680. }
  2681. #u19581 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 2px 2px 0px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u19581_img {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:106px;
  2694. height:44px;
  2695. }
  2696. #u19581_text {
  2697. border-width:0px;
  2698. word-wrap:break-word;
  2699. text-transform:none;
  2700. visibility:hidden;
  2701. }
  2702. #u19582 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:225px;
  2706. top:79px;
  2707. width:84px;
  2708. height:44px;
  2709. display:flex;
  2710. transition:none;
  2711. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:12px;
  2715. color:#606266;
  2716. }
  2717. #u19582 .text {
  2718. position:absolute;
  2719. align-self:center;
  2720. padding:2px 2px 2px 0px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u19582_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:84px;
  2730. height:44px;
  2731. }
  2732. #u19582_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u19583 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:309px;
  2742. top:79px;
  2743. width:84px;
  2744. height:44px;
  2745. display:flex;
  2746. transition:none;
  2747. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:12px;
  2751. color:#606266;
  2752. }
  2753. #u19583 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u19583_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:84px;
  2766. height:44px;
  2767. }
  2768. #u19583_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u19584 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:393px;
  2778. top:79px;
  2779. width:106px;
  2780. height:44px;
  2781. display:flex;
  2782. transition:none;
  2783. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:12px;
  2787. color:#606266;
  2788. }
  2789. #u19584 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 0px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u19584_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:106px;
  2802. height:44px;
  2803. }
  2804. #u19584_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u19585 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:499px;
  2814. top:79px;
  2815. width:84px;
  2816. height:44px;
  2817. display:flex;
  2818. transition:none;
  2819. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2820. font-weight:400;
  2821. font-style:normal;
  2822. font-size:12px;
  2823. color:#606266;
  2824. }
  2825. #u19585 .text {
  2826. position:absolute;
  2827. align-self:center;
  2828. padding:2px 2px 2px 0px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u19585_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:84px;
  2838. height:44px;
  2839. }
  2840. #u19585_text {
  2841. border-width:0px;
  2842. word-wrap:break-word;
  2843. text-transform:none;
  2844. visibility:hidden;
  2845. }
  2846. #u19586 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:583px;
  2850. top:79px;
  2851. width:106px;
  2852. height:44px;
  2853. display:flex;
  2854. transition:none;
  2855. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2856. font-weight:400;
  2857. font-style:normal;
  2858. font-size:12px;
  2859. color:#606266;
  2860. }
  2861. #u19586 .text {
  2862. position:absolute;
  2863. align-self:center;
  2864. padding:2px 2px 2px 0px;
  2865. box-sizing:border-box;
  2866. width:100%;
  2867. }
  2868. #u19586_img {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:106px;
  2874. height:44px;
  2875. }
  2876. #u19586_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. visibility:hidden;
  2881. }
  2882. #u19587 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:689px;
  2886. top:79px;
  2887. width:93px;
  2888. height:44px;
  2889. display:flex;
  2890. transition:none;
  2891. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:12px;
  2895. color:#606266;
  2896. }
  2897. #u19587 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u19587_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:93px;
  2910. height:44px;
  2911. }
  2912. #u19587_text {
  2913. border-width:0px;
  2914. word-wrap:break-word;
  2915. text-transform:none;
  2916. visibility:hidden;
  2917. }
  2918. #u19588 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:783px;
  2922. top:79px;
  2923. width:92px;
  2924. height:44px;
  2925. display:flex;
  2926. transition:none;
  2927. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. color:#333333;
  2932. }
  2933. #u19588 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u19588_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:92px;
  2946. height:44px;
  2947. }
  2948. #u19588_text {
  2949. border-width:0px;
  2950. word-wrap:break-word;
  2951. text-transform:none;
  2952. visibility:hidden;
  2953. }
  2954. #u19589 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:875px;
  2958. top:79px;
  2959. width:96px;
  2960. height:44px;
  2961. display:flex;
  2962. transition:none;
  2963. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:12px;
  2967. color:#333333;
  2968. }
  2969. #u19589 .text {
  2970. position:absolute;
  2971. align-self:center;
  2972. padding:2px 2px 2px 0px;
  2973. box-sizing:border-box;
  2974. width:100%;
  2975. }
  2976. #u19589_img {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:96px;
  2982. height:44px;
  2983. }
  2984. #u19589_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. }
  2989. #u19590 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:971px;
  2993. top:79px;
  2994. width:83px;
  2995. height:44px;
  2996. display:flex;
  2997. transition:none;
  2998. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:12px;
  3002. color:#606266;
  3003. }
  3004. #u19590 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 0px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u19590_img {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:0px;
  3015. top:0px;
  3016. width:83px;
  3017. height:44px;
  3018. }
  3019. #u19590_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. }
  3024. #u19591 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:1053px;
  3028. top:79px;
  3029. width:83px;
  3030. height:44px;
  3031. display:flex;
  3032. transition:none;
  3033. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:12px;
  3037. color:#606266;
  3038. }
  3039. #u19591 .text {
  3040. position:absolute;
  3041. align-self:center;
  3042. padding:2px 2px 2px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u19591_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:83px;
  3052. height:44px;
  3053. }
  3054. #u19591_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. }
  3059. #u19592 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:1136px;
  3063. top:79px;
  3064. width:83px;
  3065. height:44px;
  3066. display:flex;
  3067. transition:none;
  3068. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:12px;
  3072. color:#1890FF;
  3073. }
  3074. #u19592 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u19592_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:83px;
  3087. height:44px;
  3088. }
  3089. #u19592_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. visibility:hidden;
  3094. }
  3095. #u19593 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:123px;
  3100. width:119px;
  3101. height:38px;
  3102. display:flex;
  3103. transition:none;
  3104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:12px;
  3108. color:#606266;
  3109. }
  3110. #u19593 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 0px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u19593_img {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:0px;
  3121. top:0px;
  3122. width:119px;
  3123. height:38px;
  3124. }
  3125. #u19593_text {
  3126. border-width:0px;
  3127. word-wrap:break-word;
  3128. text-transform:none;
  3129. visibility:hidden;
  3130. }
  3131. #u19594 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:119px;
  3135. top:123px;
  3136. width:106px;
  3137. height:38px;
  3138. display:flex;
  3139. transition:none;
  3140. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:12px;
  3144. color:#606266;
  3145. }
  3146. #u19594 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 0px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u19594_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:106px;
  3159. height:38px;
  3160. }
  3161. #u19594_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u19595 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:225px;
  3171. top:123px;
  3172. width:84px;
  3173. height:38px;
  3174. display:flex;
  3175. transition:none;
  3176. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:12px;
  3180. color:#606266;
  3181. }
  3182. #u19595 .text {
  3183. position:absolute;
  3184. align-self:center;
  3185. padding:2px 2px 2px 0px;
  3186. box-sizing:border-box;
  3187. width:100%;
  3188. }
  3189. #u19595_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:84px;
  3195. height:38px;
  3196. }
  3197. #u19595_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. visibility:hidden;
  3202. }
  3203. #u19596 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:309px;
  3207. top:123px;
  3208. width:84px;
  3209. height:38px;
  3210. display:flex;
  3211. transition:none;
  3212. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:12px;
  3216. color:#606266;
  3217. }
  3218. #u19596 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u19596_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:84px;
  3231. height:38px;
  3232. }
  3233. #u19596_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u19597 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:393px;
  3243. top:123px;
  3244. width:106px;
  3245. height:38px;
  3246. display:flex;
  3247. transition:none;
  3248. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:12px;
  3252. color:#606266;
  3253. }
  3254. #u19597 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u19597_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:106px;
  3267. height:38px;
  3268. }
  3269. #u19597_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u19598 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:499px;
  3279. top:123px;
  3280. width:84px;
  3281. height:38px;
  3282. display:flex;
  3283. transition:none;
  3284. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:12px;
  3288. color:#606266;
  3289. }
  3290. #u19598 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 0px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u19598_img {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:84px;
  3303. height:38px;
  3304. }
  3305. #u19598_text {
  3306. border-width:0px;
  3307. word-wrap:break-word;
  3308. text-transform:none;
  3309. visibility:hidden;
  3310. }
  3311. #u19599 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:583px;
  3315. top:123px;
  3316. width:106px;
  3317. height:38px;
  3318. display:flex;
  3319. transition:none;
  3320. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:12px;
  3324. color:#606266;
  3325. }
  3326. #u19599 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u19599_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:106px;
  3339. height:38px;
  3340. }
  3341. #u19599_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. visibility:hidden;
  3346. }
  3347. #u19600 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:689px;
  3351. top:123px;
  3352. width:93px;
  3353. height:38px;
  3354. display:flex;
  3355. transition:none;
  3356. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:12px;
  3360. color:#606266;
  3361. }
  3362. #u19600 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 2px 2px 0px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u19600_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:93px;
  3375. height:38px;
  3376. }
  3377. #u19600_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u19601 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:783px;
  3387. top:123px;
  3388. width:92px;
  3389. height:38px;
  3390. display:flex;
  3391. transition:none;
  3392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3393. font-weight:400;
  3394. font-style:normal;
  3395. font-size:12px;
  3396. color:#606266;
  3397. }
  3398. #u19601 .text {
  3399. position:absolute;
  3400. align-self:center;
  3401. padding:2px 2px 2px 0px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u19601_img {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:92px;
  3411. height:38px;
  3412. }
  3413. #u19601_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u19602 {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:875px;
  3423. top:123px;
  3424. width:96px;
  3425. height:38px;
  3426. display:flex;
  3427. transition:none;
  3428. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3429. font-weight:400;
  3430. font-style:normal;
  3431. font-size:12px;
  3432. color:#333333;
  3433. }
  3434. #u19602 .text {
  3435. position:absolute;
  3436. align-self:center;
  3437. padding:2px 2px 2px 0px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u19602_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:96px;
  3447. height:38px;
  3448. }
  3449. #u19602_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. }
  3454. #u19603 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:971px;
  3458. top:123px;
  3459. width:83px;
  3460. height:38px;
  3461. display:flex;
  3462. transition:none;
  3463. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:12px;
  3467. color:#606266;
  3468. }
  3469. #u19603 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u19603_img {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:83px;
  3482. height:38px;
  3483. }
  3484. #u19603_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u19604 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:1053px;
  3494. top:123px;
  3495. width:83px;
  3496. height:38px;
  3497. display:flex;
  3498. transition:none;
  3499. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. color:#606266;
  3504. }
  3505. #u19604 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u19604_img {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:83px;
  3518. height:38px;
  3519. }
  3520. #u19604_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u19605 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:1136px;
  3530. top:123px;
  3531. width:83px;
  3532. height:38px;
  3533. display:flex;
  3534. transition:none;
  3535. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#606266;
  3540. }
  3541. #u19605 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u19605_img {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:83px;
  3554. height:38px;
  3555. }
  3556. #u19605_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u19606 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:161px;
  3567. width:119px;
  3568. height:38px;
  3569. display:flex;
  3570. transition:none;
  3571. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:12px;
  3575. color:#606266;
  3576. }
  3577. #u19606 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u19606_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:119px;
  3590. height:38px;
  3591. }
  3592. #u19606_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u19607 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:119px;
  3602. top:161px;
  3603. width:106px;
  3604. height:38px;
  3605. display:flex;
  3606. transition:none;
  3607. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. color:#606266;
  3612. }
  3613. #u19607 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 0px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u19607_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:106px;
  3626. height:38px;
  3627. }
  3628. #u19607_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u19608 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:225px;
  3638. top:161px;
  3639. width:84px;
  3640. height:38px;
  3641. display:flex;
  3642. transition:none;
  3643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. color:#606266;
  3648. }
  3649. #u19608 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u19608_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:84px;
  3662. height:38px;
  3663. }
  3664. #u19608_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u19609 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:309px;
  3674. top:161px;
  3675. width:84px;
  3676. height:38px;
  3677. display:flex;
  3678. transition:none;
  3679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#606266;
  3684. }
  3685. #u19609 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u19609_img {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:84px;
  3698. height:38px;
  3699. }
  3700. #u19609_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u19610 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:393px;
  3710. top:161px;
  3711. width:106px;
  3712. height:38px;
  3713. display:flex;
  3714. transition:none;
  3715. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:12px;
  3719. color:#606266;
  3720. }
  3721. #u19610 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 0px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u19610_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:106px;
  3734. height:38px;
  3735. }
  3736. #u19610_text {
  3737. border-width:0px;
  3738. word-wrap:break-word;
  3739. text-transform:none;
  3740. visibility:hidden;
  3741. }
  3742. #u19611 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:499px;
  3746. top:161px;
  3747. width:84px;
  3748. height:38px;
  3749. display:flex;
  3750. transition:none;
  3751. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:12px;
  3755. color:#606266;
  3756. }
  3757. #u19611 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 0px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u19611_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:84px;
  3770. height:38px;
  3771. }
  3772. #u19611_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. visibility:hidden;
  3777. }
  3778. #u19612 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:583px;
  3782. top:161px;
  3783. width:106px;
  3784. height:38px;
  3785. display:flex;
  3786. transition:none;
  3787. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. color:#606266;
  3792. }
  3793. #u19612 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 2px 2px 0px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u19612_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:106px;
  3806. height:38px;
  3807. }
  3808. #u19612_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. visibility:hidden;
  3813. }
  3814. #u19613 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:689px;
  3818. top:161px;
  3819. width:93px;
  3820. height:38px;
  3821. display:flex;
  3822. transition:none;
  3823. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:12px;
  3827. color:#606266;
  3828. }
  3829. #u19613 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u19613_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:93px;
  3842. height:38px;
  3843. }
  3844. #u19613_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u19614 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:783px;
  3854. top:161px;
  3855. width:92px;
  3856. height:38px;
  3857. display:flex;
  3858. transition:none;
  3859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#606266;
  3864. }
  3865. #u19614 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u19614_img {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:92px;
  3878. height:38px;
  3879. }
  3880. #u19614_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u19615 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:875px;
  3890. top:161px;
  3891. width:96px;
  3892. height:38px;
  3893. display:flex;
  3894. transition:none;
  3895. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3896. font-weight:400;
  3897. font-style:normal;
  3898. font-size:12px;
  3899. color:#606266;
  3900. }
  3901. #u19615 .text {
  3902. position:absolute;
  3903. align-self:center;
  3904. padding:2px 2px 2px 0px;
  3905. box-sizing:border-box;
  3906. width:100%;
  3907. }
  3908. #u19615_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:96px;
  3914. height:38px;
  3915. }
  3916. #u19615_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. }
  3921. #u19616 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:971px;
  3925. top:161px;
  3926. width:83px;
  3927. height:38px;
  3928. display:flex;
  3929. transition:none;
  3930. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:12px;
  3934. color:#606266;
  3935. }
  3936. #u19616 .text {
  3937. position:absolute;
  3938. align-self:center;
  3939. padding:2px 2px 2px 0px;
  3940. box-sizing:border-box;
  3941. width:100%;
  3942. }
  3943. #u19616_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:83px;
  3949. height:38px;
  3950. }
  3951. #u19616_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u19617 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:1053px;
  3961. top:161px;
  3962. width:83px;
  3963. height:38px;
  3964. display:flex;
  3965. transition:none;
  3966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:12px;
  3970. color:#606266;
  3971. }
  3972. #u19617 .text {
  3973. position:absolute;
  3974. align-self:center;
  3975. padding:2px 2px 2px 0px;
  3976. box-sizing:border-box;
  3977. width:100%;
  3978. }
  3979. #u19617_img {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:83px;
  3985. height:38px;
  3986. }
  3987. #u19617_text {
  3988. border-width:0px;
  3989. word-wrap:break-word;
  3990. text-transform:none;
  3991. visibility:hidden;
  3992. }
  3993. #u19618 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:1136px;
  3997. top:161px;
  3998. width:83px;
  3999. height:38px;
  4000. display:flex;
  4001. transition:none;
  4002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:12px;
  4006. color:#606266;
  4007. }
  4008. #u19618 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u19618_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:83px;
  4021. height:38px;
  4022. }
  4023. #u19618_text {
  4024. border-width:0px;
  4025. word-wrap:break-word;
  4026. text-transform:none;
  4027. visibility:hidden;
  4028. }
  4029. #u19619 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:199px;
  4034. width:119px;
  4035. height:38px;
  4036. display:flex;
  4037. transition:none;
  4038. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. color:#606266;
  4043. }
  4044. #u19619 .text {
  4045. position:absolute;
  4046. align-self:center;
  4047. padding:2px 2px 2px 0px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u19619_img {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:119px;
  4057. height:38px;
  4058. }
  4059. #u19619_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u19620 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:119px;
  4069. top:199px;
  4070. width:106px;
  4071. height:38px;
  4072. display:flex;
  4073. transition:none;
  4074. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:12px;
  4078. color:#606266;
  4079. }
  4080. #u19620 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 0px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u19620_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:106px;
  4093. height:38px;
  4094. }
  4095. #u19620_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u19621 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:225px;
  4105. top:199px;
  4106. width:84px;
  4107. height:38px;
  4108. display:flex;
  4109. transition:none;
  4110. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:12px;
  4114. color:#606266;
  4115. }
  4116. #u19621 .text {
  4117. position:absolute;
  4118. align-self:center;
  4119. padding:2px 2px 2px 0px;
  4120. box-sizing:border-box;
  4121. width:100%;
  4122. }
  4123. #u19621_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:84px;
  4129. height:38px;
  4130. }
  4131. #u19621_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u19622 {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:309px;
  4141. top:199px;
  4142. width:84px;
  4143. height:38px;
  4144. display:flex;
  4145. transition:none;
  4146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:12px;
  4150. color:#606266;
  4151. }
  4152. #u19622 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 0px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u19622_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:84px;
  4165. height:38px;
  4166. }
  4167. #u19622_text {
  4168. border-width:0px;
  4169. word-wrap:break-word;
  4170. text-transform:none;
  4171. visibility:hidden;
  4172. }
  4173. #u19623 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:393px;
  4177. top:199px;
  4178. width:106px;
  4179. height:38px;
  4180. display:flex;
  4181. transition:none;
  4182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:12px;
  4186. color:#606266;
  4187. }
  4188. #u19623 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u19623_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:106px;
  4201. height:38px;
  4202. }
  4203. #u19623_text {
  4204. border-width:0px;
  4205. word-wrap:break-word;
  4206. text-transform:none;
  4207. visibility:hidden;
  4208. }
  4209. #u19624 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:499px;
  4213. top:199px;
  4214. width:84px;
  4215. height:38px;
  4216. display:flex;
  4217. transition:none;
  4218. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:12px;
  4222. color:#606266;
  4223. }
  4224. #u19624 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 0px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u19624_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:84px;
  4237. height:38px;
  4238. }
  4239. #u19624_text {
  4240. border-width:0px;
  4241. word-wrap:break-word;
  4242. text-transform:none;
  4243. visibility:hidden;
  4244. }
  4245. #u19625 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:583px;
  4249. top:199px;
  4250. width:106px;
  4251. height:38px;
  4252. display:flex;
  4253. transition:none;
  4254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:12px;
  4258. color:#606266;
  4259. }
  4260. #u19625 .text {
  4261. position:absolute;
  4262. align-self:center;
  4263. padding:2px 2px 2px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u19625_img {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:106px;
  4273. height:38px;
  4274. }
  4275. #u19625_text {
  4276. border-width:0px;
  4277. word-wrap:break-word;
  4278. text-transform:none;
  4279. visibility:hidden;
  4280. }
  4281. #u19626 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:689px;
  4285. top:199px;
  4286. width:93px;
  4287. height:38px;
  4288. display:flex;
  4289. transition:none;
  4290. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:12px;
  4294. color:#606266;
  4295. }
  4296. #u19626 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:2px 2px 2px 0px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u19626_img {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:93px;
  4309. height:38px;
  4310. }
  4311. #u19626_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. visibility:hidden;
  4316. }
  4317. #u19627 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:783px;
  4321. top:199px;
  4322. width:92px;
  4323. height:38px;
  4324. display:flex;
  4325. transition:none;
  4326. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:12px;
  4330. color:#606266;
  4331. }
  4332. #u19627 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 0px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u19627_img {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:92px;
  4345. height:38px;
  4346. }
  4347. #u19627_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u19628 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:875px;
  4357. top:199px;
  4358. width:96px;
  4359. height:38px;
  4360. display:flex;
  4361. transition:none;
  4362. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#606266;
  4367. }
  4368. #u19628 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u19628_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:96px;
  4381. height:38px;
  4382. }
  4383. #u19628_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. visibility:hidden;
  4388. }
  4389. #u19629 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:971px;
  4393. top:199px;
  4394. width:83px;
  4395. height:38px;
  4396. display:flex;
  4397. transition:none;
  4398. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:12px;
  4402. color:#606266;
  4403. }
  4404. #u19629 .text {
  4405. position:absolute;
  4406. align-self:center;
  4407. padding:2px 2px 2px 0px;
  4408. box-sizing:border-box;
  4409. width:100%;
  4410. }
  4411. #u19629_img {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:83px;
  4417. height:38px;
  4418. }
  4419. #u19629_text {
  4420. border-width:0px;
  4421. word-wrap:break-word;
  4422. text-transform:none;
  4423. visibility:hidden;
  4424. }
  4425. #u19630 {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:1053px;
  4429. top:199px;
  4430. width:83px;
  4431. height:38px;
  4432. display:flex;
  4433. transition:none;
  4434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:12px;
  4438. color:#606266;
  4439. }
  4440. #u19630 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 0px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u19630_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:83px;
  4453. height:38px;
  4454. }
  4455. #u19630_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u19631 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:1136px;
  4465. top:199px;
  4466. width:83px;
  4467. height:38px;
  4468. display:flex;
  4469. transition:none;
  4470. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4471. font-weight:400;
  4472. font-style:normal;
  4473. font-size:12px;
  4474. color:#606266;
  4475. }
  4476. #u19631 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 0px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u19631_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:83px;
  4489. height:38px;
  4490. }
  4491. #u19631_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u19632 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:237px;
  4502. width:119px;
  4503. height:38px;
  4504. display:flex;
  4505. transition:none;
  4506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. color:#606266;
  4511. }
  4512. #u19632 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u19632_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:119px;
  4525. height:38px;
  4526. }
  4527. #u19632_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u19633 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:119px;
  4537. top:237px;
  4538. width:106px;
  4539. height:38px;
  4540. display:flex;
  4541. transition:none;
  4542. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4543. font-weight:400;
  4544. font-style:normal;
  4545. font-size:12px;
  4546. color:#606266;
  4547. }
  4548. #u19633 .text {
  4549. position:absolute;
  4550. align-self:center;
  4551. padding:2px 2px 2px 0px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u19633_img {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:106px;
  4561. height:38px;
  4562. }
  4563. #u19633_text {
  4564. border-width:0px;
  4565. word-wrap:break-word;
  4566. text-transform:none;
  4567. visibility:hidden;
  4568. }
  4569. #u19634 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:225px;
  4573. top:237px;
  4574. width:84px;
  4575. height:38px;
  4576. display:flex;
  4577. transition:none;
  4578. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. font-size:12px;
  4582. color:#606266;
  4583. }
  4584. #u19634 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 0px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u19634_img {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:84px;
  4597. height:38px;
  4598. }
  4599. #u19634_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u19635 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:309px;
  4609. top:237px;
  4610. width:84px;
  4611. height:38px;
  4612. display:flex;
  4613. transition:none;
  4614. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:12px;
  4618. color:#606266;
  4619. }
  4620. #u19635 .text {
  4621. position:absolute;
  4622. align-self:center;
  4623. padding:2px 2px 2px 0px;
  4624. box-sizing:border-box;
  4625. width:100%;
  4626. }
  4627. #u19635_img {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:84px;
  4633. height:38px;
  4634. }
  4635. #u19635_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u19636 {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:393px;
  4645. top:237px;
  4646. width:106px;
  4647. height:38px;
  4648. display:flex;
  4649. transition:none;
  4650. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:12px;
  4654. color:#606266;
  4655. }
  4656. #u19636 .text {
  4657. position:absolute;
  4658. align-self:center;
  4659. padding:2px 2px 2px 0px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u19636_img {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:106px;
  4669. height:38px;
  4670. }
  4671. #u19636_text {
  4672. border-width:0px;
  4673. word-wrap:break-word;
  4674. text-transform:none;
  4675. visibility:hidden;
  4676. }
  4677. #u19637 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:499px;
  4681. top:237px;
  4682. width:84px;
  4683. height:38px;
  4684. display:flex;
  4685. transition:none;
  4686. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4687. font-weight:400;
  4688. font-style:normal;
  4689. font-size:12px;
  4690. color:#606266;
  4691. }
  4692. #u19637 .text {
  4693. position:absolute;
  4694. align-self:center;
  4695. padding:2px 2px 2px 0px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u19637_img {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:84px;
  4705. height:38px;
  4706. }
  4707. #u19637_text {
  4708. border-width:0px;
  4709. word-wrap:break-word;
  4710. text-transform:none;
  4711. visibility:hidden;
  4712. }
  4713. #u19638 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:583px;
  4717. top:237px;
  4718. width:106px;
  4719. height:38px;
  4720. display:flex;
  4721. transition:none;
  4722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:12px;
  4726. color:#606266;
  4727. }
  4728. #u19638 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 0px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u19638_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:106px;
  4741. height:38px;
  4742. }
  4743. #u19638_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. visibility:hidden;
  4748. }
  4749. #u19639 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:689px;
  4753. top:237px;
  4754. width:93px;
  4755. height:38px;
  4756. display:flex;
  4757. transition:none;
  4758. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:12px;
  4762. color:#606266;
  4763. }
  4764. #u19639 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 0px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u19639_img {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:93px;
  4777. height:38px;
  4778. }
  4779. #u19639_text {
  4780. border-width:0px;
  4781. word-wrap:break-word;
  4782. text-transform:none;
  4783. visibility:hidden;
  4784. }
  4785. #u19640 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:783px;
  4789. top:237px;
  4790. width:92px;
  4791. height:38px;
  4792. display:flex;
  4793. transition:none;
  4794. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. color:#606266;
  4799. }
  4800. #u19640 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 0px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u19640_img {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:92px;
  4813. height:38px;
  4814. }
  4815. #u19640_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u19641 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:875px;
  4825. top:237px;
  4826. width:96px;
  4827. height:38px;
  4828. display:flex;
  4829. transition:none;
  4830. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:12px;
  4834. color:#606266;
  4835. }
  4836. #u19641 .text {
  4837. position:absolute;
  4838. align-self:center;
  4839. padding:2px 2px 2px 0px;
  4840. box-sizing:border-box;
  4841. width:100%;
  4842. }
  4843. #u19641_img {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:96px;
  4849. height:38px;
  4850. }
  4851. #u19641_text {
  4852. border-width:0px;
  4853. word-wrap:break-word;
  4854. text-transform:none;
  4855. visibility:hidden;
  4856. }
  4857. #u19642 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:971px;
  4861. top:237px;
  4862. width:83px;
  4863. height:38px;
  4864. display:flex;
  4865. transition:none;
  4866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:12px;
  4870. color:#606266;
  4871. }
  4872. #u19642 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:2px 2px 2px 0px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u19642_img {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:83px;
  4885. height:38px;
  4886. }
  4887. #u19642_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u19643 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:1053px;
  4897. top:237px;
  4898. width:83px;
  4899. height:38px;
  4900. display:flex;
  4901. transition:none;
  4902. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4903. font-weight:400;
  4904. font-style:normal;
  4905. font-size:12px;
  4906. color:#606266;
  4907. }
  4908. #u19643 .text {
  4909. position:absolute;
  4910. align-self:center;
  4911. padding:2px 2px 2px 0px;
  4912. box-sizing:border-box;
  4913. width:100%;
  4914. }
  4915. #u19643_img {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:83px;
  4921. height:38px;
  4922. }
  4923. #u19643_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u19644 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:1136px;
  4933. top:237px;
  4934. width:83px;
  4935. height:38px;
  4936. display:flex;
  4937. transition:none;
  4938. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:12px;
  4942. color:#606266;
  4943. }
  4944. #u19644 .text {
  4945. position:absolute;
  4946. align-self:center;
  4947. padding:2px 2px 2px 0px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u19644_img {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:83px;
  4957. height:38px;
  4958. }
  4959. #u19644_text {
  4960. border-width:0px;
  4961. word-wrap:break-word;
  4962. text-transform:none;
  4963. visibility:hidden;
  4964. }
  4965. #u19645_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:109px;
  4971. height:50px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 0);
  4974. border-left:0px;
  4975. border-top:0px;
  4976. border-right:0px;
  4977. border-radius:0px;
  4978. border-bottom-right-radius:0px;
  4979. border-bottom-left-radius:0px;
  4980. filter:drop-shadow(none);
  4981. transition:none;
  4982. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:18px;
  4986. }
  4987. #u19645 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:349px;
  4991. top:52px;
  4992. width:109px;
  4993. height:50px;
  4994. display:flex;
  4995. transition:none;
  4996. transform-origin:50% 50%;
  4997. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4998. font-weight:400;
  4999. font-style:normal;
  5000. font-size:18px;
  5001. }
  5002. #u19645 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:0px 0px 0px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u19645_text {
  5010. border-width:0px;
  5011. white-space:nowrap;
  5012. text-transform:none;
  5013. }
  5014. #u19646 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:0px;
  5020. height:0px;
  5021. }
  5022. #u19647_div {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:60px;
  5028. height:30px;
  5029. background:inherit;
  5030. background-color:rgba(24, 144, 255, 1);
  5031. border-radius:4px;
  5032. filter:drop-shadow(none);
  5033. transition:none;
  5034. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:14px;
  5038. color:#FFFFFF;
  5039. }
  5040. #u19647 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:500px;
  5044. top:185px;
  5045. width:60px;
  5046. height:30px;
  5047. display:flex;
  5048. transition:none;
  5049. transform-origin:50% 50%;
  5050. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:14px;
  5054. color:#FFFFFF;
  5055. }
  5056. #u19647 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 2px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u19647_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. }
  5068. #u19648_div {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:60px;
  5074. height:30px;
  5075. background:inherit;
  5076. background-color:rgba(255, 255, 255, 1);
  5077. box-sizing:border-box;
  5078. border-width:1px;
  5079. border-style:solid;
  5080. border-color:rgba(170, 170, 170, 1);
  5081. border-radius:4px;
  5082. filter:drop-shadow(none);
  5083. transition:none;
  5084. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:14px;
  5088. }
  5089. #u19648 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:570px;
  5093. top:185px;
  5094. width:60px;
  5095. height:30px;
  5096. display:flex;
  5097. transition:none;
  5098. transform-origin:50% 50%;
  5099. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:14px;
  5103. }
  5104. #u19648 .text {
  5105. position:absolute;
  5106. align-self:center;
  5107. padding:2px 2px 2px 2px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u19648_text {
  5112. border-width:0px;
  5113. word-wrap:break-word;
  5114. text-transform:none;
  5115. }
  5116. #u19649 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:0px;
  5122. height:0px;
  5123. }
  5124. #u19650_div {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:140px;
  5130. height:30px;
  5131. background:inherit;
  5132. background-color:rgba(255, 255, 255, 1);
  5133. box-sizing:border-box;
  5134. border-width:1px;
  5135. border-style:solid;
  5136. border-color:rgba(215, 215, 215, 1);
  5137. border-radius:4px;
  5138. filter:drop-shadow(none);
  5139. transition:none;
  5140. font-size:14px;
  5141. }
  5142. #u19650 {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:350px;
  5146. top:143px;
  5147. width:140px;
  5148. height:30px;
  5149. display:flex;
  5150. transition:none;
  5151. transform-origin:50% 50%;
  5152. font-size:14px;
  5153. }
  5154. #u19650 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:2px 2px 2px 2px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u19650_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. visibility:hidden;
  5166. }
  5167. #u19651_input {
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:134px;
  5172. height:23px;
  5173. padding:2px 2px 2px 2px;
  5174. font-family:"ArialMT", "Arial", sans-serif;
  5175. font-weight:400;
  5176. font-style:normal;
  5177. font-size:14px;
  5178. letter-spacing:normal;
  5179. color:#AAAAAA;
  5180. vertical-align:none;
  5181. text-align:left;
  5182. text-transform:none;
  5183. background-color:transparent;
  5184. border-color:transparent;
  5185. }
  5186. #u19651_input.disabled {
  5187. position:absolute;
  5188. left:0px;
  5189. top:0px;
  5190. width:134px;
  5191. height:23px;
  5192. padding:2px 2px 2px 2px;
  5193. font-family:"ArialMT", "Arial", sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:14px;
  5197. letter-spacing:normal;
  5198. color:#AAAAAA;
  5199. vertical-align:none;
  5200. text-align:left;
  5201. text-transform:none;
  5202. background-color:transparent;
  5203. border-color:transparent;
  5204. }
  5205. #u19651_div {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:134px;
  5211. height:23px;
  5212. background:inherit;
  5213. background-color:rgba(255, 255, 255, 1);
  5214. border-radius:0px;
  5215. filter:drop-shadow(none);
  5216. transition:none;
  5217. font-size:14px;
  5218. color:#AAAAAA;
  5219. }
  5220. #u19651 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:354px;
  5224. top:145px;
  5225. width:134px;
  5226. height:23px;
  5227. display:flex;
  5228. transition:none;
  5229. transform-origin:50% 50%;
  5230. font-size:14px;
  5231. color:#AAAAAA;
  5232. }
  5233. #u19651 .text {
  5234. position:absolute;
  5235. align-self:flex-start;
  5236. padding:2px 2px 2px 2px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u19651_div.disabled {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:134px;
  5246. height:23px;
  5247. background:inherit;
  5248. background-color:rgba(240, 240, 240, 1);
  5249. border-radius:0px;
  5250. filter:drop-shadow(none);
  5251. transition:none;
  5252. font-size:14px;
  5253. color:#AAAAAA;
  5254. }
  5255. #u19651.disabled {
  5256. }
  5257. .u19651_input_option {
  5258. font-size:14px;
  5259. }
  5260. #u19652 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:0px;
  5266. height:0px;
  5267. }
  5268. #u19653_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:140px;
  5274. height:30px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 255, 1);
  5277. box-sizing:border-box;
  5278. border-width:1px;
  5279. border-style:solid;
  5280. border-color:rgba(215, 215, 215, 1);
  5281. border-radius:4px;
  5282. filter:drop-shadow(none);
  5283. transition:none;
  5284. font-size:14px;
  5285. }
  5286. #u19653 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:1100px;
  5290. top:143px;
  5291. width:140px;
  5292. height:30px;
  5293. display:flex;
  5294. transition:none;
  5295. transform-origin:50% 50%;
  5296. font-size:14px;
  5297. }
  5298. #u19653 .text {
  5299. position:absolute;
  5300. align-self:center;
  5301. padding:2px 2px 2px 2px;
  5302. box-sizing:border-box;
  5303. width:100%;
  5304. }
  5305. #u19653_text {
  5306. border-width:0px;
  5307. word-wrap:break-word;
  5308. text-transform:none;
  5309. visibility:hidden;
  5310. }
  5311. #u19654_input {
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:134px;
  5316. height:23px;
  5317. padding:2px 2px 2px 2px;
  5318. font-family:"ArialMT", "Arial", sans-serif;
  5319. font-weight:400;
  5320. font-style:normal;
  5321. font-size:14px;
  5322. letter-spacing:normal;
  5323. color:#AAAAAA;
  5324. vertical-align:none;
  5325. text-align:left;
  5326. text-transform:none;
  5327. background-color:transparent;
  5328. border-color:transparent;
  5329. }
  5330. #u19654_input.disabled {
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:134px;
  5335. height:23px;
  5336. padding:2px 2px 2px 2px;
  5337. font-family:"ArialMT", "Arial", sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:14px;
  5341. letter-spacing:normal;
  5342. color:#AAAAAA;
  5343. vertical-align:none;
  5344. text-align:left;
  5345. text-transform:none;
  5346. background-color:transparent;
  5347. border-color:transparent;
  5348. }
  5349. #u19654_div {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:134px;
  5355. height:23px;
  5356. background:inherit;
  5357. background-color:rgba(255, 255, 255, 1);
  5358. border-radius:0px;
  5359. filter:drop-shadow(none);
  5360. transition:none;
  5361. font-size:14px;
  5362. color:#AAAAAA;
  5363. }
  5364. #u19654 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:1104px;
  5368. top:145px;
  5369. width:134px;
  5370. height:23px;
  5371. display:flex;
  5372. transition:none;
  5373. transform-origin:50% 50%;
  5374. font-size:14px;
  5375. color:#AAAAAA;
  5376. }
  5377. #u19654 .text {
  5378. position:absolute;
  5379. align-self:flex-start;
  5380. padding:2px 2px 2px 2px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u19654_div.disabled {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:134px;
  5390. height:23px;
  5391. background:inherit;
  5392. background-color:rgba(240, 240, 240, 1);
  5393. border-radius:0px;
  5394. filter:drop-shadow(none);
  5395. transition:none;
  5396. font-size:14px;
  5397. color:#AAAAAA;
  5398. }
  5399. #u19654.disabled {
  5400. }
  5401. .u19654_input_option {
  5402. font-size:14px;
  5403. }
  5404. #u19655 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:0px;
  5410. height:0px;
  5411. }
  5412. #u19656_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:140px;
  5418. height:30px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 1);
  5421. box-sizing:border-box;
  5422. border-width:1px;
  5423. border-style:solid;
  5424. border-color:rgba(215, 215, 215, 1);
  5425. border-radius:4px;
  5426. filter:drop-shadow(none);
  5427. transition:none;
  5428. font-size:14px;
  5429. }
  5430. #u19656 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:500px;
  5434. top:143px;
  5435. width:140px;
  5436. height:30px;
  5437. display:flex;
  5438. transition:none;
  5439. transform-origin:50% 50%;
  5440. font-size:14px;
  5441. }
  5442. #u19656 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:2px 2px 2px 2px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u19656_text {
  5450. border-width:0px;
  5451. word-wrap:break-word;
  5452. text-transform:none;
  5453. visibility:hidden;
  5454. }
  5455. #u19657_input {
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:134px;
  5460. height:23px;
  5461. padding:2px 2px 2px 2px;
  5462. font-family:"ArialMT", "Arial", sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. letter-spacing:normal;
  5467. color:#AAAAAA;
  5468. vertical-align:none;
  5469. text-align:left;
  5470. text-transform:none;
  5471. background-color:transparent;
  5472. border-color:transparent;
  5473. }
  5474. #u19657_input.disabled {
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:134px;
  5479. height:23px;
  5480. padding:2px 2px 2px 2px;
  5481. font-family:"ArialMT", "Arial", sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:14px;
  5485. letter-spacing:normal;
  5486. color:#AAAAAA;
  5487. vertical-align:none;
  5488. text-align:left;
  5489. text-transform:none;
  5490. background-color:transparent;
  5491. border-color:transparent;
  5492. }
  5493. #u19657_div {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:134px;
  5499. height:23px;
  5500. background:inherit;
  5501. background-color:rgba(255, 255, 255, 1);
  5502. border-radius:0px;
  5503. filter:drop-shadow(none);
  5504. transition:none;
  5505. font-size:14px;
  5506. color:#AAAAAA;
  5507. }
  5508. #u19657 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:504px;
  5512. top:145px;
  5513. width:134px;
  5514. height:23px;
  5515. display:flex;
  5516. transition:none;
  5517. transform-origin:50% 50%;
  5518. font-size:14px;
  5519. color:#AAAAAA;
  5520. }
  5521. #u19657 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:2px 2px 2px 2px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u19657_div.disabled {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:134px;
  5534. height:23px;
  5535. background:inherit;
  5536. background-color:rgba(240, 240, 240, 1);
  5537. border-radius:0px;
  5538. filter:drop-shadow(none);
  5539. transition:none;
  5540. font-size:14px;
  5541. color:#AAAAAA;
  5542. }
  5543. #u19657.disabled {
  5544. }
  5545. .u19657_input_option {
  5546. font-size:14px;
  5547. }
  5548. #u19658 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:0px;
  5554. height:0px;
  5555. }
  5556. #u19659_div {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:140px;
  5562. height:30px;
  5563. background:inherit;
  5564. background-color:rgba(255, 255, 255, 1);
  5565. box-sizing:border-box;
  5566. border-width:1px;
  5567. border-style:solid;
  5568. border-color:rgba(201, 201, 201, 1);
  5569. border-radius:4px;
  5570. filter:drop-shadow(none);
  5571. transition:none;
  5572. font-family:"Microsoft YaHei", sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:14px;
  5576. color:#CCCCCC;
  5577. text-align:left;
  5578. }
  5579. #u19659 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:800px;
  5583. top:143px;
  5584. width:140px;
  5585. height:30px;
  5586. display:flex;
  5587. transition:none;
  5588. transform-origin:50% 50%;
  5589. font-family:"Microsoft YaHei", sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:14px;
  5593. color:#CCCCCC;
  5594. text-align:left;
  5595. }
  5596. #u19659 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 8px 2px 8px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u19659_text {
  5604. border-width:0px;
  5605. word-wrap:break-word;
  5606. text-transform:none;
  5607. visibility:hidden;
  5608. }
  5609. #u19660_input {
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:127px;
  5614. height:25px;
  5615. padding:2px 2px 2px 2px;
  5616. font-family:"Microsoft YaHei", sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:10px;
  5620. letter-spacing:normal;
  5621. color:#000000;
  5622. vertical-align:none;
  5623. text-align:left;
  5624. text-transform:none;
  5625. background-color:transparent;
  5626. border-color:transparent;
  5627. }
  5628. #u19660_input.hint {
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:127px;
  5633. height:25px;
  5634. padding:2px 2px 2px 2px;
  5635. font-family:"Microsoft YaHei", sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:12px;
  5639. letter-spacing:normal;
  5640. color:#AAAAAA;
  5641. vertical-align:none;
  5642. text-align:left;
  5643. text-transform:none;
  5644. background-color:transparent;
  5645. border-color:transparent;
  5646. }
  5647. #u19660_input.disabled {
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:127px;
  5652. height:25px;
  5653. padding:2px 2px 2px 2px;
  5654. font-family:"Microsoft YaHei", sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:10px;
  5658. letter-spacing:normal;
  5659. color:#000000;
  5660. vertical-align:none;
  5661. text-align:left;
  5662. text-transform:none;
  5663. background-color:transparent;
  5664. border-color:transparent;
  5665. }
  5666. #u19660_input.hint.disabled {
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:127px;
  5671. height:25px;
  5672. padding:2px 2px 2px 2px;
  5673. font-family:"Microsoft YaHei", sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:12px;
  5677. letter-spacing:normal;
  5678. color:#AAAAAA;
  5679. vertical-align:none;
  5680. text-align:left;
  5681. text-transform:none;
  5682. background-color:transparent;
  5683. border-color:transparent;
  5684. }
  5685. #u19660_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:127px;
  5691. height:25px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 1);
  5694. border-radius:0px;
  5695. filter:drop-shadow(none);
  5696. transition:none;
  5697. font-family:"Microsoft YaHei", sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:10px;
  5701. }
  5702. #u19660 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:808px;
  5706. top:144px;
  5707. width:127px;
  5708. height:25px;
  5709. display:flex;
  5710. transition:none;
  5711. transform-origin:50% 50%;
  5712. font-family:"Microsoft YaHei", sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:10px;
  5716. }
  5717. #u19660 .text {
  5718. position:absolute;
  5719. align-self:center;
  5720. padding:2px 2px 2px 2px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u19660_div.hint {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:0px;
  5729. width:127px;
  5730. height:25px;
  5731. background:inherit;
  5732. background-color:rgba(255, 255, 255, 1);
  5733. border-radius:0px;
  5734. filter:drop-shadow(none);
  5735. transition:none;
  5736. font-family:"Microsoft YaHei", sans-serif;
  5737. font-weight:400;
  5738. font-style:normal;
  5739. font-size:10px;
  5740. }
  5741. #u19660.hint {
  5742. }
  5743. #u19660_div.disabled {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:127px;
  5749. height:25px;
  5750. background:inherit;
  5751. background-color:rgba(240, 240, 240, 1);
  5752. border-radius:0px;
  5753. filter:drop-shadow(none);
  5754. transition:none;
  5755. font-family:"Microsoft YaHei", sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:10px;
  5759. }
  5760. #u19660.disabled {
  5761. }
  5762. #u19660_div.hint.disabled {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:127px;
  5768. height:25px;
  5769. background:inherit;
  5770. background-color:rgba(240, 240, 240, 1);
  5771. border-radius:0px;
  5772. filter:drop-shadow(none);
  5773. transition:none;
  5774. font-family:"Microsoft YaHei", sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:10px;
  5778. }
  5779. #u19660.hint.disabled {
  5780. }
  5781. #u19661 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:0px;
  5785. top:0px;
  5786. width:0px;
  5787. height:0px;
  5788. }
  5789. #u19662_div {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:140px;
  5795. height:30px;
  5796. background:inherit;
  5797. background-color:rgba(255, 255, 255, 1);
  5798. box-sizing:border-box;
  5799. border-width:1px;
  5800. border-style:solid;
  5801. border-color:rgba(201, 201, 201, 1);
  5802. border-radius:4px;
  5803. filter:drop-shadow(none);
  5804. transition:none;
  5805. font-family:"Microsoft YaHei", sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:14px;
  5809. color:#CCCCCC;
  5810. text-align:left;
  5811. }
  5812. #u19662 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:650px;
  5816. top:143px;
  5817. width:140px;
  5818. height:30px;
  5819. display:flex;
  5820. transition:none;
  5821. transform-origin:50% 50%;
  5822. font-family:"Microsoft YaHei", sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:14px;
  5826. color:#CCCCCC;
  5827. text-align:left;
  5828. }
  5829. #u19662 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 8px 2px 8px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u19662_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u19663_input {
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:127px;
  5847. height:25px;
  5848. padding:2px 2px 2px 2px;
  5849. font-family:"Microsoft YaHei", sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:10px;
  5853. letter-spacing:normal;
  5854. color:#000000;
  5855. vertical-align:none;
  5856. text-align:left;
  5857. text-transform:none;
  5858. background-color:transparent;
  5859. border-color:transparent;
  5860. }
  5861. #u19663_input.hint {
  5862. position:absolute;
  5863. left:0px;
  5864. top:0px;
  5865. width:127px;
  5866. height:25px;
  5867. padding:2px 2px 2px 2px;
  5868. font-family:"Microsoft YaHei", sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:12px;
  5872. letter-spacing:normal;
  5873. color:#AAAAAA;
  5874. vertical-align:none;
  5875. text-align:left;
  5876. text-transform:none;
  5877. background-color:transparent;
  5878. border-color:transparent;
  5879. }
  5880. #u19663_input.disabled {
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:127px;
  5885. height:25px;
  5886. padding:2px 2px 2px 2px;
  5887. font-family:"Microsoft YaHei", sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:10px;
  5891. letter-spacing:normal;
  5892. color:#000000;
  5893. vertical-align:none;
  5894. text-align:left;
  5895. text-transform:none;
  5896. background-color:transparent;
  5897. border-color:transparent;
  5898. }
  5899. #u19663_input.hint.disabled {
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:127px;
  5904. height:25px;
  5905. padding:2px 2px 2px 2px;
  5906. font-family:"Microsoft YaHei", sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:12px;
  5910. letter-spacing:normal;
  5911. color:#AAAAAA;
  5912. vertical-align:none;
  5913. text-align:left;
  5914. text-transform:none;
  5915. background-color:transparent;
  5916. border-color:transparent;
  5917. }
  5918. #u19663_div {
  5919. border-width:0px;
  5920. position:absolute;
  5921. left:0px;
  5922. top:0px;
  5923. width:127px;
  5924. height:25px;
  5925. background:inherit;
  5926. background-color:rgba(255, 255, 255, 1);
  5927. border-radius:0px;
  5928. filter:drop-shadow(none);
  5929. transition:none;
  5930. font-family:"Microsoft YaHei", sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:10px;
  5934. }
  5935. #u19663 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:658px;
  5939. top:144px;
  5940. width:127px;
  5941. height:25px;
  5942. display:flex;
  5943. transition:none;
  5944. transform-origin:50% 50%;
  5945. font-family:"Microsoft YaHei", sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:10px;
  5949. }
  5950. #u19663 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:2px 2px 2px 2px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u19663_div.hint {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:127px;
  5963. height:25px;
  5964. background:inherit;
  5965. background-color:rgba(255, 255, 255, 1);
  5966. border-radius:0px;
  5967. filter:drop-shadow(none);
  5968. transition:none;
  5969. font-family:"Microsoft YaHei", sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:10px;
  5973. }
  5974. #u19663.hint {
  5975. }
  5976. #u19663_div.disabled {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:127px;
  5982. height:25px;
  5983. background:inherit;
  5984. background-color:rgba(240, 240, 240, 1);
  5985. border-radius:0px;
  5986. filter:drop-shadow(none);
  5987. transition:none;
  5988. font-family:"Microsoft YaHei", sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:10px;
  5992. }
  5993. #u19663.disabled {
  5994. }
  5995. #u19663_div.hint.disabled {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:127px;
  6001. height:25px;
  6002. background:inherit;
  6003. background-color:rgba(240, 240, 240, 1);
  6004. border-radius:0px;
  6005. filter:drop-shadow(none);
  6006. transition:none;
  6007. font-family:"Microsoft YaHei", sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:10px;
  6011. }
  6012. #u19663.hint.disabled {
  6013. }
  6014. #u19664 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:0px;
  6020. height:0px;
  6021. }
  6022. #u19665_div {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:140px;
  6028. height:30px;
  6029. background:inherit;
  6030. background-color:rgba(255, 255, 255, 1);
  6031. box-sizing:border-box;
  6032. border-width:1px;
  6033. border-style:solid;
  6034. border-color:rgba(201, 201, 201, 1);
  6035. border-radius:4px;
  6036. filter:drop-shadow(none);
  6037. transition:none;
  6038. font-family:"Microsoft YaHei", sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:14px;
  6042. color:#CCCCCC;
  6043. text-align:left;
  6044. }
  6045. #u19665 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:950px;
  6049. top:143px;
  6050. width:140px;
  6051. height:30px;
  6052. display:flex;
  6053. transition:none;
  6054. transform-origin:50% 50%;
  6055. font-family:"Microsoft YaHei", sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:14px;
  6059. color:#CCCCCC;
  6060. text-align:left;
  6061. }
  6062. #u19665 .text {
  6063. position:absolute;
  6064. align-self:center;
  6065. padding:2px 8px 2px 8px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u19665_text {
  6070. border-width:0px;
  6071. word-wrap:break-word;
  6072. text-transform:none;
  6073. visibility:hidden;
  6074. }
  6075. #u19666_input {
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:127px;
  6080. height:25px;
  6081. padding:2px 2px 2px 2px;
  6082. font-family:"Microsoft YaHei", sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:10px;
  6086. letter-spacing:normal;
  6087. color:#000000;
  6088. vertical-align:none;
  6089. text-align:left;
  6090. text-transform:none;
  6091. background-color:transparent;
  6092. border-color:transparent;
  6093. }
  6094. #u19666_input.hint {
  6095. position:absolute;
  6096. left:0px;
  6097. top:0px;
  6098. width:127px;
  6099. height:25px;
  6100. padding:2px 2px 2px 2px;
  6101. font-family:"Microsoft YaHei", sans-serif;
  6102. font-weight:400;
  6103. font-style:normal;
  6104. font-size:12px;
  6105. letter-spacing:normal;
  6106. color:#AAAAAA;
  6107. vertical-align:none;
  6108. text-align:left;
  6109. text-transform:none;
  6110. background-color:transparent;
  6111. border-color:transparent;
  6112. }
  6113. #u19666_input.disabled {
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:127px;
  6118. height:25px;
  6119. padding:2px 2px 2px 2px;
  6120. font-family:"Microsoft YaHei", sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:10px;
  6124. letter-spacing:normal;
  6125. color:#000000;
  6126. vertical-align:none;
  6127. text-align:left;
  6128. text-transform:none;
  6129. background-color:transparent;
  6130. border-color:transparent;
  6131. }
  6132. #u19666_input.hint.disabled {
  6133. position:absolute;
  6134. left:0px;
  6135. top:0px;
  6136. width:127px;
  6137. height:25px;
  6138. padding:2px 2px 2px 2px;
  6139. font-family:"Microsoft YaHei", sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:12px;
  6143. letter-spacing:normal;
  6144. color:#AAAAAA;
  6145. vertical-align:none;
  6146. text-align:left;
  6147. text-transform:none;
  6148. background-color:transparent;
  6149. border-color:transparent;
  6150. }
  6151. #u19666_div {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:127px;
  6157. height:25px;
  6158. background:inherit;
  6159. background-color:rgba(255, 255, 255, 1);
  6160. border-radius:0px;
  6161. filter:drop-shadow(none);
  6162. transition:none;
  6163. font-family:"Microsoft YaHei", sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:10px;
  6167. }
  6168. #u19666 {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:958px;
  6172. top:144px;
  6173. width:127px;
  6174. height:25px;
  6175. display:flex;
  6176. transition:none;
  6177. transform-origin:50% 50%;
  6178. font-family:"Microsoft YaHei", sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:10px;
  6182. }
  6183. #u19666 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:2px 2px 2px 2px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u19666_div.hint {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:127px;
  6196. height:25px;
  6197. background:inherit;
  6198. background-color:rgba(255, 255, 255, 1);
  6199. border-radius:0px;
  6200. filter:drop-shadow(none);
  6201. transition:none;
  6202. font-family:"Microsoft YaHei", sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:10px;
  6206. }
  6207. #u19666.hint {
  6208. }
  6209. #u19666_div.disabled {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:0px;
  6213. top:0px;
  6214. width:127px;
  6215. height:25px;
  6216. background:inherit;
  6217. background-color:rgba(240, 240, 240, 1);
  6218. border-radius:0px;
  6219. filter:drop-shadow(none);
  6220. transition:none;
  6221. font-family:"Microsoft YaHei", sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:10px;
  6225. }
  6226. #u19666.disabled {
  6227. }
  6228. #u19666_div.hint.disabled {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:127px;
  6234. height:25px;
  6235. background:inherit;
  6236. background-color:rgba(240, 240, 240, 1);
  6237. border-radius:0px;
  6238. filter:drop-shadow(none);
  6239. transition:none;
  6240. font-family:"Microsoft YaHei", sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:10px;
  6244. }
  6245. #u19666.hint.disabled {
  6246. }
  6247. #u19667 {
  6248. border-width:0px;
  6249. position:absolute;
  6250. left:120px;
  6251. top:50px;
  6252. width:201px;
  6253. height:1190px;
  6254. }
  6255. #u19668 {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:0px;
  6259. top:0px;
  6260. width:0px;
  6261. height:0px;
  6262. }
  6263. #u19669_div {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:200px;
  6269. height:1190px;
  6270. background:inherit;
  6271. background-color:rgba(255, 255, 255, 1);
  6272. border-radius:0px;
  6273. filter:drop-shadow(none);
  6274. transition:none;
  6275. }
  6276. #u19669 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:200px;
  6282. height:1190px;
  6283. display:flex;
  6284. transition:none;
  6285. transform-origin:50% 50%;
  6286. }
  6287. #u19669 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:2px 2px 2px 2px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u19669_text {
  6295. border-width:0px;
  6296. word-wrap:break-word;
  6297. text-transform:none;
  6298. visibility:hidden;
  6299. }
  6300. #u19670_div {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:200px;
  6306. height:60px;
  6307. background:inherit;
  6308. background-color:rgba(224, 231, 247, 1);
  6309. border-radius:0px;
  6310. filter:drop-shadow(none);
  6311. transition:none;
  6312. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  6313. font-weight:500;
  6314. font-style:normal;
  6315. font-size:18px;
  6316. }
  6317. #u19670 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:200px;
  6323. height:60px;
  6324. display:flex;
  6325. transition:none;
  6326. transform-origin:50% 50%;
  6327. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  6328. font-weight:500;
  6329. font-style:normal;
  6330. font-size:18px;
  6331. }
  6332. #u19670 .text {
  6333. position:absolute;
  6334. align-self:center;
  6335. padding:0px 0px 0px 20px;
  6336. box-sizing:border-box;
  6337. width:100%;
  6338. }
  6339. #u19670_text {
  6340. border-width:0px;
  6341. word-wrap:break-word;
  6342. text-transform:none;
  6343. }
  6344. #u19671_div {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:65px;
  6350. height:22px;
  6351. background:inherit;
  6352. background-color:rgba(255, 255, 255, 0);
  6353. border-radius:0px;
  6354. filter:drop-shadow(none);
  6355. transition:none;
  6356. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. font-size:16px;
  6360. }
  6361. #u19671 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:25px;
  6365. top:456px;
  6366. width:65px;
  6367. height:22px;
  6368. display:flex;
  6369. transition:none;
  6370. transform-origin:50% 50%;
  6371. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:16px;
  6375. }
  6376. #u19671 .text {
  6377. position:absolute;
  6378. align-self:flex-start;
  6379. padding:0px 0px 0px 0px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u19671_text {
  6384. border-width:0px;
  6385. white-space:nowrap;
  6386. text-transform:none;
  6387. }
  6388. #u19672_div {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:49px;
  6394. height:17px;
  6395. background:inherit;
  6396. background-color:rgba(255, 255, 255, 0);
  6397. border-radius:0px;
  6398. filter:drop-shadow(none);
  6399. transition:none;
  6400. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6401. font-weight:400;
  6402. font-style:normal;
  6403. font-size:12px;
  6404. color:#AAAAAA;
  6405. }
  6406. #u19672 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:23px;
  6410. top:419px;
  6411. width:49px;
  6412. height:17px;
  6413. display:flex;
  6414. transition:none;
  6415. transform-origin:50% 50%;
  6416. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:12px;
  6420. color:#AAAAAA;
  6421. }
  6422. #u19672 .text {
  6423. position:absolute;
  6424. align-self:flex-start;
  6425. padding:0px 0px 0px 0px;
  6426. box-sizing:border-box;
  6427. width:100%;
  6428. }
  6429. #u19672_text {
  6430. border-width:0px;
  6431. white-space:nowrap;
  6432. text-transform:none;
  6433. }
  6434. #u19673_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:49px;
  6440. height:17px;
  6441. background:inherit;
  6442. background-color:rgba(255, 255, 255, 0);
  6443. border-radius:0px;
  6444. filter:drop-shadow(none);
  6445. transition:none;
  6446. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6447. font-weight:400;
  6448. font-style:normal;
  6449. font-size:12px;
  6450. color:#AAAAAA;
  6451. }
  6452. #u19673 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:24px;
  6456. top:81px;
  6457. width:49px;
  6458. height:17px;
  6459. display:flex;
  6460. transition:none;
  6461. transform-origin:50% 50%;
  6462. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6463. font-weight:400;
  6464. font-style:normal;
  6465. font-size:12px;
  6466. color:#AAAAAA;
  6467. }
  6468. #u19673 .text {
  6469. position:absolute;
  6470. align-self:flex-start;
  6471. padding:0px 0px 0px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u19673_text {
  6476. border-width:0px;
  6477. white-space:nowrap;
  6478. text-transform:none;
  6479. }
  6480. #u19674_div {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:65px;
  6486. height:22px;
  6487. background:inherit;
  6488. background-color:rgba(255, 255, 255, 0);
  6489. border-radius:0px;
  6490. filter:drop-shadow(none);
  6491. transition:none;
  6492. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6493. font-weight:400;
  6494. font-style:normal;
  6495. font-size:16px;
  6496. }
  6497. #u19674 {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:26px;
  6501. top:118px;
  6502. width:65px;
  6503. height:22px;
  6504. display:flex;
  6505. transition:none;
  6506. transform-origin:50% 50%;
  6507. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:16px;
  6511. }
  6512. #u19674 .text {
  6513. position:absolute;
  6514. align-self:flex-start;
  6515. padding:0px 0px 0px 0px;
  6516. box-sizing:border-box;
  6517. width:100%;
  6518. }
  6519. #u19674_text {
  6520. border-width:0px;
  6521. white-space:nowrap;
  6522. text-transform:none;
  6523. }
  6524. #u19675 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:398px;
  6529. width:200px;
  6530. height:1px;
  6531. display:flex;
  6532. transition:none;
  6533. }
  6534. #u19675 .text {
  6535. position:absolute;
  6536. align-self:center;
  6537. padding:2px 2px 2px 2px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u19675_img {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:201px;
  6547. height:2px;
  6548. }
  6549. #u19675_text {
  6550. border-width:0px;
  6551. word-wrap:break-word;
  6552. text-transform:none;
  6553. visibility:hidden;
  6554. }
  6555. #u19676_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:65px;
  6561. height:22px;
  6562. background:inherit;
  6563. background-color:rgba(255, 255, 255, 0);
  6564. border-radius:0px;
  6565. filter:drop-shadow(none);
  6566. transition:none;
  6567. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:16px;
  6571. }
  6572. #u19676 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:25px;
  6576. top:498px;
  6577. width:65px;
  6578. height:22px;
  6579. display:flex;
  6580. transition:none;
  6581. transform-origin:50% 50%;
  6582. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6583. font-weight:400;
  6584. font-style:normal;
  6585. font-size:16px;
  6586. }
  6587. #u19676 .text {
  6588. position:absolute;
  6589. align-self:flex-start;
  6590. padding:0px 0px 0px 0px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u19676_text {
  6595. border-width:0px;
  6596. white-space:nowrap;
  6597. text-transform:none;
  6598. }
  6599. #u19677_div {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:49px;
  6605. height:17px;
  6606. background:inherit;
  6607. background-color:rgba(255, 255, 255, 0);
  6608. border-radius:0px;
  6609. filter:drop-shadow(none);
  6610. transition:none;
  6611. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6612. font-weight:400;
  6613. font-style:normal;
  6614. font-size:12px;
  6615. color:#AAAAAA;
  6616. }
  6617. #u19677 {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:24px;
  6621. top:235px;
  6622. width:49px;
  6623. height:17px;
  6624. display:flex;
  6625. transition:none;
  6626. transform-origin:50% 50%;
  6627. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:12px;
  6631. color:#AAAAAA;
  6632. }
  6633. #u19677 .text {
  6634. position:absolute;
  6635. align-self:flex-start;
  6636. padding:0px 0px 0px 0px;
  6637. box-sizing:border-box;
  6638. width:100%;
  6639. }
  6640. #u19677_text {
  6641. border-width:0px;
  6642. white-space:nowrap;
  6643. text-transform:none;
  6644. }
  6645. #u19678 {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:1px;
  6649. top:214px;
  6650. width:200px;
  6651. height:1px;
  6652. display:flex;
  6653. transition:none;
  6654. }
  6655. #u19678 .text {
  6656. position:absolute;
  6657. align-self:center;
  6658. padding:2px 2px 2px 2px;
  6659. box-sizing:border-box;
  6660. width:100%;
  6661. }
  6662. #u19678_img {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:0px;
  6666. top:0px;
  6667. width:201px;
  6668. height:2px;
  6669. }
  6670. #u19678_text {
  6671. border-width:0px;
  6672. word-wrap:break-word;
  6673. text-transform:none;
  6674. visibility:hidden;
  6675. }
  6676. #u19679_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:65px;
  6682. height:22px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 0);
  6685. border-radius:0px;
  6686. filter:drop-shadow(none);
  6687. transition:none;
  6688. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:16px;
  6692. }
  6693. #u19679 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:26px;
  6697. top:272px;
  6698. width:65px;
  6699. height:22px;
  6700. display:flex;
  6701. transition:none;
  6702. transform-origin:50% 50%;
  6703. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6704. font-weight:400;
  6705. font-style:normal;
  6706. font-size:16px;
  6707. }
  6708. #u19679 .text {
  6709. position:absolute;
  6710. align-self:flex-start;
  6711. padding:0px 0px 0px 0px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u19679_text {
  6716. border-width:0px;
  6717. white-space:nowrap;
  6718. text-transform:none;
  6719. }
  6720. #u19680_div {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:65px;
  6726. height:22px;
  6727. background:inherit;
  6728. background-color:rgba(255, 255, 255, 0);
  6729. border-radius:0px;
  6730. filter:drop-shadow(none);
  6731. transition:none;
  6732. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:16px;
  6736. }
  6737. #u19680 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:26px;
  6741. top:314px;
  6742. width:65px;
  6743. height:22px;
  6744. display:flex;
  6745. transition:none;
  6746. transform-origin:50% 50%;
  6747. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:16px;
  6751. }
  6752. #u19680 .text {
  6753. position:absolute;
  6754. align-self:flex-start;
  6755. padding:0px 0px 0px 0px;
  6756. box-sizing:border-box;
  6757. width:100%;
  6758. }
  6759. #u19680_text {
  6760. border-width:0px;
  6761. white-space:nowrap;
  6762. text-transform:none;
  6763. }
  6764. #u19681_div {
  6765. border-width:0px;
  6766. position:absolute;
  6767. left:0px;
  6768. top:0px;
  6769. width:129px;
  6770. height:22px;
  6771. background:inherit;
  6772. background-color:rgba(255, 255, 255, 0);
  6773. border-radius:0px;
  6774. filter:drop-shadow(none);
  6775. transition:none;
  6776. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:16px;
  6780. }
  6781. #u19681 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:25px;
  6785. top:956px;
  6786. width:129px;
  6787. height:22px;
  6788. display:flex;
  6789. transition:none;
  6790. transform-origin:50% 50%;
  6791. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6792. font-weight:400;
  6793. font-style:normal;
  6794. font-size:16px;
  6795. }
  6796. #u19681 .text {
  6797. position:absolute;
  6798. align-self:flex-start;
  6799. padding:0px 0px 0px 0px;
  6800. box-sizing:border-box;
  6801. width:100%;
  6802. }
  6803. #u19681_text {
  6804. border-width:0px;
  6805. white-space:nowrap;
  6806. text-transform:none;
  6807. }
  6808. #u19682_div {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:0px;
  6812. top:0px;
  6813. width:129px;
  6814. height:22px;
  6815. background:inherit;
  6816. background-color:rgba(255, 255, 255, 0);
  6817. border-radius:0px;
  6818. filter:drop-shadow(none);
  6819. transition:none;
  6820. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6821. font-weight:400;
  6822. font-style:normal;
  6823. font-size:16px;
  6824. }
  6825. #u19682 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:25px;
  6829. top:748px;
  6830. width:129px;
  6831. height:22px;
  6832. display:flex;
  6833. transition:none;
  6834. transform-origin:50% 50%;
  6835. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6836. font-weight:400;
  6837. font-style:normal;
  6838. font-size:16px;
  6839. }
  6840. #u19682 .text {
  6841. position:absolute;
  6842. align-self:flex-start;
  6843. padding:0px 0px 0px 0px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u19682_text {
  6848. border-width:0px;
  6849. white-space:nowrap;
  6850. text-transform:none;
  6851. }
  6852. #u19683_div {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:97px;
  6858. height:17px;
  6859. background:inherit;
  6860. background-color:rgba(255, 255, 255, 0);
  6861. border-radius:0px;
  6862. filter:drop-shadow(none);
  6863. transition:none;
  6864. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:12px;
  6868. color:#AAAAAA;
  6869. }
  6870. #u19683 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:23px;
  6874. top:711px;
  6875. width:97px;
  6876. height:17px;
  6877. display:flex;
  6878. transition:none;
  6879. transform-origin:50% 50%;
  6880. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:12px;
  6884. color:#AAAAAA;
  6885. }
  6886. #u19683 .text {
  6887. position:absolute;
  6888. align-self:flex-start;
  6889. padding:0px 0px 0px 0px;
  6890. box-sizing:border-box;
  6891. width:100%;
  6892. }
  6893. #u19683_text {
  6894. border-width:0px;
  6895. white-space:nowrap;
  6896. text-transform:none;
  6897. }
  6898. #u19684 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:690px;
  6903. width:200px;
  6904. height:1px;
  6905. display:flex;
  6906. transition:none;
  6907. }
  6908. #u19684 .text {
  6909. position:absolute;
  6910. align-self:center;
  6911. padding:2px 2px 2px 2px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u19684_img {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:201px;
  6921. height:2px;
  6922. }
  6923. #u19684_text {
  6924. border-width:0px;
  6925. word-wrap:break-word;
  6926. text-transform:none;
  6927. visibility:hidden;
  6928. }
  6929. #u19685_div {
  6930. border-width:0px;
  6931. position:absolute;
  6932. left:0px;
  6933. top:0px;
  6934. width:129px;
  6935. height:22px;
  6936. background:inherit;
  6937. background-color:rgba(255, 255, 255, 0);
  6938. border-radius:0px;
  6939. filter:drop-shadow(none);
  6940. transition:none;
  6941. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:16px;
  6945. }
  6946. #u19685 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:25px;
  6950. top:830px;
  6951. width:129px;
  6952. height:22px;
  6953. display:flex;
  6954. transition:none;
  6955. transform-origin:50% 50%;
  6956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:16px;
  6960. }
  6961. #u19685 .text {
  6962. position:absolute;
  6963. align-self:flex-start;
  6964. padding:0px 0px 0px 0px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u19685_text {
  6969. border-width:0px;
  6970. white-space:nowrap;
  6971. text-transform:none;
  6972. }
  6973. #u19686_div {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:129px;
  6979. height:22px;
  6980. background:inherit;
  6981. background-color:rgba(255, 255, 255, 0);
  6982. border-radius:0px;
  6983. filter:drop-shadow(none);
  6984. transition:none;
  6985. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:16px;
  6989. }
  6990. #u19686 {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:25px;
  6994. top:872px;
  6995. width:129px;
  6996. height:22px;
  6997. display:flex;
  6998. transition:none;
  6999. transform-origin:50% 50%;
  7000. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:16px;
  7004. }
  7005. #u19686 .text {
  7006. position:absolute;
  7007. align-self:flex-start;
  7008. padding:0px 0px 0px 0px;
  7009. box-sizing:border-box;
  7010. width:100%;
  7011. }
  7012. #u19686_text {
  7013. border-width:0px;
  7014. white-space:nowrap;
  7015. text-transform:none;
  7016. }
  7017. #u19687_div {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:65px;
  7023. height:22px;
  7024. background:inherit;
  7025. background-color:rgba(255, 255, 255, 0);
  7026. border-radius:0px;
  7027. filter:drop-shadow(none);
  7028. transition:none;
  7029. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:16px;
  7033. }
  7034. #u19687 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:25px;
  7038. top:1056px;
  7039. width:65px;
  7040. height:22px;
  7041. display:flex;
  7042. transition:none;
  7043. transform-origin:50% 50%;
  7044. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. font-size:16px;
  7048. }
  7049. #u19687 .text {
  7050. position:absolute;
  7051. align-self:flex-start;
  7052. padding:0px 0px 0px 0px;
  7053. box-sizing:border-box;
  7054. width:100%;
  7055. }
  7056. #u19687_text {
  7057. border-width:0px;
  7058. white-space:nowrap;
  7059. text-transform:none;
  7060. }
  7061. #u19688_div {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:0px;
  7066. width:49px;
  7067. height:17px;
  7068. background:inherit;
  7069. background-color:rgba(255, 255, 255, 0);
  7070. border-radius:0px;
  7071. filter:drop-shadow(none);
  7072. transition:none;
  7073. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7074. font-weight:400;
  7075. font-style:normal;
  7076. font-size:12px;
  7077. color:#AAAAAA;
  7078. }
  7079. #u19688 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:23px;
  7083. top:1019px;
  7084. width:49px;
  7085. height:17px;
  7086. display:flex;
  7087. transition:none;
  7088. transform-origin:50% 50%;
  7089. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. color:#AAAAAA;
  7094. }
  7095. #u19688 .text {
  7096. position:absolute;
  7097. align-self:flex-start;
  7098. padding:0px 0px 0px 0px;
  7099. box-sizing:border-box;
  7100. width:100%;
  7101. }
  7102. #u19688_text {
  7103. border-width:0px;
  7104. white-space:nowrap;
  7105. text-transform:none;
  7106. }
  7107. #u19689 {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:998px;
  7112. width:200px;
  7113. height:1px;
  7114. display:flex;
  7115. transition:none;
  7116. }
  7117. #u19689 .text {
  7118. position:absolute;
  7119. align-self:center;
  7120. padding:2px 2px 2px 2px;
  7121. box-sizing:border-box;
  7122. width:100%;
  7123. }
  7124. #u19689_img {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:201px;
  7130. height:2px;
  7131. }
  7132. #u19689_text {
  7133. border-width:0px;
  7134. word-wrap:break-word;
  7135. text-transform:none;
  7136. visibility:hidden;
  7137. }
  7138. #u19690_div {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:65px;
  7144. height:22px;
  7145. background:inherit;
  7146. background-color:rgba(255, 255, 255, 0);
  7147. border-radius:0px;
  7148. filter:drop-shadow(none);
  7149. transition:none;
  7150. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:16px;
  7154. }
  7155. #u19690 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:25px;
  7159. top:1098px;
  7160. width:65px;
  7161. height:22px;
  7162. display:flex;
  7163. transition:none;
  7164. transform-origin:50% 50%;
  7165. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:16px;
  7169. }
  7170. #u19690 .text {
  7171. position:absolute;
  7172. align-self:flex-start;
  7173. padding:0px 0px 0px 0px;
  7174. box-sizing:border-box;
  7175. width:100%;
  7176. }
  7177. #u19690_text {
  7178. border-width:0px;
  7179. white-space:nowrap;
  7180. text-transform:none;
  7181. }
  7182. #u19691_div {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:0px;
  7186. top:0px;
  7187. width:129px;
  7188. height:22px;
  7189. background:inherit;
  7190. background-color:rgba(255, 255, 255, 0);
  7191. border-radius:0px;
  7192. filter:drop-shadow(none);
  7193. transition:none;
  7194. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7195. font-weight:400;
  7196. font-style:normal;
  7197. font-size:16px;
  7198. }
  7199. #u19691 {
  7200. border-width:0px;
  7201. position:absolute;
  7202. left:25px;
  7203. top:914px;
  7204. width:129px;
  7205. height:22px;
  7206. display:flex;
  7207. transition:none;
  7208. transform-origin:50% 50%;
  7209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7210. font-weight:400;
  7211. font-style:normal;
  7212. font-size:16px;
  7213. }
  7214. #u19691 .text {
  7215. position:absolute;
  7216. align-self:flex-start;
  7217. padding:0px 0px 0px 0px;
  7218. box-sizing:border-box;
  7219. width:100%;
  7220. }
  7221. #u19691_text {
  7222. border-width:0px;
  7223. white-space:nowrap;
  7224. text-transform:none;
  7225. }
  7226. #u19692_div {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:81px;
  7232. height:22px;
  7233. background:inherit;
  7234. background-color:rgba(255, 255, 255, 0);
  7235. border-radius:0px;
  7236. filter:drop-shadow(none);
  7237. transition:none;
  7238. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7239. font-weight:400;
  7240. font-style:normal;
  7241. font-size:16px;
  7242. }
  7243. #u19692 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:26px;
  7247. top:356px;
  7248. width:81px;
  7249. height:22px;
  7250. display:flex;
  7251. transition:none;
  7252. transform-origin:50% 50%;
  7253. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7254. font-weight:400;
  7255. font-style:normal;
  7256. font-size:16px;
  7257. }
  7258. #u19692 .text {
  7259. position:absolute;
  7260. align-self:flex-start;
  7261. padding:0px 0px 0px 0px;
  7262. box-sizing:border-box;
  7263. width:100%;
  7264. }
  7265. #u19692_text {
  7266. border-width:0px;
  7267. white-space:nowrap;
  7268. text-transform:none;
  7269. }
  7270. #u19693_div {
  7271. border-width:0px;
  7272. position:absolute;
  7273. left:0px;
  7274. top:0px;
  7275. width:129px;
  7276. height:22px;
  7277. background:inherit;
  7278. background-color:rgba(255, 255, 255, 0);
  7279. border-radius:0px;
  7280. filter:drop-shadow(none);
  7281. transition:none;
  7282. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:16px;
  7286. }
  7287. #u19693 {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:25px;
  7291. top:790px;
  7292. width:129px;
  7293. height:22px;
  7294. display:flex;
  7295. transition:none;
  7296. transform-origin:50% 50%;
  7297. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:16px;
  7301. }
  7302. #u19693 .text {
  7303. position:absolute;
  7304. align-self:flex-start;
  7305. padding:0px 0px 0px 0px;
  7306. box-sizing:border-box;
  7307. width:100%;
  7308. }
  7309. #u19693_text {
  7310. border-width:0px;
  7311. white-space:nowrap;
  7312. text-transform:none;
  7313. }
  7314. #u19694_div {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:0px;
  7318. top:0px;
  7319. width:65px;
  7320. height:22px;
  7321. background:inherit;
  7322. background-color:rgba(255, 255, 255, 0);
  7323. border-radius:0px;
  7324. filter:drop-shadow(none);
  7325. transition:none;
  7326. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7327. font-weight:400;
  7328. font-style:normal;
  7329. font-size:16px;
  7330. }
  7331. #u19694 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:25px;
  7335. top:160px;
  7336. width:65px;
  7337. height:22px;
  7338. display:flex;
  7339. transition:none;
  7340. transform-origin:50% 50%;
  7341. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:16px;
  7345. }
  7346. #u19694 .text {
  7347. position:absolute;
  7348. align-self:flex-start;
  7349. padding:0px 0px 0px 0px;
  7350. box-sizing:border-box;
  7351. width:100%;
  7352. }
  7353. #u19694_text {
  7354. border-width:0px;
  7355. white-space:nowrap;
  7356. text-transform:none;
  7357. }
  7358. #u19695_div {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:81px;
  7364. height:22px;
  7365. background:inherit;
  7366. background-color:rgba(255, 255, 255, 0);
  7367. border-radius:0px;
  7368. filter:drop-shadow(none);
  7369. transition:none;
  7370. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7371. font-weight:400;
  7372. font-style:normal;
  7373. font-size:16px;
  7374. }
  7375. #u19695 {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:25px;
  7379. top:598px;
  7380. width:81px;
  7381. height:22px;
  7382. display:flex;
  7383. transition:none;
  7384. transform-origin:50% 50%;
  7385. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:16px;
  7389. }
  7390. #u19695 .text {
  7391. position:absolute;
  7392. align-self:flex-start;
  7393. padding:0px 0px 0px 0px;
  7394. box-sizing:border-box;
  7395. width:100%;
  7396. }
  7397. #u19695_text {
  7398. border-width:0px;
  7399. white-space:nowrap;
  7400. text-transform:none;
  7401. }
  7402. #u19696_div {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:65px;
  7408. height:22px;
  7409. background:inherit;
  7410. background-color:rgba(255, 255, 255, 0);
  7411. border-radius:0px;
  7412. filter:drop-shadow(none);
  7413. transition:none;
  7414. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:16px;
  7418. }
  7419. #u19696 {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:25px;
  7423. top:640px;
  7424. width:65px;
  7425. height:22px;
  7426. display:flex;
  7427. transition:none;
  7428. transform-origin:50% 50%;
  7429. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7430. font-weight:400;
  7431. font-style:normal;
  7432. font-size:16px;
  7433. }
  7434. #u19696 .text {
  7435. position:absolute;
  7436. align-self:flex-start;
  7437. padding:0px 0px 0px 0px;
  7438. box-sizing:border-box;
  7439. width:100%;
  7440. }
  7441. #u19696_text {
  7442. border-width:0px;
  7443. white-space:nowrap;
  7444. text-transform:none;
  7445. }
  7446. #u19697_div {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:73px;
  7452. height:17px;
  7453. background:inherit;
  7454. background-color:rgba(255, 255, 255, 0);
  7455. border-radius:0px;
  7456. filter:drop-shadow(none);
  7457. transition:none;
  7458. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7459. font-weight:400;
  7460. font-style:normal;
  7461. font-size:12px;
  7462. color:#AAAAAA;
  7463. }
  7464. #u19697 {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:23px;
  7468. top:561px;
  7469. width:73px;
  7470. height:17px;
  7471. display:flex;
  7472. transition:none;
  7473. transform-origin:50% 50%;
  7474. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:12px;
  7478. color:#AAAAAA;
  7479. }
  7480. #u19697 .text {
  7481. position:absolute;
  7482. align-self:flex-start;
  7483. padding:0px 0px 0px 0px;
  7484. box-sizing:border-box;
  7485. width:100%;
  7486. }
  7487. #u19697_text {
  7488. border-width:0px;
  7489. white-space:nowrap;
  7490. text-transform:none;
  7491. }
  7492. #u19698 {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:540px;
  7497. width:200px;
  7498. height:1px;
  7499. display:flex;
  7500. transition:none;
  7501. }
  7502. #u19698 .text {
  7503. position:absolute;
  7504. align-self:center;
  7505. padding:2px 2px 2px 2px;
  7506. box-sizing:border-box;
  7507. width:100%;
  7508. }
  7509. #u19698_img {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:0px;
  7514. width:201px;
  7515. height:2px;
  7516. }
  7517. #u19698_text {
  7518. border-width:0px;
  7519. word-wrap:break-word;
  7520. text-transform:none;
  7521. visibility:hidden;
  7522. }
  7523. #u19699_div {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:0px;
  7527. top:0px;
  7528. width:890px;
  7529. height:20px;
  7530. background:inherit;
  7531. background-color:rgba(255, 255, 255, 0);
  7532. border-left:0px;
  7533. border-top:0px;
  7534. border-right:0px;
  7535. border-radius:0px;
  7536. border-bottom-right-radius:0px;
  7537. border-bottom-left-radius:0px;
  7538. filter:drop-shadow(none);
  7539. transition:none;
  7540. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:14px;
  7544. color:#7F7F7F;
  7545. }
  7546. #u19699 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:352px;
  7550. top:100px;
  7551. width:890px;
  7552. height:20px;
  7553. display:flex;
  7554. transition:none;
  7555. transform-origin:50% 50%;
  7556. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:14px;
  7560. color:#7F7F7F;
  7561. }
  7562. #u19699 .text {
  7563. position:absolute;
  7564. align-self:center;
  7565. padding:0px 0px 0px 0px;
  7566. box-sizing:border-box;
  7567. width:100%;
  7568. }
  7569. #u19699_text {
  7570. border-width:0px;
  7571. white-space:nowrap;
  7572. text-transform:none;
  7573. }
  7574. #u19700 {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:0px;
  7580. height:0px;
  7581. }
  7582. #u19701_div {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:0px;
  7586. top:0px;
  7587. width:140px;
  7588. height:30px;
  7589. background:inherit;
  7590. background-color:rgba(255, 255, 255, 1);
  7591. box-sizing:border-box;
  7592. border-width:1px;
  7593. border-style:solid;
  7594. border-color:rgba(215, 215, 215, 1);
  7595. border-radius:4px;
  7596. filter:drop-shadow(none);
  7597. transition:none;
  7598. font-size:14px;
  7599. }
  7600. #u19701 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:1250px;
  7604. top:142px;
  7605. width:140px;
  7606. height:30px;
  7607. display:flex;
  7608. transition:none;
  7609. transform-origin:50% 50%;
  7610. font-size:14px;
  7611. }
  7612. #u19701 .text {
  7613. position:absolute;
  7614. align-self:center;
  7615. padding:2px 2px 2px 2px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u19701_text {
  7620. border-width:0px;
  7621. word-wrap:break-word;
  7622. text-transform:none;
  7623. visibility:hidden;
  7624. }
  7625. #u19702_input {
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:134px;
  7630. height:23px;
  7631. padding:2px 2px 2px 2px;
  7632. font-family:"ArialMT", "Arial", sans-serif;
  7633. font-weight:400;
  7634. font-style:normal;
  7635. font-size:14px;
  7636. letter-spacing:normal;
  7637. color:#AAAAAA;
  7638. vertical-align:none;
  7639. text-align:left;
  7640. text-transform:none;
  7641. background-color:transparent;
  7642. border-color:transparent;
  7643. }
  7644. #u19702_input.disabled {
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:134px;
  7649. height:23px;
  7650. padding:2px 2px 2px 2px;
  7651. font-family:"ArialMT", "Arial", sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:14px;
  7655. letter-spacing:normal;
  7656. color:#AAAAAA;
  7657. vertical-align:none;
  7658. text-align:left;
  7659. text-transform:none;
  7660. background-color:transparent;
  7661. border-color:transparent;
  7662. }
  7663. #u19702_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:134px;
  7669. height:23px;
  7670. background:inherit;
  7671. background-color:rgba(255, 255, 255, 1);
  7672. border-radius:0px;
  7673. filter:drop-shadow(none);
  7674. transition:none;
  7675. font-size:14px;
  7676. color:#AAAAAA;
  7677. }
  7678. #u19702 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:1254px;
  7682. top:144px;
  7683. width:134px;
  7684. height:23px;
  7685. display:flex;
  7686. transition:none;
  7687. transform-origin:50% 50%;
  7688. font-size:14px;
  7689. color:#AAAAAA;
  7690. }
  7691. #u19702 .text {
  7692. position:absolute;
  7693. align-self:flex-start;
  7694. padding:2px 2px 2px 2px;
  7695. box-sizing:border-box;
  7696. width:100%;
  7697. }
  7698. #u19702_div.disabled {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:0px;
  7702. top:0px;
  7703. width:134px;
  7704. height:23px;
  7705. background:inherit;
  7706. background-color:rgba(240, 240, 240, 1);
  7707. border-radius:0px;
  7708. filter:drop-shadow(none);
  7709. transition:none;
  7710. font-size:14px;
  7711. color:#AAAAAA;
  7712. }
  7713. #u19702.disabled {
  7714. }
  7715. .u19702_input_option {
  7716. font-size:14px;
  7717. }
  7718. #u19703 {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:0px;
  7722. top:0px;
  7723. width:0px;
  7724. height:0px;
  7725. }
  7726. #u19704_div {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:0px;
  7730. top:0px;
  7731. width:140px;
  7732. height:30px;
  7733. background:inherit;
  7734. background-color:rgba(255, 255, 255, 1);
  7735. box-sizing:border-box;
  7736. border-width:1px;
  7737. border-style:solid;
  7738. border-color:rgba(201, 201, 201, 1);
  7739. border-radius:4px;
  7740. filter:drop-shadow(none);
  7741. transition:none;
  7742. font-family:"Microsoft YaHei", sans-serif;
  7743. font-weight:400;
  7744. font-style:normal;
  7745. font-size:14px;
  7746. color:#CCCCCC;
  7747. text-align:left;
  7748. }
  7749. #u19704 {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:1400px;
  7753. top:142px;
  7754. width:140px;
  7755. height:30px;
  7756. display:flex;
  7757. transition:none;
  7758. transform-origin:50% 50%;
  7759. font-family:"Microsoft YaHei", sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:14px;
  7763. color:#CCCCCC;
  7764. text-align:left;
  7765. }
  7766. #u19704 .text {
  7767. position:absolute;
  7768. align-self:center;
  7769. padding:2px 8px 2px 8px;
  7770. box-sizing:border-box;
  7771. width:100%;
  7772. }
  7773. #u19704_text {
  7774. border-width:0px;
  7775. word-wrap:break-word;
  7776. text-transform:none;
  7777. visibility:hidden;
  7778. }
  7779. #u19705_input {
  7780. position:absolute;
  7781. left:0px;
  7782. top:0px;
  7783. width:127px;
  7784. height:25px;
  7785. padding:2px 2px 2px 2px;
  7786. font-family:"Microsoft YaHei", sans-serif;
  7787. font-weight:400;
  7788. font-style:normal;
  7789. font-size:10px;
  7790. letter-spacing:normal;
  7791. color:#000000;
  7792. vertical-align:none;
  7793. text-align:left;
  7794. text-transform:none;
  7795. background-color:transparent;
  7796. border-color:transparent;
  7797. }
  7798. #u19705_input.hint {
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:127px;
  7803. height:25px;
  7804. padding:2px 2px 2px 2px;
  7805. font-family:"Microsoft YaHei", sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:12px;
  7809. letter-spacing:normal;
  7810. color:#AAAAAA;
  7811. vertical-align:none;
  7812. text-align:left;
  7813. text-transform:none;
  7814. background-color:transparent;
  7815. border-color:transparent;
  7816. }
  7817. #u19705_input.disabled {
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:127px;
  7822. height:25px;
  7823. padding:2px 2px 2px 2px;
  7824. font-family:"Microsoft YaHei", sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:10px;
  7828. letter-spacing:normal;
  7829. color:#000000;
  7830. vertical-align:none;
  7831. text-align:left;
  7832. text-transform:none;
  7833. background-color:transparent;
  7834. border-color:transparent;
  7835. }
  7836. #u19705_input.hint.disabled {
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:127px;
  7841. height:25px;
  7842. padding:2px 2px 2px 2px;
  7843. font-family:"Microsoft YaHei", sans-serif;
  7844. font-weight:400;
  7845. font-style:normal;
  7846. font-size:12px;
  7847. letter-spacing:normal;
  7848. color:#AAAAAA;
  7849. vertical-align:none;
  7850. text-align:left;
  7851. text-transform:none;
  7852. background-color:transparent;
  7853. border-color:transparent;
  7854. }
  7855. #u19705_div {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:0px;
  7859. top:0px;
  7860. width:127px;
  7861. height:25px;
  7862. background:inherit;
  7863. background-color:rgba(255, 255, 255, 1);
  7864. border-radius:0px;
  7865. filter:drop-shadow(none);
  7866. transition:none;
  7867. font-family:"Microsoft YaHei", sans-serif;
  7868. font-weight:400;
  7869. font-style:normal;
  7870. font-size:10px;
  7871. }
  7872. #u19705 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:1408px;
  7876. top:143px;
  7877. width:127px;
  7878. height:25px;
  7879. display:flex;
  7880. transition:none;
  7881. transform-origin:50% 50%;
  7882. font-family:"Microsoft YaHei", sans-serif;
  7883. font-weight:400;
  7884. font-style:normal;
  7885. font-size:10px;
  7886. }
  7887. #u19705 .text {
  7888. position:absolute;
  7889. align-self:center;
  7890. padding:2px 2px 2px 2px;
  7891. box-sizing:border-box;
  7892. width:100%;
  7893. }
  7894. #u19705_div.hint {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:127px;
  7900. height:25px;
  7901. background:inherit;
  7902. background-color:rgba(255, 255, 255, 1);
  7903. border-radius:0px;
  7904. filter:drop-shadow(none);
  7905. transition:none;
  7906. font-family:"Microsoft YaHei", sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:10px;
  7910. }
  7911. #u19705.hint {
  7912. }
  7913. #u19705_div.disabled {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:127px;
  7919. height:25px;
  7920. background:inherit;
  7921. background-color:rgba(240, 240, 240, 1);
  7922. border-radius:0px;
  7923. filter:drop-shadow(none);
  7924. transition:none;
  7925. font-family:"Microsoft YaHei", sans-serif;
  7926. font-weight:400;
  7927. font-style:normal;
  7928. font-size:10px;
  7929. }
  7930. #u19705.disabled {
  7931. }
  7932. #u19705_div.hint.disabled {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:127px;
  7938. height:25px;
  7939. background:inherit;
  7940. background-color:rgba(240, 240, 240, 1);
  7941. border-radius:0px;
  7942. filter:drop-shadow(none);
  7943. transition:none;
  7944. font-family:"Microsoft YaHei", sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:10px;
  7948. }
  7949. #u19705.hint.disabled {
  7950. }
  7951. #u19706 {
  7952. border-width:0px;
  7953. position:absolute;
  7954. left:0px;
  7955. top:0px;
  7956. width:0px;
  7957. height:0px;
  7958. }
  7959. #u19707_div {
  7960. border-width:0px;
  7961. position:absolute;
  7962. left:0px;
  7963. top:0px;
  7964. width:140px;
  7965. height:30px;
  7966. background:inherit;
  7967. background-color:rgba(255, 255, 255, 1);
  7968. box-sizing:border-box;
  7969. border-width:1px;
  7970. border-style:solid;
  7971. border-color:rgba(215, 215, 215, 1);
  7972. border-radius:4px;
  7973. filter:drop-shadow(none);
  7974. transition:none;
  7975. font-size:14px;
  7976. }
  7977. #u19707 {
  7978. border-width:0px;
  7979. position:absolute;
  7980. left:350px;
  7981. top:186px;
  7982. width:140px;
  7983. height:30px;
  7984. display:flex;
  7985. transition:none;
  7986. transform-origin:50% 50%;
  7987. font-size:14px;
  7988. }
  7989. #u19707 .text {
  7990. position:absolute;
  7991. align-self:center;
  7992. padding:2px 2px 2px 2px;
  7993. box-sizing:border-box;
  7994. width:100%;
  7995. }
  7996. #u19707_text {
  7997. border-width:0px;
  7998. word-wrap:break-word;
  7999. text-transform:none;
  8000. visibility:hidden;
  8001. }
  8002. #u19708_input {
  8003. position:absolute;
  8004. left:0px;
  8005. top:0px;
  8006. width:134px;
  8007. height:23px;
  8008. padding:2px 2px 2px 2px;
  8009. font-family:"ArialMT", "Arial", sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:14px;
  8013. letter-spacing:normal;
  8014. color:#AAAAAA;
  8015. vertical-align:none;
  8016. text-align:left;
  8017. text-transform:none;
  8018. background-color:transparent;
  8019. border-color:transparent;
  8020. }
  8021. #u19708_input.disabled {
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:134px;
  8026. height:23px;
  8027. padding:2px 2px 2px 2px;
  8028. font-family:"ArialMT", "Arial", sans-serif;
  8029. font-weight:400;
  8030. font-style:normal;
  8031. font-size:14px;
  8032. letter-spacing:normal;
  8033. color:#AAAAAA;
  8034. vertical-align:none;
  8035. text-align:left;
  8036. text-transform:none;
  8037. background-color:transparent;
  8038. border-color:transparent;
  8039. }
  8040. #u19708_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:134px;
  8046. height:23px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 1);
  8049. border-radius:0px;
  8050. filter:drop-shadow(none);
  8051. transition:none;
  8052. font-size:14px;
  8053. color:#AAAAAA;
  8054. }
  8055. #u19708 {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:354px;
  8059. top:188px;
  8060. width:134px;
  8061. height:23px;
  8062. display:flex;
  8063. transition:none;
  8064. transform-origin:50% 50%;
  8065. font-size:14px;
  8066. color:#AAAAAA;
  8067. }
  8068. #u19708 .text {
  8069. position:absolute;
  8070. align-self:flex-start;
  8071. padding:2px 2px 2px 2px;
  8072. box-sizing:border-box;
  8073. width:100%;
  8074. }
  8075. #u19708_div.disabled {
  8076. border-width:0px;
  8077. position:absolute;
  8078. left:0px;
  8079. top:0px;
  8080. width:134px;
  8081. height:23px;
  8082. background:inherit;
  8083. background-color:rgba(240, 240, 240, 1);
  8084. border-radius:0px;
  8085. filter:drop-shadow(none);
  8086. transition:none;
  8087. font-size:14px;
  8088. color:#AAAAAA;
  8089. }
  8090. #u19708.disabled {
  8091. }
  8092. .u19708_input_option {
  8093. font-size:14px;
  8094. }