styles.css 149 KB

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