styles.css 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u24088 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u24089_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. #u24089 {
  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. #u24089 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u24089_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u24090_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. #u24090 {
  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. #u24090 .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. #u24090_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u24091_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. #u24091 {
  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. #u24091 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u24091_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u24092 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u24093 {
  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. #u24093 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u24093_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u24093_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u24094_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. #u24094 {
  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. #u24094 .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. #u24094_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u24095_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. #u24095 {
  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. #u24095 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u24095_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u24096 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u24097_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. #u24097 {
  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. #u24097 .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. #u24097_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u24098 {
  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. #u24098 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u24098_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u24098_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u24099 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u24100_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. #u24100 {
  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. #u24100 .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. #u24100_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u24101 {
  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. #u24101 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u24101_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u24101_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u24102 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u24103_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. #u24103 {
  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. #u24103 .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. #u24103_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u24104 {
  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. #u24104 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u24104_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u24104_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u24105 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u24106_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. #u24106 {
  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. #u24106 .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. #u24106_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u24107 {
  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. #u24107 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u24107_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u24107_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u24108 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u24109_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. #u24109 {
  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. #u24109 .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. #u24109_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u24110 {
  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. #u24110 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u24110_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u24110_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u24111 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u24112_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. #u24112 {
  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. #u24112 .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. #u24112_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u24113 {
  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. #u24113 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u24113_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u24113_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u24114 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u24115_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. #u24115 {
  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. #u24115 .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. #u24115_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u24116 {
  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. #u24116 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u24116_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u24116_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u24117 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u24118_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. #u24118 {
  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. #u24118 .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. #u24118_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u24119 {
  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. #u24119 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u24119_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u24119_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u24120 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u24121_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. #u24121 {
  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. #u24121 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u24121_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u24122 {
  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. #u24122 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u24122_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u24122_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u24123 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u24124_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. #u24124 {
  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. #u24124 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u24124_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u24125 {
  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. #u24125 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u24125_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u24125_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u24126 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u24127_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. #u24127 {
  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. #u24127 .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. #u24127_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u24128 {
  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. #u24128 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u24128_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u24128_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u24129 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u24130_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. #u24130_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. #u24130_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. #u24130 {
  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. #u24130 .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. #u24130_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. #u24130.disabled {
  1294. }
  1295. .u24130_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u24131 {
  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. #u24131 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u24131_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u24131_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u24132_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. #u24132 {
  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. #u24132 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u24132_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u24133 {
  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. #u24133 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u24133_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u24133_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u24134 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u24135_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. #u24135 {
  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. #u24135 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u24135_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u24136 {
  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. #u24136 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u24136_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u24136_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u24137 {
  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. #u24137 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u24137_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u24137_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u24138 {
  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. #u24138 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u24138_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u24138_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u24139 {
  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. #u24139 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u24139_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u24139_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u24140 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u24141_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. #u24141 {
  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. #u24141 .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. #u24141_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u24142 {
  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. #u24142 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u24142_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u24142_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u24143_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1260px;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1680. font-weight:400;
  1681. font-style:normal;
  1682. font-size:12px;
  1683. color:#FFFFFF;
  1684. text-align:left;
  1685. }
  1686. #u24143 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:330px;
  1690. top:50px;
  1691. width:1260px;
  1692. height:1180px;
  1693. display:flex;
  1694. transition:none;
  1695. transform-origin:50% 50%;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:12px;
  1700. color:#FFFFFF;
  1701. text-align:left;
  1702. }
  1703. #u24143 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 50px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u24143_text {
  1711. border-width:0px;
  1712. word-wrap:break-word;
  1713. text-transform:none;
  1714. visibility:hidden;
  1715. }
  1716. #u24144_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:73px;
  1722. height:50px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 0);
  1725. border-left:0px;
  1726. border-top:0px;
  1727. border-right:0px;
  1728. border-radius:0px;
  1729. border-bottom-right-radius:0px;
  1730. border-bottom-left-radius:0px;
  1731. filter:drop-shadow(none);
  1732. transition:none;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:18px;
  1737. }
  1738. #u24144 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:349px;
  1742. top:50px;
  1743. width:73px;
  1744. height:50px;
  1745. display:flex;
  1746. transition:none;
  1747. transform-origin:50% 50%;
  1748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. font-size:18px;
  1752. }
  1753. #u24144 .text {
  1754. position:absolute;
  1755. align-self:center;
  1756. padding:0px 0px 0px 0px;
  1757. box-sizing:border-box;
  1758. width:100%;
  1759. }
  1760. #u24144_text {
  1761. border-width:0px;
  1762. white-space:nowrap;
  1763. text-transform:none;
  1764. }
  1765. #u24145 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:349px;
  1769. top:231px;
  1770. width:1222px;
  1771. height:322px;
  1772. }
  1773. #u24146 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:108px;
  1779. height:38px;
  1780. display:flex;
  1781. transition:none;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:12px;
  1786. color:#FFFFFF;
  1787. }
  1788. #u24146 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:2px 2px 2px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u24146_img {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:108px;
  1801. height:38px;
  1802. }
  1803. #u24146_text {
  1804. border-width:0px;
  1805. word-wrap:break-word;
  1806. text-transform:none;
  1807. }
  1808. #u24147 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:108px;
  1812. top:0px;
  1813. width:153px;
  1814. height:38px;
  1815. display:flex;
  1816. transition:none;
  1817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1818. font-weight:400;
  1819. font-style:normal;
  1820. font-size:12px;
  1821. color:#FFFFFF;
  1822. }
  1823. #u24147 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:2px 2px 2px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u24147_img {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:153px;
  1836. height:38px;
  1837. }
  1838. #u24147_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. }
  1843. #u24148 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:260px;
  1847. top:0px;
  1848. width:323px;
  1849. height:38px;
  1850. display:flex;
  1851. transition:none;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:12px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u24148 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u24148_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:323px;
  1871. height:38px;
  1872. }
  1873. #u24148_text {
  1874. border-width:0px;
  1875. word-wrap:break-word;
  1876. text-transform:none;
  1877. }
  1878. #u24149 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:583px;
  1882. top:0px;
  1883. width:126px;
  1884. height:38px;
  1885. display:flex;
  1886. transition:none;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:12px;
  1891. color:#FFFFFF;
  1892. }
  1893. #u24149 .text {
  1894. position:absolute;
  1895. align-self:center;
  1896. padding:2px 2px 2px 0px;
  1897. box-sizing:border-box;
  1898. width:100%;
  1899. }
  1900. #u24149_img {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:126px;
  1906. height:38px;
  1907. }
  1908. #u24149_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. }
  1913. #u24150 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:709px;
  1917. top:0px;
  1918. width:126px;
  1919. height:38px;
  1920. display:flex;
  1921. transition:none;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:12px;
  1926. color:#FFFFFF;
  1927. }
  1928. #u24150 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:2px 2px 2px 0px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u24150_img {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:126px;
  1941. height:38px;
  1942. }
  1943. #u24150_text {
  1944. border-width:0px;
  1945. word-wrap:break-word;
  1946. text-transform:none;
  1947. }
  1948. #u24151 {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:835px;
  1952. top:0px;
  1953. width:153px;
  1954. height:38px;
  1955. display:flex;
  1956. transition:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:12px;
  1961. color:#FFFFFF;
  1962. }
  1963. #u24151 .text {
  1964. position:absolute;
  1965. align-self:center;
  1966. padding:2px 2px 2px 0px;
  1967. box-sizing:border-box;
  1968. width:100%;
  1969. }
  1970. #u24151_img {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:153px;
  1976. height:38px;
  1977. }
  1978. #u24151_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. }
  1983. #u24152 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:988px;
  1987. top:0px;
  1988. width:153px;
  1989. height:38px;
  1990. display:flex;
  1991. transition:none;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:12px;
  1996. color:#FFFFFF;
  1997. }
  1998. #u24152 .text {
  1999. position:absolute;
  2000. align-self:center;
  2001. padding:2px 2px 2px 0px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u24152_img {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:153px;
  2011. height:38px;
  2012. }
  2013. #u24152_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. }
  2018. #u24153 {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:1141px;
  2022. top:0px;
  2023. width:81px;
  2024. height:38px;
  2025. display:flex;
  2026. transition:none;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:12px;
  2031. color:#FFFFFF;
  2032. }
  2033. #u24153 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u24153_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:81px;
  2046. height:38px;
  2047. }
  2048. #u24153_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u24154 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:38px;
  2058. width:108px;
  2059. height:38px;
  2060. display:flex;
  2061. transition:none;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:12px;
  2066. color:#333333;
  2067. }
  2068. #u24154 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 0px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u24154_img {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:108px;
  2081. height:38px;
  2082. }
  2083. #u24154_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. visibility:hidden;
  2088. }
  2089. #u24155 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:108px;
  2093. top:38px;
  2094. width:153px;
  2095. height:38px;
  2096. display:flex;
  2097. transition:none;
  2098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2099. font-weight:400;
  2100. font-style:normal;
  2101. font-size:12px;
  2102. color:#333333;
  2103. }
  2104. #u24155 .text {
  2105. position:absolute;
  2106. align-self:center;
  2107. padding:2px 2px 2px 0px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u24155_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:153px;
  2117. height:38px;
  2118. }
  2119. #u24155_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. visibility:hidden;
  2124. }
  2125. #u24156 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:260px;
  2129. top:38px;
  2130. width:323px;
  2131. height:38px;
  2132. display:flex;
  2133. transition:none;
  2134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2135. font-weight:400;
  2136. font-style:normal;
  2137. font-size:12px;
  2138. color:#333333;
  2139. }
  2140. #u24156 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 0px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u24156_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:323px;
  2153. height:38px;
  2154. }
  2155. #u24156_text {
  2156. border-width:0px;
  2157. word-wrap:break-word;
  2158. text-transform:none;
  2159. }
  2160. #u24157 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:583px;
  2164. top:38px;
  2165. width:126px;
  2166. height:38px;
  2167. display:flex;
  2168. transition:none;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. font-size:12px;
  2173. color:#333333;
  2174. }
  2175. #u24157 .text {
  2176. position:absolute;
  2177. align-self:center;
  2178. padding:2px 2px 2px 0px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u24157_img {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:126px;
  2188. height:38px;
  2189. }
  2190. #u24157_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. visibility:hidden;
  2195. }
  2196. #u24158 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:709px;
  2200. top:38px;
  2201. width:126px;
  2202. height:38px;
  2203. display:flex;
  2204. transition:none;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:12px;
  2209. color:#333333;
  2210. }
  2211. #u24158 .text {
  2212. position:absolute;
  2213. align-self:center;
  2214. padding:2px 2px 2px 0px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u24158_img {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:126px;
  2224. height:38px;
  2225. }
  2226. #u24158_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u24159 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:835px;
  2236. top:38px;
  2237. width:153px;
  2238. height:38px;
  2239. display:flex;
  2240. transition:none;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:12px;
  2245. color:#333333;
  2246. }
  2247. #u24159 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 0px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u24159_img {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:0px;
  2258. top:0px;
  2259. width:153px;
  2260. height:38px;
  2261. }
  2262. #u24159_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. visibility:hidden;
  2267. }
  2268. #u24160 {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:988px;
  2272. top:38px;
  2273. width:153px;
  2274. height:38px;
  2275. display:flex;
  2276. transition:none;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. color:#333333;
  2282. }
  2283. #u24160 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 0px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u24160_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:153px;
  2296. height:38px;
  2297. }
  2298. #u24160_text {
  2299. border-width:0px;
  2300. word-wrap:break-word;
  2301. text-transform:none;
  2302. visibility:hidden;
  2303. }
  2304. #u24161 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:1141px;
  2308. top:38px;
  2309. width:81px;
  2310. height:38px;
  2311. display:flex;
  2312. transition:none;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:12px;
  2317. color:#0089FE;
  2318. }
  2319. #u24161 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 0px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u24161_img {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:81px;
  2332. height:38px;
  2333. }
  2334. #u24161_text {
  2335. border-width:0px;
  2336. word-wrap:break-word;
  2337. text-transform:none;
  2338. }
  2339. #u24162 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:76px;
  2344. width:108px;
  2345. height:38px;
  2346. display:flex;
  2347. transition:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:12px;
  2352. color:#333333;
  2353. }
  2354. #u24162 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u24162_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:108px;
  2367. height:38px;
  2368. }
  2369. #u24162_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u24163 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:108px;
  2379. top:76px;
  2380. width:153px;
  2381. height:38px;
  2382. display:flex;
  2383. transition:none;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. color:#333333;
  2389. }
  2390. #u24163 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u24163_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:153px;
  2403. height:38px;
  2404. }
  2405. #u24163_text {
  2406. border-width:0px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. visibility:hidden;
  2410. }
  2411. #u24164 {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:260px;
  2415. top:76px;
  2416. width:323px;
  2417. height:38px;
  2418. display:flex;
  2419. transition:none;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:12px;
  2424. color:#333333;
  2425. }
  2426. #u24164 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 0px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u24164_img {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:323px;
  2439. height:38px;
  2440. }
  2441. #u24164_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u24165 {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:583px;
  2451. top:76px;
  2452. width:126px;
  2453. height:38px;
  2454. display:flex;
  2455. transition:none;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:12px;
  2460. color:#333333;
  2461. }
  2462. #u24165 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:2px 2px 2px 0px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u24165_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:126px;
  2475. height:38px;
  2476. }
  2477. #u24165_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u24166 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:709px;
  2487. top:76px;
  2488. width:126px;
  2489. height:38px;
  2490. display:flex;
  2491. transition:none;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. color:#333333;
  2497. }
  2498. #u24166 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u24166_img {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:126px;
  2511. height:38px;
  2512. }
  2513. #u24166_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. visibility:hidden;
  2518. }
  2519. #u24167 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:835px;
  2523. top:76px;
  2524. width:153px;
  2525. height:38px;
  2526. display:flex;
  2527. transition:none;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:12px;
  2532. color:#333333;
  2533. }
  2534. #u24167 .text {
  2535. position:absolute;
  2536. align-self:center;
  2537. padding:2px 2px 2px 0px;
  2538. box-sizing:border-box;
  2539. width:100%;
  2540. }
  2541. #u24167_img {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:153px;
  2547. height:38px;
  2548. }
  2549. #u24167_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. visibility:hidden;
  2554. }
  2555. #u24168 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:988px;
  2559. top:76px;
  2560. width:153px;
  2561. height:38px;
  2562. display:flex;
  2563. transition:none;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. color:#333333;
  2569. }
  2570. #u24168 .text {
  2571. position:absolute;
  2572. align-self:center;
  2573. padding:2px 2px 2px 0px;
  2574. box-sizing:border-box;
  2575. width:100%;
  2576. }
  2577. #u24168_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:153px;
  2583. height:38px;
  2584. }
  2585. #u24168_text {
  2586. border-width:0px;
  2587. word-wrap:break-word;
  2588. text-transform:none;
  2589. visibility:hidden;
  2590. }
  2591. #u24169 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:1141px;
  2595. top:76px;
  2596. width:81px;
  2597. height:38px;
  2598. display:flex;
  2599. transition:none;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:12px;
  2604. color:#0089FE;
  2605. }
  2606. #u24169 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:2px 2px 2px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u24169_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:81px;
  2619. height:38px;
  2620. }
  2621. #u24169_text {
  2622. border-width:0px;
  2623. word-wrap:break-word;
  2624. text-transform:none;
  2625. }
  2626. #u24170 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:114px;
  2631. width:108px;
  2632. height:38px;
  2633. display:flex;
  2634. transition:none;
  2635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2636. font-weight:400;
  2637. font-style:normal;
  2638. font-size:12px;
  2639. color:#333333;
  2640. }
  2641. #u24170 .text {
  2642. position:absolute;
  2643. align-self:center;
  2644. padding:2px 2px 2px 0px;
  2645. box-sizing:border-box;
  2646. width:100%;
  2647. }
  2648. #u24170_img {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:108px;
  2654. height:38px;
  2655. }
  2656. #u24170_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. visibility:hidden;
  2661. }
  2662. #u24171 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:108px;
  2666. top:114px;
  2667. width:153px;
  2668. height:38px;
  2669. display:flex;
  2670. transition:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. color:#333333;
  2676. }
  2677. #u24171 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u24171_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:153px;
  2690. height:38px;
  2691. }
  2692. #u24171_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. visibility:hidden;
  2697. }
  2698. #u24172 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:260px;
  2702. top:114px;
  2703. width:323px;
  2704. height:38px;
  2705. display:flex;
  2706. transition:none;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#333333;
  2712. }
  2713. #u24172 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u24172_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:323px;
  2726. height:38px;
  2727. }
  2728. #u24172_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u24173 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:583px;
  2738. top:114px;
  2739. width:126px;
  2740. height:38px;
  2741. display:flex;
  2742. transition:none;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#333333;
  2748. }
  2749. #u24173 .text {
  2750. position:absolute;
  2751. align-self:center;
  2752. padding:2px 2px 2px 0px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u24173_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:126px;
  2762. height:38px;
  2763. }
  2764. #u24173_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. visibility:hidden;
  2769. }
  2770. #u24174 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:709px;
  2774. top:114px;
  2775. width:126px;
  2776. height:38px;
  2777. display:flex;
  2778. transition:none;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#333333;
  2784. }
  2785. #u24174 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 0px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u24174_img {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:126px;
  2798. height:38px;
  2799. }
  2800. #u24174_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. visibility:hidden;
  2805. }
  2806. #u24175 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:835px;
  2810. top:114px;
  2811. width:153px;
  2812. height:38px;
  2813. display:flex;
  2814. transition:none;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. color:#333333;
  2820. }
  2821. #u24175 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u24175_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:153px;
  2834. height:38px;
  2835. }
  2836. #u24175_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u24176 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:988px;
  2846. top:114px;
  2847. width:153px;
  2848. height:38px;
  2849. display:flex;
  2850. transition:none;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:12px;
  2855. color:#333333;
  2856. }
  2857. #u24176 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:2px 2px 2px 0px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u24176_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:153px;
  2870. height:38px;
  2871. }
  2872. #u24176_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u24177 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:1141px;
  2882. top:114px;
  2883. width:81px;
  2884. height:38px;
  2885. display:flex;
  2886. transition:none;
  2887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:12px;
  2891. color:#0089FE;
  2892. }
  2893. #u24177 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 2px 2px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u24177_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:81px;
  2906. height:38px;
  2907. }
  2908. #u24177_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u24178 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:152px;
  2919. width:108px;
  2920. height:38px;
  2921. display:flex;
  2922. transition:none;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. color:#333333;
  2928. }
  2929. #u24178 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:2px 2px 2px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u24178_img {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:108px;
  2942. height:38px;
  2943. }
  2944. #u24178_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u24179 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:108px;
  2954. top:152px;
  2955. width:153px;
  2956. height:38px;
  2957. display:flex;
  2958. transition:none;
  2959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2960. font-weight:400;
  2961. font-style:normal;
  2962. font-size:12px;
  2963. color:#333333;
  2964. }
  2965. #u24179 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 0px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u24179_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:153px;
  2978. height:38px;
  2979. }
  2980. #u24179_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. visibility:hidden;
  2985. }
  2986. #u24180 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:260px;
  2990. top:152px;
  2991. width:323px;
  2992. height:38px;
  2993. display:flex;
  2994. transition:none;
  2995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2996. font-weight:400;
  2997. font-style:normal;
  2998. font-size:12px;
  2999. color:#333333;
  3000. }
  3001. #u24180 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 0px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u24180_img {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:323px;
  3014. height:38px;
  3015. }
  3016. #u24180_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. visibility:hidden;
  3021. }
  3022. #u24181 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:583px;
  3026. top:152px;
  3027. width:126px;
  3028. height:38px;
  3029. display:flex;
  3030. transition:none;
  3031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3032. font-weight:400;
  3033. font-style:normal;
  3034. font-size:12px;
  3035. color:#333333;
  3036. }
  3037. #u24181 .text {
  3038. position:absolute;
  3039. align-self:center;
  3040. padding:2px 2px 2px 0px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u24181_img {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:0px;
  3049. width:126px;
  3050. height:38px;
  3051. }
  3052. #u24181_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u24182 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:709px;
  3062. top:152px;
  3063. width:126px;
  3064. height:38px;
  3065. display:flex;
  3066. transition:none;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:12px;
  3071. color:#333333;
  3072. }
  3073. #u24182 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u24182_img {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:126px;
  3086. height:38px;
  3087. }
  3088. #u24182_text {
  3089. border-width:0px;
  3090. word-wrap:break-word;
  3091. text-transform:none;
  3092. visibility:hidden;
  3093. }
  3094. #u24183 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:835px;
  3098. top:152px;
  3099. width:153px;
  3100. height:38px;
  3101. display:flex;
  3102. transition:none;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:12px;
  3107. color:#333333;
  3108. }
  3109. #u24183 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 0px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u24183_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:153px;
  3122. height:38px;
  3123. }
  3124. #u24183_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u24184 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:988px;
  3134. top:152px;
  3135. width:153px;
  3136. height:38px;
  3137. display:flex;
  3138. transition:none;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:12px;
  3143. color:#333333;
  3144. }
  3145. #u24184 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 0px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u24184_img {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:153px;
  3158. height:38px;
  3159. }
  3160. #u24184_text {
  3161. border-width:0px;
  3162. word-wrap:break-word;
  3163. text-transform:none;
  3164. visibility:hidden;
  3165. }
  3166. #u24185 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:1141px;
  3170. top:152px;
  3171. width:81px;
  3172. height:38px;
  3173. display:flex;
  3174. transition:none;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:12px;
  3179. color:#AAAAAA;
  3180. }
  3181. #u24185 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 0px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u24185_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:81px;
  3194. height:38px;
  3195. }
  3196. #u24185_text {
  3197. border-width:0px;
  3198. word-wrap:break-word;
  3199. text-transform:none;
  3200. visibility:hidden;
  3201. }
  3202. #u24186 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:190px;
  3207. width:108px;
  3208. height:35px;
  3209. display:flex;
  3210. transition:none;
  3211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:12px;
  3215. color:#333333;
  3216. }
  3217. #u24186 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 2px 2px 0px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u24186_img {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:108px;
  3230. height:35px;
  3231. }
  3232. #u24186_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u24187 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:108px;
  3242. top:190px;
  3243. width:153px;
  3244. height:35px;
  3245. display:flex;
  3246. transition:none;
  3247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:12px;
  3251. color:#333333;
  3252. }
  3253. #u24187 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 0px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u24187_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:153px;
  3266. height:35px;
  3267. }
  3268. #u24187_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u24188 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:260px;
  3278. top:190px;
  3279. width:323px;
  3280. height:35px;
  3281. display:flex;
  3282. transition:none;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. color:#333333;
  3288. }
  3289. #u24188 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 0px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u24188_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:323px;
  3302. height:35px;
  3303. }
  3304. #u24188_text {
  3305. border-width:0px;
  3306. word-wrap:break-word;
  3307. text-transform:none;
  3308. visibility:hidden;
  3309. }
  3310. #u24189 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:583px;
  3314. top:190px;
  3315. width:126px;
  3316. height:35px;
  3317. display:flex;
  3318. transition:none;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:12px;
  3323. color:#333333;
  3324. }
  3325. #u24189 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u24189_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:126px;
  3338. height:35px;
  3339. }
  3340. #u24189_text {
  3341. border-width:0px;
  3342. word-wrap:break-word;
  3343. text-transform:none;
  3344. visibility:hidden;
  3345. }
  3346. #u24190 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:709px;
  3350. top:190px;
  3351. width:126px;
  3352. height:35px;
  3353. display:flex;
  3354. transition:none;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. color:#333333;
  3360. }
  3361. #u24190 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 0px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u24190_img {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:126px;
  3374. height:35px;
  3375. }
  3376. #u24190_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u24191 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:835px;
  3386. top:190px;
  3387. width:153px;
  3388. height:35px;
  3389. display:flex;
  3390. transition:none;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. color:#333333;
  3396. }
  3397. #u24191 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 2px 2px 0px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u24191_img {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:153px;
  3410. height:35px;
  3411. }
  3412. #u24191_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u24192 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:988px;
  3422. top:190px;
  3423. width:153px;
  3424. height:35px;
  3425. display:flex;
  3426. transition:none;
  3427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3428. font-weight:400;
  3429. font-style:normal;
  3430. font-size:12px;
  3431. color:#333333;
  3432. }
  3433. #u24192 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 0px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u24192_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:153px;
  3446. height:35px;
  3447. }
  3448. #u24192_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u24193 {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:1141px;
  3458. top:190px;
  3459. width:81px;
  3460. height:35px;
  3461. display:flex;
  3462. transition:none;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:12px;
  3467. color:#AAAAAA;
  3468. }
  3469. #u24193 .text {
  3470. position:absolute;
  3471. align-self:center;
  3472. padding:2px 2px 2px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u24193_img {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:81px;
  3482. height:35px;
  3483. }
  3484. #u24193_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u24194 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:225px;
  3495. width:108px;
  3496. height:35px;
  3497. display:flex;
  3498. transition:none;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. color:#333333;
  3504. }
  3505. #u24194 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u24194_img {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:108px;
  3518. height:35px;
  3519. }
  3520. #u24194_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u24195 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:108px;
  3530. top:225px;
  3531. width:153px;
  3532. height:35px;
  3533. display:flex;
  3534. transition:none;
  3535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3536. font-weight:400;
  3537. font-style:normal;
  3538. font-size:12px;
  3539. color:#333333;
  3540. }
  3541. #u24195 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 0px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u24195_img {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:153px;
  3554. height:35px;
  3555. }
  3556. #u24195_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u24196 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:260px;
  3566. top:225px;
  3567. width:323px;
  3568. height:35px;
  3569. display:flex;
  3570. transition:none;
  3571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:12px;
  3575. color:#333333;
  3576. }
  3577. #u24196 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:2px 2px 2px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u24196_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:323px;
  3590. height:35px;
  3591. }
  3592. #u24196_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u24197 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:583px;
  3602. top:225px;
  3603. width:126px;
  3604. height:35px;
  3605. display:flex;
  3606. transition:none;
  3607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3608. font-weight:400;
  3609. font-style:normal;
  3610. font-size:12px;
  3611. color:#333333;
  3612. }
  3613. #u24197 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 0px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. #u24197_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:126px;
  3626. height:35px;
  3627. }
  3628. #u24197_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u24198 {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:709px;
  3638. top:225px;
  3639. width:126px;
  3640. height:35px;
  3641. display:flex;
  3642. transition:none;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. color:#333333;
  3648. }
  3649. #u24198 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u24198_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:126px;
  3662. height:35px;
  3663. }
  3664. #u24198_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u24199 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:835px;
  3674. top:225px;
  3675. width:153px;
  3676. height:35px;
  3677. display:flex;
  3678. transition:none;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#333333;
  3684. }
  3685. #u24199 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u24199_img {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:153px;
  3698. height:35px;
  3699. }
  3700. #u24199_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u24200 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:988px;
  3710. top:225px;
  3711. width:153px;
  3712. height:35px;
  3713. display:flex;
  3714. transition:none;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:12px;
  3719. color:#333333;
  3720. }
  3721. #u24200 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 0px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u24200_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:153px;
  3734. height:35px;
  3735. }
  3736. #u24200_text {
  3737. border-width:0px;
  3738. word-wrap:break-word;
  3739. text-transform:none;
  3740. visibility:hidden;
  3741. }
  3742. #u24201 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:1141px;
  3746. top:225px;
  3747. width:81px;
  3748. height:35px;
  3749. display:flex;
  3750. transition:none;
  3751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:12px;
  3755. color:#333333;
  3756. }
  3757. #u24201 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 0px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u24201_img {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:81px;
  3770. height:35px;
  3771. }
  3772. #u24201_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. visibility:hidden;
  3777. }
  3778. #u24202 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:0px;
  3782. top:260px;
  3783. width:108px;
  3784. height:32px;
  3785. display:flex;
  3786. transition:none;
  3787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3788. font-weight:400;
  3789. font-style:normal;
  3790. font-size:12px;
  3791. color:#333333;
  3792. }
  3793. #u24202 .text {
  3794. position:absolute;
  3795. align-self:center;
  3796. padding:2px 2px 2px 0px;
  3797. box-sizing:border-box;
  3798. width:100%;
  3799. }
  3800. #u24202_img {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:108px;
  3806. height:32px;
  3807. }
  3808. #u24202_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. visibility:hidden;
  3813. }
  3814. #u24203 {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:108px;
  3818. top:260px;
  3819. width:153px;
  3820. height:32px;
  3821. display:flex;
  3822. transition:none;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:12px;
  3827. color:#333333;
  3828. }
  3829. #u24203 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u24203_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:153px;
  3842. height:32px;
  3843. }
  3844. #u24203_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u24204 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:260px;
  3854. top:260px;
  3855. width:323px;
  3856. height:32px;
  3857. display:flex;
  3858. transition:none;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#333333;
  3864. }
  3865. #u24204 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u24204_img {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:323px;
  3878. height:32px;
  3879. }
  3880. #u24204_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u24205 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:583px;
  3890. top:260px;
  3891. width:126px;
  3892. height:32px;
  3893. display:flex;
  3894. transition:none;
  3895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3896. font-weight:400;
  3897. font-style:normal;
  3898. font-size:12px;
  3899. color:#333333;
  3900. }
  3901. #u24205 .text {
  3902. position:absolute;
  3903. align-self:center;
  3904. padding:2px 2px 2px 0px;
  3905. box-sizing:border-box;
  3906. width:100%;
  3907. }
  3908. #u24205_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:126px;
  3914. height:32px;
  3915. }
  3916. #u24205_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u24206 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:709px;
  3926. top:260px;
  3927. width:126px;
  3928. height:32px;
  3929. display:flex;
  3930. transition:none;
  3931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3932. font-weight:400;
  3933. font-style:normal;
  3934. font-size:12px;
  3935. color:#333333;
  3936. }
  3937. #u24206 .text {
  3938. position:absolute;
  3939. align-self:center;
  3940. padding:2px 2px 2px 0px;
  3941. box-sizing:border-box;
  3942. width:100%;
  3943. }
  3944. #u24206_img {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:126px;
  3950. height:32px;
  3951. }
  3952. #u24206_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u24207 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:835px;
  3962. top:260px;
  3963. width:153px;
  3964. height:32px;
  3965. display:flex;
  3966. transition:none;
  3967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:12px;
  3971. color:#333333;
  3972. }
  3973. #u24207 .text {
  3974. position:absolute;
  3975. align-self:center;
  3976. padding:2px 2px 2px 0px;
  3977. box-sizing:border-box;
  3978. width:100%;
  3979. }
  3980. #u24207_img {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:153px;
  3986. height:32px;
  3987. }
  3988. #u24207_text {
  3989. border-width:0px;
  3990. word-wrap:break-word;
  3991. text-transform:none;
  3992. visibility:hidden;
  3993. }
  3994. #u24208 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:988px;
  3998. top:260px;
  3999. width:153px;
  4000. height:32px;
  4001. display:flex;
  4002. transition:none;
  4003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4004. font-weight:400;
  4005. font-style:normal;
  4006. font-size:12px;
  4007. color:#333333;
  4008. }
  4009. #u24208 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u24208_img {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:0px;
  4020. top:0px;
  4021. width:153px;
  4022. height:32px;
  4023. }
  4024. #u24208_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. visibility:hidden;
  4029. }
  4030. #u24209 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:1141px;
  4034. top:260px;
  4035. width:81px;
  4036. height:32px;
  4037. display:flex;
  4038. transition:none;
  4039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:12px;
  4043. color:#333333;
  4044. }
  4045. #u24209 .text {
  4046. position:absolute;
  4047. align-self:center;
  4048. padding:2px 2px 2px 0px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u24209_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:81px;
  4058. height:32px;
  4059. }
  4060. #u24209_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u24210 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:292px;
  4071. width:108px;
  4072. height:30px;
  4073. display:flex;
  4074. transition:none;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:12px;
  4079. color:#333333;
  4080. }
  4081. #u24210 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:2px 2px 2px 0px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u24210_img {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:108px;
  4094. height:30px;
  4095. }
  4096. #u24210_text {
  4097. border-width:0px;
  4098. word-wrap:break-word;
  4099. text-transform:none;
  4100. visibility:hidden;
  4101. }
  4102. #u24211 {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:108px;
  4106. top:292px;
  4107. width:153px;
  4108. height:30px;
  4109. display:flex;
  4110. transition:none;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:12px;
  4115. color:#333333;
  4116. }
  4117. #u24211 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u24211_img {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:153px;
  4130. height:30px;
  4131. }
  4132. #u24211_text {
  4133. border-width:0px;
  4134. word-wrap:break-word;
  4135. text-transform:none;
  4136. visibility:hidden;
  4137. }
  4138. #u24212 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:260px;
  4142. top:292px;
  4143. width:323px;
  4144. height:30px;
  4145. display:flex;
  4146. transition:none;
  4147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:12px;
  4151. color:#333333;
  4152. }
  4153. #u24212 .text {
  4154. position:absolute;
  4155. align-self:center;
  4156. padding:2px 2px 2px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u24212_img {
  4161. border-width:0px;
  4162. position:absolute;
  4163. left:0px;
  4164. top:0px;
  4165. width:323px;
  4166. height:30px;
  4167. }
  4168. #u24212_text {
  4169. border-width:0px;
  4170. word-wrap:break-word;
  4171. text-transform:none;
  4172. visibility:hidden;
  4173. }
  4174. #u24213 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:583px;
  4178. top:292px;
  4179. width:126px;
  4180. height:30px;
  4181. display:flex;
  4182. transition:none;
  4183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. color:#333333;
  4188. }
  4189. #u24213 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 2px 2px 0px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u24213_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:126px;
  4202. height:30px;
  4203. }
  4204. #u24213_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u24214 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:709px;
  4214. top:292px;
  4215. width:126px;
  4216. height:30px;
  4217. display:flex;
  4218. transition:none;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. font-size:12px;
  4223. color:#333333;
  4224. }
  4225. #u24214 .text {
  4226. position:absolute;
  4227. align-self:center;
  4228. padding:2px 2px 2px 0px;
  4229. box-sizing:border-box;
  4230. width:100%;
  4231. }
  4232. #u24214_img {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:126px;
  4238. height:30px;
  4239. }
  4240. #u24214_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. visibility:hidden;
  4245. }
  4246. #u24215 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:835px;
  4250. top:292px;
  4251. width:153px;
  4252. height:30px;
  4253. display:flex;
  4254. transition:none;
  4255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4256. font-weight:400;
  4257. font-style:normal;
  4258. font-size:12px;
  4259. color:#333333;
  4260. }
  4261. #u24215 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 0px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u24215_img {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:153px;
  4274. height:30px;
  4275. }
  4276. #u24215_text {
  4277. border-width:0px;
  4278. word-wrap:break-word;
  4279. text-transform:none;
  4280. visibility:hidden;
  4281. }
  4282. #u24216 {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:988px;
  4286. top:292px;
  4287. width:153px;
  4288. height:30px;
  4289. display:flex;
  4290. transition:none;
  4291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4292. font-weight:400;
  4293. font-style:normal;
  4294. font-size:12px;
  4295. color:#333333;
  4296. }
  4297. #u24216 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 0px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u24216_img {
  4305. border-width:0px;
  4306. position:absolute;
  4307. left:0px;
  4308. top:0px;
  4309. width:153px;
  4310. height:30px;
  4311. }
  4312. #u24216_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. visibility:hidden;
  4317. }
  4318. #u24217 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:1141px;
  4322. top:292px;
  4323. width:81px;
  4324. height:30px;
  4325. display:flex;
  4326. transition:none;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:12px;
  4331. color:#333333;
  4332. }
  4333. #u24217 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u24217_img {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:81px;
  4346. height:30px;
  4347. }
  4348. #u24217_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u24218 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:0px;
  4360. height:0px;
  4361. }
  4362. #u24219_div {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:59px;
  4368. height:30px;
  4369. background:inherit;
  4370. background-color:rgba(24, 144, 255, 1);
  4371. box-sizing:border-box;
  4372. border-width:1px;
  4373. border-style:solid;
  4374. border-color:rgba(0, 153, 255, 1);
  4375. border-radius:4px;
  4376. filter:drop-shadow(none);
  4377. transition:none;
  4378. font-family:"Microsoft YaHei", sans-serif;
  4379. font-weight:400;
  4380. font-style:normal;
  4381. font-size:14px;
  4382. color:#FFFFFF;
  4383. }
  4384. #u24219 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:647px;
  4388. top:142px;
  4389. width:59px;
  4390. height:30px;
  4391. display:flex;
  4392. transition:none;
  4393. transform-origin:50% 50%;
  4394. font-family:"Microsoft YaHei", sans-serif;
  4395. font-weight:400;
  4396. font-style:normal;
  4397. font-size:14px;
  4398. color:#FFFFFF;
  4399. }
  4400. #u24219 .text {
  4401. position:absolute;
  4402. align-self:center;
  4403. padding:5px 15px 5px 15px;
  4404. box-sizing:border-box;
  4405. width:100%;
  4406. }
  4407. #u24219_text {
  4408. border-width:0px;
  4409. white-space:nowrap;
  4410. text-transform:none;
  4411. }
  4412. #u24220_div {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:55px;
  4418. height:30px;
  4419. background:inherit;
  4420. background-color:rgba(255, 255, 255, 1);
  4421. box-sizing:border-box;
  4422. border-width:1px;
  4423. border-style:solid;
  4424. border-color:rgba(170, 170, 170, 1);
  4425. border-radius:4px;
  4426. filter:drop-shadow(none);
  4427. transition:none;
  4428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:12px;
  4432. color:#555555;
  4433. }
  4434. #u24220 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:716px;
  4438. top:142px;
  4439. width:55px;
  4440. height:30px;
  4441. display:flex;
  4442. transition:none;
  4443. transform-origin:50% 50%;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:12px;
  4448. color:#555555;
  4449. }
  4450. #u24220 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:5px 15px 5px 15px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u24220_text {
  4458. border-width:0px;
  4459. white-space:nowrap;
  4460. text-transform:none;
  4461. }
  4462. #u24221 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:0px;
  4467. width:0px;
  4468. height:0px;
  4469. }
  4470. #u24222_div {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:140px;
  4476. height:30px;
  4477. background:inherit;
  4478. background-color:rgba(255, 255, 255, 1);
  4479. box-sizing:border-box;
  4480. border-width:1px;
  4481. border-style:solid;
  4482. border-color:rgba(201, 201, 201, 1);
  4483. border-radius:4px;
  4484. filter:drop-shadow(none);
  4485. transition:none;
  4486. font-family:"Microsoft YaHei", sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:14px;
  4490. color:#CCCCCC;
  4491. text-align:left;
  4492. }
  4493. #u24222 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:497px;
  4497. top:141px;
  4498. width:140px;
  4499. height:30px;
  4500. display:flex;
  4501. transition:none;
  4502. transform-origin:50% 50%;
  4503. font-family:"Microsoft YaHei", sans-serif;
  4504. font-weight:400;
  4505. font-style:normal;
  4506. font-size:14px;
  4507. color:#CCCCCC;
  4508. text-align:left;
  4509. }
  4510. #u24222 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 8px 2px 8px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u24222_text {
  4518. border-width:0px;
  4519. word-wrap:break-word;
  4520. text-transform:none;
  4521. visibility:hidden;
  4522. }
  4523. #u24223_input {
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:127px;
  4528. height:25px;
  4529. padding:2px 2px 2px 2px;
  4530. font-family:"Microsoft YaHei", sans-serif;
  4531. font-weight:400;
  4532. font-style:normal;
  4533. font-size:10px;
  4534. letter-spacing:normal;
  4535. color:#000000;
  4536. vertical-align:none;
  4537. text-align:left;
  4538. text-transform:none;
  4539. background-color:transparent;
  4540. border-color:transparent;
  4541. }
  4542. #u24223_input.hint {
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:127px;
  4547. height:25px;
  4548. padding:2px 2px 2px 2px;
  4549. font-family:"Microsoft YaHei", sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. letter-spacing:normal;
  4554. color:#AAAAAA;
  4555. vertical-align:none;
  4556. text-align:left;
  4557. text-transform:none;
  4558. background-color:transparent;
  4559. border-color:transparent;
  4560. }
  4561. #u24223_input.disabled {
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:127px;
  4566. height:25px;
  4567. padding:2px 2px 2px 2px;
  4568. font-family:"Microsoft YaHei", sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:10px;
  4572. letter-spacing:normal;
  4573. color:#000000;
  4574. vertical-align:none;
  4575. text-align:left;
  4576. text-transform:none;
  4577. background-color:transparent;
  4578. border-color:transparent;
  4579. }
  4580. #u24223_input.hint.disabled {
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:127px;
  4585. height:25px;
  4586. padding:2px 2px 2px 2px;
  4587. font-family:"Microsoft YaHei", sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:12px;
  4591. letter-spacing:normal;
  4592. color:#AAAAAA;
  4593. vertical-align:none;
  4594. text-align:left;
  4595. text-transform:none;
  4596. background-color:transparent;
  4597. border-color:transparent;
  4598. }
  4599. #u24223_div {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:127px;
  4605. height:25px;
  4606. background:inherit;
  4607. background-color:rgba(255, 255, 255, 1);
  4608. border-radius:0px;
  4609. filter:drop-shadow(none);
  4610. transition:none;
  4611. font-family:"Microsoft YaHei", sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:10px;
  4615. }
  4616. #u24223 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:505px;
  4620. top:142px;
  4621. width:127px;
  4622. height:25px;
  4623. display:flex;
  4624. transition:none;
  4625. transform-origin:50% 50%;
  4626. font-family:"Microsoft YaHei", sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:10px;
  4630. }
  4631. #u24223 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 2px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u24223_div.hint {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:127px;
  4644. height:25px;
  4645. background:inherit;
  4646. background-color:rgba(255, 255, 255, 1);
  4647. border-radius:0px;
  4648. filter:drop-shadow(none);
  4649. transition:none;
  4650. font-family:"Microsoft YaHei", sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:10px;
  4654. }
  4655. #u24223.hint {
  4656. }
  4657. #u24223_div.disabled {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:127px;
  4663. height:25px;
  4664. background:inherit;
  4665. background-color:rgba(240, 240, 240, 1);
  4666. border-radius:0px;
  4667. filter:drop-shadow(none);
  4668. transition:none;
  4669. font-family:"Microsoft YaHei", sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:10px;
  4673. }
  4674. #u24223.disabled {
  4675. }
  4676. #u24223_div.hint.disabled {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:127px;
  4682. height:25px;
  4683. background:inherit;
  4684. background-color:rgba(240, 240, 240, 1);
  4685. border-radius:0px;
  4686. filter:drop-shadow(none);
  4687. transition:none;
  4688. font-family:"Microsoft YaHei", sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:10px;
  4692. }
  4693. #u24223.hint.disabled {
  4694. }
  4695. #u24224_div {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:60px;
  4701. height:30px;
  4702. background:inherit;
  4703. background-color:rgba(24, 144, 255, 1);
  4704. box-sizing:border-box;
  4705. border-width:1px;
  4706. border-style:solid;
  4707. border-color:rgba(0, 153, 255, 1);
  4708. border-radius:4px;
  4709. filter:drop-shadow(none);
  4710. transition:none;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:14px;
  4715. color:#FFFFFF;
  4716. }
  4717. #u24224 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:349px;
  4721. top:191px;
  4722. width:60px;
  4723. height:30px;
  4724. display:flex;
  4725. transition:none;
  4726. transform-origin:50% 50%;
  4727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:14px;
  4731. color:#FFFFFF;
  4732. }
  4733. #u24224 .text {
  4734. position:absolute;
  4735. align-self:center;
  4736. padding:5px 0px 5px 0px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u24224_text {
  4741. border-width:0px;
  4742. word-wrap:break-word;
  4743. text-transform:none;
  4744. }
  4745. #u24225 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:0px;
  4751. height:0px;
  4752. }
  4753. #u24226_div {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:140px;
  4759. height:30px;
  4760. background:inherit;
  4761. background-color:rgba(255, 255, 255, 1);
  4762. box-sizing:border-box;
  4763. border-width:1px;
  4764. border-style:solid;
  4765. border-color:rgba(215, 215, 215, 1);
  4766. border-radius:4px;
  4767. filter:drop-shadow(none);
  4768. transition:none;
  4769. font-size:11px;
  4770. }
  4771. #u24226 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:347px;
  4775. top:142px;
  4776. width:140px;
  4777. height:30px;
  4778. display:flex;
  4779. transition:none;
  4780. transform-origin:50% 50%;
  4781. font-size:11px;
  4782. }
  4783. #u24226 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u24226_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u24227_input {
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:126px;
  4801. height:23px;
  4802. padding:2px 2px 2px 2px;
  4803. font-family:'ArialMT', 'Arial', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:11px;
  4807. letter-spacing:normal;
  4808. color:#AAAAAA;
  4809. vertical-align:none;
  4810. text-align:left;
  4811. text-transform:none;
  4812. background-color:transparent;
  4813. border-color:transparent;
  4814. }
  4815. #u24227_input.disabled {
  4816. position:absolute;
  4817. left:0px;
  4818. top:0px;
  4819. width:126px;
  4820. height:23px;
  4821. padding:2px 2px 2px 2px;
  4822. font-family:'ArialMT', 'Arial', sans-serif;
  4823. font-weight:400;
  4824. font-style:normal;
  4825. font-size:11px;
  4826. letter-spacing:normal;
  4827. color:#AAAAAA;
  4828. vertical-align:none;
  4829. text-align:left;
  4830. text-transform:none;
  4831. background-color:transparent;
  4832. border-color:transparent;
  4833. }
  4834. #u24227_div {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:126px;
  4840. height:23px;
  4841. background:inherit;
  4842. background-color:rgba(255, 255, 255, 1);
  4843. border-radius:0px;
  4844. filter:drop-shadow(none);
  4845. transition:none;
  4846. font-size:11px;
  4847. color:#AAAAAA;
  4848. }
  4849. #u24227 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:354px;
  4853. top:144px;
  4854. width:126px;
  4855. height:23px;
  4856. display:flex;
  4857. transition:none;
  4858. transform-origin:50% 50%;
  4859. font-size:11px;
  4860. color:#AAAAAA;
  4861. }
  4862. #u24227 .text {
  4863. position:absolute;
  4864. align-self:flex-start;
  4865. padding:2px 2px 2px 2px;
  4866. box-sizing:border-box;
  4867. width:100%;
  4868. }
  4869. #u24227_div.disabled {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:126px;
  4875. height:23px;
  4876. background:inherit;
  4877. background-color:rgba(240, 240, 240, 1);
  4878. border-radius:0px;
  4879. filter:drop-shadow(none);
  4880. transition:none;
  4881. font-size:11px;
  4882. color:#AAAAAA;
  4883. }
  4884. #u24227.disabled {
  4885. }
  4886. .u24227_input_option {
  4887. font-size:11px;
  4888. }
  4889. #u24228 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:120px;
  4893. top:50px;
  4894. width:200px;
  4895. height:1180px;
  4896. }
  4897. #u24229_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:200px;
  4903. height:1180px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 1);
  4906. border-radius:0px;
  4907. filter:drop-shadow(none);
  4908. transition:none;
  4909. }
  4910. #u24229 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:200px;
  4916. height:1180px;
  4917. display:flex;
  4918. transition:none;
  4919. transform-origin:50% 50%;
  4920. }
  4921. #u24229 .text {
  4922. position:absolute;
  4923. align-self:center;
  4924. padding:2px 2px 2px 2px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u24229_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. visibility:hidden;
  4933. }
  4934. #u24230_div {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:200px;
  4940. height:60px;
  4941. background:inherit;
  4942. background-color:rgba(224, 231, 247, 1);
  4943. border-radius:0px;
  4944. filter:drop-shadow(none);
  4945. transition:none;
  4946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4947. font-weight:500;
  4948. font-style:normal;
  4949. font-size:18px;
  4950. }
  4951. #u24230 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:0px;
  4955. top:0px;
  4956. width:200px;
  4957. height:60px;
  4958. display:flex;
  4959. transition:none;
  4960. transform-origin:50% 50%;
  4961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4962. font-weight:500;
  4963. font-style:normal;
  4964. font-size:18px;
  4965. }
  4966. #u24230 .text {
  4967. position:absolute;
  4968. align-self:center;
  4969. padding:0px 0px 0px 20px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u24230_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. }
  4978. #u24231_div {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:0px;
  4982. top:0px;
  4983. width:65px;
  4984. height:22px;
  4985. background:inherit;
  4986. background-color:rgba(255, 255, 255, 0);
  4987. border-radius:0px;
  4988. filter:drop-shadow(none);
  4989. transition:none;
  4990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:16px;
  4994. }
  4995. #u24231 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:27px;
  4999. top:120px;
  5000. width:65px;
  5001. height:22px;
  5002. display:flex;
  5003. transition:none;
  5004. transform-origin:50% 50%;
  5005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5006. font-weight:400;
  5007. font-style:normal;
  5008. font-size:16px;
  5009. }
  5010. #u24231 .text {
  5011. position:absolute;
  5012. align-self:flex-start;
  5013. padding:0px 0px 0px 0px;
  5014. box-sizing:border-box;
  5015. width:100%;
  5016. }
  5017. #u24231_text {
  5018. border-width:0px;
  5019. white-space:nowrap;
  5020. text-transform:none;
  5021. }
  5022. #u24232_div {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:65px;
  5028. height:22px;
  5029. background:inherit;
  5030. background-color:rgba(255, 255, 255, 0);
  5031. border-radius:0px;
  5032. filter:drop-shadow(none);
  5033. transition:none;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:16px;
  5038. }
  5039. #u24232 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:27px;
  5043. top:162px;
  5044. width:65px;
  5045. height:22px;
  5046. display:flex;
  5047. transition:none;
  5048. transform-origin:50% 50%;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:16px;
  5053. }
  5054. #u24232 .text {
  5055. position:absolute;
  5056. align-self:flex-start;
  5057. padding:0px 0px 0px 0px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u24232_text {
  5062. border-width:0px;
  5063. white-space:nowrap;
  5064. text-transform:none;
  5065. }
  5066. #u24233_div {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:0px;
  5070. top:0px;
  5071. width:49px;
  5072. height:17px;
  5073. background:inherit;
  5074. background-color:rgba(255, 255, 255, 0);
  5075. border-radius:0px;
  5076. filter:drop-shadow(none);
  5077. transition:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:12px;
  5082. color:#AAAAAA;
  5083. }
  5084. #u24233 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:27px;
  5088. top:80px;
  5089. width:49px;
  5090. height:17px;
  5091. display:flex;
  5092. transition:none;
  5093. transform-origin:50% 50%;
  5094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:12px;
  5098. color:#AAAAAA;
  5099. }
  5100. #u24233 .text {
  5101. position:absolute;
  5102. align-self:flex-start;
  5103. padding:0px 0px 0px 0px;
  5104. box-sizing:border-box;
  5105. width:100%;
  5106. }
  5107. #u24233_text {
  5108. border-width:0px;
  5109. white-space:nowrap;
  5110. text-transform:none;
  5111. }
  5112. #u24234_div {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:183px;
  5118. height:20px;
  5119. background:inherit;
  5120. background-color:rgba(255, 255, 255, 0);
  5121. border-left:0px;
  5122. border-top:0px;
  5123. border-right:0px;
  5124. border-radius:0px;
  5125. border-bottom-right-radius:0px;
  5126. border-bottom-left-radius:0px;
  5127. filter:drop-shadow(none);
  5128. transition:none;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:14px;
  5133. color:#7F7F7F;
  5134. }
  5135. #u24234 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:352px;
  5139. top:100px;
  5140. width:183px;
  5141. height:20px;
  5142. display:flex;
  5143. transition:none;
  5144. transform-origin:50% 50%;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:14px;
  5149. color:#7F7F7F;
  5150. }
  5151. #u24234 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:0px 0px 0px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u24234_text {
  5159. border-width:0px;
  5160. white-space:nowrap;
  5161. text-transform:none;
  5162. }
  5163. #u24235 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:961px;
  5167. top:1183px;
  5168. width:600px;
  5169. height:30px;
  5170. }
  5171. #u24236 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:0px;
  5177. height:0px;
  5178. }
  5179. #u24237_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:30px;
  5185. height:30px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 1);
  5188. box-sizing:border-box;
  5189. border-width:1px;
  5190. border-style:solid;
  5191. border-color:rgba(228, 228, 228, 1);
  5192. border-radius:4px;
  5193. filter:drop-shadow(none);
  5194. transition:none;
  5195. font-family:"Microsoft YaHei", sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:14px;
  5199. }
  5200. #u24237 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:35px;
  5204. top:0px;
  5205. width:30px;
  5206. height:30px;
  5207. display:flex;
  5208. transition:none;
  5209. transform-origin:50% 50%;
  5210. font-family:"Microsoft YaHei", sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:14px;
  5214. }
  5215. #u24237 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 2px 2px 2px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u24237_text {
  5223. border-width:0px;
  5224. word-wrap:break-word;
  5225. text-transform:none;
  5226. }
  5227. #u24238_div {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:0px;
  5231. top:0px;
  5232. width:49px;
  5233. height:30px;
  5234. background:inherit;
  5235. background-color:rgba(255, 255, 255, 0);
  5236. box-sizing:border-box;
  5237. border-width:1px;
  5238. border-style:solid;
  5239. border-color:rgba(188, 188, 188, 1);
  5240. border-radius:4px;
  5241. filter:drop-shadow(none);
  5242. transition:none;
  5243. font-family:"Microsoft YaHei", sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:14px;
  5247. color:#1E1E1E;
  5248. }
  5249. #u24238 {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:551px;
  5253. top:0px;
  5254. width:49px;
  5255. height:30px;
  5256. display:flex;
  5257. transition:none;
  5258. transform-origin:50% 50%;
  5259. font-family:"Microsoft YaHei", sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. color:#1E1E1E;
  5264. }
  5265. #u24238 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:5px 10px 5px 10px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u24238_text {
  5273. border-width:0px;
  5274. white-space:nowrap;
  5275. text-transform:none;
  5276. }
  5277. #u24239 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:0px;
  5283. height:0px;
  5284. }
  5285. #u24240_div {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:33px;
  5291. height:24px;
  5292. background:inherit;
  5293. background-color:rgba(255, 255, 255, 1);
  5294. border-radius:0px;
  5295. filter:drop-shadow(none);
  5296. transition:none;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:14px;
  5301. color:#BCBCBC;
  5302. text-align:left;
  5303. }
  5304. #u24240 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:319px;
  5308. top:3px;
  5309. width:33px;
  5310. height:24px;
  5311. display:flex;
  5312. transition:none;
  5313. transform-origin:50% 50%;
  5314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:14px;
  5318. color:#BCBCBC;
  5319. text-align:left;
  5320. }
  5321. #u24240 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u24240_text {
  5329. border-width:0px;
  5330. white-space:nowrap;
  5331. text-transform:none;
  5332. }
  5333. #u24241_div {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:40px;
  5339. height:30px;
  5340. background:inherit;
  5341. background-color:rgba(255, 255, 255, 1);
  5342. box-sizing:border-box;
  5343. border-width:1px;
  5344. border-style:solid;
  5345. border-color:rgba(228, 228, 228, 1);
  5346. border-radius:4px;
  5347. filter:drop-shadow(none);
  5348. transition:none;
  5349. font-family:"Microsoft YaHei", sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. }
  5354. #u24241 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:354px;
  5358. top:0px;
  5359. width:40px;
  5360. height:30px;
  5361. display:flex;
  5362. transition:none;
  5363. transform-origin:50% 50%;
  5364. font-family:"Microsoft YaHei", sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:14px;
  5368. }
  5369. #u24241 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 2px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u24241_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. visibility:hidden;
  5381. }
  5382. #u24242_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:19px;
  5388. height:24px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 1);
  5391. border-radius:0px;
  5392. filter:drop-shadow(none);
  5393. transition:none;
  5394. font-family:"Microsoft YaHei", sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:14px;
  5398. color:#BCBCBC;
  5399. text-align:left;
  5400. }
  5401. #u24242 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:396px;
  5405. top:4px;
  5406. width:19px;
  5407. height:24px;
  5408. display:flex;
  5409. transition:none;
  5410. transform-origin:50% 50%;
  5411. font-family:"Microsoft YaHei", sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:14px;
  5415. color:#BCBCBC;
  5416. text-align:left;
  5417. }
  5418. #u24242 .text {
  5419. position:absolute;
  5420. align-self:center;
  5421. padding:2px 2px 2px 2px;
  5422. box-sizing:border-box;
  5423. width:100%;
  5424. }
  5425. #u24242_text {
  5426. border-width:0px;
  5427. white-space:nowrap;
  5428. text-transform:none;
  5429. }
  5430. #u24243_input {
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:34px;
  5435. height:25px;
  5436. padding:2px 2px 2px 2px;
  5437. font-family:"Microsoft YaHei", sans-serif;
  5438. font-weight:400;
  5439. font-style:normal;
  5440. font-size:13px;
  5441. letter-spacing:normal;
  5442. color:#000000;
  5443. vertical-align:none;
  5444. text-align:left;
  5445. text-transform:none;
  5446. background-color:transparent;
  5447. border-color:transparent;
  5448. }
  5449. #u24243_input.hint {
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:34px;
  5454. height:25px;
  5455. padding:2px 2px 2px 2px;
  5456. font-family:"Microsoft YaHei", sans-serif;
  5457. font-weight:400;
  5458. font-style:normal;
  5459. font-size:13px;
  5460. letter-spacing:normal;
  5461. color:#999999;
  5462. vertical-align:none;
  5463. text-align:left;
  5464. text-transform:none;
  5465. background-color:transparent;
  5466. border-color:transparent;
  5467. }
  5468. #u24243_input.disabled {
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:34px;
  5473. height:25px;
  5474. padding:2px 2px 2px 2px;
  5475. font-family:"Microsoft YaHei", sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:13px;
  5479. letter-spacing:normal;
  5480. color:#000000;
  5481. vertical-align:none;
  5482. text-align:left;
  5483. text-transform:none;
  5484. background-color:transparent;
  5485. border-color:transparent;
  5486. }
  5487. #u24243_input.hint.disabled {
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:34px;
  5492. height:25px;
  5493. padding:2px 2px 2px 2px;
  5494. font-family:"Microsoft YaHei", sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:13px;
  5498. letter-spacing:normal;
  5499. color:#999999;
  5500. vertical-align:none;
  5501. text-align:left;
  5502. text-transform:none;
  5503. background-color:transparent;
  5504. border-color:transparent;
  5505. }
  5506. #u24243_div {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:34px;
  5512. height:25px;
  5513. background:inherit;
  5514. background-color:rgba(255, 255, 255, 1);
  5515. border-radius:0px;
  5516. filter:drop-shadow(none);
  5517. transition:none;
  5518. font-family:"Microsoft YaHei", sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. }
  5522. #u24243 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:357px;
  5526. top:2px;
  5527. width:34px;
  5528. height:25px;
  5529. display:flex;
  5530. transition:none;
  5531. transform-origin:50% 50%;
  5532. font-family:"Microsoft YaHei", sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. }
  5536. #u24243 .text {
  5537. position:absolute;
  5538. align-self:center;
  5539. padding:2px 2px 2px 2px;
  5540. box-sizing:border-box;
  5541. width:100%;
  5542. }
  5543. #u24243_div.hint {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:34px;
  5549. height:25px;
  5550. background:inherit;
  5551. background-color:rgba(255, 255, 255, 1);
  5552. border-radius:0px;
  5553. filter:drop-shadow(none);
  5554. transition:none;
  5555. font-family:"Microsoft YaHei", sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. }
  5559. #u24243.hint {
  5560. }
  5561. #u24243_div.disabled {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:34px;
  5567. height:25px;
  5568. background:inherit;
  5569. background-color:rgba(240, 240, 240, 1);
  5570. border-radius:0px;
  5571. filter:drop-shadow(none);
  5572. transition:none;
  5573. font-family:"Microsoft YaHei", sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. }
  5577. #u24243.disabled {
  5578. }
  5579. #u24243_div.hint.disabled {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:34px;
  5585. height:25px;
  5586. background:inherit;
  5587. background-color:rgba(240, 240, 240, 1);
  5588. border-radius:0px;
  5589. filter:drop-shadow(none);
  5590. transition:none;
  5591. font-family:"Microsoft YaHei", sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. }
  5595. #u24243.hint.disabled {
  5596. }
  5597. #u24244_div {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:30px;
  5603. height:30px;
  5604. background:inherit;
  5605. background-color:rgba(41, 143, 255, 1);
  5606. border-radius:4px;
  5607. filter:drop-shadow(none);
  5608. transition:none;
  5609. font-family:"Microsoft YaHei", sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:14px;
  5613. color:#FFFFFF;
  5614. }
  5615. #u24244 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:69px;
  5619. top:0px;
  5620. width:30px;
  5621. height:30px;
  5622. display:flex;
  5623. transition:none;
  5624. transform-origin:50% 50%;
  5625. font-family:"Microsoft YaHei", sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:14px;
  5629. color:#FFFFFF;
  5630. }
  5631. #u24244 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 2px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u24244_text {
  5639. border-width:0px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. }
  5643. #u24245_div {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:30px;
  5649. height:30px;
  5650. background:inherit;
  5651. background-color:rgba(255, 255, 255, 1);
  5652. box-sizing:border-box;
  5653. border-width:1px;
  5654. border-style:solid;
  5655. border-color:rgba(228, 228, 228, 1);
  5656. border-radius:4px;
  5657. filter:drop-shadow(none);
  5658. transition:none;
  5659. font-family:"Microsoft YaHei", sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:14px;
  5663. }
  5664. #u24245 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:103px;
  5668. top:0px;
  5669. width:30px;
  5670. height:30px;
  5671. display:flex;
  5672. transition:none;
  5673. transform-origin:50% 50%;
  5674. font-family:"Microsoft YaHei", sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:14px;
  5678. }
  5679. #u24245 .text {
  5680. position:absolute;
  5681. align-self:center;
  5682. padding:2px 2px 2px 2px;
  5683. box-sizing:border-box;
  5684. width:100%;
  5685. }
  5686. #u24245_text {
  5687. border-width:0px;
  5688. word-wrap:break-word;
  5689. text-transform:none;
  5690. }
  5691. #u24246_div {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:30px;
  5697. height:30px;
  5698. background:inherit;
  5699. background-color:rgba(255, 255, 255, 1);
  5700. box-sizing:border-box;
  5701. border-width:1px;
  5702. border-style:solid;
  5703. border-color:rgba(228, 228, 228, 1);
  5704. border-radius:4px;
  5705. filter:drop-shadow(none);
  5706. transition:none;
  5707. font-family:"Microsoft YaHei", sans-serif;
  5708. font-weight:400;
  5709. font-style:normal;
  5710. font-size:14px;
  5711. }
  5712. #u24246 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:137px;
  5716. top:0px;
  5717. width:30px;
  5718. height:30px;
  5719. display:flex;
  5720. transition:none;
  5721. transform-origin:50% 50%;
  5722. font-family:"Microsoft YaHei", sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:14px;
  5726. }
  5727. #u24246 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 2px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u24246_text {
  5735. border-width:0px;
  5736. word-wrap:break-word;
  5737. text-transform:none;
  5738. }
  5739. #u24247_div {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:30px;
  5745. height:30px;
  5746. background:inherit;
  5747. background-color:rgba(255, 255, 255, 1);
  5748. border-radius:4px;
  5749. filter:drop-shadow(none);
  5750. transition:none;
  5751. font-family:"Microsoft YaHei", sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:14px;
  5755. }
  5756. #u24247 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:167px;
  5760. top:0px;
  5761. width:30px;
  5762. height:30px;
  5763. display:flex;
  5764. transition:none;
  5765. transform-origin:50% 50%;
  5766. font-family:"Microsoft YaHei", sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:14px;
  5770. }
  5771. #u24247 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:2px 2px 2px 2px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u24247_text {
  5779. border-width:0px;
  5780. word-wrap:break-word;
  5781. text-transform:none;
  5782. }
  5783. #u24248_div {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:30px;
  5789. height:30px;
  5790. background:inherit;
  5791. background-color:rgba(255, 255, 255, 1);
  5792. box-sizing:border-box;
  5793. border-width:1px;
  5794. border-style:solid;
  5795. border-color:rgba(228, 228, 228, 1);
  5796. border-radius:4px;
  5797. filter:drop-shadow(none);
  5798. transition:none;
  5799. font-family:"Microsoft YaHei", sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:14px;
  5803. }
  5804. #u24248 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:201px;
  5808. top:0px;
  5809. width:30px;
  5810. height:30px;
  5811. display:flex;
  5812. transition:none;
  5813. transform-origin:50% 50%;
  5814. font-family:"Microsoft YaHei", sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:14px;
  5818. }
  5819. #u24248 .text {
  5820. position:absolute;
  5821. align-self:center;
  5822. padding:2px 2px 2px 2px;
  5823. box-sizing:border-box;
  5824. width:100%;
  5825. }
  5826. #u24248_text {
  5827. border-width:0px;
  5828. word-wrap:break-word;
  5829. text-transform:none;
  5830. }
  5831. #u24249_div {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:32px;
  5837. height:21px;
  5838. background:inherit;
  5839. background-color:rgba(255, 255, 255, 1);
  5840. border-radius:15px;
  5841. filter:drop-shadow(none);
  5842. transition:none;
  5843. font-family:"Microsoft YaHei", sans-serif;
  5844. font-weight:400;
  5845. font-style:normal;
  5846. font-size:14px;
  5847. color:#1E1E1E;
  5848. }
  5849. #u24249 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:275px;
  5853. top:5px;
  5854. width:32px;
  5855. height:21px;
  5856. display:flex;
  5857. transition:none;
  5858. transform-origin:50% 50%;
  5859. font-family:"Microsoft YaHei", sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:14px;
  5863. color:#1E1E1E;
  5864. }
  5865. #u24249 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 2px 2px 2px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u24249_text {
  5873. border-width:0px;
  5874. white-space:nowrap;
  5875. text-transform:none;
  5876. }
  5877. #u24250 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:0px;
  5883. height:0px;
  5884. }
  5885. #u24251_div {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:31px;
  5891. height:30px;
  5892. background:inherit;
  5893. background-color:rgba(255, 255, 255, 1);
  5894. box-sizing:border-box;
  5895. border-width:1px;
  5896. border-style:solid;
  5897. border-color:rgba(228, 228, 228, 1);
  5898. border-radius:4px;
  5899. filter:drop-shadow(none);
  5900. transition:none;
  5901. font-family:"Microsoft YaHei", sans-serif;
  5902. font-weight:400;
  5903. font-style:normal;
  5904. font-size:12px;
  5905. }
  5906. #u24251 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:31px;
  5912. height:30px;
  5913. display:flex;
  5914. transition:none;
  5915. transform-origin:50% 50%;
  5916. font-family:"Microsoft YaHei", sans-serif;
  5917. font-weight:400;
  5918. font-style:normal;
  5919. font-size:12px;
  5920. }
  5921. #u24251 .text {
  5922. position:absolute;
  5923. align-self:center;
  5924. padding:2px 2px 2px 2px;
  5925. box-sizing:border-box;
  5926. width:100%;
  5927. }
  5928. #u24251_text {
  5929. border-width:0px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u24252 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:12px;
  5938. top:8px;
  5939. width:8px;
  5940. height:14px;
  5941. display:flex;
  5942. transition:none;
  5943. font-family:"Microsoft YaHei", sans-serif;
  5944. font-weight:400;
  5945. font-style:normal;
  5946. font-size:12px;
  5947. }
  5948. #u24252 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:2px 2px 2px 2px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u24252_img {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:8px;
  5961. height:14px;
  5962. }
  5963. #u24252_text {
  5964. border-width:0px;
  5965. word-wrap:break-word;
  5966. text-transform:none;
  5967. visibility:hidden;
  5968. }
  5969. #u24253 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:0px;
  5975. height:0px;
  5976. }
  5977. #u24254_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:31px;
  5983. height:30px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 1);
  5986. box-sizing:border-box;
  5987. border-width:1px;
  5988. border-style:solid;
  5989. border-color:rgba(228, 228, 228, 1);
  5990. border-radius:4px;
  5991. filter:drop-shadow(none);
  5992. transition:none;
  5993. font-family:"Microsoft YaHei", sans-serif;
  5994. font-weight:400;
  5995. font-style:normal;
  5996. font-size:12px;
  5997. }
  5998. #u24254 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:234px;
  6002. top:0px;
  6003. width:31px;
  6004. height:30px;
  6005. display:flex;
  6006. transition:none;
  6007. transform-origin:50% 50%;
  6008. font-family:"Microsoft YaHei", sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:12px;
  6012. }
  6013. #u24254 .text {
  6014. position:absolute;
  6015. align-self:center;
  6016. padding:2px 2px 2px 2px;
  6017. box-sizing:border-box;
  6018. width:100%;
  6019. }
  6020. #u24254_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. visibility:hidden;
  6025. }
  6026. #u24255 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:247px;
  6030. top:8px;
  6031. width:8px;
  6032. height:14px;
  6033. display:flex;
  6034. transition:none;
  6035. font-family:"Microsoft YaHei", sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:12px;
  6039. }
  6040. #u24255 .text {
  6041. position:absolute;
  6042. align-self:center;
  6043. padding:2px 2px 2px 2px;
  6044. box-sizing:border-box;
  6045. width:100%;
  6046. }
  6047. #u24255_img {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:8px;
  6053. height:14px;
  6054. }
  6055. #u24255_text {
  6056. border-width:0px;
  6057. word-wrap:break-word;
  6058. text-transform:none;
  6059. visibility:hidden;
  6060. }
  6061. #u24256 {
  6062. border-width:0px;
  6063. position:absolute;
  6064. left:0px;
  6065. top:0px;
  6066. width:0px;
  6067. height:0px;
  6068. }
  6069. #u24257_div {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:33px;
  6075. height:24px;
  6076. background:inherit;
  6077. background-color:rgba(255, 255, 255, 1);
  6078. border-radius:0px;
  6079. filter:drop-shadow(none);
  6080. transition:none;
  6081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6082. font-weight:400;
  6083. font-style:normal;
  6084. font-size:14px;
  6085. color:#BCBCBC;
  6086. text-align:left;
  6087. }
  6088. #u24257 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:435px;
  6092. top:3px;
  6093. width:33px;
  6094. height:24px;
  6095. display:flex;
  6096. transition:none;
  6097. transform-origin:50% 50%;
  6098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. font-size:14px;
  6102. color:#BCBCBC;
  6103. text-align:left;
  6104. }
  6105. #u24257 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 2px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u24257_text {
  6113. border-width:0px;
  6114. white-space:nowrap;
  6115. text-transform:none;
  6116. }
  6117. #u24258_div {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:40px;
  6123. height:30px;
  6124. background:inherit;
  6125. background-color:rgba(255, 255, 255, 1);
  6126. box-sizing:border-box;
  6127. border-width:1px;
  6128. border-style:solid;
  6129. border-color:rgba(228, 228, 228, 1);
  6130. border-radius:4px;
  6131. filter:drop-shadow(none);
  6132. transition:none;
  6133. font-family:"Microsoft YaHei", sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. }
  6138. #u24258 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:470px;
  6142. top:0px;
  6143. width:40px;
  6144. height:30px;
  6145. display:flex;
  6146. transition:none;
  6147. transform-origin:50% 50%;
  6148. font-family:"Microsoft YaHei", sans-serif;
  6149. font-weight:400;
  6150. font-style:normal;
  6151. font-size:14px;
  6152. }
  6153. #u24258 .text {
  6154. position:absolute;
  6155. align-self:center;
  6156. padding:2px 2px 2px 2px;
  6157. box-sizing:border-box;
  6158. width:100%;
  6159. }
  6160. #u24258_text {
  6161. border-width:0px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u24259_div {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:19px;
  6172. height:24px;
  6173. background:inherit;
  6174. background-color:rgba(255, 255, 255, 1);
  6175. border-radius:0px;
  6176. filter:drop-shadow(none);
  6177. transition:none;
  6178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6179. font-weight:400;
  6180. font-style:normal;
  6181. font-size:14px;
  6182. color:#BCBCBC;
  6183. text-align:left;
  6184. }
  6185. #u24259 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:512px;
  6189. top:4px;
  6190. width:19px;
  6191. height:24px;
  6192. display:flex;
  6193. transition:none;
  6194. transform-origin:50% 50%;
  6195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6196. font-weight:400;
  6197. font-style:normal;
  6198. font-size:14px;
  6199. color:#BCBCBC;
  6200. text-align:left;
  6201. }
  6202. #u24259 .text {
  6203. position:absolute;
  6204. align-self:center;
  6205. padding:2px 2px 2px 2px;
  6206. box-sizing:border-box;
  6207. width:100%;
  6208. }
  6209. #u24259_text {
  6210. border-width:0px;
  6211. white-space:nowrap;
  6212. text-transform:none;
  6213. }
  6214. #u24260_input {
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:34px;
  6219. height:25px;
  6220. padding:2px 2px 2px 2px;
  6221. font-family:"Microsoft YaHei", sans-serif;
  6222. font-weight:400;
  6223. font-style:normal;
  6224. font-size:13px;
  6225. letter-spacing:normal;
  6226. color:#000000;
  6227. vertical-align:none;
  6228. text-align:left;
  6229. text-transform:none;
  6230. background-color:transparent;
  6231. border-color:transparent;
  6232. }
  6233. #u24260_input.hint {
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:34px;
  6238. height:25px;
  6239. padding:2px 2px 2px 2px;
  6240. font-family:"Microsoft YaHei", sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:13px;
  6244. letter-spacing:normal;
  6245. color:#999999;
  6246. vertical-align:none;
  6247. text-align:left;
  6248. text-transform:none;
  6249. background-color:transparent;
  6250. border-color:transparent;
  6251. }
  6252. #u24260_input.disabled {
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:34px;
  6257. height:25px;
  6258. padding:2px 2px 2px 2px;
  6259. font-family:"Microsoft YaHei", sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:13px;
  6263. letter-spacing:normal;
  6264. color:#000000;
  6265. vertical-align:none;
  6266. text-align:left;
  6267. text-transform:none;
  6268. background-color:transparent;
  6269. border-color:transparent;
  6270. }
  6271. #u24260_input.hint.disabled {
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:34px;
  6276. height:25px;
  6277. padding:2px 2px 2px 2px;
  6278. font-family:"Microsoft YaHei", sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:13px;
  6282. letter-spacing:normal;
  6283. color:#999999;
  6284. vertical-align:none;
  6285. text-align:left;
  6286. text-transform:none;
  6287. background-color:transparent;
  6288. border-color:transparent;
  6289. }
  6290. #u24260_div {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:34px;
  6296. height:25px;
  6297. background:inherit;
  6298. background-color:rgba(255, 255, 255, 1);
  6299. border-radius:0px;
  6300. filter:drop-shadow(none);
  6301. transition:none;
  6302. font-family:"Microsoft YaHei", sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. }
  6306. #u24260 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:473px;
  6310. top:2px;
  6311. width:34px;
  6312. height:25px;
  6313. display:flex;
  6314. transition:none;
  6315. transform-origin:50% 50%;
  6316. font-family:"Microsoft YaHei", sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. }
  6320. #u24260 .text {
  6321. position:absolute;
  6322. align-self:center;
  6323. padding:2px 2px 2px 2px;
  6324. box-sizing:border-box;
  6325. width:100%;
  6326. }
  6327. #u24260_div.hint {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:34px;
  6333. height:25px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 1);
  6336. border-radius:0px;
  6337. filter:drop-shadow(none);
  6338. transition:none;
  6339. font-family:"Microsoft YaHei", sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. }
  6343. #u24260.hint {
  6344. }
  6345. #u24260_div.disabled {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:0px;
  6349. top:0px;
  6350. width:34px;
  6351. height:25px;
  6352. background:inherit;
  6353. background-color:rgba(240, 240, 240, 1);
  6354. border-radius:0px;
  6355. filter:drop-shadow(none);
  6356. transition:none;
  6357. font-family:"Microsoft YaHei", sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. }
  6361. #u24260.disabled {
  6362. }
  6363. #u24260_div.hint.disabled {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:34px;
  6369. height:25px;
  6370. background:inherit;
  6371. background-color:rgba(240, 240, 240, 1);
  6372. border-radius:0px;
  6373. filter:drop-shadow(none);
  6374. transition:none;
  6375. font-family:"Microsoft YaHei", sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. }
  6379. #u24260.hint.disabled {
  6380. }
  6381. #u24261 {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:0px;
  6387. height:0px;
  6388. }
  6389. #u24262 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:0px;
  6395. height:0px;
  6396. }
  6397. #u24263_div {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:0px;
  6401. top:0px;
  6402. width:380px;
  6403. height:140px;
  6404. background:inherit;
  6405. background-color:rgba(255, 255, 255, 1);
  6406. box-sizing:border-box;
  6407. border-width:1px;
  6408. border-style:solid;
  6409. border-color:rgba(204, 204, 204, 1);
  6410. border-radius:4px;
  6411. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  6412. transition:none;
  6413. font-family:"Microsoft YaHei", sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. }
  6417. #u24263 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:1144px;
  6421. top:475px;
  6422. width:380px;
  6423. height:140px;
  6424. display:flex;
  6425. transition:none;
  6426. transform-origin:50% 50%;
  6427. font-family:"Microsoft YaHei", sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. }
  6431. #u24263 .text {
  6432. position:absolute;
  6433. align-self:center;
  6434. padding:2px 2px 2px 2px;
  6435. box-sizing:border-box;
  6436. width:100%;
  6437. }
  6438. #u24263_text {
  6439. border-width:0px;
  6440. word-wrap:break-word;
  6441. text-transform:none;
  6442. visibility:hidden;
  6443. }
  6444. #u24264_div {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:299px;
  6450. height:22px;
  6451. background:inherit;
  6452. background-color:rgba(255, 255, 255, 0);
  6453. border-radius:0px;
  6454. filter:drop-shadow(none);
  6455. transition:none;
  6456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6457. font-weight:400;
  6458. font-style:normal;
  6459. font-size:14px;
  6460. color:#666666;
  6461. line-height:22px;
  6462. }
  6463. #u24264 {
  6464. border-width:0px;
  6465. position:absolute;
  6466. left:1204px;
  6467. top:530px;
  6468. width:299px;
  6469. height:22px;
  6470. display:flex;
  6471. transition:none;
  6472. transform-origin:50% 50%;
  6473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6474. font-weight:400;
  6475. font-style:normal;
  6476. font-size:14px;
  6477. color:#666666;
  6478. line-height:22px;
  6479. }
  6480. #u24264 .text {
  6481. position:absolute;
  6482. align-self:flex-start;
  6483. padding:0px 0px 0px 0px;
  6484. box-sizing:border-box;
  6485. width:100%;
  6486. }
  6487. #u24264_text {
  6488. border-width:0px;
  6489. word-wrap:break-word;
  6490. text-transform:none;
  6491. }
  6492. #u24265_div {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:127px;
  6498. height:21px;
  6499. background:inherit;
  6500. background-color:rgba(255, 255, 255, 0);
  6501. border-radius:0px;
  6502. filter:drop-shadow(none);
  6503. transition:none;
  6504. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6505. font-weight:650;
  6506. font-style:normal;
  6507. font-size:18px;
  6508. color:#000000;
  6509. line-height:22px;
  6510. }
  6511. #u24265 {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:1204px;
  6515. top:500px;
  6516. width:127px;
  6517. height:21px;
  6518. display:flex;
  6519. transition:none;
  6520. transform-origin:50% 50%;
  6521. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6522. font-weight:650;
  6523. font-style:normal;
  6524. font-size:18px;
  6525. color:#000000;
  6526. line-height:22px;
  6527. }
  6528. #u24265 .text {
  6529. position:absolute;
  6530. align-self:flex-start;
  6531. padding:0px 0px 0px 0px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u24265_text {
  6536. border-width:0px;
  6537. white-space:nowrap;
  6538. text-transform:none;
  6539. }
  6540. #u24266_div {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:61px;
  6546. height:30px;
  6547. background:inherit;
  6548. background-color:rgba(24, 144, 255, 1);
  6549. border-radius:4px;
  6550. filter:drop-shadow(none);
  6551. transition:none;
  6552. font-family:"Microsoft YaHei", sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:14px;
  6556. color:#FFFFFF;
  6557. }
  6558. #u24266 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:1446px;
  6562. top:570px;
  6563. width:61px;
  6564. height:30px;
  6565. display:flex;
  6566. transition:none;
  6567. transform-origin:50% 50%;
  6568. font-family:"Microsoft YaHei", sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. color:#FFFFFF;
  6573. }
  6574. #u24266 .text {
  6575. position:absolute;
  6576. align-self:center;
  6577. padding:2px 16px 2px 16px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u24266_text {
  6582. border-width:0px;
  6583. white-space:nowrap;
  6584. text-transform:none;
  6585. }
  6586. #u24267_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:66px;
  6592. height:30px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 1);
  6595. box-sizing:border-box;
  6596. border-width:1px;
  6597. border-style:solid;
  6598. border-color:rgba(217, 217, 217, 1);
  6599. border-radius:4px;
  6600. filter:drop-shadow(none);
  6601. transition:none;
  6602. font-family:"Microsoft YaHei", sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:14px;
  6606. color:rgba(0, 0, 0, 0.6470588235294118);
  6607. line-height:21px;
  6608. }
  6609. #u24267 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:1364px;
  6613. top:570px;
  6614. width:66px;
  6615. height:30px;
  6616. display:flex;
  6617. transition:none;
  6618. transform-origin:50% 50%;
  6619. font-family:"Microsoft YaHei", sans-serif;
  6620. font-weight:400;
  6621. font-style:normal;
  6622. font-size:14px;
  6623. color:rgba(0, 0, 0, 0.6470588235294118);
  6624. line-height:21px;
  6625. }
  6626. #u24267 .text {
  6627. position:absolute;
  6628. align-self:center;
  6629. padding:2px 16px 2px 16px;
  6630. box-sizing:border-box;
  6631. width:100%;
  6632. }
  6633. #u24267_text {
  6634. border-width:0px;
  6635. white-space:nowrap;
  6636. text-transform:none;
  6637. }
  6638. #u24268 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:1173px;
  6642. top:504px;
  6643. width:20px;
  6644. height:20px;
  6645. display:flex;
  6646. transition:none;
  6647. }
  6648. #u24268 .text {
  6649. position:absolute;
  6650. align-self:center;
  6651. padding:2px 2px 2px 2px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u24268_img {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:20px;
  6661. height:20px;
  6662. }
  6663. #u24268_text {
  6664. border-width:0px;
  6665. word-wrap:break-word;
  6666. text-transform:none;
  6667. visibility:hidden;
  6668. }
  6669. #u24269 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:0px;
  6675. height:0px;
  6676. }
  6677. #u24270_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:380px;
  6683. height:140px;
  6684. background:inherit;
  6685. background-color:rgba(255, 255, 255, 1);
  6686. box-sizing:border-box;
  6687. border-width:1px;
  6688. border-style:solid;
  6689. border-color:rgba(204, 204, 204, 1);
  6690. border-radius:4px;
  6691. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  6692. transition:none;
  6693. font-family:"Microsoft YaHei", sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. }
  6697. #u24270 {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:1144px;
  6701. top:625px;
  6702. width:380px;
  6703. height:140px;
  6704. display:flex;
  6705. transition:none;
  6706. transform-origin:50% 50%;
  6707. font-family:"Microsoft YaHei", sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. }
  6711. #u24270 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u24270_text {
  6719. border-width:0px;
  6720. word-wrap:break-word;
  6721. text-transform:none;
  6722. visibility:hidden;
  6723. }
  6724. #u24271_div {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:288px;
  6730. height:22px;
  6731. background:inherit;
  6732. background-color:rgba(255, 255, 255, 0);
  6733. border-radius:0px;
  6734. filter:drop-shadow(none);
  6735. transition:none;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:14px;
  6740. color:#666666;
  6741. line-height:22px;
  6742. }
  6743. #u24271 {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:1204px;
  6747. top:680px;
  6748. width:288px;
  6749. height:22px;
  6750. display:flex;
  6751. transition:none;
  6752. transform-origin:50% 50%;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:14px;
  6757. color:#666666;
  6758. line-height:22px;
  6759. }
  6760. #u24271 .text {
  6761. position:absolute;
  6762. align-self:flex-start;
  6763. padding:0px 0px 0px 0px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u24271_text {
  6768. border-width:0px;
  6769. word-wrap:break-word;
  6770. text-transform:none;
  6771. }
  6772. #u24272_div {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:73px;
  6778. height:21px;
  6779. background:inherit;
  6780. background-color:rgba(255, 255, 255, 0);
  6781. border-radius:0px;
  6782. filter:drop-shadow(none);
  6783. transition:none;
  6784. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6785. font-weight:650;
  6786. font-style:normal;
  6787. font-size:18px;
  6788. color:#000000;
  6789. line-height:22px;
  6790. }
  6791. #u24272 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:1204px;
  6795. top:650px;
  6796. width:73px;
  6797. height:21px;
  6798. display:flex;
  6799. transition:none;
  6800. transform-origin:50% 50%;
  6801. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6802. font-weight:650;
  6803. font-style:normal;
  6804. font-size:18px;
  6805. color:#000000;
  6806. line-height:22px;
  6807. }
  6808. #u24272 .text {
  6809. position:absolute;
  6810. align-self:flex-start;
  6811. padding:0px 0px 0px 0px;
  6812. box-sizing:border-box;
  6813. width:100%;
  6814. }
  6815. #u24272_text {
  6816. border-width:0px;
  6817. white-space:nowrap;
  6818. text-transform:none;
  6819. }
  6820. #u24273_div {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:61px;
  6826. height:30px;
  6827. background:inherit;
  6828. background-color:rgba(24, 144, 255, 1);
  6829. border-radius:4px;
  6830. filter:drop-shadow(none);
  6831. transition:none;
  6832. font-family:"Microsoft YaHei", sans-serif;
  6833. font-weight:400;
  6834. font-style:normal;
  6835. font-size:14px;
  6836. color:#FFFFFF;
  6837. }
  6838. #u24273 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:1443px;
  6842. top:720px;
  6843. width:61px;
  6844. height:30px;
  6845. display:flex;
  6846. transition:none;
  6847. transform-origin:50% 50%;
  6848. font-family:"Microsoft YaHei", sans-serif;
  6849. font-weight:400;
  6850. font-style:normal;
  6851. font-size:14px;
  6852. color:#FFFFFF;
  6853. }
  6854. #u24273 .text {
  6855. position:absolute;
  6856. align-self:center;
  6857. padding:2px 16px 2px 16px;
  6858. box-sizing:border-box;
  6859. width:100%;
  6860. }
  6861. #u24273_text {
  6862. border-width:0px;
  6863. white-space:nowrap;
  6864. text-transform:none;
  6865. }
  6866. #u24274_div {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:66px;
  6872. height:30px;
  6873. background:inherit;
  6874. background-color:rgba(255, 255, 255, 1);
  6875. box-sizing:border-box;
  6876. border-width:1px;
  6877. border-style:solid;
  6878. border-color:rgba(217, 217, 217, 1);
  6879. border-radius:4px;
  6880. filter:drop-shadow(none);
  6881. transition:none;
  6882. font-family:"Microsoft YaHei", sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:14px;
  6886. color:rgba(0, 0, 0, 0.6470588235294118);
  6887. line-height:21px;
  6888. }
  6889. #u24274 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:1364px;
  6893. top:720px;
  6894. width:66px;
  6895. height:30px;
  6896. display:flex;
  6897. transition:none;
  6898. transform-origin:50% 50%;
  6899. font-family:"Microsoft YaHei", sans-serif;
  6900. font-weight:400;
  6901. font-style:normal;
  6902. font-size:14px;
  6903. color:rgba(0, 0, 0, 0.6470588235294118);
  6904. line-height:21px;
  6905. }
  6906. #u24274 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 16px 2px 16px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u24274_text {
  6914. border-width:0px;
  6915. white-space:nowrap;
  6916. text-transform:none;
  6917. }
  6918. #u24275 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:1173px;
  6922. top:652px;
  6923. width:20px;
  6924. height:20px;
  6925. display:flex;
  6926. transition:none;
  6927. }
  6928. #u24275 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:2px 2px 2px 2px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u24275_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:20px;
  6941. height:20px;
  6942. }
  6943. #u24275_text {
  6944. border-width:0px;
  6945. word-wrap:break-word;
  6946. text-transform:none;
  6947. visibility:hidden;
  6948. }