styles.css 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585
  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. #u20495 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u20496_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. #u20496 {
  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. #u20496 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u20496_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u20497_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. #u20497 {
  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. #u20497 .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. #u20497_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u20498_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. #u20498 {
  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. #u20498 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u20498_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u20499 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u20500 {
  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. #u20500 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u20500_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u20500_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u20501_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. #u20501 {
  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. #u20501 .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. #u20501_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u20502_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. #u20502 {
  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. #u20502 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u20502_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u20503 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u20504_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. #u20504 {
  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. #u20504 .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. #u20504_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u20505 {
  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. #u20505 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u20505_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u20505_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u20506 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u20507_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. #u20507 {
  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. #u20507 .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. #u20507_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u20508 {
  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. #u20508 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u20508_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u20508_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u20509 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u20510_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. #u20510 {
  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. #u20510 .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. #u20510_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u20511 {
  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. #u20511 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u20511_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u20511_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u20512 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u20513_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. #u20513 {
  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. #u20513 .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. #u20513_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u20514 {
  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. #u20514 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u20514_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u20514_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u20515 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u20516_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. #u20516 {
  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. #u20516 .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. #u20516_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u20517 {
  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. #u20517 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u20517_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u20517_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u20518 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u20519_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. #u20519 {
  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. #u20519 .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. #u20519_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u20520 {
  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. #u20520 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u20520_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u20520_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u20521 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u20522_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. #u20522 {
  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. #u20522 .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. #u20522_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u20523 {
  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. #u20523 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u20523_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u20523_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u20524 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u20525_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. #u20525 {
  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. #u20525 .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. #u20525_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u20526 {
  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. #u20526 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u20526_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u20526_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u20527 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u20528_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. #u20528 {
  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. #u20528 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u20528_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u20529 {
  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. #u20529 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u20529_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u20529_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u20530 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u20531_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. #u20531 {
  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. #u20531 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u20531_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u20532 {
  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. #u20532 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u20532_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u20532_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u20533 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u20534_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. #u20534 {
  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. #u20534 .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. #u20534_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u20535 {
  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. #u20535 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u20535_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u20535_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u20536 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u20537_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. #u20537_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. #u20537_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. #u20537 {
  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. #u20537 .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. #u20537_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. #u20537.disabled {
  1294. }
  1295. .u20537_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u20538 {
  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. #u20538 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u20538_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u20538_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u20539_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. #u20539 {
  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. #u20539 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u20539_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u20540 {
  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. #u20540 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u20540_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u20540_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u20541 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u20542_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. #u20542 {
  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. #u20542 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u20542_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u20543 {
  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. #u20543 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u20543_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u20543_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u20544 {
  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. #u20544 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u20544_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u20544_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u20545 {
  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. #u20545 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u20545_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u20545_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u20546 {
  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. #u20546 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u20546_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u20546_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u20547 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u20548_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. #u20548 {
  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. #u20548 .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. #u20548_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u20549 {
  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. #u20549 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u20549_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u20549_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u20550_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1258px;
  1673. height:1180px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u20550 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:333px;
  1684. top:50px;
  1685. width:1258px;
  1686. height:1180px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u20550 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u20550_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u20551_div {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:73px;
  1710. height:50px;
  1711. background:inherit;
  1712. background-color:rgba(255, 255, 255, 0);
  1713. border-left:0px;
  1714. border-top:0px;
  1715. border-right:0px;
  1716. border-radius:0px;
  1717. border-bottom-right-radius:0px;
  1718. border-bottom-left-radius:0px;
  1719. filter:drop-shadow(none);
  1720. transition:none;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:18px;
  1725. line-height:40px;
  1726. }
  1727. #u20551 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:351px;
  1731. top:53px;
  1732. width:73px;
  1733. height:50px;
  1734. display:flex;
  1735. transition:none;
  1736. transform-origin:50% 50%;
  1737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1738. font-weight:400;
  1739. font-style:normal;
  1740. font-size:18px;
  1741. line-height:40px;
  1742. }
  1743. #u20551 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:0px 0px 0px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u20551_text {
  1751. border-width:0px;
  1752. white-space:nowrap;
  1753. text-transform:none;
  1754. }
  1755. #u20552 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:353px;
  1759. top:234px;
  1760. width:1218px;
  1761. height:425px;
  1762. }
  1763. #u20553 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:63px;
  1769. height:30px;
  1770. display:flex;
  1771. transition:none;
  1772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1773. font-weight:400;
  1774. font-style:normal;
  1775. font-size:14px;
  1776. color:#FFFFFF;
  1777. }
  1778. #u20553 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:2px 2px 2px 2px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u20553_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:63px;
  1791. height:30px;
  1792. }
  1793. #u20553_text {
  1794. border-width:0px;
  1795. word-wrap:break-word;
  1796. text-transform:none;
  1797. visibility:hidden;
  1798. }
  1799. #u20554 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:63px;
  1803. top:0px;
  1804. width:132px;
  1805. height:30px;
  1806. display:flex;
  1807. transition:none;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u20554 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u20554_img {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:0px;
  1825. top:0px;
  1826. width:132px;
  1827. height:30px;
  1828. }
  1829. #u20554_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u20555 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:196px;
  1838. top:0px;
  1839. width:135px;
  1840. height:30px;
  1841. display:flex;
  1842. transition:none;
  1843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1844. font-weight:400;
  1845. font-style:normal;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u20555 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 2px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u20555_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:135px;
  1862. height:30px;
  1863. }
  1864. #u20555_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u20556 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:331px;
  1873. top:0px;
  1874. width:132px;
  1875. height:30px;
  1876. display:flex;
  1877. transition:none;
  1878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1879. font-weight:400;
  1880. font-style:normal;
  1881. font-size:14px;
  1882. color:#FFFFFF;
  1883. }
  1884. #u20556 .text {
  1885. position:absolute;
  1886. align-self:center;
  1887. padding:2px 2px 2px 2px;
  1888. box-sizing:border-box;
  1889. width:100%;
  1890. }
  1891. #u20556_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:132px;
  1897. height:30px;
  1898. }
  1899. #u20556_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u20557 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:463px;
  1908. top:0px;
  1909. width:161px;
  1910. height:30px;
  1911. display:flex;
  1912. transition:none;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:14px;
  1917. color:#FFFFFF;
  1918. }
  1919. #u20557 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:2px 2px 2px 2px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u20557_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:161px;
  1932. height:30px;
  1933. }
  1934. #u20557_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. }
  1939. #u20558 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:624px;
  1943. top:0px;
  1944. width:106px;
  1945. height:30px;
  1946. display:flex;
  1947. transition:none;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:14px;
  1952. color:#FFFFFF;
  1953. }
  1954. #u20558 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:2px 2px 2px 2px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u20558_img {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:106px;
  1967. height:30px;
  1968. }
  1969. #u20558_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u20559 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:730px;
  1978. top:0px;
  1979. width:144px;
  1980. height:30px;
  1981. display:flex;
  1982. transition:none;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:14px;
  1987. color:#FFFFFF;
  1988. }
  1989. #u20559 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 2px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u20559_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:144px;
  2002. height:30px;
  2003. }
  2004. #u20559_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u20560 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:873px;
  2013. top:0px;
  2014. width:134px;
  2015. height:30px;
  2016. display:flex;
  2017. transition:none;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:14px;
  2022. color:#FFFFFF;
  2023. }
  2024. #u20560 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u20560_img {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:134px;
  2037. height:30px;
  2038. }
  2039. #u20560_text {
  2040. border-width:0px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u20561 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:1007px;
  2048. top:0px;
  2049. width:106px;
  2050. height:30px;
  2051. display:flex;
  2052. transition:none;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:14px;
  2057. color:#FFFFFF;
  2058. }
  2059. #u20561 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:2px 2px 2px 2px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u20561_img {
  2067. border-width:0px;
  2068. position:absolute;
  2069. left:0px;
  2070. top:0px;
  2071. width:106px;
  2072. height:30px;
  2073. }
  2074. #u20561_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u20562 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:1113px;
  2083. top:0px;
  2084. width:105px;
  2085. height:30px;
  2086. display:flex;
  2087. transition:none;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:14px;
  2092. color:#FFFFFF;
  2093. }
  2094. #u20562 .text {
  2095. position:absolute;
  2096. align-self:center;
  2097. padding:2px 2px 2px 2px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u20562_img {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:105px;
  2107. height:30px;
  2108. }
  2109. #u20562_text {
  2110. border-width:0px;
  2111. word-wrap:break-word;
  2112. text-transform:none;
  2113. }
  2114. #u20563 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:30px;
  2119. width:63px;
  2120. height:35px;
  2121. display:flex;
  2122. transition:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. }
  2128. #u20563 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u20563_img {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:63px;
  2141. height:35px;
  2142. }
  2143. #u20563_text {
  2144. border-width:0px;
  2145. word-wrap:break-word;
  2146. text-transform:none;
  2147. visibility:hidden;
  2148. }
  2149. #u20564 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:63px;
  2153. top:30px;
  2154. width:132px;
  2155. height:35px;
  2156. display:flex;
  2157. transition:none;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:14px;
  2162. }
  2163. #u20564 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u20564_img {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:132px;
  2176. height:35px;
  2177. }
  2178. #u20564_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. visibility:hidden;
  2183. }
  2184. #u20565 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:196px;
  2188. top:30px;
  2189. width:135px;
  2190. height:35px;
  2191. display:flex;
  2192. transition:none;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. }
  2198. #u20565 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 2px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u20565_img {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:135px;
  2211. height:35px;
  2212. }
  2213. #u20565_text {
  2214. border-width:0px;
  2215. word-wrap:break-word;
  2216. text-transform:none;
  2217. visibility:hidden;
  2218. }
  2219. #u20566 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:331px;
  2223. top:30px;
  2224. width:132px;
  2225. height:35px;
  2226. display:flex;
  2227. transition:none;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:14px;
  2232. }
  2233. #u20566 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 2px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u20566_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:132px;
  2246. height:35px;
  2247. }
  2248. #u20566_text {
  2249. border-width:0px;
  2250. word-wrap:break-word;
  2251. text-transform:none;
  2252. visibility:hidden;
  2253. }
  2254. #u20567 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:463px;
  2258. top:30px;
  2259. width:161px;
  2260. height:35px;
  2261. display:flex;
  2262. transition:none;
  2263. font-size:14px;
  2264. }
  2265. #u20567 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u20567_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:161px;
  2278. height:35px;
  2279. }
  2280. #u20567_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u20568 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:624px;
  2290. top:30px;
  2291. width:106px;
  2292. height:35px;
  2293. display:flex;
  2294. transition:none;
  2295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:14px;
  2299. }
  2300. #u20568 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:2px 2px 2px 2px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u20568_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:106px;
  2313. height:35px;
  2314. }
  2315. #u20568_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. visibility:hidden;
  2320. }
  2321. #u20569 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:730px;
  2325. top:30px;
  2326. width:144px;
  2327. height:35px;
  2328. display:flex;
  2329. transition:none;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:14px;
  2334. }
  2335. #u20569 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 2px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u20569_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:144px;
  2348. height:35px;
  2349. }
  2350. #u20569_text {
  2351. border-width:0px;
  2352. word-wrap:break-word;
  2353. text-transform:none;
  2354. visibility:hidden;
  2355. }
  2356. #u20570 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:873px;
  2360. top:30px;
  2361. width:134px;
  2362. height:35px;
  2363. display:flex;
  2364. transition:none;
  2365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2366. font-weight:400;
  2367. font-style:normal;
  2368. font-size:14px;
  2369. }
  2370. #u20570 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u20570_img {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:134px;
  2383. height:35px;
  2384. }
  2385. #u20570_text {
  2386. border-width:0px;
  2387. word-wrap:break-word;
  2388. text-transform:none;
  2389. }
  2390. #u20571 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:1007px;
  2394. top:30px;
  2395. width:106px;
  2396. height:35px;
  2397. display:flex;
  2398. transition:none;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:14px;
  2403. }
  2404. #u20571 .text {
  2405. position:absolute;
  2406. align-self:center;
  2407. padding:2px 2px 2px 2px;
  2408. box-sizing:border-box;
  2409. width:100%;
  2410. }
  2411. #u20571_img {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:106px;
  2417. height:35px;
  2418. }
  2419. #u20571_text {
  2420. border-width:0px;
  2421. word-wrap:break-word;
  2422. text-transform:none;
  2423. visibility:hidden;
  2424. }
  2425. #u20572 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:1113px;
  2429. top:30px;
  2430. width:105px;
  2431. height:35px;
  2432. display:flex;
  2433. transition:none;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:14px;
  2438. color:#1890FF;
  2439. }
  2440. #u20572 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 2px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u20572_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:105px;
  2453. height:35px;
  2454. }
  2455. #u20572_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. }
  2460. #u20573 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:65px;
  2465. width:63px;
  2466. height:30px;
  2467. display:flex;
  2468. transition:none;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:14px;
  2473. }
  2474. #u20573 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 2px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u20573_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:63px;
  2487. height:30px;
  2488. }
  2489. #u20573_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u20574 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:63px;
  2499. top:65px;
  2500. width:132px;
  2501. height:30px;
  2502. display:flex;
  2503. transition:none;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:14px;
  2508. }
  2509. #u20574 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 2px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u20574_img {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:132px;
  2522. height:30px;
  2523. }
  2524. #u20574_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u20575 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:196px;
  2534. top:65px;
  2535. width:135px;
  2536. height:30px;
  2537. display:flex;
  2538. transition:none;
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:14px;
  2543. }
  2544. #u20575 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 2px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u20575_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:135px;
  2557. height:30px;
  2558. }
  2559. #u20575_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. visibility:hidden;
  2564. }
  2565. #u20576 {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:331px;
  2569. top:65px;
  2570. width:132px;
  2571. height:30px;
  2572. display:flex;
  2573. transition:none;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:14px;
  2578. }
  2579. #u20576 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u20576_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:132px;
  2592. height:30px;
  2593. }
  2594. #u20576_text {
  2595. border-width:0px;
  2596. word-wrap:break-word;
  2597. text-transform:none;
  2598. visibility:hidden;
  2599. }
  2600. #u20577 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:463px;
  2604. top:65px;
  2605. width:161px;
  2606. height:30px;
  2607. display:flex;
  2608. transition:none;
  2609. font-size:14px;
  2610. }
  2611. #u20577 .text {
  2612. position:absolute;
  2613. align-self:center;
  2614. padding:2px 2px 2px 2px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u20577_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:161px;
  2624. height:30px;
  2625. }
  2626. #u20577_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. visibility:hidden;
  2631. }
  2632. #u20578 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:624px;
  2636. top:65px;
  2637. width:106px;
  2638. height:30px;
  2639. display:flex;
  2640. transition:none;
  2641. font-size:14px;
  2642. }
  2643. #u20578 .text {
  2644. position:absolute;
  2645. align-self:center;
  2646. padding:2px 2px 2px 2px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u20578_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:106px;
  2656. height:30px;
  2657. }
  2658. #u20578_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. visibility:hidden;
  2663. }
  2664. #u20579 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:730px;
  2668. top:65px;
  2669. width:144px;
  2670. height:30px;
  2671. display:flex;
  2672. transition:none;
  2673. font-size:14px;
  2674. }
  2675. #u20579 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 2px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u20579_img {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:144px;
  2688. height:30px;
  2689. }
  2690. #u20579_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. visibility:hidden;
  2695. }
  2696. #u20580 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:873px;
  2700. top:65px;
  2701. width:134px;
  2702. height:30px;
  2703. display:flex;
  2704. transition:none;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:14px;
  2709. }
  2710. #u20580 .text {
  2711. position:absolute;
  2712. align-self:center;
  2713. padding:2px 2px 2px 2px;
  2714. box-sizing:border-box;
  2715. width:100%;
  2716. }
  2717. #u20580_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:134px;
  2723. height:30px;
  2724. }
  2725. #u20580_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. }
  2730. #u20581 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:1007px;
  2734. top:65px;
  2735. width:106px;
  2736. height:30px;
  2737. display:flex;
  2738. transition:none;
  2739. font-size:14px;
  2740. }
  2741. #u20581 .text {
  2742. position:absolute;
  2743. align-self:center;
  2744. padding:2px 2px 2px 2px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u20581_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:106px;
  2754. height:30px;
  2755. }
  2756. #u20581_text {
  2757. border-width:0px;
  2758. word-wrap:break-word;
  2759. text-transform:none;
  2760. visibility:hidden;
  2761. }
  2762. #u20582 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:1113px;
  2766. top:65px;
  2767. width:105px;
  2768. height:30px;
  2769. display:flex;
  2770. transition:none;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:14px;
  2775. color:#1890FF;
  2776. }
  2777. #u20582 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u20582_img {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:105px;
  2790. height:30px;
  2791. }
  2792. #u20582_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. }
  2797. #u20583 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:95px;
  2802. width:63px;
  2803. height:30px;
  2804. display:flex;
  2805. transition:none;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:14px;
  2810. }
  2811. #u20583 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 2px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u20583_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:63px;
  2824. height:30px;
  2825. }
  2826. #u20583_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u20584 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:63px;
  2836. top:95px;
  2837. width:132px;
  2838. height:30px;
  2839. display:flex;
  2840. transition:none;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:14px;
  2845. }
  2846. #u20584 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u20584_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:132px;
  2859. height:30px;
  2860. }
  2861. #u20584_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u20585 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:196px;
  2871. top:95px;
  2872. width:135px;
  2873. height:30px;
  2874. display:flex;
  2875. transition:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:14px;
  2880. }
  2881. #u20585 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 2px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u20585_img {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:135px;
  2894. height:30px;
  2895. }
  2896. #u20585_text {
  2897. border-width:0px;
  2898. word-wrap:break-word;
  2899. text-transform:none;
  2900. visibility:hidden;
  2901. }
  2902. #u20586 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:331px;
  2906. top:95px;
  2907. width:132px;
  2908. height:30px;
  2909. display:flex;
  2910. transition:none;
  2911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:14px;
  2915. }
  2916. #u20586 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u20586_img {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:132px;
  2929. height:30px;
  2930. }
  2931. #u20586_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u20587 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:463px;
  2941. top:95px;
  2942. width:161px;
  2943. height:30px;
  2944. display:flex;
  2945. transition:none;
  2946. font-size:14px;
  2947. }
  2948. #u20587 .text {
  2949. position:absolute;
  2950. align-self:center;
  2951. padding:2px 2px 2px 2px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u20587_img {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:161px;
  2961. height:30px;
  2962. }
  2963. #u20587_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u20588 {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:624px;
  2973. top:95px;
  2974. width:106px;
  2975. height:30px;
  2976. display:flex;
  2977. transition:none;
  2978. font-size:14px;
  2979. }
  2980. #u20588 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 2px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u20588_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:106px;
  2993. height:30px;
  2994. }
  2995. #u20588_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u20589 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:730px;
  3005. top:95px;
  3006. width:144px;
  3007. height:30px;
  3008. display:flex;
  3009. transition:none;
  3010. font-size:14px;
  3011. }
  3012. #u20589 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u20589_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:144px;
  3025. height:30px;
  3026. }
  3027. #u20589_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u20590 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:873px;
  3037. top:95px;
  3038. width:134px;
  3039. height:30px;
  3040. display:flex;
  3041. transition:none;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. }
  3047. #u20590 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:2px 2px 2px 2px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u20590_img {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:134px;
  3060. height:30px;
  3061. }
  3062. #u20590_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. }
  3067. #u20591 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:1007px;
  3071. top:95px;
  3072. width:106px;
  3073. height:30px;
  3074. display:flex;
  3075. transition:none;
  3076. font-size:14px;
  3077. }
  3078. #u20591 .text {
  3079. position:absolute;
  3080. align-self:center;
  3081. padding:2px 2px 2px 2px;
  3082. box-sizing:border-box;
  3083. width:100%;
  3084. }
  3085. #u20591_img {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:106px;
  3091. height:30px;
  3092. }
  3093. #u20591_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u20592 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:1113px;
  3103. top:95px;
  3104. width:105px;
  3105. height:30px;
  3106. display:flex;
  3107. transition:none;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. color:#1890FF;
  3113. }
  3114. #u20592 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 2px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u20592_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:105px;
  3127. height:30px;
  3128. }
  3129. #u20592_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. }
  3134. #u20593 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:125px;
  3139. width:63px;
  3140. height:30px;
  3141. display:flex;
  3142. transition:none;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:14px;
  3147. }
  3148. #u20593 .text {
  3149. position:absolute;
  3150. align-self:center;
  3151. padding:2px 2px 2px 2px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u20593_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:63px;
  3161. height:30px;
  3162. }
  3163. #u20593_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. visibility:hidden;
  3168. }
  3169. #u20594 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:63px;
  3173. top:125px;
  3174. width:132px;
  3175. height:30px;
  3176. display:flex;
  3177. transition:none;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:14px;
  3182. }
  3183. #u20594 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 2px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u20594_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:132px;
  3196. height:30px;
  3197. }
  3198. #u20594_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u20595 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:196px;
  3208. top:125px;
  3209. width:135px;
  3210. height:30px;
  3211. display:flex;
  3212. transition:none;
  3213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:14px;
  3217. }
  3218. #u20595 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u20595_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:135px;
  3231. height:30px;
  3232. }
  3233. #u20595_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u20596 {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:331px;
  3243. top:125px;
  3244. width:132px;
  3245. height:30px;
  3246. display:flex;
  3247. transition:none;
  3248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:14px;
  3252. }
  3253. #u20596 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 2px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u20596_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:132px;
  3266. height:30px;
  3267. }
  3268. #u20596_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u20597 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:463px;
  3278. top:125px;
  3279. width:161px;
  3280. height:30px;
  3281. display:flex;
  3282. transition:none;
  3283. font-size:14px;
  3284. }
  3285. #u20597 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u20597_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:161px;
  3298. height:30px;
  3299. }
  3300. #u20597_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u20598 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:624px;
  3310. top:125px;
  3311. width:106px;
  3312. height:30px;
  3313. display:flex;
  3314. transition:none;
  3315. font-size:14px;
  3316. }
  3317. #u20598 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 2px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u20598_img {
  3325. border-width:0px;
  3326. position:absolute;
  3327. left:0px;
  3328. top:0px;
  3329. width:106px;
  3330. height:30px;
  3331. }
  3332. #u20598_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. visibility:hidden;
  3337. }
  3338. #u20599 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:730px;
  3342. top:125px;
  3343. width:144px;
  3344. height:30px;
  3345. display:flex;
  3346. transition:none;
  3347. font-size:14px;
  3348. }
  3349. #u20599 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 2px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u20599_img {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:0px;
  3360. top:0px;
  3361. width:144px;
  3362. height:30px;
  3363. }
  3364. #u20599_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u20600 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:873px;
  3374. top:125px;
  3375. width:134px;
  3376. height:30px;
  3377. display:flex;
  3378. transition:none;
  3379. font-size:14px;
  3380. }
  3381. #u20600 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 2px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u20600_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:134px;
  3394. height:30px;
  3395. }
  3396. #u20600_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u20601 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:1007px;
  3406. top:125px;
  3407. width:106px;
  3408. height:30px;
  3409. display:flex;
  3410. transition:none;
  3411. font-size:14px;
  3412. }
  3413. #u20601 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 2px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u20601_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:106px;
  3426. height:30px;
  3427. }
  3428. #u20601_text {
  3429. border-width:0px;
  3430. word-wrap:break-word;
  3431. text-transform:none;
  3432. visibility:hidden;
  3433. }
  3434. #u20602 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:1113px;
  3438. top:125px;
  3439. width:105px;
  3440. height:30px;
  3441. display:flex;
  3442. transition:none;
  3443. font-size:14px;
  3444. }
  3445. #u20602 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 2px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u20602_img {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:105px;
  3458. height:30px;
  3459. }
  3460. #u20602_text {
  3461. border-width:0px;
  3462. word-wrap:break-word;
  3463. text-transform:none;
  3464. visibility:hidden;
  3465. }
  3466. #u20603 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:155px;
  3471. width:63px;
  3472. height:30px;
  3473. display:flex;
  3474. transition:none;
  3475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3476. font-weight:400;
  3477. font-style:normal;
  3478. font-size:14px;
  3479. }
  3480. #u20603 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 2px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u20603_img {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:63px;
  3493. height:30px;
  3494. }
  3495. #u20603_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u20604 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:63px;
  3505. top:155px;
  3506. width:132px;
  3507. height:30px;
  3508. display:flex;
  3509. transition:none;
  3510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3511. font-weight:400;
  3512. font-style:normal;
  3513. font-size:14px;
  3514. }
  3515. #u20604 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 2px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u20604_img {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:132px;
  3528. height:30px;
  3529. }
  3530. #u20604_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u20605 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:196px;
  3540. top:155px;
  3541. width:135px;
  3542. height:30px;
  3543. display:flex;
  3544. transition:none;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:14px;
  3549. }
  3550. #u20605 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 2px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u20605_img {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:135px;
  3563. height:30px;
  3564. }
  3565. #u20605_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u20606 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:331px;
  3575. top:155px;
  3576. width:132px;
  3577. height:30px;
  3578. display:flex;
  3579. transition:none;
  3580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3581. font-weight:400;
  3582. font-style:normal;
  3583. font-size:14px;
  3584. }
  3585. #u20606 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u20606_img {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:132px;
  3598. height:30px;
  3599. }
  3600. #u20606_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u20607 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:463px;
  3610. top:155px;
  3611. width:161px;
  3612. height:30px;
  3613. display:flex;
  3614. transition:none;
  3615. font-size:14px;
  3616. }
  3617. #u20607 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 2px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u20607_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:161px;
  3630. height:30px;
  3631. }
  3632. #u20607_text {
  3633. border-width:0px;
  3634. word-wrap:break-word;
  3635. text-transform:none;
  3636. visibility:hidden;
  3637. }
  3638. #u20608 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:624px;
  3642. top:155px;
  3643. width:106px;
  3644. height:30px;
  3645. display:flex;
  3646. transition:none;
  3647. font-size:14px;
  3648. }
  3649. #u20608 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 2px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u20608_img {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:0px;
  3660. top:0px;
  3661. width:106px;
  3662. height:30px;
  3663. }
  3664. #u20608_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u20609 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:730px;
  3674. top:155px;
  3675. width:144px;
  3676. height:30px;
  3677. display:flex;
  3678. transition:none;
  3679. font-size:14px;
  3680. }
  3681. #u20609 .text {
  3682. position:absolute;
  3683. align-self:center;
  3684. padding:2px 2px 2px 2px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u20609_img {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:144px;
  3694. height:30px;
  3695. }
  3696. #u20609_text {
  3697. border-width:0px;
  3698. word-wrap:break-word;
  3699. text-transform:none;
  3700. visibility:hidden;
  3701. }
  3702. #u20610 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:873px;
  3706. top:155px;
  3707. width:134px;
  3708. height:30px;
  3709. display:flex;
  3710. transition:none;
  3711. font-size:14px;
  3712. }
  3713. #u20610 .text {
  3714. position:absolute;
  3715. align-self:center;
  3716. padding:2px 2px 2px 2px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u20610_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:134px;
  3726. height:30px;
  3727. }
  3728. #u20610_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u20611 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:1007px;
  3738. top:155px;
  3739. width:106px;
  3740. height:30px;
  3741. display:flex;
  3742. transition:none;
  3743. font-size:14px;
  3744. }
  3745. #u20611 .text {
  3746. position:absolute;
  3747. align-self:center;
  3748. padding:2px 2px 2px 2px;
  3749. box-sizing:border-box;
  3750. width:100%;
  3751. }
  3752. #u20611_img {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:106px;
  3758. height:30px;
  3759. }
  3760. #u20611_text {
  3761. border-width:0px;
  3762. word-wrap:break-word;
  3763. text-transform:none;
  3764. visibility:hidden;
  3765. }
  3766. #u20612 {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:1113px;
  3770. top:155px;
  3771. width:105px;
  3772. height:30px;
  3773. display:flex;
  3774. transition:none;
  3775. font-size:14px;
  3776. }
  3777. #u20612 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 2px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u20612_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:105px;
  3790. height:30px;
  3791. }
  3792. #u20612_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u20613 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:185px;
  3803. width:63px;
  3804. height:30px;
  3805. display:flex;
  3806. transition:none;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:14px;
  3811. }
  3812. #u20613 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 2px 2px 2px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u20613_img {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:63px;
  3825. height:30px;
  3826. }
  3827. #u20613_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u20614 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:63px;
  3837. top:185px;
  3838. width:132px;
  3839. height:30px;
  3840. display:flex;
  3841. transition:none;
  3842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:14px;
  3846. }
  3847. #u20614 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 2px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u20614_img {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:132px;
  3860. height:30px;
  3861. }
  3862. #u20614_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. visibility:hidden;
  3867. }
  3868. #u20615 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:196px;
  3872. top:185px;
  3873. width:135px;
  3874. height:30px;
  3875. display:flex;
  3876. transition:none;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:14px;
  3881. }
  3882. #u20615 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u20615_img {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:135px;
  3895. height:30px;
  3896. }
  3897. #u20615_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u20616 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:331px;
  3907. top:185px;
  3908. width:132px;
  3909. height:30px;
  3910. display:flex;
  3911. transition:none;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:14px;
  3916. }
  3917. #u20616 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:2px 2px 2px 2px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u20616_img {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:132px;
  3930. height:30px;
  3931. }
  3932. #u20616_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u20617 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:463px;
  3942. top:185px;
  3943. width:161px;
  3944. height:30px;
  3945. display:flex;
  3946. transition:none;
  3947. font-size:14px;
  3948. }
  3949. #u20617 .text {
  3950. position:absolute;
  3951. align-self:center;
  3952. padding:2px 2px 2px 2px;
  3953. box-sizing:border-box;
  3954. width:100%;
  3955. }
  3956. #u20617_img {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:161px;
  3962. height:30px;
  3963. }
  3964. #u20617_text {
  3965. border-width:0px;
  3966. word-wrap:break-word;
  3967. text-transform:none;
  3968. visibility:hidden;
  3969. }
  3970. #u20618 {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:624px;
  3974. top:185px;
  3975. width:106px;
  3976. height:30px;
  3977. display:flex;
  3978. transition:none;
  3979. font-size:14px;
  3980. }
  3981. #u20618 .text {
  3982. position:absolute;
  3983. align-self:center;
  3984. padding:2px 2px 2px 2px;
  3985. box-sizing:border-box;
  3986. width:100%;
  3987. }
  3988. #u20618_img {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:106px;
  3994. height:30px;
  3995. }
  3996. #u20618_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. visibility:hidden;
  4001. }
  4002. #u20619 {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:730px;
  4006. top:185px;
  4007. width:144px;
  4008. height:30px;
  4009. display:flex;
  4010. transition:none;
  4011. font-size:14px;
  4012. }
  4013. #u20619 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 2px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u20619_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:144px;
  4026. height:30px;
  4027. }
  4028. #u20619_text {
  4029. border-width:0px;
  4030. word-wrap:break-word;
  4031. text-transform:none;
  4032. visibility:hidden;
  4033. }
  4034. #u20620 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:873px;
  4038. top:185px;
  4039. width:134px;
  4040. height:30px;
  4041. display:flex;
  4042. transition:none;
  4043. font-size:14px;
  4044. }
  4045. #u20620 .text {
  4046. position:absolute;
  4047. align-self:center;
  4048. padding:2px 2px 2px 2px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u20620_img {
  4053. border-width:0px;
  4054. position:absolute;
  4055. left:0px;
  4056. top:0px;
  4057. width:134px;
  4058. height:30px;
  4059. }
  4060. #u20620_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u20621 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:1007px;
  4070. top:185px;
  4071. width:106px;
  4072. height:30px;
  4073. display:flex;
  4074. transition:none;
  4075. font-size:14px;
  4076. }
  4077. #u20621 .text {
  4078. position:absolute;
  4079. align-self:center;
  4080. padding:2px 2px 2px 2px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u20621_img {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:0px;
  4088. top:0px;
  4089. width:106px;
  4090. height:30px;
  4091. }
  4092. #u20621_text {
  4093. border-width:0px;
  4094. word-wrap:break-word;
  4095. text-transform:none;
  4096. visibility:hidden;
  4097. }
  4098. #u20622 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:1113px;
  4102. top:185px;
  4103. width:105px;
  4104. height:30px;
  4105. display:flex;
  4106. transition:none;
  4107. font-size:14px;
  4108. }
  4109. #u20622 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:2px 2px 2px 2px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u20622_img {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:105px;
  4122. height:30px;
  4123. }
  4124. #u20622_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u20623 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:215px;
  4135. width:63px;
  4136. height:30px;
  4137. display:flex;
  4138. transition:none;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:14px;
  4143. }
  4144. #u20623 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u20623_img {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:63px;
  4157. height:30px;
  4158. }
  4159. #u20623_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u20624 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:63px;
  4169. top:215px;
  4170. width:132px;
  4171. height:30px;
  4172. display:flex;
  4173. transition:none;
  4174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:14px;
  4178. }
  4179. #u20624 .text {
  4180. position:absolute;
  4181. align-self:center;
  4182. padding:2px 2px 2px 2px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u20624_img {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:132px;
  4192. height:30px;
  4193. }
  4194. #u20624_text {
  4195. border-width:0px;
  4196. word-wrap:break-word;
  4197. text-transform:none;
  4198. visibility:hidden;
  4199. }
  4200. #u20625 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:196px;
  4204. top:215px;
  4205. width:135px;
  4206. height:30px;
  4207. display:flex;
  4208. transition:none;
  4209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:14px;
  4213. }
  4214. #u20625 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 2px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u20625_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:135px;
  4227. height:30px;
  4228. }
  4229. #u20625_text {
  4230. border-width:0px;
  4231. word-wrap:break-word;
  4232. text-transform:none;
  4233. visibility:hidden;
  4234. }
  4235. #u20626 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:331px;
  4239. top:215px;
  4240. width:132px;
  4241. height:30px;
  4242. display:flex;
  4243. transition:none;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:14px;
  4248. }
  4249. #u20626 .text {
  4250. position:absolute;
  4251. align-self:center;
  4252. padding:2px 2px 2px 2px;
  4253. box-sizing:border-box;
  4254. width:100%;
  4255. }
  4256. #u20626_img {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:132px;
  4262. height:30px;
  4263. }
  4264. #u20626_text {
  4265. border-width:0px;
  4266. word-wrap:break-word;
  4267. text-transform:none;
  4268. visibility:hidden;
  4269. }
  4270. #u20627 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:463px;
  4274. top:215px;
  4275. width:161px;
  4276. height:30px;
  4277. display:flex;
  4278. transition:none;
  4279. font-size:14px;
  4280. }
  4281. #u20627 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 2px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u20627_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:161px;
  4294. height:30px;
  4295. }
  4296. #u20627_text {
  4297. border-width:0px;
  4298. word-wrap:break-word;
  4299. text-transform:none;
  4300. visibility:hidden;
  4301. }
  4302. #u20628 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:624px;
  4306. top:215px;
  4307. width:106px;
  4308. height:30px;
  4309. display:flex;
  4310. transition:none;
  4311. font-size:14px;
  4312. }
  4313. #u20628 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:2px 2px 2px 2px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u20628_img {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:106px;
  4326. height:30px;
  4327. }
  4328. #u20628_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u20629 {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:730px;
  4338. top:215px;
  4339. width:144px;
  4340. height:30px;
  4341. display:flex;
  4342. transition:none;
  4343. font-size:14px;
  4344. }
  4345. #u20629 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 2px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u20629_img {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:144px;
  4358. height:30px;
  4359. }
  4360. #u20629_text {
  4361. border-width:0px;
  4362. word-wrap:break-word;
  4363. text-transform:none;
  4364. visibility:hidden;
  4365. }
  4366. #u20630 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:873px;
  4370. top:215px;
  4371. width:134px;
  4372. height:30px;
  4373. display:flex;
  4374. transition:none;
  4375. font-size:14px;
  4376. }
  4377. #u20630 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 2px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u20630_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:134px;
  4390. height:30px;
  4391. }
  4392. #u20630_text {
  4393. border-width:0px;
  4394. word-wrap:break-word;
  4395. text-transform:none;
  4396. visibility:hidden;
  4397. }
  4398. #u20631 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:1007px;
  4402. top:215px;
  4403. width:106px;
  4404. height:30px;
  4405. display:flex;
  4406. transition:none;
  4407. font-size:14px;
  4408. }
  4409. #u20631 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u20631_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:106px;
  4422. height:30px;
  4423. }
  4424. #u20631_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u20632 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:1113px;
  4434. top:215px;
  4435. width:105px;
  4436. height:30px;
  4437. display:flex;
  4438. transition:none;
  4439. font-size:14px;
  4440. }
  4441. #u20632 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 2px 2px 2px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u20632_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:105px;
  4454. height:30px;
  4455. }
  4456. #u20632_text {
  4457. border-width:0px;
  4458. word-wrap:break-word;
  4459. text-transform:none;
  4460. visibility:hidden;
  4461. }
  4462. #u20633 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:0px;
  4466. top:245px;
  4467. width:63px;
  4468. height:30px;
  4469. display:flex;
  4470. transition:none;
  4471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:14px;
  4475. }
  4476. #u20633 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 2px 2px 2px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u20633_img {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:63px;
  4489. height:30px;
  4490. }
  4491. #u20633_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u20634 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:63px;
  4501. top:245px;
  4502. width:132px;
  4503. height:30px;
  4504. display:flex;
  4505. transition:none;
  4506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:14px;
  4510. }
  4511. #u20634 .text {
  4512. position:absolute;
  4513. align-self:center;
  4514. padding:2px 2px 2px 2px;
  4515. box-sizing:border-box;
  4516. width:100%;
  4517. }
  4518. #u20634_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:132px;
  4524. height:30px;
  4525. }
  4526. #u20634_text {
  4527. border-width:0px;
  4528. word-wrap:break-word;
  4529. text-transform:none;
  4530. visibility:hidden;
  4531. }
  4532. #u20635 {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:196px;
  4536. top:245px;
  4537. width:135px;
  4538. height:30px;
  4539. display:flex;
  4540. transition:none;
  4541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:14px;
  4545. }
  4546. #u20635 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 2px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u20635_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:135px;
  4559. height:30px;
  4560. }
  4561. #u20635_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. visibility:hidden;
  4566. }
  4567. #u20636 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:331px;
  4571. top:245px;
  4572. width:132px;
  4573. height:30px;
  4574. display:flex;
  4575. transition:none;
  4576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:14px;
  4580. }
  4581. #u20636 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 2px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u20636_img {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:132px;
  4594. height:30px;
  4595. }
  4596. #u20636_text {
  4597. border-width:0px;
  4598. word-wrap:break-word;
  4599. text-transform:none;
  4600. visibility:hidden;
  4601. }
  4602. #u20637 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:463px;
  4606. top:245px;
  4607. width:161px;
  4608. height:30px;
  4609. display:flex;
  4610. transition:none;
  4611. font-size:14px;
  4612. }
  4613. #u20637 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u20637_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:161px;
  4626. height:30px;
  4627. }
  4628. #u20637_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u20638 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:624px;
  4638. top:245px;
  4639. width:106px;
  4640. height:30px;
  4641. display:flex;
  4642. transition:none;
  4643. font-size:14px;
  4644. }
  4645. #u20638 .text {
  4646. position:absolute;
  4647. align-self:center;
  4648. padding:2px 2px 2px 2px;
  4649. box-sizing:border-box;
  4650. width:100%;
  4651. }
  4652. #u20638_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:106px;
  4658. height:30px;
  4659. }
  4660. #u20638_text {
  4661. border-width:0px;
  4662. word-wrap:break-word;
  4663. text-transform:none;
  4664. visibility:hidden;
  4665. }
  4666. #u20639 {
  4667. border-width:0px;
  4668. position:absolute;
  4669. left:730px;
  4670. top:245px;
  4671. width:144px;
  4672. height:30px;
  4673. display:flex;
  4674. transition:none;
  4675. font-size:14px;
  4676. }
  4677. #u20639 .text {
  4678. position:absolute;
  4679. align-self:center;
  4680. padding:2px 2px 2px 2px;
  4681. box-sizing:border-box;
  4682. width:100%;
  4683. }
  4684. #u20639_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:144px;
  4690. height:30px;
  4691. }
  4692. #u20639_text {
  4693. border-width:0px;
  4694. word-wrap:break-word;
  4695. text-transform:none;
  4696. visibility:hidden;
  4697. }
  4698. #u20640 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:873px;
  4702. top:245px;
  4703. width:134px;
  4704. height:30px;
  4705. display:flex;
  4706. transition:none;
  4707. font-size:14px;
  4708. }
  4709. #u20640 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u20640_img {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:134px;
  4722. height:30px;
  4723. }
  4724. #u20640_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u20641 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:1007px;
  4734. top:245px;
  4735. width:106px;
  4736. height:30px;
  4737. display:flex;
  4738. transition:none;
  4739. font-size:14px;
  4740. }
  4741. #u20641 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 2px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u20641_img {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:106px;
  4754. height:30px;
  4755. }
  4756. #u20641_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u20642 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:1113px;
  4766. top:245px;
  4767. width:105px;
  4768. height:30px;
  4769. display:flex;
  4770. transition:none;
  4771. font-size:14px;
  4772. }
  4773. #u20642 .text {
  4774. position:absolute;
  4775. align-self:center;
  4776. padding:2px 2px 2px 2px;
  4777. box-sizing:border-box;
  4778. width:100%;
  4779. }
  4780. #u20642_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:105px;
  4786. height:30px;
  4787. }
  4788. #u20642_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. visibility:hidden;
  4793. }
  4794. #u20643 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:275px;
  4799. width:63px;
  4800. height:30px;
  4801. display:flex;
  4802. transition:none;
  4803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4804. font-weight:400;
  4805. font-style:normal;
  4806. font-size:14px;
  4807. }
  4808. #u20643 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 2px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u20643_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:63px;
  4821. height:30px;
  4822. }
  4823. #u20643_text {
  4824. border-width:0px;
  4825. word-wrap:break-word;
  4826. text-transform:none;
  4827. visibility:hidden;
  4828. }
  4829. #u20644 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:63px;
  4833. top:275px;
  4834. width:132px;
  4835. height:30px;
  4836. display:flex;
  4837. transition:none;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. }
  4843. #u20644 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:2px 2px 2px 2px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u20644_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:132px;
  4856. height:30px;
  4857. }
  4858. #u20644_text {
  4859. border-width:0px;
  4860. word-wrap:break-word;
  4861. text-transform:none;
  4862. visibility:hidden;
  4863. }
  4864. #u20645 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:196px;
  4868. top:275px;
  4869. width:135px;
  4870. height:30px;
  4871. display:flex;
  4872. transition:none;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. }
  4878. #u20645 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 2px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u20645_img {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:135px;
  4891. height:30px;
  4892. }
  4893. #u20645_text {
  4894. border-width:0px;
  4895. word-wrap:break-word;
  4896. text-transform:none;
  4897. visibility:hidden;
  4898. }
  4899. #u20646 {
  4900. border-width:0px;
  4901. position:absolute;
  4902. left:331px;
  4903. top:275px;
  4904. width:132px;
  4905. height:30px;
  4906. display:flex;
  4907. transition:none;
  4908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:14px;
  4912. }
  4913. #u20646 .text {
  4914. position:absolute;
  4915. align-self:center;
  4916. padding:2px 2px 2px 2px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u20646_img {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:132px;
  4926. height:30px;
  4927. }
  4928. #u20646_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. visibility:hidden;
  4933. }
  4934. #u20647 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:463px;
  4938. top:275px;
  4939. width:161px;
  4940. height:30px;
  4941. display:flex;
  4942. transition:none;
  4943. font-size:14px;
  4944. }
  4945. #u20647 .text {
  4946. position:absolute;
  4947. align-self:center;
  4948. padding:2px 2px 2px 2px;
  4949. box-sizing:border-box;
  4950. width:100%;
  4951. }
  4952. #u20647_img {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:0px;
  4956. top:0px;
  4957. width:161px;
  4958. height:30px;
  4959. }
  4960. #u20647_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u20648 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:624px;
  4970. top:275px;
  4971. width:106px;
  4972. height:30px;
  4973. display:flex;
  4974. transition:none;
  4975. font-size:14px;
  4976. }
  4977. #u20648 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 2px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u20648_img {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:106px;
  4990. height:30px;
  4991. }
  4992. #u20648_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u20649 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:730px;
  5002. top:275px;
  5003. width:144px;
  5004. height:30px;
  5005. display:flex;
  5006. transition:none;
  5007. font-size:14px;
  5008. }
  5009. #u20649 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 2px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u20649_img {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:144px;
  5022. height:30px;
  5023. }
  5024. #u20649_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u20650 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:873px;
  5034. top:275px;
  5035. width:134px;
  5036. height:30px;
  5037. display:flex;
  5038. transition:none;
  5039. font-size:14px;
  5040. }
  5041. #u20650 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:2px 2px 2px 2px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u20650_img {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:134px;
  5054. height:30px;
  5055. }
  5056. #u20650_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u20651 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:1007px;
  5066. top:275px;
  5067. width:106px;
  5068. height:30px;
  5069. display:flex;
  5070. transition:none;
  5071. font-size:14px;
  5072. }
  5073. #u20651 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 2px 2px 2px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u20651_img {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:106px;
  5086. height:30px;
  5087. }
  5088. #u20651_text {
  5089. border-width:0px;
  5090. word-wrap:break-word;
  5091. text-transform:none;
  5092. visibility:hidden;
  5093. }
  5094. #u20652 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:1113px;
  5098. top:275px;
  5099. width:105px;
  5100. height:30px;
  5101. display:flex;
  5102. transition:none;
  5103. font-size:14px;
  5104. }
  5105. #u20652 .text {
  5106. position:absolute;
  5107. align-self:center;
  5108. padding:2px 2px 2px 2px;
  5109. box-sizing:border-box;
  5110. width:100%;
  5111. }
  5112. #u20652_img {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:105px;
  5118. height:30px;
  5119. }
  5120. #u20652_text {
  5121. border-width:0px;
  5122. word-wrap:break-word;
  5123. text-transform:none;
  5124. visibility:hidden;
  5125. }
  5126. #u20653 {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:305px;
  5131. width:63px;
  5132. height:30px;
  5133. display:flex;
  5134. transition:none;
  5135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:14px;
  5139. }
  5140. #u20653 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:2px 2px 2px 2px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u20653_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:63px;
  5153. height:30px;
  5154. }
  5155. #u20653_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u20654 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:63px;
  5165. top:305px;
  5166. width:132px;
  5167. height:30px;
  5168. display:flex;
  5169. transition:none;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:14px;
  5174. }
  5175. #u20654 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:2px 2px 2px 2px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u20654_img {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:132px;
  5188. height:30px;
  5189. }
  5190. #u20654_text {
  5191. border-width:0px;
  5192. word-wrap:break-word;
  5193. text-transform:none;
  5194. visibility:hidden;
  5195. }
  5196. #u20655 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:196px;
  5200. top:305px;
  5201. width:135px;
  5202. height:30px;
  5203. display:flex;
  5204. transition:none;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. }
  5210. #u20655 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u20655_img {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:135px;
  5223. height:30px;
  5224. }
  5225. #u20655_text {
  5226. border-width:0px;
  5227. word-wrap:break-word;
  5228. text-transform:none;
  5229. visibility:hidden;
  5230. }
  5231. #u20656 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:331px;
  5235. top:305px;
  5236. width:132px;
  5237. height:30px;
  5238. display:flex;
  5239. transition:none;
  5240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5241. font-weight:400;
  5242. font-style:normal;
  5243. font-size:14px;
  5244. }
  5245. #u20656 .text {
  5246. position:absolute;
  5247. align-self:center;
  5248. padding:2px 2px 2px 2px;
  5249. box-sizing:border-box;
  5250. width:100%;
  5251. }
  5252. #u20656_img {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:132px;
  5258. height:30px;
  5259. }
  5260. #u20656_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. visibility:hidden;
  5265. }
  5266. #u20657 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:463px;
  5270. top:305px;
  5271. width:161px;
  5272. height:30px;
  5273. display:flex;
  5274. transition:none;
  5275. font-size:14px;
  5276. }
  5277. #u20657 .text {
  5278. position:absolute;
  5279. align-self:center;
  5280. padding:2px 2px 2px 2px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u20657_img {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:161px;
  5290. height:30px;
  5291. }
  5292. #u20657_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. visibility:hidden;
  5297. }
  5298. #u20658 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:624px;
  5302. top:305px;
  5303. width:106px;
  5304. height:30px;
  5305. display:flex;
  5306. transition:none;
  5307. font-size:14px;
  5308. }
  5309. #u20658 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:2px 2px 2px 2px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u20658_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:106px;
  5322. height:30px;
  5323. }
  5324. #u20658_text {
  5325. border-width:0px;
  5326. word-wrap:break-word;
  5327. text-transform:none;
  5328. visibility:hidden;
  5329. }
  5330. #u20659 {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:730px;
  5334. top:305px;
  5335. width:144px;
  5336. height:30px;
  5337. display:flex;
  5338. transition:none;
  5339. font-size:14px;
  5340. }
  5341. #u20659 .text {
  5342. position:absolute;
  5343. align-self:center;
  5344. padding:2px 2px 2px 2px;
  5345. box-sizing:border-box;
  5346. width:100%;
  5347. }
  5348. #u20659_img {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:144px;
  5354. height:30px;
  5355. }
  5356. #u20659_text {
  5357. border-width:0px;
  5358. word-wrap:break-word;
  5359. text-transform:none;
  5360. visibility:hidden;
  5361. }
  5362. #u20660 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:873px;
  5366. top:305px;
  5367. width:134px;
  5368. height:30px;
  5369. display:flex;
  5370. transition:none;
  5371. font-size:14px;
  5372. }
  5373. #u20660 .text {
  5374. position:absolute;
  5375. align-self:center;
  5376. padding:2px 2px 2px 2px;
  5377. box-sizing:border-box;
  5378. width:100%;
  5379. }
  5380. #u20660_img {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:134px;
  5386. height:30px;
  5387. }
  5388. #u20660_text {
  5389. border-width:0px;
  5390. word-wrap:break-word;
  5391. text-transform:none;
  5392. visibility:hidden;
  5393. }
  5394. #u20661 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:1007px;
  5398. top:305px;
  5399. width:106px;
  5400. height:30px;
  5401. display:flex;
  5402. transition:none;
  5403. font-size:14px;
  5404. }
  5405. #u20661 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u20661_img {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:106px;
  5418. height:30px;
  5419. }
  5420. #u20661_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. visibility:hidden;
  5425. }
  5426. #u20662 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:1113px;
  5430. top:305px;
  5431. width:105px;
  5432. height:30px;
  5433. display:flex;
  5434. transition:none;
  5435. font-size:14px;
  5436. }
  5437. #u20662 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:2px 2px 2px 2px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u20662_img {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:105px;
  5450. height:30px;
  5451. }
  5452. #u20662_text {
  5453. border-width:0px;
  5454. word-wrap:break-word;
  5455. text-transform:none;
  5456. visibility:hidden;
  5457. }
  5458. #u20663 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:335px;
  5463. width:63px;
  5464. height:30px;
  5465. display:flex;
  5466. transition:none;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:14px;
  5471. }
  5472. #u20663 .text {
  5473. position:absolute;
  5474. align-self:center;
  5475. padding:2px 2px 2px 2px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u20663_img {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:63px;
  5485. height:30px;
  5486. }
  5487. #u20663_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u20664 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:63px;
  5497. top:335px;
  5498. width:132px;
  5499. height:30px;
  5500. display:flex;
  5501. transition:none;
  5502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:14px;
  5506. }
  5507. #u20664 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 2px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u20664_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:132px;
  5520. height:30px;
  5521. }
  5522. #u20664_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u20665 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:196px;
  5532. top:335px;
  5533. width:135px;
  5534. height:30px;
  5535. display:flex;
  5536. transition:none;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:14px;
  5541. }
  5542. #u20665 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:2px 2px 2px 2px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u20665_img {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:135px;
  5555. height:30px;
  5556. }
  5557. #u20665_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. visibility:hidden;
  5562. }
  5563. #u20666 {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:331px;
  5567. top:335px;
  5568. width:132px;
  5569. height:30px;
  5570. display:flex;
  5571. transition:none;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:14px;
  5576. }
  5577. #u20666 .text {
  5578. position:absolute;
  5579. align-self:center;
  5580. padding:2px 2px 2px 2px;
  5581. box-sizing:border-box;
  5582. width:100%;
  5583. }
  5584. #u20666_img {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:132px;
  5590. height:30px;
  5591. }
  5592. #u20666_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. visibility:hidden;
  5597. }
  5598. #u20667 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:463px;
  5602. top:335px;
  5603. width:161px;
  5604. height:30px;
  5605. display:flex;
  5606. transition:none;
  5607. font-size:14px;
  5608. }
  5609. #u20667 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:2px 2px 2px 2px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u20667_img {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:161px;
  5622. height:30px;
  5623. }
  5624. #u20667_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. visibility:hidden;
  5629. }
  5630. #u20668 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:624px;
  5634. top:335px;
  5635. width:106px;
  5636. height:30px;
  5637. display:flex;
  5638. transition:none;
  5639. font-size:14px;
  5640. }
  5641. #u20668 .text {
  5642. position:absolute;
  5643. align-self:center;
  5644. padding:2px 2px 2px 2px;
  5645. box-sizing:border-box;
  5646. width:100%;
  5647. }
  5648. #u20668_img {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:106px;
  5654. height:30px;
  5655. }
  5656. #u20668_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. visibility:hidden;
  5661. }
  5662. #u20669 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:730px;
  5666. top:335px;
  5667. width:144px;
  5668. height:30px;
  5669. display:flex;
  5670. transition:none;
  5671. font-size:14px;
  5672. }
  5673. #u20669 .text {
  5674. position:absolute;
  5675. align-self:center;
  5676. padding:2px 2px 2px 2px;
  5677. box-sizing:border-box;
  5678. width:100%;
  5679. }
  5680. #u20669_img {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:144px;
  5686. height:30px;
  5687. }
  5688. #u20669_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. visibility:hidden;
  5693. }
  5694. #u20670 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:873px;
  5698. top:335px;
  5699. width:134px;
  5700. height:30px;
  5701. display:flex;
  5702. transition:none;
  5703. font-size:14px;
  5704. }
  5705. #u20670 .text {
  5706. position:absolute;
  5707. align-self:center;
  5708. padding:2px 2px 2px 2px;
  5709. box-sizing:border-box;
  5710. width:100%;
  5711. }
  5712. #u20670_img {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:134px;
  5718. height:30px;
  5719. }
  5720. #u20670_text {
  5721. border-width:0px;
  5722. word-wrap:break-word;
  5723. text-transform:none;
  5724. visibility:hidden;
  5725. }
  5726. #u20671 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:1007px;
  5730. top:335px;
  5731. width:106px;
  5732. height:30px;
  5733. display:flex;
  5734. transition:none;
  5735. font-size:14px;
  5736. }
  5737. #u20671 .text {
  5738. position:absolute;
  5739. align-self:center;
  5740. padding:2px 2px 2px 2px;
  5741. box-sizing:border-box;
  5742. width:100%;
  5743. }
  5744. #u20671_img {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:106px;
  5750. height:30px;
  5751. }
  5752. #u20671_text {
  5753. border-width:0px;
  5754. word-wrap:break-word;
  5755. text-transform:none;
  5756. visibility:hidden;
  5757. }
  5758. #u20672 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:1113px;
  5762. top:335px;
  5763. width:105px;
  5764. height:30px;
  5765. display:flex;
  5766. transition:none;
  5767. font-size:14px;
  5768. }
  5769. #u20672 .text {
  5770. position:absolute;
  5771. align-self:center;
  5772. padding:2px 2px 2px 2px;
  5773. box-sizing:border-box;
  5774. width:100%;
  5775. }
  5776. #u20672_img {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:105px;
  5782. height:30px;
  5783. }
  5784. #u20672_text {
  5785. border-width:0px;
  5786. word-wrap:break-word;
  5787. text-transform:none;
  5788. visibility:hidden;
  5789. }
  5790. #u20673 {
  5791. border-width:0px;
  5792. position:absolute;
  5793. left:0px;
  5794. top:365px;
  5795. width:63px;
  5796. height:30px;
  5797. display:flex;
  5798. transition:none;
  5799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:14px;
  5803. }
  5804. #u20673 .text {
  5805. position:absolute;
  5806. align-self:center;
  5807. padding:2px 2px 2px 2px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u20673_img {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:63px;
  5817. height:30px;
  5818. }
  5819. #u20673_text {
  5820. border-width:0px;
  5821. word-wrap:break-word;
  5822. text-transform:none;
  5823. visibility:hidden;
  5824. }
  5825. #u20674 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:63px;
  5829. top:365px;
  5830. width:132px;
  5831. height:30px;
  5832. display:flex;
  5833. transition:none;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:14px;
  5838. }
  5839. #u20674 .text {
  5840. position:absolute;
  5841. align-self:center;
  5842. padding:2px 2px 2px 2px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u20674_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:132px;
  5852. height:30px;
  5853. }
  5854. #u20674_text {
  5855. border-width:0px;
  5856. word-wrap:break-word;
  5857. text-transform:none;
  5858. visibility:hidden;
  5859. }
  5860. #u20675 {
  5861. border-width:0px;
  5862. position:absolute;
  5863. left:196px;
  5864. top:365px;
  5865. width:135px;
  5866. height:30px;
  5867. display:flex;
  5868. transition:none;
  5869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:14px;
  5873. }
  5874. #u20675 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 2px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u20675_img {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:135px;
  5887. height:30px;
  5888. }
  5889. #u20675_text {
  5890. border-width:0px;
  5891. word-wrap:break-word;
  5892. text-transform:none;
  5893. visibility:hidden;
  5894. }
  5895. #u20676 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:331px;
  5899. top:365px;
  5900. width:132px;
  5901. height:30px;
  5902. display:flex;
  5903. transition:none;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:14px;
  5908. }
  5909. #u20676 .text {
  5910. position:absolute;
  5911. align-self:center;
  5912. padding:2px 2px 2px 2px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u20676_img {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:132px;
  5922. height:30px;
  5923. }
  5924. #u20676_text {
  5925. border-width:0px;
  5926. word-wrap:break-word;
  5927. text-transform:none;
  5928. visibility:hidden;
  5929. }
  5930. #u20677 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:463px;
  5934. top:365px;
  5935. width:161px;
  5936. height:30px;
  5937. display:flex;
  5938. transition:none;
  5939. font-size:14px;
  5940. }
  5941. #u20677 .text {
  5942. position:absolute;
  5943. align-self:center;
  5944. padding:2px 2px 2px 2px;
  5945. box-sizing:border-box;
  5946. width:100%;
  5947. }
  5948. #u20677_img {
  5949. border-width:0px;
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:161px;
  5954. height:30px;
  5955. }
  5956. #u20677_text {
  5957. border-width:0px;
  5958. word-wrap:break-word;
  5959. text-transform:none;
  5960. visibility:hidden;
  5961. }
  5962. #u20678 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:624px;
  5966. top:365px;
  5967. width:106px;
  5968. height:30px;
  5969. display:flex;
  5970. transition:none;
  5971. font-size:14px;
  5972. }
  5973. #u20678 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 2px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u20678_img {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:106px;
  5986. height:30px;
  5987. }
  5988. #u20678_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u20679 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:730px;
  5998. top:365px;
  5999. width:144px;
  6000. height:30px;
  6001. display:flex;
  6002. transition:none;
  6003. font-size:14px;
  6004. }
  6005. #u20679 .text {
  6006. position:absolute;
  6007. align-self:center;
  6008. padding:2px 2px 2px 2px;
  6009. box-sizing:border-box;
  6010. width:100%;
  6011. }
  6012. #u20679_img {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:144px;
  6018. height:30px;
  6019. }
  6020. #u20679_text {
  6021. border-width:0px;
  6022. word-wrap:break-word;
  6023. text-transform:none;
  6024. visibility:hidden;
  6025. }
  6026. #u20680 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:873px;
  6030. top:365px;
  6031. width:134px;
  6032. height:30px;
  6033. display:flex;
  6034. transition:none;
  6035. font-size:14px;
  6036. }
  6037. #u20680 .text {
  6038. position:absolute;
  6039. align-self:center;
  6040. padding:2px 2px 2px 2px;
  6041. box-sizing:border-box;
  6042. width:100%;
  6043. }
  6044. #u20680_img {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:0px;
  6048. top:0px;
  6049. width:134px;
  6050. height:30px;
  6051. }
  6052. #u20680_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u20681 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:1007px;
  6062. top:365px;
  6063. width:106px;
  6064. height:30px;
  6065. display:flex;
  6066. transition:none;
  6067. font-size:14px;
  6068. }
  6069. #u20681 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 2px 2px 2px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u20681_img {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:0px;
  6080. top:0px;
  6081. width:106px;
  6082. height:30px;
  6083. }
  6084. #u20681_text {
  6085. border-width:0px;
  6086. word-wrap:break-word;
  6087. text-transform:none;
  6088. visibility:hidden;
  6089. }
  6090. #u20682 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:1113px;
  6094. top:365px;
  6095. width:105px;
  6096. height:30px;
  6097. display:flex;
  6098. transition:none;
  6099. font-size:14px;
  6100. }
  6101. #u20682 .text {
  6102. position:absolute;
  6103. align-self:center;
  6104. padding:2px 2px 2px 2px;
  6105. box-sizing:border-box;
  6106. width:100%;
  6107. }
  6108. #u20682_img {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:105px;
  6114. height:30px;
  6115. }
  6116. #u20682_text {
  6117. border-width:0px;
  6118. word-wrap:break-word;
  6119. text-transform:none;
  6120. visibility:hidden;
  6121. }
  6122. #u20683 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:395px;
  6127. width:63px;
  6128. height:30px;
  6129. display:flex;
  6130. transition:none;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:14px;
  6135. }
  6136. #u20683 .text {
  6137. position:absolute;
  6138. align-self:center;
  6139. padding:2px 2px 2px 2px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u20683_img {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:63px;
  6149. height:30px;
  6150. }
  6151. #u20683_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u20684 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:63px;
  6161. top:395px;
  6162. width:132px;
  6163. height:30px;
  6164. display:flex;
  6165. transition:none;
  6166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:14px;
  6170. }
  6171. #u20684 .text {
  6172. position:absolute;
  6173. align-self:center;
  6174. padding:2px 2px 2px 2px;
  6175. box-sizing:border-box;
  6176. width:100%;
  6177. }
  6178. #u20684_img {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:132px;
  6184. height:30px;
  6185. }
  6186. #u20684_text {
  6187. border-width:0px;
  6188. word-wrap:break-word;
  6189. text-transform:none;
  6190. visibility:hidden;
  6191. }
  6192. #u20685 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:196px;
  6196. top:395px;
  6197. width:135px;
  6198. height:30px;
  6199. display:flex;
  6200. transition:none;
  6201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6202. font-weight:400;
  6203. font-style:normal;
  6204. font-size:14px;
  6205. }
  6206. #u20685 .text {
  6207. position:absolute;
  6208. align-self:center;
  6209. padding:2px 2px 2px 2px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u20685_img {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:135px;
  6219. height:30px;
  6220. }
  6221. #u20685_text {
  6222. border-width:0px;
  6223. word-wrap:break-word;
  6224. text-transform:none;
  6225. visibility:hidden;
  6226. }
  6227. #u20686 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:331px;
  6231. top:395px;
  6232. width:132px;
  6233. height:30px;
  6234. display:flex;
  6235. transition:none;
  6236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6237. font-weight:400;
  6238. font-style:normal;
  6239. font-size:14px;
  6240. }
  6241. #u20686 .text {
  6242. position:absolute;
  6243. align-self:center;
  6244. padding:2px 2px 2px 2px;
  6245. box-sizing:border-box;
  6246. width:100%;
  6247. }
  6248. #u20686_img {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:132px;
  6254. height:30px;
  6255. }
  6256. #u20686_text {
  6257. border-width:0px;
  6258. word-wrap:break-word;
  6259. text-transform:none;
  6260. visibility:hidden;
  6261. }
  6262. #u20687 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:463px;
  6266. top:395px;
  6267. width:161px;
  6268. height:30px;
  6269. display:flex;
  6270. transition:none;
  6271. font-size:14px;
  6272. }
  6273. #u20687 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:2px 2px 2px 2px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u20687_img {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:0px;
  6284. top:0px;
  6285. width:161px;
  6286. height:30px;
  6287. }
  6288. #u20687_text {
  6289. border-width:0px;
  6290. word-wrap:break-word;
  6291. text-transform:none;
  6292. visibility:hidden;
  6293. }
  6294. #u20688 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:624px;
  6298. top:395px;
  6299. width:106px;
  6300. height:30px;
  6301. display:flex;
  6302. transition:none;
  6303. font-size:14px;
  6304. }
  6305. #u20688 .text {
  6306. position:absolute;
  6307. align-self:center;
  6308. padding:2px 2px 2px 2px;
  6309. box-sizing:border-box;
  6310. width:100%;
  6311. }
  6312. #u20688_img {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:106px;
  6318. height:30px;
  6319. }
  6320. #u20688_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u20689 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:730px;
  6330. top:395px;
  6331. width:144px;
  6332. height:30px;
  6333. display:flex;
  6334. transition:none;
  6335. font-size:14px;
  6336. }
  6337. #u20689 .text {
  6338. position:absolute;
  6339. align-self:center;
  6340. padding:2px 2px 2px 2px;
  6341. box-sizing:border-box;
  6342. width:100%;
  6343. }
  6344. #u20689_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:144px;
  6350. height:30px;
  6351. }
  6352. #u20689_text {
  6353. border-width:0px;
  6354. word-wrap:break-word;
  6355. text-transform:none;
  6356. visibility:hidden;
  6357. }
  6358. #u20690 {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:873px;
  6362. top:395px;
  6363. width:134px;
  6364. height:30px;
  6365. display:flex;
  6366. transition:none;
  6367. font-size:14px;
  6368. }
  6369. #u20690 .text {
  6370. position:absolute;
  6371. align-self:center;
  6372. padding:2px 2px 2px 2px;
  6373. box-sizing:border-box;
  6374. width:100%;
  6375. }
  6376. #u20690_img {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:134px;
  6382. height:30px;
  6383. }
  6384. #u20690_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. visibility:hidden;
  6389. }
  6390. #u20691 {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:1007px;
  6394. top:395px;
  6395. width:106px;
  6396. height:30px;
  6397. display:flex;
  6398. transition:none;
  6399. font-size:14px;
  6400. }
  6401. #u20691 .text {
  6402. position:absolute;
  6403. align-self:center;
  6404. padding:2px 2px 2px 2px;
  6405. box-sizing:border-box;
  6406. width:100%;
  6407. }
  6408. #u20691_img {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:106px;
  6414. height:30px;
  6415. }
  6416. #u20691_text {
  6417. border-width:0px;
  6418. word-wrap:break-word;
  6419. text-transform:none;
  6420. visibility:hidden;
  6421. }
  6422. #u20692 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:1113px;
  6426. top:395px;
  6427. width:105px;
  6428. height:30px;
  6429. display:flex;
  6430. transition:none;
  6431. font-size:14px;
  6432. }
  6433. #u20692 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 2px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u20692_img {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:0px;
  6444. top:0px;
  6445. width:105px;
  6446. height:30px;
  6447. }
  6448. #u20692_text {
  6449. border-width:0px;
  6450. word-wrap:break-word;
  6451. text-transform:none;
  6452. visibility:hidden;
  6453. }
  6454. #u20693_div {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:80px;
  6460. height:30px;
  6461. background:inherit;
  6462. background-color:rgba(24, 144, 255, 1);
  6463. border-radius:4px;
  6464. filter:drop-shadow(none);
  6465. transition:none;
  6466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6467. font-weight:400;
  6468. font-style:normal;
  6469. font-size:14px;
  6470. color:#FFFFFF;
  6471. }
  6472. #u20693 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:353px;
  6476. top:194px;
  6477. width:80px;
  6478. height:30px;
  6479. display:flex;
  6480. transition:none;
  6481. transform-origin:50% 50%;
  6482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:14px;
  6486. color:#FFFFFF;
  6487. }
  6488. #u20693 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:2px 2px 2px 2px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u20693_text {
  6496. border-width:0px;
  6497. word-wrap:break-word;
  6498. text-transform:none;
  6499. }
  6500. #u20694 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:0px;
  6506. height:0px;
  6507. }
  6508. #u20695_div {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:140px;
  6514. height:30px;
  6515. background:inherit;
  6516. background-color:rgba(255, 255, 255, 1);
  6517. box-sizing:border-box;
  6518. border-width:1px;
  6519. border-style:solid;
  6520. border-color:rgba(215, 215, 215, 1);
  6521. border-radius:4px;
  6522. filter:drop-shadow(none);
  6523. transition:none;
  6524. font-size:14px;
  6525. }
  6526. #u20695 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:503px;
  6530. top:140px;
  6531. width:140px;
  6532. height:30px;
  6533. display:flex;
  6534. transition:none;
  6535. transform-origin:50% 50%;
  6536. font-size:14px;
  6537. }
  6538. #u20695 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:2px 2px 2px 2px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u20695_text {
  6546. border-width:0px;
  6547. word-wrap:break-word;
  6548. text-transform:none;
  6549. visibility:hidden;
  6550. }
  6551. #u20696_input {
  6552. position:absolute;
  6553. left:0px;
  6554. top:0px;
  6555. width:134px;
  6556. height:23px;
  6557. padding:2px 2px 2px 2px;
  6558. font-family:'ArialMT', 'Arial', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:14px;
  6562. letter-spacing:normal;
  6563. color:#AAAAAA;
  6564. vertical-align:none;
  6565. text-align:left;
  6566. text-transform:none;
  6567. background-color:transparent;
  6568. border-color:transparent;
  6569. }
  6570. #u20696_input.disabled {
  6571. position:absolute;
  6572. left:0px;
  6573. top:0px;
  6574. width:134px;
  6575. height:23px;
  6576. padding:2px 2px 2px 2px;
  6577. font-family:'ArialMT', 'Arial', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:14px;
  6581. letter-spacing:normal;
  6582. color:#AAAAAA;
  6583. vertical-align:none;
  6584. text-align:left;
  6585. text-transform:none;
  6586. background-color:transparent;
  6587. border-color:transparent;
  6588. }
  6589. #u20696_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:134px;
  6595. height:23px;
  6596. background:inherit;
  6597. background-color:rgba(255, 255, 255, 1);
  6598. border-radius:0px;
  6599. filter:drop-shadow(none);
  6600. transition:none;
  6601. font-size:14px;
  6602. color:#AAAAAA;
  6603. }
  6604. #u20696 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:507px;
  6608. top:142px;
  6609. width:134px;
  6610. height:23px;
  6611. display:flex;
  6612. transition:none;
  6613. transform-origin:50% 50%;
  6614. font-size:14px;
  6615. color:#AAAAAA;
  6616. }
  6617. #u20696 .text {
  6618. position:absolute;
  6619. align-self:flex-start;
  6620. padding:2px 2px 2px 2px;
  6621. box-sizing:border-box;
  6622. width:100%;
  6623. }
  6624. #u20696_div.disabled {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:134px;
  6630. height:23px;
  6631. background:inherit;
  6632. background-color:rgba(240, 240, 240, 1);
  6633. border-radius:0px;
  6634. filter:drop-shadow(none);
  6635. transition:none;
  6636. font-size:14px;
  6637. color:#AAAAAA;
  6638. }
  6639. #u20696.disabled {
  6640. }
  6641. .u20696_input_option {
  6642. font-size:14px;
  6643. }
  6644. #u20697 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:0px;
  6650. height:0px;
  6651. }
  6652. #u20698_div {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:140px;
  6658. height:30px;
  6659. background:inherit;
  6660. background-color:rgba(255, 255, 255, 1);
  6661. box-sizing:border-box;
  6662. border-width:1px;
  6663. border-style:solid;
  6664. border-color:rgba(215, 215, 215, 1);
  6665. border-radius:4px;
  6666. filter:drop-shadow(none);
  6667. transition:none;
  6668. font-size:14px;
  6669. }
  6670. #u20698 {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:803px;
  6674. top:140px;
  6675. width:140px;
  6676. height:30px;
  6677. display:flex;
  6678. transition:none;
  6679. transform-origin:50% 50%;
  6680. font-size:14px;
  6681. }
  6682. #u20698 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:2px 2px 2px 2px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u20698_text {
  6690. border-width:0px;
  6691. word-wrap:break-word;
  6692. text-transform:none;
  6693. visibility:hidden;
  6694. }
  6695. #u20699_input {
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:134px;
  6700. height:23px;
  6701. padding:2px 2px 2px 2px;
  6702. font-family:'ArialMT', 'Arial', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:14px;
  6706. letter-spacing:normal;
  6707. color:#AAAAAA;
  6708. vertical-align:none;
  6709. text-align:left;
  6710. text-transform:none;
  6711. background-color:transparent;
  6712. border-color:transparent;
  6713. }
  6714. #u20699_input.disabled {
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:134px;
  6719. height:23px;
  6720. padding:2px 2px 2px 2px;
  6721. font-family:'ArialMT', 'Arial', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:14px;
  6725. letter-spacing:normal;
  6726. color:#AAAAAA;
  6727. vertical-align:none;
  6728. text-align:left;
  6729. text-transform:none;
  6730. background-color:transparent;
  6731. border-color:transparent;
  6732. }
  6733. #u20699_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:134px;
  6739. height:23px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 1);
  6742. border-radius:0px;
  6743. filter:drop-shadow(none);
  6744. transition:none;
  6745. font-size:14px;
  6746. color:#AAAAAA;
  6747. }
  6748. #u20699 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:807px;
  6752. top:142px;
  6753. width:134px;
  6754. height:23px;
  6755. display:flex;
  6756. transition:none;
  6757. transform-origin:50% 50%;
  6758. font-size:14px;
  6759. color:#AAAAAA;
  6760. }
  6761. #u20699 .text {
  6762. position:absolute;
  6763. align-self:flex-start;
  6764. padding:2px 2px 2px 2px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u20699_div.disabled {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:134px;
  6774. height:23px;
  6775. background:inherit;
  6776. background-color:rgba(240, 240, 240, 1);
  6777. border-radius:0px;
  6778. filter:drop-shadow(none);
  6779. transition:none;
  6780. font-size:14px;
  6781. color:#AAAAAA;
  6782. }
  6783. #u20699.disabled {
  6784. }
  6785. .u20699_input_option {
  6786. font-size:14px;
  6787. }
  6788. #u20700 {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:0px;
  6792. top:0px;
  6793. width:0px;
  6794. height:0px;
  6795. }
  6796. #u20701_div {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:60px;
  6802. height:30px;
  6803. background:inherit;
  6804. background-color:rgba(24, 144, 255, 1);
  6805. border-radius:4px;
  6806. filter:drop-shadow(none);
  6807. transition:none;
  6808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:14px;
  6812. color:#FFFFFF;
  6813. }
  6814. #u20701 {
  6815. border-width:0px;
  6816. position:absolute;
  6817. left:1101px;
  6818. top:140px;
  6819. width:60px;
  6820. height:30px;
  6821. display:flex;
  6822. transition:none;
  6823. transform-origin:50% 50%;
  6824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:14px;
  6828. color:#FFFFFF;
  6829. }
  6830. #u20701 .text {
  6831. position:absolute;
  6832. align-self:center;
  6833. padding:2px 2px 2px 2px;
  6834. box-sizing:border-box;
  6835. width:100%;
  6836. }
  6837. #u20701_text {
  6838. border-width:0px;
  6839. word-wrap:break-word;
  6840. text-transform:none;
  6841. }
  6842. #u20702_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:60px;
  6848. height:30px;
  6849. background:inherit;
  6850. background-color:rgba(255, 255, 255, 1);
  6851. box-sizing:border-box;
  6852. border-width:1px;
  6853. border-style:solid;
  6854. border-color:rgba(170, 170, 170, 1);
  6855. border-radius:4px;
  6856. filter:drop-shadow(none);
  6857. transition:none;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:14px;
  6862. }
  6863. #u20702 {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:1171px;
  6867. top:140px;
  6868. width:60px;
  6869. height:30px;
  6870. display:flex;
  6871. transition:none;
  6872. transform-origin:50% 50%;
  6873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. font-size:14px;
  6877. }
  6878. #u20702 .text {
  6879. position:absolute;
  6880. align-self:center;
  6881. padding:2px 2px 2px 2px;
  6882. box-sizing:border-box;
  6883. width:100%;
  6884. }
  6885. #u20702_text {
  6886. border-width:0px;
  6887. word-wrap:break-word;
  6888. text-transform:none;
  6889. }
  6890. #u20703 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:0px;
  6896. height:0px;
  6897. }
  6898. #u20704_div {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:140px;
  6904. height:30px;
  6905. background:inherit;
  6906. background-color:rgba(255, 255, 255, 1);
  6907. box-sizing:border-box;
  6908. border-width:1px;
  6909. border-style:solid;
  6910. border-color:rgba(215, 215, 215, 1);
  6911. border-radius:4px;
  6912. filter:drop-shadow(none);
  6913. transition:none;
  6914. font-size:14px;
  6915. }
  6916. #u20704 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:353px;
  6920. top:140px;
  6921. width:140px;
  6922. height:30px;
  6923. display:flex;
  6924. transition:none;
  6925. transform-origin:50% 50%;
  6926. font-size:14px;
  6927. }
  6928. #u20704 .text {
  6929. position:absolute;
  6930. align-self:center;
  6931. padding:2px 2px 2px 2px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u20704_text {
  6936. border-width:0px;
  6937. word-wrap:break-word;
  6938. text-transform:none;
  6939. visibility:hidden;
  6940. }
  6941. #u20705_input {
  6942. position:absolute;
  6943. left:0px;
  6944. top:0px;
  6945. width:134px;
  6946. height:23px;
  6947. padding:2px 2px 2px 2px;
  6948. font-family:'ArialMT', 'Arial', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:14px;
  6952. letter-spacing:normal;
  6953. color:#AAAAAA;
  6954. vertical-align:none;
  6955. text-align:left;
  6956. text-transform:none;
  6957. background-color:transparent;
  6958. border-color:transparent;
  6959. }
  6960. #u20705_input.disabled {
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:134px;
  6965. height:23px;
  6966. padding:2px 2px 2px 2px;
  6967. font-family:'ArialMT', 'Arial', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:14px;
  6971. letter-spacing:normal;
  6972. color:#AAAAAA;
  6973. vertical-align:none;
  6974. text-align:left;
  6975. text-transform:none;
  6976. background-color:transparent;
  6977. border-color:transparent;
  6978. }
  6979. #u20705_div {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:0px;
  6983. top:0px;
  6984. width:134px;
  6985. height:23px;
  6986. background:inherit;
  6987. background-color:rgba(255, 255, 255, 1);
  6988. border-radius:0px;
  6989. filter:drop-shadow(none);
  6990. transition:none;
  6991. font-size:14px;
  6992. color:#AAAAAA;
  6993. }
  6994. #u20705 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:357px;
  6998. top:142px;
  6999. width:134px;
  7000. height:23px;
  7001. display:flex;
  7002. transition:none;
  7003. transform-origin:50% 50%;
  7004. font-size:14px;
  7005. color:#AAAAAA;
  7006. }
  7007. #u20705 .text {
  7008. position:absolute;
  7009. align-self:flex-start;
  7010. padding:2px 2px 2px 2px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u20705_div.disabled {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:134px;
  7020. height:23px;
  7021. background:inherit;
  7022. background-color:rgba(240, 240, 240, 1);
  7023. border-radius:0px;
  7024. filter:drop-shadow(none);
  7025. transition:none;
  7026. font-size:14px;
  7027. color:#AAAAAA;
  7028. }
  7029. #u20705.disabled {
  7030. }
  7031. .u20705_input_option {
  7032. font-size:14px;
  7033. }
  7034. #u20706 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:120px;
  7038. top:50px;
  7039. width:200px;
  7040. height:1180px;
  7041. }
  7042. #u20707_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:200px;
  7048. height:1180px;
  7049. background:inherit;
  7050. background-color:rgba(255, 255, 255, 1);
  7051. border-radius:0px;
  7052. filter:drop-shadow(none);
  7053. transition:none;
  7054. }
  7055. #u20707 {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:200px;
  7061. height:1180px;
  7062. display:flex;
  7063. transition:none;
  7064. transform-origin:50% 50%;
  7065. }
  7066. #u20707 .text {
  7067. position:absolute;
  7068. align-self:center;
  7069. padding:2px 2px 2px 2px;
  7070. box-sizing:border-box;
  7071. width:100%;
  7072. }
  7073. #u20707_text {
  7074. border-width:0px;
  7075. word-wrap:break-word;
  7076. text-transform:none;
  7077. visibility:hidden;
  7078. }
  7079. #u20708_div {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:200px;
  7085. height:60px;
  7086. background:inherit;
  7087. background-color:rgba(224, 231, 247, 1);
  7088. border-radius:0px;
  7089. filter:drop-shadow(none);
  7090. transition:none;
  7091. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7092. font-weight:500;
  7093. font-style:normal;
  7094. font-size:18px;
  7095. }
  7096. #u20708 {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:200px;
  7102. height:60px;
  7103. display:flex;
  7104. transition:none;
  7105. transform-origin:50% 50%;
  7106. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7107. font-weight:500;
  7108. font-style:normal;
  7109. font-size:18px;
  7110. }
  7111. #u20708 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:0px 0px 0px 20px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u20708_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. }
  7123. #u20709_div {
  7124. border-width:0px;
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:65px;
  7129. height:22px;
  7130. background:inherit;
  7131. background-color:rgba(255, 255, 255, 0);
  7132. border-radius:0px;
  7133. filter:drop-shadow(none);
  7134. transition:none;
  7135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7136. font-weight:400;
  7137. font-style:normal;
  7138. font-size:16px;
  7139. }
  7140. #u20709 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:23px;
  7144. top:113px;
  7145. width:65px;
  7146. height:22px;
  7147. display:flex;
  7148. transition:none;
  7149. transform-origin:50% 50%;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:16px;
  7154. }
  7155. #u20709 .text {
  7156. position:absolute;
  7157. align-self:flex-start;
  7158. padding:0px 0px 0px 0px;
  7159. box-sizing:border-box;
  7160. width:100%;
  7161. }
  7162. #u20709_text {
  7163. border-width:0px;
  7164. white-space:nowrap;
  7165. text-transform:none;
  7166. }
  7167. #u20710_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:49px;
  7173. height:17px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 0);
  7176. border-radius:0px;
  7177. filter:drop-shadow(none);
  7178. transition:none;
  7179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:12px;
  7183. color:#AAAAAA;
  7184. }
  7185. #u20710 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:23px;
  7189. top:80px;
  7190. width:49px;
  7191. height:17px;
  7192. display:flex;
  7193. transition:none;
  7194. transform-origin:50% 50%;
  7195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7196. font-weight:400;
  7197. font-style:normal;
  7198. font-size:12px;
  7199. color:#AAAAAA;
  7200. }
  7201. #u20710 .text {
  7202. position:absolute;
  7203. align-self:flex-start;
  7204. padding:0px 0px 0px 0px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u20710_text {
  7209. border-width:0px;
  7210. white-space:nowrap;
  7211. text-transform:none;
  7212. }
  7213. #u20711_div {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:65px;
  7219. height:22px;
  7220. background:inherit;
  7221. background-color:rgba(255, 255, 255, 0);
  7222. border-radius:0px;
  7223. filter:drop-shadow(none);
  7224. transition:none;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:16px;
  7229. }
  7230. #u20711 {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:23px;
  7234. top:155px;
  7235. width:65px;
  7236. height:22px;
  7237. display:flex;
  7238. transition:none;
  7239. transform-origin:50% 50%;
  7240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. font-size:16px;
  7244. }
  7245. #u20711 .text {
  7246. position:absolute;
  7247. align-self:flex-start;
  7248. padding:0px 0px 0px 0px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u20711_text {
  7253. border-width:0px;
  7254. white-space:nowrap;
  7255. text-transform:none;
  7256. }
  7257. #u20712_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:65px;
  7263. height:22px;
  7264. background:inherit;
  7265. background-color:rgba(255, 255, 255, 0);
  7266. border-radius:0px;
  7267. filter:drop-shadow(none);
  7268. transition:none;
  7269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:16px;
  7273. }
  7274. #u20712 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:23px;
  7278. top:307px;
  7279. width:65px;
  7280. height:22px;
  7281. display:flex;
  7282. transition:none;
  7283. transform-origin:50% 50%;
  7284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7285. font-weight:400;
  7286. font-style:normal;
  7287. font-size:16px;
  7288. }
  7289. #u20712 .text {
  7290. position:absolute;
  7291. align-self:flex-start;
  7292. padding:0px 0px 0px 0px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u20712_text {
  7297. border-width:0px;
  7298. white-space:nowrap;
  7299. text-transform:none;
  7300. }
  7301. #u20713_div {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:65px;
  7307. height:22px;
  7308. background:inherit;
  7309. background-color:rgba(255, 255, 255, 0);
  7310. border-radius:0px;
  7311. filter:drop-shadow(none);
  7312. transition:none;
  7313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7314. font-weight:400;
  7315. font-style:normal;
  7316. font-size:16px;
  7317. }
  7318. #u20713 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:23px;
  7322. top:402px;
  7323. width:65px;
  7324. height:22px;
  7325. display:flex;
  7326. transition:none;
  7327. transform-origin:50% 50%;
  7328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:16px;
  7332. }
  7333. #u20713 .text {
  7334. position:absolute;
  7335. align-self:flex-start;
  7336. padding:0px 0px 0px 0px;
  7337. box-sizing:border-box;
  7338. width:100%;
  7339. }
  7340. #u20713_text {
  7341. border-width:0px;
  7342. white-space:nowrap;
  7343. text-transform:none;
  7344. }
  7345. #u20714 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:349px;
  7350. width:200px;
  7351. height:1px;
  7352. display:flex;
  7353. transition:none;
  7354. }
  7355. #u20714 .text {
  7356. position:absolute;
  7357. align-self:center;
  7358. padding:2px 2px 2px 2px;
  7359. box-sizing:border-box;
  7360. width:100%;
  7361. }
  7362. #u20714_img {
  7363. border-width:0px;
  7364. position:absolute;
  7365. left:0px;
  7366. top:0px;
  7367. width:201px;
  7368. height:2px;
  7369. }
  7370. #u20714_text {
  7371. border-width:0px;
  7372. word-wrap:break-word;
  7373. text-transform:none;
  7374. visibility:hidden;
  7375. }
  7376. #u20715_div {
  7377. border-width:0px;
  7378. position:absolute;
  7379. left:0px;
  7380. top:0px;
  7381. width:49px;
  7382. height:17px;
  7383. background:inherit;
  7384. background-color:rgba(255, 255, 255, 0);
  7385. border-radius:0px;
  7386. filter:drop-shadow(none);
  7387. transition:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:12px;
  7392. color:#AAAAAA;
  7393. }
  7394. #u20715 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:23px;
  7398. top:369px;
  7399. width:49px;
  7400. height:17px;
  7401. display:flex;
  7402. transition:none;
  7403. transform-origin:50% 50%;
  7404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:12px;
  7408. color:#AAAAAA;
  7409. }
  7410. #u20715 .text {
  7411. position:absolute;
  7412. align-self:flex-start;
  7413. padding:0px 0px 0px 0px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u20715_text {
  7418. border-width:0px;
  7419. white-space:nowrap;
  7420. text-transform:none;
  7421. }
  7422. #u20716_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:65px;
  7428. height:22px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 0);
  7431. border-radius:0px;
  7432. filter:drop-shadow(none);
  7433. transition:none;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:16px;
  7438. }
  7439. #u20716 {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:23px;
  7443. top:444px;
  7444. width:65px;
  7445. height:22px;
  7446. display:flex;
  7447. transition:none;
  7448. transform-origin:50% 50%;
  7449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7450. font-weight:400;
  7451. font-style:normal;
  7452. font-size:16px;
  7453. }
  7454. #u20716 .text {
  7455. position:absolute;
  7456. align-self:flex-start;
  7457. padding:0px 0px 0px 0px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u20716_text {
  7462. border-width:0px;
  7463. white-space:nowrap;
  7464. text-transform:none;
  7465. }
  7466. #u20717_div {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:65px;
  7472. height:22px;
  7473. background:inherit;
  7474. background-color:rgba(255, 255, 255, 0);
  7475. border-radius:0px;
  7476. filter:drop-shadow(none);
  7477. transition:none;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:16px;
  7482. }
  7483. #u20717 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:23px;
  7487. top:197px;
  7488. width:65px;
  7489. height:22px;
  7490. display:flex;
  7491. transition:none;
  7492. transform-origin:50% 50%;
  7493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7494. font-weight:400;
  7495. font-style:normal;
  7496. font-size:16px;
  7497. }
  7498. #u20717 .text {
  7499. position:absolute;
  7500. align-self:flex-start;
  7501. padding:0px 0px 0px 0px;
  7502. box-sizing:border-box;
  7503. width:100%;
  7504. }
  7505. #u20717_text {
  7506. border-width:0px;
  7507. white-space:nowrap;
  7508. text-transform:none;
  7509. }
  7510. #u20718_div {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:0px;
  7514. top:0px;
  7515. width:49px;
  7516. height:17px;
  7517. background:inherit;
  7518. background-color:rgba(255, 255, 255, 0);
  7519. border-radius:0px;
  7520. filter:drop-shadow(none);
  7521. transition:none;
  7522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7523. font-weight:400;
  7524. font-style:normal;
  7525. font-size:12px;
  7526. color:#AAAAAA;
  7527. }
  7528. #u20718 {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:23px;
  7532. top:266px;
  7533. width:49px;
  7534. height:17px;
  7535. display:flex;
  7536. transition:none;
  7537. transform-origin:50% 50%;
  7538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. font-size:12px;
  7542. color:#AAAAAA;
  7543. }
  7544. #u20718 .text {
  7545. position:absolute;
  7546. align-self:flex-start;
  7547. padding:0px 0px 0px 0px;
  7548. box-sizing:border-box;
  7549. width:100%;
  7550. }
  7551. #u20718_text {
  7552. border-width:0px;
  7553. white-space:nowrap;
  7554. text-transform:none;
  7555. }
  7556. #u20719 {
  7557. border-width:0px;
  7558. position:absolute;
  7559. left:0px;
  7560. top:246px;
  7561. width:200px;
  7562. height:1px;
  7563. display:flex;
  7564. transition:none;
  7565. }
  7566. #u20719 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:2px 2px 2px 2px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u20719_img {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:201px;
  7579. height:2px;
  7580. }
  7581. #u20719_text {
  7582. border-width:0px;
  7583. word-wrap:break-word;
  7584. text-transform:none;
  7585. visibility:hidden;
  7586. }
  7587. #u20720_div {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:0px;
  7591. top:0px;
  7592. width:379px;
  7593. height:20px;
  7594. background:inherit;
  7595. background-color:rgba(255, 255, 255, 0);
  7596. border-left:0px;
  7597. border-top:0px;
  7598. border-right:0px;
  7599. border-radius:0px;
  7600. border-bottom-right-radius:0px;
  7601. border-bottom-left-radius:0px;
  7602. filter:drop-shadow(none);
  7603. transition:none;
  7604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:14px;
  7608. color:#7F7F7F;
  7609. }
  7610. #u20720 {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:352px;
  7614. top:100px;
  7615. width:379px;
  7616. height:20px;
  7617. display:flex;
  7618. transition:none;
  7619. transform-origin:50% 50%;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:14px;
  7624. color:#7F7F7F;
  7625. }
  7626. #u20720 .text {
  7627. position:absolute;
  7628. align-self:center;
  7629. padding:0px 0px 0px 0px;
  7630. box-sizing:border-box;
  7631. width:100%;
  7632. }
  7633. #u20720_text {
  7634. border-width:0px;
  7635. white-space:nowrap;
  7636. text-transform:none;
  7637. }
  7638. #u20721 {
  7639. border-width:0px;
  7640. position:absolute;
  7641. left:961px;
  7642. top:1183px;
  7643. width:600px;
  7644. height:30px;
  7645. }
  7646. #u20722 {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:0px;
  7650. top:0px;
  7651. width:0px;
  7652. height:0px;
  7653. }
  7654. #u20723_div {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:30px;
  7660. height:30px;
  7661. background:inherit;
  7662. background-color:rgba(255, 255, 255, 1);
  7663. box-sizing:border-box;
  7664. border-width:1px;
  7665. border-style:solid;
  7666. border-color:rgba(228, 228, 228, 1);
  7667. border-radius:4px;
  7668. filter:drop-shadow(none);
  7669. transition:none;
  7670. font-family:"Microsoft YaHei", sans-serif;
  7671. font-weight:400;
  7672. font-style:normal;
  7673. font-size:14px;
  7674. }
  7675. #u20723 {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:35px;
  7679. top:0px;
  7680. width:30px;
  7681. height:30px;
  7682. display:flex;
  7683. transition:none;
  7684. transform-origin:50% 50%;
  7685. font-family:"Microsoft YaHei", sans-serif;
  7686. font-weight:400;
  7687. font-style:normal;
  7688. font-size:14px;
  7689. }
  7690. #u20723 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:2px 2px 2px 2px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u20723_text {
  7698. border-width:0px;
  7699. word-wrap:break-word;
  7700. text-transform:none;
  7701. }
  7702. #u20724_div {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:49px;
  7708. height:30px;
  7709. background:inherit;
  7710. background-color:rgba(255, 255, 255, 0);
  7711. box-sizing:border-box;
  7712. border-width:1px;
  7713. border-style:solid;
  7714. border-color:rgba(188, 188, 188, 1);
  7715. border-radius:4px;
  7716. filter:drop-shadow(none);
  7717. transition:none;
  7718. font-family:"Microsoft YaHei", sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:14px;
  7722. color:#1E1E1E;
  7723. }
  7724. #u20724 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:551px;
  7728. top:0px;
  7729. width:49px;
  7730. height:30px;
  7731. display:flex;
  7732. transition:none;
  7733. transform-origin:50% 50%;
  7734. font-family:"Microsoft YaHei", sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:14px;
  7738. color:#1E1E1E;
  7739. }
  7740. #u20724 .text {
  7741. position:absolute;
  7742. align-self:center;
  7743. padding:5px 10px 5px 10px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u20724_text {
  7748. border-width:0px;
  7749. white-space:nowrap;
  7750. text-transform:none;
  7751. }
  7752. #u20725 {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:0px;
  7758. height:0px;
  7759. }
  7760. #u20726_div {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:33px;
  7766. height:24px;
  7767. background:inherit;
  7768. background-color:rgba(255, 255, 255, 1);
  7769. border-radius:0px;
  7770. filter:drop-shadow(none);
  7771. transition:none;
  7772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7773. font-weight:400;
  7774. font-style:normal;
  7775. font-size:14px;
  7776. color:#BCBCBC;
  7777. text-align:left;
  7778. }
  7779. #u20726 {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:319px;
  7783. top:3px;
  7784. width:33px;
  7785. height:24px;
  7786. display:flex;
  7787. transition:none;
  7788. transform-origin:50% 50%;
  7789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:14px;
  7793. color:#BCBCBC;
  7794. text-align:left;
  7795. }
  7796. #u20726 .text {
  7797. position:absolute;
  7798. align-self:center;
  7799. padding:2px 2px 2px 2px;
  7800. box-sizing:border-box;
  7801. width:100%;
  7802. }
  7803. #u20726_text {
  7804. border-width:0px;
  7805. white-space:nowrap;
  7806. text-transform:none;
  7807. }
  7808. #u20727_div {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:40px;
  7814. height:30px;
  7815. background:inherit;
  7816. background-color:rgba(255, 255, 255, 1);
  7817. box-sizing:border-box;
  7818. border-width:1px;
  7819. border-style:solid;
  7820. border-color:rgba(228, 228, 228, 1);
  7821. border-radius:4px;
  7822. filter:drop-shadow(none);
  7823. transition:none;
  7824. font-family:"Microsoft YaHei", sans-serif;
  7825. font-weight:400;
  7826. font-style:normal;
  7827. font-size:14px;
  7828. }
  7829. #u20727 {
  7830. border-width:0px;
  7831. position:absolute;
  7832. left:354px;
  7833. top:0px;
  7834. width:40px;
  7835. height:30px;
  7836. display:flex;
  7837. transition:none;
  7838. transform-origin:50% 50%;
  7839. font-family:"Microsoft YaHei", sans-serif;
  7840. font-weight:400;
  7841. font-style:normal;
  7842. font-size:14px;
  7843. }
  7844. #u20727 .text {
  7845. position:absolute;
  7846. align-self:center;
  7847. padding:2px 2px 2px 2px;
  7848. box-sizing:border-box;
  7849. width:100%;
  7850. }
  7851. #u20727_text {
  7852. border-width:0px;
  7853. word-wrap:break-word;
  7854. text-transform:none;
  7855. visibility:hidden;
  7856. }
  7857. #u20728_div {
  7858. border-width:0px;
  7859. position:absolute;
  7860. left:0px;
  7861. top:0px;
  7862. width:19px;
  7863. height:24px;
  7864. background:inherit;
  7865. background-color:rgba(255, 255, 255, 1);
  7866. border-radius:0px;
  7867. filter:drop-shadow(none);
  7868. transition:none;
  7869. font-family:"Microsoft YaHei", sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:14px;
  7873. color:#BCBCBC;
  7874. text-align:left;
  7875. }
  7876. #u20728 {
  7877. border-width:0px;
  7878. position:absolute;
  7879. left:396px;
  7880. top:4px;
  7881. width:19px;
  7882. height:24px;
  7883. display:flex;
  7884. transition:none;
  7885. transform-origin:50% 50%;
  7886. font-family:"Microsoft YaHei", sans-serif;
  7887. font-weight:400;
  7888. font-style:normal;
  7889. font-size:14px;
  7890. color:#BCBCBC;
  7891. text-align:left;
  7892. }
  7893. #u20728 .text {
  7894. position:absolute;
  7895. align-self:center;
  7896. padding:2px 2px 2px 2px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u20728_text {
  7901. border-width:0px;
  7902. white-space:nowrap;
  7903. text-transform:none;
  7904. }
  7905. #u20729_input {
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:34px;
  7910. height:25px;
  7911. padding:2px 2px 2px 2px;
  7912. font-family:"Microsoft YaHei", sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:13px;
  7916. letter-spacing:normal;
  7917. color:#000000;
  7918. vertical-align:none;
  7919. text-align:left;
  7920. text-transform:none;
  7921. background-color:transparent;
  7922. border-color:transparent;
  7923. }
  7924. #u20729_input.hint {
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:34px;
  7929. height:25px;
  7930. padding:2px 2px 2px 2px;
  7931. font-family:"Microsoft YaHei", sans-serif;
  7932. font-weight:400;
  7933. font-style:normal;
  7934. font-size:13px;
  7935. letter-spacing:normal;
  7936. color:#999999;
  7937. vertical-align:none;
  7938. text-align:left;
  7939. text-transform:none;
  7940. background-color:transparent;
  7941. border-color:transparent;
  7942. }
  7943. #u20729_input.disabled {
  7944. position:absolute;
  7945. left:0px;
  7946. top:0px;
  7947. width:34px;
  7948. height:25px;
  7949. padding:2px 2px 2px 2px;
  7950. font-family:"Microsoft YaHei", sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:13px;
  7954. letter-spacing:normal;
  7955. color:#000000;
  7956. vertical-align:none;
  7957. text-align:left;
  7958. text-transform:none;
  7959. background-color:transparent;
  7960. border-color:transparent;
  7961. }
  7962. #u20729_input.hint.disabled {
  7963. position:absolute;
  7964. left:0px;
  7965. top:0px;
  7966. width:34px;
  7967. height:25px;
  7968. padding:2px 2px 2px 2px;
  7969. font-family:"Microsoft YaHei", sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:13px;
  7973. letter-spacing:normal;
  7974. color:#999999;
  7975. vertical-align:none;
  7976. text-align:left;
  7977. text-transform:none;
  7978. background-color:transparent;
  7979. border-color:transparent;
  7980. }
  7981. #u20729_div {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:0px;
  7985. top:0px;
  7986. width:34px;
  7987. height:25px;
  7988. background:inherit;
  7989. background-color:rgba(255, 255, 255, 1);
  7990. border-radius:0px;
  7991. filter:drop-shadow(none);
  7992. transition:none;
  7993. font-family:"Microsoft YaHei", sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. }
  7997. #u20729 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:357px;
  8001. top:2px;
  8002. width:34px;
  8003. height:25px;
  8004. display:flex;
  8005. transition:none;
  8006. transform-origin:50% 50%;
  8007. font-family:"Microsoft YaHei", sans-serif;
  8008. font-weight:400;
  8009. font-style:normal;
  8010. }
  8011. #u20729 .text {
  8012. position:absolute;
  8013. align-self:center;
  8014. padding:2px 2px 2px 2px;
  8015. box-sizing:border-box;
  8016. width:100%;
  8017. }
  8018. #u20729_div.hint {
  8019. border-width:0px;
  8020. position:absolute;
  8021. left:0px;
  8022. top:0px;
  8023. width:34px;
  8024. height:25px;
  8025. background:inherit;
  8026. background-color:rgba(255, 255, 255, 1);
  8027. border-radius:0px;
  8028. filter:drop-shadow(none);
  8029. transition:none;
  8030. font-family:"Microsoft YaHei", sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. }
  8034. #u20729.hint {
  8035. }
  8036. #u20729_div.disabled {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:0px;
  8040. top:0px;
  8041. width:34px;
  8042. height:25px;
  8043. background:inherit;
  8044. background-color:rgba(240, 240, 240, 1);
  8045. border-radius:0px;
  8046. filter:drop-shadow(none);
  8047. transition:none;
  8048. font-family:"Microsoft YaHei", sans-serif;
  8049. font-weight:400;
  8050. font-style:normal;
  8051. }
  8052. #u20729.disabled {
  8053. }
  8054. #u20729_div.hint.disabled {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:34px;
  8060. height:25px;
  8061. background:inherit;
  8062. background-color:rgba(240, 240, 240, 1);
  8063. border-radius:0px;
  8064. filter:drop-shadow(none);
  8065. transition:none;
  8066. font-family:"Microsoft YaHei", sans-serif;
  8067. font-weight:400;
  8068. font-style:normal;
  8069. }
  8070. #u20729.hint.disabled {
  8071. }
  8072. #u20730_div {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:30px;
  8078. height:30px;
  8079. background:inherit;
  8080. background-color:rgba(41, 143, 255, 1);
  8081. border-radius:4px;
  8082. filter:drop-shadow(none);
  8083. transition:none;
  8084. font-family:"Microsoft YaHei", sans-serif;
  8085. font-weight:400;
  8086. font-style:normal;
  8087. font-size:14px;
  8088. color:#FFFFFF;
  8089. }
  8090. #u20730 {
  8091. border-width:0px;
  8092. position:absolute;
  8093. left:69px;
  8094. top:0px;
  8095. width:30px;
  8096. height:30px;
  8097. display:flex;
  8098. transition:none;
  8099. transform-origin:50% 50%;
  8100. font-family:"Microsoft YaHei", sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:14px;
  8104. color:#FFFFFF;
  8105. }
  8106. #u20730 .text {
  8107. position:absolute;
  8108. align-self:center;
  8109. padding:2px 2px 2px 2px;
  8110. box-sizing:border-box;
  8111. width:100%;
  8112. }
  8113. #u20730_text {
  8114. border-width:0px;
  8115. word-wrap:break-word;
  8116. text-transform:none;
  8117. }
  8118. #u20731_div {
  8119. border-width:0px;
  8120. position:absolute;
  8121. left:0px;
  8122. top:0px;
  8123. width:30px;
  8124. height:30px;
  8125. background:inherit;
  8126. background-color:rgba(255, 255, 255, 1);
  8127. box-sizing:border-box;
  8128. border-width:1px;
  8129. border-style:solid;
  8130. border-color:rgba(228, 228, 228, 1);
  8131. border-radius:4px;
  8132. filter:drop-shadow(none);
  8133. transition:none;
  8134. font-family:"Microsoft YaHei", sans-serif;
  8135. font-weight:400;
  8136. font-style:normal;
  8137. font-size:14px;
  8138. }
  8139. #u20731 {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:103px;
  8143. top:0px;
  8144. width:30px;
  8145. height:30px;
  8146. display:flex;
  8147. transition:none;
  8148. transform-origin:50% 50%;
  8149. font-family:"Microsoft YaHei", sans-serif;
  8150. font-weight:400;
  8151. font-style:normal;
  8152. font-size:14px;
  8153. }
  8154. #u20731 .text {
  8155. position:absolute;
  8156. align-self:center;
  8157. padding:2px 2px 2px 2px;
  8158. box-sizing:border-box;
  8159. width:100%;
  8160. }
  8161. #u20731_text {
  8162. border-width:0px;
  8163. word-wrap:break-word;
  8164. text-transform:none;
  8165. }
  8166. #u20732_div {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:30px;
  8172. height:30px;
  8173. background:inherit;
  8174. background-color:rgba(255, 255, 255, 1);
  8175. box-sizing:border-box;
  8176. border-width:1px;
  8177. border-style:solid;
  8178. border-color:rgba(228, 228, 228, 1);
  8179. border-radius:4px;
  8180. filter:drop-shadow(none);
  8181. transition:none;
  8182. font-family:"Microsoft YaHei", sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:14px;
  8186. }
  8187. #u20732 {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:137px;
  8191. top:0px;
  8192. width:30px;
  8193. height:30px;
  8194. display:flex;
  8195. transition:none;
  8196. transform-origin:50% 50%;
  8197. font-family:"Microsoft YaHei", sans-serif;
  8198. font-weight:400;
  8199. font-style:normal;
  8200. font-size:14px;
  8201. }
  8202. #u20732 .text {
  8203. position:absolute;
  8204. align-self:center;
  8205. padding:2px 2px 2px 2px;
  8206. box-sizing:border-box;
  8207. width:100%;
  8208. }
  8209. #u20732_text {
  8210. border-width:0px;
  8211. word-wrap:break-word;
  8212. text-transform:none;
  8213. }
  8214. #u20733_div {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:30px;
  8220. height:30px;
  8221. background:inherit;
  8222. background-color:rgba(255, 255, 255, 1);
  8223. border-radius:4px;
  8224. filter:drop-shadow(none);
  8225. transition:none;
  8226. font-family:"Microsoft YaHei", sans-serif;
  8227. font-weight:400;
  8228. font-style:normal;
  8229. font-size:14px;
  8230. }
  8231. #u20733 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:167px;
  8235. top:0px;
  8236. width:30px;
  8237. height:30px;
  8238. display:flex;
  8239. transition:none;
  8240. transform-origin:50% 50%;
  8241. font-family:"Microsoft YaHei", sans-serif;
  8242. font-weight:400;
  8243. font-style:normal;
  8244. font-size:14px;
  8245. }
  8246. #u20733 .text {
  8247. position:absolute;
  8248. align-self:center;
  8249. padding:2px 2px 2px 2px;
  8250. box-sizing:border-box;
  8251. width:100%;
  8252. }
  8253. #u20733_text {
  8254. border-width:0px;
  8255. word-wrap:break-word;
  8256. text-transform:none;
  8257. }
  8258. #u20734_div {
  8259. border-width:0px;
  8260. position:absolute;
  8261. left:0px;
  8262. top:0px;
  8263. width:30px;
  8264. height:30px;
  8265. background:inherit;
  8266. background-color:rgba(255, 255, 255, 1);
  8267. box-sizing:border-box;
  8268. border-width:1px;
  8269. border-style:solid;
  8270. border-color:rgba(228, 228, 228, 1);
  8271. border-radius:4px;
  8272. filter:drop-shadow(none);
  8273. transition:none;
  8274. font-family:"Microsoft YaHei", sans-serif;
  8275. font-weight:400;
  8276. font-style:normal;
  8277. font-size:14px;
  8278. }
  8279. #u20734 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:201px;
  8283. top:0px;
  8284. width:30px;
  8285. height:30px;
  8286. display:flex;
  8287. transition:none;
  8288. transform-origin:50% 50%;
  8289. font-family:"Microsoft YaHei", sans-serif;
  8290. font-weight:400;
  8291. font-style:normal;
  8292. font-size:14px;
  8293. }
  8294. #u20734 .text {
  8295. position:absolute;
  8296. align-self:center;
  8297. padding:2px 2px 2px 2px;
  8298. box-sizing:border-box;
  8299. width:100%;
  8300. }
  8301. #u20734_text {
  8302. border-width:0px;
  8303. word-wrap:break-word;
  8304. text-transform:none;
  8305. }
  8306. #u20735_div {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:32px;
  8312. height:21px;
  8313. background:inherit;
  8314. background-color:rgba(255, 255, 255, 1);
  8315. border-radius:15px;
  8316. filter:drop-shadow(none);
  8317. transition:none;
  8318. font-family:"Microsoft YaHei", sans-serif;
  8319. font-weight:400;
  8320. font-style:normal;
  8321. font-size:14px;
  8322. color:#1E1E1E;
  8323. }
  8324. #u20735 {
  8325. border-width:0px;
  8326. position:absolute;
  8327. left:275px;
  8328. top:5px;
  8329. width:32px;
  8330. height:21px;
  8331. display:flex;
  8332. transition:none;
  8333. transform-origin:50% 50%;
  8334. font-family:"Microsoft YaHei", sans-serif;
  8335. font-weight:400;
  8336. font-style:normal;
  8337. font-size:14px;
  8338. color:#1E1E1E;
  8339. }
  8340. #u20735 .text {
  8341. position:absolute;
  8342. align-self:center;
  8343. padding:2px 2px 2px 2px;
  8344. box-sizing:border-box;
  8345. width:100%;
  8346. }
  8347. #u20735_text {
  8348. border-width:0px;
  8349. white-space:nowrap;
  8350. text-transform:none;
  8351. }
  8352. #u20736 {
  8353. border-width:0px;
  8354. position:absolute;
  8355. left:0px;
  8356. top:0px;
  8357. width:0px;
  8358. height:0px;
  8359. }
  8360. #u20737_div {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:0px;
  8364. top:0px;
  8365. width:31px;
  8366. height:30px;
  8367. background:inherit;
  8368. background-color:rgba(255, 255, 255, 1);
  8369. box-sizing:border-box;
  8370. border-width:1px;
  8371. border-style:solid;
  8372. border-color:rgba(228, 228, 228, 1);
  8373. border-radius:4px;
  8374. filter:drop-shadow(none);
  8375. transition:none;
  8376. font-family:"Microsoft YaHei", sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:12px;
  8380. }
  8381. #u20737 {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:31px;
  8387. height:30px;
  8388. display:flex;
  8389. transition:none;
  8390. transform-origin:50% 50%;
  8391. font-family:"Microsoft YaHei", sans-serif;
  8392. font-weight:400;
  8393. font-style:normal;
  8394. font-size:12px;
  8395. }
  8396. #u20737 .text {
  8397. position:absolute;
  8398. align-self:center;
  8399. padding:2px 2px 2px 2px;
  8400. box-sizing:border-box;
  8401. width:100%;
  8402. }
  8403. #u20737_text {
  8404. border-width:0px;
  8405. word-wrap:break-word;
  8406. text-transform:none;
  8407. visibility:hidden;
  8408. }
  8409. #u20738 {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:12px;
  8413. top:8px;
  8414. width:8px;
  8415. height:14px;
  8416. display:flex;
  8417. transition:none;
  8418. font-family:"Microsoft YaHei", sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:12px;
  8422. }
  8423. #u20738 .text {
  8424. position:absolute;
  8425. align-self:center;
  8426. padding:2px 2px 2px 2px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u20738_img {
  8431. border-width:0px;
  8432. position:absolute;
  8433. left:0px;
  8434. top:0px;
  8435. width:8px;
  8436. height:14px;
  8437. }
  8438. #u20738_text {
  8439. border-width:0px;
  8440. word-wrap:break-word;
  8441. text-transform:none;
  8442. visibility:hidden;
  8443. }
  8444. #u20739 {
  8445. border-width:0px;
  8446. position:absolute;
  8447. left:0px;
  8448. top:0px;
  8449. width:0px;
  8450. height:0px;
  8451. }
  8452. #u20740_div {
  8453. border-width:0px;
  8454. position:absolute;
  8455. left:0px;
  8456. top:0px;
  8457. width:31px;
  8458. height:30px;
  8459. background:inherit;
  8460. background-color:rgba(255, 255, 255, 1);
  8461. box-sizing:border-box;
  8462. border-width:1px;
  8463. border-style:solid;
  8464. border-color:rgba(228, 228, 228, 1);
  8465. border-radius:4px;
  8466. filter:drop-shadow(none);
  8467. transition:none;
  8468. font-family:"Microsoft YaHei", sans-serif;
  8469. font-weight:400;
  8470. font-style:normal;
  8471. font-size:12px;
  8472. }
  8473. #u20740 {
  8474. border-width:0px;
  8475. position:absolute;
  8476. left:234px;
  8477. top:0px;
  8478. width:31px;
  8479. height:30px;
  8480. display:flex;
  8481. transition:none;
  8482. transform-origin:50% 50%;
  8483. font-family:"Microsoft YaHei", sans-serif;
  8484. font-weight:400;
  8485. font-style:normal;
  8486. font-size:12px;
  8487. }
  8488. #u20740 .text {
  8489. position:absolute;
  8490. align-self:center;
  8491. padding:2px 2px 2px 2px;
  8492. box-sizing:border-box;
  8493. width:100%;
  8494. }
  8495. #u20740_text {
  8496. border-width:0px;
  8497. word-wrap:break-word;
  8498. text-transform:none;
  8499. visibility:hidden;
  8500. }
  8501. #u20741 {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:247px;
  8505. top:8px;
  8506. width:8px;
  8507. height:14px;
  8508. display:flex;
  8509. transition:none;
  8510. font-family:"Microsoft YaHei", sans-serif;
  8511. font-weight:400;
  8512. font-style:normal;
  8513. font-size:12px;
  8514. }
  8515. #u20741 .text {
  8516. position:absolute;
  8517. align-self:center;
  8518. padding:2px 2px 2px 2px;
  8519. box-sizing:border-box;
  8520. width:100%;
  8521. }
  8522. #u20741_img {
  8523. border-width:0px;
  8524. position:absolute;
  8525. left:0px;
  8526. top:0px;
  8527. width:8px;
  8528. height:14px;
  8529. }
  8530. #u20741_text {
  8531. border-width:0px;
  8532. word-wrap:break-word;
  8533. text-transform:none;
  8534. visibility:hidden;
  8535. }
  8536. #u20742 {
  8537. border-width:0px;
  8538. position:absolute;
  8539. left:0px;
  8540. top:0px;
  8541. width:0px;
  8542. height:0px;
  8543. }
  8544. #u20743_div {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:0px;
  8548. top:0px;
  8549. width:33px;
  8550. height:24px;
  8551. background:inherit;
  8552. background-color:rgba(255, 255, 255, 1);
  8553. border-radius:0px;
  8554. filter:drop-shadow(none);
  8555. transition:none;
  8556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8557. font-weight:400;
  8558. font-style:normal;
  8559. font-size:14px;
  8560. color:#BCBCBC;
  8561. text-align:left;
  8562. }
  8563. #u20743 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:435px;
  8567. top:3px;
  8568. width:33px;
  8569. height:24px;
  8570. display:flex;
  8571. transition:none;
  8572. transform-origin:50% 50%;
  8573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8574. font-weight:400;
  8575. font-style:normal;
  8576. font-size:14px;
  8577. color:#BCBCBC;
  8578. text-align:left;
  8579. }
  8580. #u20743 .text {
  8581. position:absolute;
  8582. align-self:center;
  8583. padding:2px 2px 2px 2px;
  8584. box-sizing:border-box;
  8585. width:100%;
  8586. }
  8587. #u20743_text {
  8588. border-width:0px;
  8589. white-space:nowrap;
  8590. text-transform:none;
  8591. }
  8592. #u20744_div {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:0px;
  8596. top:0px;
  8597. width:40px;
  8598. height:30px;
  8599. background:inherit;
  8600. background-color:rgba(255, 255, 255, 1);
  8601. box-sizing:border-box;
  8602. border-width:1px;
  8603. border-style:solid;
  8604. border-color:rgba(228, 228, 228, 1);
  8605. border-radius:4px;
  8606. filter:drop-shadow(none);
  8607. transition:none;
  8608. font-family:"Microsoft YaHei", sans-serif;
  8609. font-weight:400;
  8610. font-style:normal;
  8611. font-size:14px;
  8612. }
  8613. #u20744 {
  8614. border-width:0px;
  8615. position:absolute;
  8616. left:470px;
  8617. top:0px;
  8618. width:40px;
  8619. height:30px;
  8620. display:flex;
  8621. transition:none;
  8622. transform-origin:50% 50%;
  8623. font-family:"Microsoft YaHei", sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:14px;
  8627. }
  8628. #u20744 .text {
  8629. position:absolute;
  8630. align-self:center;
  8631. padding:2px 2px 2px 2px;
  8632. box-sizing:border-box;
  8633. width:100%;
  8634. }
  8635. #u20744_text {
  8636. border-width:0px;
  8637. word-wrap:break-word;
  8638. text-transform:none;
  8639. visibility:hidden;
  8640. }
  8641. #u20745_div {
  8642. border-width:0px;
  8643. position:absolute;
  8644. left:0px;
  8645. top:0px;
  8646. width:19px;
  8647. height:24px;
  8648. background:inherit;
  8649. background-color:rgba(255, 255, 255, 1);
  8650. border-radius:0px;
  8651. filter:drop-shadow(none);
  8652. transition:none;
  8653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8654. font-weight:400;
  8655. font-style:normal;
  8656. font-size:14px;
  8657. color:#BCBCBC;
  8658. text-align:left;
  8659. }
  8660. #u20745 {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:512px;
  8664. top:4px;
  8665. width:19px;
  8666. height:24px;
  8667. display:flex;
  8668. transition:none;
  8669. transform-origin:50% 50%;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:14px;
  8674. color:#BCBCBC;
  8675. text-align:left;
  8676. }
  8677. #u20745 .text {
  8678. position:absolute;
  8679. align-self:center;
  8680. padding:2px 2px 2px 2px;
  8681. box-sizing:border-box;
  8682. width:100%;
  8683. }
  8684. #u20745_text {
  8685. border-width:0px;
  8686. white-space:nowrap;
  8687. text-transform:none;
  8688. }
  8689. #u20746_input {
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:34px;
  8694. height:25px;
  8695. padding:2px 2px 2px 2px;
  8696. font-family:"Microsoft YaHei", sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:13px;
  8700. letter-spacing:normal;
  8701. color:#000000;
  8702. vertical-align:none;
  8703. text-align:left;
  8704. text-transform:none;
  8705. background-color:transparent;
  8706. border-color:transparent;
  8707. }
  8708. #u20746_input.hint {
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:34px;
  8713. height:25px;
  8714. padding:2px 2px 2px 2px;
  8715. font-family:"Microsoft YaHei", sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:13px;
  8719. letter-spacing:normal;
  8720. color:#999999;
  8721. vertical-align:none;
  8722. text-align:left;
  8723. text-transform:none;
  8724. background-color:transparent;
  8725. border-color:transparent;
  8726. }
  8727. #u20746_input.disabled {
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:34px;
  8732. height:25px;
  8733. padding:2px 2px 2px 2px;
  8734. font-family:"Microsoft YaHei", sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:13px;
  8738. letter-spacing:normal;
  8739. color:#000000;
  8740. vertical-align:none;
  8741. text-align:left;
  8742. text-transform:none;
  8743. background-color:transparent;
  8744. border-color:transparent;
  8745. }
  8746. #u20746_input.hint.disabled {
  8747. position:absolute;
  8748. left:0px;
  8749. top:0px;
  8750. width:34px;
  8751. height:25px;
  8752. padding:2px 2px 2px 2px;
  8753. font-family:"Microsoft YaHei", sans-serif;
  8754. font-weight:400;
  8755. font-style:normal;
  8756. font-size:13px;
  8757. letter-spacing:normal;
  8758. color:#999999;
  8759. vertical-align:none;
  8760. text-align:left;
  8761. text-transform:none;
  8762. background-color:transparent;
  8763. border-color:transparent;
  8764. }
  8765. #u20746_div {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:34px;
  8771. height:25px;
  8772. background:inherit;
  8773. background-color:rgba(255, 255, 255, 1);
  8774. border-radius:0px;
  8775. filter:drop-shadow(none);
  8776. transition:none;
  8777. font-family:"Microsoft YaHei", sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. }
  8781. #u20746 {
  8782. border-width:0px;
  8783. position:absolute;
  8784. left:473px;
  8785. top:2px;
  8786. width:34px;
  8787. height:25px;
  8788. display:flex;
  8789. transition:none;
  8790. transform-origin:50% 50%;
  8791. font-family:"Microsoft YaHei", sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. }
  8795. #u20746 .text {
  8796. position:absolute;
  8797. align-self:center;
  8798. padding:2px 2px 2px 2px;
  8799. box-sizing:border-box;
  8800. width:100%;
  8801. }
  8802. #u20746_div.hint {
  8803. border-width:0px;
  8804. position:absolute;
  8805. left:0px;
  8806. top:0px;
  8807. width:34px;
  8808. height:25px;
  8809. background:inherit;
  8810. background-color:rgba(255, 255, 255, 1);
  8811. border-radius:0px;
  8812. filter:drop-shadow(none);
  8813. transition:none;
  8814. font-family:"Microsoft YaHei", sans-serif;
  8815. font-weight:400;
  8816. font-style:normal;
  8817. }
  8818. #u20746.hint {
  8819. }
  8820. #u20746_div.disabled {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:0px;
  8824. top:0px;
  8825. width:34px;
  8826. height:25px;
  8827. background:inherit;
  8828. background-color:rgba(240, 240, 240, 1);
  8829. border-radius:0px;
  8830. filter:drop-shadow(none);
  8831. transition:none;
  8832. font-family:"Microsoft YaHei", sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. }
  8836. #u20746.disabled {
  8837. }
  8838. #u20746_div.hint.disabled {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:0px;
  8842. top:0px;
  8843. width:34px;
  8844. height:25px;
  8845. background:inherit;
  8846. background-color:rgba(240, 240, 240, 1);
  8847. border-radius:0px;
  8848. filter:drop-shadow(none);
  8849. transition:none;
  8850. font-family:"Microsoft YaHei", sans-serif;
  8851. font-weight:400;
  8852. font-style:normal;
  8853. }
  8854. #u20746.hint.disabled {
  8855. }
  8856. #u20747_div {
  8857. border-width:0px;
  8858. position:absolute;
  8859. left:0px;
  8860. top:0px;
  8861. width:55px;
  8862. height:30px;
  8863. background:inherit;
  8864. background-color:rgba(255, 255, 255, 1);
  8865. box-sizing:border-box;
  8866. border-width:1px;
  8867. border-style:solid;
  8868. border-color:rgba(170, 170, 170, 1);
  8869. border-radius:4px;
  8870. filter:drop-shadow(none);
  8871. transition:none;
  8872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8873. font-weight:400;
  8874. font-style:normal;
  8875. font-size:12px;
  8876. color:#555555;
  8877. }
  8878. #u20747 {
  8879. border-width:0px;
  8880. position:absolute;
  8881. left:512px;
  8882. top:194px;
  8883. width:55px;
  8884. height:30px;
  8885. display:flex;
  8886. transition:none;
  8887. transform-origin:50% 50%;
  8888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8889. font-weight:400;
  8890. font-style:normal;
  8891. font-size:12px;
  8892. color:#555555;
  8893. }
  8894. #u20747 .text {
  8895. position:absolute;
  8896. align-self:center;
  8897. padding:5px 15px 5px 15px;
  8898. box-sizing:border-box;
  8899. width:100%;
  8900. }
  8901. #u20747_text {
  8902. border-width:0px;
  8903. white-space:nowrap;
  8904. text-transform:none;
  8905. }
  8906. #u20748_div {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:0px;
  8910. top:0px;
  8911. width:59px;
  8912. height:30px;
  8913. background:inherit;
  8914. background-color:rgba(255, 255, 255, 1);
  8915. box-sizing:border-box;
  8916. border-width:1px;
  8917. border-style:solid;
  8918. border-color:rgba(170, 170, 170, 1);
  8919. border-radius:4px;
  8920. filter:drop-shadow(none);
  8921. transition:none;
  8922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8923. font-weight:400;
  8924. font-style:normal;
  8925. font-size:14px;
  8926. color:#555555;
  8927. }
  8928. #u20748 {
  8929. border-width:0px;
  8930. position:absolute;
  8931. left:443px;
  8932. top:194px;
  8933. width:59px;
  8934. height:30px;
  8935. display:flex;
  8936. transition:none;
  8937. transform-origin:50% 50%;
  8938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8939. font-weight:400;
  8940. font-style:normal;
  8941. font-size:14px;
  8942. color:#555555;
  8943. }
  8944. #u20748 .text {
  8945. position:absolute;
  8946. align-self:center;
  8947. padding:5px 15px 5px 15px;
  8948. box-sizing:border-box;
  8949. width:100%;
  8950. }
  8951. #u20748_text {
  8952. border-width:0px;
  8953. white-space:nowrap;
  8954. text-transform:none;
  8955. }
  8956. #u20749_div {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:626px;
  8962. height:50px;
  8963. background:inherit;
  8964. background-color:rgba(255, 255, 255, 0);
  8965. border-radius:0px;
  8966. filter:drop-shadow(none);
  8967. transition:none;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:18px;
  8972. color:#D9001B;
  8973. }
  8974. #u20749 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:398px;
  8978. top:722px;
  8979. width:626px;
  8980. height:50px;
  8981. display:flex;
  8982. transition:none;
  8983. transform-origin:50% 50%;
  8984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8985. font-weight:400;
  8986. font-style:normal;
  8987. font-size:18px;
  8988. color:#D9001B;
  8989. }
  8990. #u20749 .text {
  8991. position:absolute;
  8992. align-self:flex-start;
  8993. padding:0px 0px 0px 0px;
  8994. box-sizing:border-box;
  8995. width:100%;
  8996. }
  8997. #u20749_text {
  8998. border-width:0px;
  8999. white-space:nowrap;
  9000. text-transform:none;
  9001. }
  9002. #u20750 label {
  9003. left:0px;
  9004. width:100%;
  9005. height:100%;
  9006. }
  9007. #u20750_img {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:0px;
  9011. top:0px;
  9012. width:12px;
  9013. height:12px;
  9014. }
  9015. #u20750 {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:367px;
  9019. top:247px;
  9020. width:42px;
  9021. height:16px;
  9022. display:flex;
  9023. transition:none;
  9024. }
  9025. #u20750 .text {
  9026. position:absolute;
  9027. align-self:center;
  9028. padding:0px 2px 0px 2px;
  9029. box-sizing:border-box;
  9030. }
  9031. #u20750_img.selected {
  9032. }
  9033. #u20750.selected {
  9034. }
  9035. #u20750_img.disabled {
  9036. }
  9037. #u20750.disabled {
  9038. }
  9039. #u20750_img.selected.error {
  9040. }
  9041. #u20750.selected.error {
  9042. }
  9043. #u20750_img.selected.hint {
  9044. }
  9045. #u20750.selected.hint {
  9046. }
  9047. #u20750_img.selected.error.hint {
  9048. }
  9049. #u20750.selected.error.hint {
  9050. }
  9051. #u20750_img.mouseOver.selected {
  9052. }
  9053. #u20750.mouseOver.selected {
  9054. }
  9055. #u20750_img.mouseOver.selected.error {
  9056. }
  9057. #u20750.mouseOver.selected.error {
  9058. }
  9059. #u20750_img.mouseOver.selected.hint {
  9060. }
  9061. #u20750.mouseOver.selected.hint {
  9062. }
  9063. #u20750_img.mouseOver.selected.error.hint {
  9064. }
  9065. #u20750.mouseOver.selected.error.hint {
  9066. }
  9067. #u20750_img.mouseDown.selected {
  9068. }
  9069. #u20750.mouseDown.selected {
  9070. }
  9071. #u20750_img.mouseDown.selected.error {
  9072. }
  9073. #u20750.mouseDown.selected.error {
  9074. }
  9075. #u20750_img.mouseDown.selected.hint {
  9076. }
  9077. #u20750.mouseDown.selected.hint {
  9078. }
  9079. #u20750_img.mouseDown.selected.error.hint {
  9080. }
  9081. #u20750.mouseDown.selected.error.hint {
  9082. }
  9083. #u20750_img.mouseOver.mouseDown.selected {
  9084. }
  9085. #u20750.mouseOver.mouseDown.selected {
  9086. }
  9087. #u20750_img.mouseOver.mouseDown.selected.error {
  9088. }
  9089. #u20750.mouseOver.mouseDown.selected.error {
  9090. }
  9091. #u20750_img.mouseOver.mouseDown.selected.hint {
  9092. }
  9093. #u20750.mouseOver.mouseDown.selected.hint {
  9094. }
  9095. #u20750_img.mouseOver.mouseDown.selected.error.hint {
  9096. }
  9097. #u20750.mouseOver.mouseDown.selected.error.hint {
  9098. }
  9099. #u20750_img.focused.selected {
  9100. }
  9101. #u20750.focused.selected {
  9102. }
  9103. #u20750_img.focused.selected.error {
  9104. }
  9105. #u20750.focused.selected.error {
  9106. }
  9107. #u20750_img.focused.selected.hint {
  9108. }
  9109. #u20750.focused.selected.hint {
  9110. }
  9111. #u20750_img.focused.selected.error.hint {
  9112. }
  9113. #u20750.focused.selected.error.hint {
  9114. }
  9115. #u20750_img.selected.disabled {
  9116. }
  9117. #u20750.selected.disabled {
  9118. }
  9119. #u20750_img.selected.hint.disabled {
  9120. }
  9121. #u20750.selected.hint.disabled {
  9122. }
  9123. #u20750_img.selected.error.disabled {
  9124. }
  9125. #u20750.selected.error.disabled {
  9126. }
  9127. #u20750_img.selected.error.hint.disabled {
  9128. }
  9129. #u20750.selected.error.hint.disabled {
  9130. }
  9131. #u20750_text {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:12px;
  9135. top:0px;
  9136. width:30px;
  9137. word-wrap:break-word;
  9138. text-transform:none;
  9139. visibility:hidden;
  9140. }
  9141. #u20750_input {
  9142. border-width:0px;
  9143. position:absolute;
  9144. left:0px;
  9145. top:0px;
  9146. width:0px;
  9147. height:0px;
  9148. opacity:0;
  9149. }
  9150. #u20751 label {
  9151. left:0px;
  9152. width:100%;
  9153. height:100%;
  9154. }
  9155. #u20751_img {
  9156. border-width:0px;
  9157. position:absolute;
  9158. left:0px;
  9159. top:0px;
  9160. width:12px;
  9161. height:12px;
  9162. }
  9163. #u20751 {
  9164. border-width:0px;
  9165. position:absolute;
  9166. left:367px;
  9167. top:277px;
  9168. width:42px;
  9169. height:16px;
  9170. display:flex;
  9171. transition:none;
  9172. }
  9173. #u20751 .text {
  9174. position:absolute;
  9175. align-self:center;
  9176. padding:0px 2px 0px 2px;
  9177. box-sizing:border-box;
  9178. }
  9179. #u20751_img.selected {
  9180. }
  9181. #u20751.selected {
  9182. }
  9183. #u20751_img.disabled {
  9184. }
  9185. #u20751.disabled {
  9186. }
  9187. #u20751_img.selected.error {
  9188. }
  9189. #u20751.selected.error {
  9190. }
  9191. #u20751_img.selected.hint {
  9192. }
  9193. #u20751.selected.hint {
  9194. }
  9195. #u20751_img.selected.error.hint {
  9196. }
  9197. #u20751.selected.error.hint {
  9198. }
  9199. #u20751_img.mouseOver.selected {
  9200. }
  9201. #u20751.mouseOver.selected {
  9202. }
  9203. #u20751_img.mouseOver.selected.error {
  9204. }
  9205. #u20751.mouseOver.selected.error {
  9206. }
  9207. #u20751_img.mouseOver.selected.hint {
  9208. }
  9209. #u20751.mouseOver.selected.hint {
  9210. }
  9211. #u20751_img.mouseOver.selected.error.hint {
  9212. }
  9213. #u20751.mouseOver.selected.error.hint {
  9214. }
  9215. #u20751_img.mouseDown.selected {
  9216. }
  9217. #u20751.mouseDown.selected {
  9218. }
  9219. #u20751_img.mouseDown.selected.error {
  9220. }
  9221. #u20751.mouseDown.selected.error {
  9222. }
  9223. #u20751_img.mouseDown.selected.hint {
  9224. }
  9225. #u20751.mouseDown.selected.hint {
  9226. }
  9227. #u20751_img.mouseDown.selected.error.hint {
  9228. }
  9229. #u20751.mouseDown.selected.error.hint {
  9230. }
  9231. #u20751_img.mouseOver.mouseDown.selected {
  9232. }
  9233. #u20751.mouseOver.mouseDown.selected {
  9234. }
  9235. #u20751_img.mouseOver.mouseDown.selected.error {
  9236. }
  9237. #u20751.mouseOver.mouseDown.selected.error {
  9238. }
  9239. #u20751_img.mouseOver.mouseDown.selected.hint {
  9240. }
  9241. #u20751.mouseOver.mouseDown.selected.hint {
  9242. }
  9243. #u20751_img.mouseOver.mouseDown.selected.error.hint {
  9244. }
  9245. #u20751.mouseOver.mouseDown.selected.error.hint {
  9246. }
  9247. #u20751_img.focused.selected {
  9248. }
  9249. #u20751.focused.selected {
  9250. }
  9251. #u20751_img.focused.selected.error {
  9252. }
  9253. #u20751.focused.selected.error {
  9254. }
  9255. #u20751_img.focused.selected.hint {
  9256. }
  9257. #u20751.focused.selected.hint {
  9258. }
  9259. #u20751_img.focused.selected.error.hint {
  9260. }
  9261. #u20751.focused.selected.error.hint {
  9262. }
  9263. #u20751_img.selected.disabled {
  9264. }
  9265. #u20751.selected.disabled {
  9266. }
  9267. #u20751_img.selected.hint.disabled {
  9268. }
  9269. #u20751.selected.hint.disabled {
  9270. }
  9271. #u20751_img.selected.error.disabled {
  9272. }
  9273. #u20751.selected.error.disabled {
  9274. }
  9275. #u20751_img.selected.error.hint.disabled {
  9276. }
  9277. #u20751.selected.error.hint.disabled {
  9278. }
  9279. #u20751_text {
  9280. border-width:0px;
  9281. position:absolute;
  9282. left:12px;
  9283. top:0px;
  9284. width:30px;
  9285. word-wrap:break-word;
  9286. text-transform:none;
  9287. visibility:hidden;
  9288. }
  9289. #u20751_input {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:0px;
  9295. height:0px;
  9296. opacity:0;
  9297. }
  9298. #u20752 {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:0px;
  9304. height:0px;
  9305. }
  9306. #u20753_div {
  9307. border-width:0px;
  9308. position:absolute;
  9309. left:0px;
  9310. top:0px;
  9311. width:140px;
  9312. height:30px;
  9313. background:inherit;
  9314. background-color:rgba(255, 255, 255, 1);
  9315. box-sizing:border-box;
  9316. border-width:1px;
  9317. border-style:solid;
  9318. border-color:rgba(215, 215, 215, 1);
  9319. border-radius:4px;
  9320. filter:drop-shadow(none);
  9321. transition:none;
  9322. font-size:14px;
  9323. }
  9324. #u20753 {
  9325. border-width:0px;
  9326. position:absolute;
  9327. left:951px;
  9328. top:140px;
  9329. width:140px;
  9330. height:30px;
  9331. display:flex;
  9332. transition:none;
  9333. transform-origin:50% 50%;
  9334. font-size:14px;
  9335. }
  9336. #u20753 .text {
  9337. position:absolute;
  9338. align-self:center;
  9339. padding:2px 2px 2px 2px;
  9340. box-sizing:border-box;
  9341. width:100%;
  9342. }
  9343. #u20753_text {
  9344. border-width:0px;
  9345. word-wrap:break-word;
  9346. text-transform:none;
  9347. visibility:hidden;
  9348. }
  9349. #u20754_input {
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:134px;
  9354. height:23px;
  9355. padding:2px 2px 2px 2px;
  9356. font-family:'ArialMT', 'Arial', sans-serif;
  9357. font-weight:400;
  9358. font-style:normal;
  9359. font-size:14px;
  9360. letter-spacing:normal;
  9361. color:#AAAAAA;
  9362. vertical-align:none;
  9363. text-align:left;
  9364. text-transform:none;
  9365. background-color:transparent;
  9366. border-color:transparent;
  9367. }
  9368. #u20754_input.disabled {
  9369. position:absolute;
  9370. left:0px;
  9371. top:0px;
  9372. width:134px;
  9373. height:23px;
  9374. padding:2px 2px 2px 2px;
  9375. font-family:'ArialMT', 'Arial', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:14px;
  9379. letter-spacing:normal;
  9380. color:#AAAAAA;
  9381. vertical-align:none;
  9382. text-align:left;
  9383. text-transform:none;
  9384. background-color:transparent;
  9385. border-color:transparent;
  9386. }
  9387. #u20754_div {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:0px;
  9391. top:0px;
  9392. width:134px;
  9393. height:23px;
  9394. background:inherit;
  9395. background-color:rgba(255, 255, 255, 1);
  9396. border-radius:0px;
  9397. filter:drop-shadow(none);
  9398. transition:none;
  9399. font-size:14px;
  9400. color:#AAAAAA;
  9401. }
  9402. #u20754 {
  9403. border-width:0px;
  9404. position:absolute;
  9405. left:955px;
  9406. top:142px;
  9407. width:134px;
  9408. height:23px;
  9409. display:flex;
  9410. transition:none;
  9411. transform-origin:50% 50%;
  9412. font-size:14px;
  9413. color:#AAAAAA;
  9414. }
  9415. #u20754 .text {
  9416. position:absolute;
  9417. align-self:flex-start;
  9418. padding:2px 2px 2px 2px;
  9419. box-sizing:border-box;
  9420. width:100%;
  9421. }
  9422. #u20754_div.disabled {
  9423. border-width:0px;
  9424. position:absolute;
  9425. left:0px;
  9426. top:0px;
  9427. width:134px;
  9428. height:23px;
  9429. background:inherit;
  9430. background-color:rgba(240, 240, 240, 1);
  9431. border-radius:0px;
  9432. filter:drop-shadow(none);
  9433. transition:none;
  9434. font-size:14px;
  9435. color:#AAAAAA;
  9436. }
  9437. #u20754.disabled {
  9438. }
  9439. .u20754_input_option {
  9440. font-size:14px;
  9441. }
  9442. #u20755 {
  9443. border-width:0px;
  9444. position:absolute;
  9445. left:0px;
  9446. top:0px;
  9447. width:0px;
  9448. height:0px;
  9449. }
  9450. #u20756_div {
  9451. border-width:0px;
  9452. position:absolute;
  9453. left:0px;
  9454. top:0px;
  9455. width:140px;
  9456. height:30px;
  9457. background:inherit;
  9458. background-color:rgba(255, 255, 255, 1);
  9459. box-sizing:border-box;
  9460. border-width:1px;
  9461. border-style:solid;
  9462. border-color:rgba(215, 215, 215, 1);
  9463. border-radius:4px;
  9464. filter:drop-shadow(none);
  9465. transition:none;
  9466. font-size:14px;
  9467. }
  9468. #u20756 {
  9469. border-width:0px;
  9470. position:absolute;
  9471. left:650px;
  9472. top:140px;
  9473. width:140px;
  9474. height:30px;
  9475. display:flex;
  9476. transition:none;
  9477. transform-origin:50% 50%;
  9478. font-size:14px;
  9479. }
  9480. #u20756 .text {
  9481. position:absolute;
  9482. align-self:center;
  9483. padding:2px 2px 2px 2px;
  9484. box-sizing:border-box;
  9485. width:100%;
  9486. }
  9487. #u20756_text {
  9488. border-width:0px;
  9489. word-wrap:break-word;
  9490. text-transform:none;
  9491. visibility:hidden;
  9492. }
  9493. #u20757_input {
  9494. position:absolute;
  9495. left:0px;
  9496. top:0px;
  9497. width:134px;
  9498. height:23px;
  9499. padding:2px 2px 2px 2px;
  9500. font-family:'ArialMT', 'Arial', sans-serif;
  9501. font-weight:400;
  9502. font-style:normal;
  9503. font-size:14px;
  9504. letter-spacing:normal;
  9505. color:#AAAAAA;
  9506. vertical-align:none;
  9507. text-align:left;
  9508. text-transform:none;
  9509. background-color:transparent;
  9510. border-color:transparent;
  9511. }
  9512. #u20757_input.disabled {
  9513. position:absolute;
  9514. left:0px;
  9515. top:0px;
  9516. width:134px;
  9517. height:23px;
  9518. padding:2px 2px 2px 2px;
  9519. font-family:'ArialMT', 'Arial', sans-serif;
  9520. font-weight:400;
  9521. font-style:normal;
  9522. font-size:14px;
  9523. letter-spacing:normal;
  9524. color:#AAAAAA;
  9525. vertical-align:none;
  9526. text-align:left;
  9527. text-transform:none;
  9528. background-color:transparent;
  9529. border-color:transparent;
  9530. }
  9531. #u20757_div {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:0px;
  9535. top:0px;
  9536. width:134px;
  9537. height:23px;
  9538. background:inherit;
  9539. background-color:rgba(255, 255, 255, 1);
  9540. border-radius:0px;
  9541. filter:drop-shadow(none);
  9542. transition:none;
  9543. font-size:14px;
  9544. color:#AAAAAA;
  9545. }
  9546. #u20757 {
  9547. border-width:0px;
  9548. position:absolute;
  9549. left:654px;
  9550. top:142px;
  9551. width:134px;
  9552. height:23px;
  9553. display:flex;
  9554. transition:none;
  9555. transform-origin:50% 50%;
  9556. font-size:14px;
  9557. color:#AAAAAA;
  9558. }
  9559. #u20757 .text {
  9560. position:absolute;
  9561. align-self:flex-start;
  9562. padding:2px 2px 2px 2px;
  9563. box-sizing:border-box;
  9564. width:100%;
  9565. }
  9566. #u20757_div.disabled {
  9567. border-width:0px;
  9568. position:absolute;
  9569. left:0px;
  9570. top:0px;
  9571. width:134px;
  9572. height:23px;
  9573. background:inherit;
  9574. background-color:rgba(240, 240, 240, 1);
  9575. border-radius:0px;
  9576. filter:drop-shadow(none);
  9577. transition:none;
  9578. font-size:14px;
  9579. color:#AAAAAA;
  9580. }
  9581. #u20757.disabled {
  9582. }
  9583. .u20757_input_option {
  9584. font-size:14px;
  9585. }